@font-face {
    font-family: "Nulshock";
    src: url("../font/nulshock bd.ttf");
}
@font-face {
    font-family: "Gill Sans MT";
    src: url("../font/gill-sans-mt.ttf");
}

/* Universal Styling */
:root {
    --font-1: "Nulshock", sans-serif;
    --font-2: "Gill Sans MT", sans-serif;
    --blue-btn: #004aea;
    --white: #ffffff;
    --white-2: #f4f5fa;
    --white-3: #e5e5e5;
    --white-4: #fbfbff;
    --white-5: #f5f7ff;
    --white-light: rgba(255, 255, 255, 0.7);
    --white-light-2: rgba(255, 255, 255, 0.6);
    --black: #000000;
    --black-2: #2d2d2d;
    --black-2-light: rgba(45, 45, 45, 0.6);
    --orange: #32cd33;
    --orange-2: #f8671f;
    --orange-rgba: rgba(50, 205, 51, 0.2);
    --black-theme: rgba(45, 45, 45, 1);
    --black-light: rgba(0, 0, 0, 0.38);
    --black-light-2: rgba(0, 0, 0, 0.6);
    --light-blue: #9e70ea;
    --light-blue-theme: rgba(158, 112, 234, 1);
    --light-blue-rgba: rgba(242, 234, 255, 1);
    --light-blue-gradient: rgba(167, 113, 255, 1);
    --bg-1: linear-gradient(#0a0854, #25237a);
    --bg-2: linear-gradient(#ff8c1d 100%, #ea1c00 67%);
    --bg-green: #01c7b8;
    --bg-red: #da2127;
    --bg-dark-blue: #002e63;
    --bg-dark-blue-2: #224160;
    --bg-light-blue: #86c7db;
    --bg-sky-blue: #3da9fc;
    --bg-sky-blue-2: #00a3ed;
    --bg-sky-blue-3: #3ca9ee;
    --bg-purple: #9e70ea;
    --bg-pink: #ef058c;
    --card-1: #fde9db;
    --card-2: #ffe3e5;
    --card-3: #d9e5ff;
    --card-4: #daffed;
    --card-5: #f6e3ff;
    --card-6: #fdeddb;
    --card-7: #e5ffd9;
    --card-8: #daf8ff;
}

hr {
    color: rgba(50, 205, 51, 0.5);
    background: rgba(50, 205, 51, 0.5);
    margin-top: 0px !important;
}
hr:not([size]) {
    height: 7px;
}

.w-90{
    width: 90%;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--font-1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.form-control:focus {
    /* border-color: none; */
    box-shadow: none;
}

.bg-theme {
    background-color: var(--black-theme) !important;
}

/* Navbar Styling */
.my-nav {
    background: transparent;
    position: relative;
    z-index: 100;
    /* top: 10px; */
}
.my-navChild {
    width: 89% !important;
}
.my-nav .navbar-toggler {
    background-color: var(--white) !important;
}
.my-nav .navbar-nav,
.nav-white .navbar-nav {
    margin-left: auto;
}
.my-nav .nav-link {
    font-family: var(--font-4);
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--white) !important;
    letter-spacing: 1px;
}

.nav-link {
    padding: 1rem 0rem !important;
    font-size: 30px;
    color: var(--white) !important;
}

.nav-link:hover {
    color: var(--orange) !important;
}

.my-nav .dropdown-item {
    font-family: var(--font-4);
    color: var(--black) !important;
    font-size: 18px;
    font-weight: 400;
}
.my-nav .dropdown-toggle::after {
    display: none;
}
.nav-1 li {
    margin-right: 25px;
}
.my-dropdown1.show {
    display: flex !important;
}
.my-dropdown1 {
    flex-wrap: wrap;
    width: 700px;
    padding: 20px 20px 0 20px !important;
}
.my-dropdown1 > div:nth-child(5) a {
    max-width: 150px;
}
.my-dropdown1 > div {
    width: 33.33%;
}
.my-dropdown1 > div > a {
    white-space: normal;
    line-height: 1.5rem;
}
.nav-2 button {
    font-size: 20px;
    font-weight: 400;
    padding: 10px 30px !important;
    border-radius: 4px;
    background-color: var(--blue-btn) !important;
    letter-spacing: 0.5px;
}
.nav-2 button:hover {
    background-color: var(--white) !important;
    color: var(--blue-btn);
    font-weight: 600;
}

.offcanvas-end {
    width: 535px !important;
}

.offcanvas {
    background-color: var(--black-2) !important;
}

.offcanvas-header > button {
    background: transparent;
    border: none;
}

.offcanvas-header .btn-close {
    /* background: url('..images/radix-icons_cross-1.svg'); */
    background: url("../images/radix-icons_cross-1.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offcanvas-header {
    padding: 50px !important;
}

.offcanvas-body {
    padding-top: 20px !important;
    padding-bottom: 50px !important;
    padding-left: 50px !important;
    padding-right: 30px !important;
    overflow-y: hidden;
}

.offcanvas > div:last-child p {
    font-family: var(--font-2);
    font-size: 30px;
    color: var(--white-2);
}
.offcanvas > div:last-child {
    padding-bottom: 20px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

#offcanvasRightLabel {
    color: var(--orange);
}

/* Sticky Navbar Styling */
.my-nav2 .navbar-toggler {
    background-color: var(--white) !important;
    border: 1px solid var(--black);
}
.my-nav2 .nav-2 button {
    background-color: var(--white) !important;
    color: var(--bg-sky-blue);
    border: 1px solid var(--bg-sky-blue);
}
.nav-illusion {
    display: none !important;
}
.my-nav2 {
    display: flex;
    background-color: var(--bg-sky-blue-3);
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    animation-duration: 400ms;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: fadeInDown;
}
.nav-white2 {
    display: flex;
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    animation-duration: 400ms;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: fadeInDown;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Master Navbar Styling */
.nav-white {
    background: var(--white);
    padding-top: 16px !important;
    padding-bottom: 20px !important;
}
.nav-white .navbar-toggler {
    background-color: var(--white) !important;
    border: 1px solid var(--black);
}
.nav-white ul li a {
    font-family: var(--font-4);
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--black) !important;
}
.nav-white .dropdown-toggle::after {
    display: none;
}

/* 1st Section Styling */
.section-1 {
    background: url("../images/banner.jpg");
    background-repeat: no-repeat;
    background-position: center 10%;
    background-size: cover;
}
.section-1Child {
    width: 89%;
    margin: auto;
    padding-top: 90px;
    padding-bottom: 10px;
}
.section-11 {
    color: var(--white);
    padding-top: 60px;
}
.section-11 h1 {
    font-family: var(--font-4);
    font-size: 120px;
    font-weight: 750;
    color: var(--light-blue);
}
.section-11 p {
    font-family: var(--font-2);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 3.5rem;
    color: var(--black-2);
    padding-top: 35px;
}

.section-11 > div > div:last-child {
    padding-top: 150px;
    padding-bottom: 5px;
}
.button-1 button {
    color: var(--blue-btn);
    background-color: var(--white);
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 500;
}
.button-1 button:hover {
    color: var(--white);
    background-color: var(--blue-btn);
}
.button-2 button {
    color: var(--white);
    background-color: var(--orange);
    border: 1px solid var(--orange);
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
}

/* Footer Section Styling */
.footer-9 {
    background-color: var(--black-2);
    padding-top: 50px;
    padding-bottom: 40px;
    color: var(--white);
}
.footer-9 .container {
    width: 75%;
}

.footer-9 ul {
    padding-left: 0;
}
.footer-9 ul li {
    list-style: none;
    line-height: 3.5rem;
    color: var(--white-light);
    font-size: 20px;
}
.footer-9 h5 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}
.footer-9 img {
    margin-bottom: 30px;
    height: 60px;
}
.footer-9 h6 {
    font-size: 20px;
    font-weight: 600;
}
.footer-9 p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-light);
}
.footer-icons a {
    color: var(--white);
}
.footer-icons a:hover {
    color: var(--white);
}
.footer-9 .row > p {
    font-size: 12px;
    font-weight: 400;
    columns: var(--white-light);
}

.footer-social {
    text-align: center;
}

.footer-social a {
    text-decoration: none !important;
}

/* Whatsapp Section Styling */
.whatsapp {
    position: fixed;
    bottom: 6%;
    right: 2%;
    z-index: 999;
}
.whatsapp a:hover {
    opacity: 0.6;
}

/* Scroll Button Styling */
#scroll-button {
    display: none;
    position: fixed;
    bottom: 6%;
    left: 2%;
    z-index: 999;
    border: none;
    border-radius: 50%;
    outline: none;
    background: var(--black-2);
    cursor: pointer;
    padding: 8px 12px 12px 12px;
    animation: 800ms ease-in-out 0s normal none running scroll-top;
}
@keyframes scroll-top {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#scroll-button:hover {
    opacity: 0.5;
}
.scroll-top .material-icons {
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
}

.modal-content {
    border: none !important;
}

.modal-body {
    position: relative;
}

.modal-body h3 {
    color: var(--orange);
    font-size: 36px;
}

.modal-body p {
    color: var(--white-light-2);
    font-size: 20px;
    font-family: var(--font-2);
    line-height: 1.5rem;
}

.modal-body ul li {
    color: var(--white);
    font-family: var(--font-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3rem;
}

.modal-body-btn {
    background-color: var(--white);
    height: auto;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 9999;
    top: 2%;
    right: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-btn {
    color: var(--black-2);
    width: 100%;
}

.section-2 {
    background-color: var(--black-2);
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-2 > div h1 {
    color: var(--white);
    padding-top: 5rem;
    padding-bottom: 3rem;
    text-align: center;
}

.section-2 .card {
    background: transparent;
    border: transparent;
}

.section-2 .card-header {
    border: 1px solid var(--light-blue-gradient) !important;
    background: transparent;
    text-align: center;
}

.section-1-parcel,
.section-1-thanks {
    background-color: var(--light-blue-rgba);
    margin-top: 50px;
    margin-bottom: 40px;
    padding: 20px;
}

.section-1-parcel,
.section-1-thanks > div h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--light-blue-theme);
}

.section-1-parcel > div > div label {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-2);
    color: var(--black-theme);
}

.section-1-parcel > div > div p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-2);
    color: var(--black-2);
}

.section-1-thankschild {
    text-align: center;
}

.section-1-thankschild img {
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: center;
}

.section-1-thankschild span {
    padding-top: 60;
    padding-bottom: 60px;
    font-family: var(--font-2);
    font-size: 24px;
    font-weight: 400;
    color: var(--black-2-light);
}

.section-1-parcel input {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-2);
    color: var(--black);
    border: var(--white);
}

.section-1-parcel .input-group-text {
    font-size: 16px !important;
    font-family: var(--font-2);
    color: var(--black);
    border: var(--white);
    background-color: var(--white);
}

.section-1-parcel .input-group-text span {
    font-size: 20px !important;
    font-family: var(--font-2);
    color: var(--black);
    border: var(--white);
    background-color: var(--white);
}

.section-1-parcel textarea {
    resize: none;
    border: var(--white);
}

.section-1-thanks .button-2 {
    padding-top: 30px;
    padding-bottom: 80px;
}

.section-1-thanks .button-2 button {
    color: var(--black-2);
    padding: 16px 50px;
}

.section-1-user {
    background-color: var(--light-blue-rgba);
    margin-top: 50px;
    margin-bottom: 40px;
    /* padding: 20px; */
}

.section-1-user .nav-link {
    font-size: 20px;
    background-color: transparent !important;
    font-family: var(--font-2);
    color: var(--black-2) !important;
}

.section-1-user .nav-link.active {
    position: relative;
}

.section-1-user .nav-link.active::before {
    content: "";
    position: absolute;
    top: 96%;
    height: 12px;
    width: 100%;
    background: #9E70EA;
    z-index: 300;
}

.section-1-user .user-left {
    background-color: var(--white);
    height: 100%;
}

.section-1-user .user-left h1 {
    text-align: center;
    font-family: var(--font-2);
    font-size: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.section-1-user .user-right {
    padding: 20px;
}

.user-right > h1 {
    font-size: 36px;
}

.user-right > span {
    font-size: 24px;
    font-family: var(--font-2);
    color: rgba(0, 0, 0, 0.4);
}

.user-right p {
    font-family: var(--font-2);
    font-size: 20px;
}

.user-right-card > h5 {
    font-family: var(--font-2);
    font-size: 20px;
}

.user-right-card button {
    font-family: var(--font-2);
    font-size: 20px;
    font-weight: 400;
}

.user-right-card input {
    font-family: var(--font-2);
    font-size: 20px;
    padding: 10px;
}

.section-3 {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 80%;
}

.section-3 h1 {
    font-size: 100px;
    font-family: var(--font-1);
    font-weight: 700;
}
.section-3 p {
    font-size: 24px;
    font-family: var(--font-2);
    font-weight: 400;
    max-width: 80%;
}

.section-4 {
    background: var(--light-blue-theme);
    padding: 80px 0px 150px 0px;
}
.section-4 > div {
    width: 70%;
    margin: auto;
}

.section-4 h1 {
    font-size: 100px;
    font-weight: 700;
    color: var(--white);
}
.section-4 h1 > span {
    color: var(--orange);
}

.section-4 p {
    font-size: 24px;
    font-family: var(--font-2);
    color: var(--white);
}
.section-4 h5 {
    font-size: 36px;
    color: var(--orange);
}
.section-4 .card {
    background-color: transparent !important;
    border: 1px solid var(--white);
}

.section-4 .card h4 {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    color: var(--white);
    margin-top: 2rem;
}
.section-4 .card p {
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    color: var(--white);
    font-family: var(--font-2);
}

.section-4 .row:nth-child(2) {
    row-gap: 1rem;
}

.section-5 > div {
    width: 90%;
    margin: auto;
    padding: 80px 0px 150px 0px;
}

.section-5 > div h1 {
    font-size: 80px;
    font-weight: 700;
    color: var(--black-2);
}

.section-5 > .row .row {
    align-items: flex-end;
}

.section-6 {
    background: var(--light-blue-theme);
    padding: 80px 0px 150px 0px;
}
.section-6 > div {
    width: 68%;
    margin: auto;
}

.section-6 h1 {
    font-size: 100px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.section-6 p {
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    font-family: var(--font-2);
}

.section-6 .card {
    border: transparent;
}

.section-6 .card h4 {
    color: var(--black-2-light);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.section-6 .card p {
    color: var(--black-2);
    font-size: 20px;
}

.section-6 .card-body {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.section-6 .card-header {
    padding: 2rem;
    background: var(--black-2);
    border: transparent;
    border-radius: 5px;
}

/* FAQ Page Starts Here  */

.faq .accordion-item {
    background-color: transparent !important;
    border: none !important;
}
.faq .accordion-body {
    margin: 1rem 1rem 1rem 4rem;
}

.faq .accordion-body strong{
    font-family: var(--font-2);
    font-size: 24px;
    font-weight: 400;
    color: var(--black-2);
    line-height: 24px;
}

.faq .accordion-button {
    background-color: var(--black-2);
    color: var(--orange);
    margin-right: 1rem !important;
    width: auto;
    padding: 1.5rem;
    border-radius: 5px;
}

.faq .accordion-button1 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.5rem 1.25rem;
    width: 100%;
    font-size: 24px;
    color: var(--orange);
    text-align: left;
    background-color: var(--black-2);
    border: 0;
    border-radius: 5px;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        border-radius 0.15s ease;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--orange);
    background-color: var(--black-2);
    box-shadow: none!important;
}
.faq .accordion-item {
    margin-bottom: 2rem !important;
}

.faq .accordion-button:focus {
    z-index: 3;
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;
}

.faq .accordion-button::after{
    background-image: url(../images/plus.png);
}
.faq .accordion-button:not(.collapsed)::after{
    background-image: url(../images/minus.png);
}

.faq h1{
    font-size: 60px;
    color: var(--white);
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}


.customer .customer1{
   background-color: var(--light-blue);
}
.customer h1{
    font-size: 60px;
    color: var(--white);
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}
.customer h2{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: var(--black-2);
    margin-bottom: 2rem;
}
.customer p{
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-2);
    text-align: center;
    color: var(--white);
    text-align: center;   
    margin-bottom: 1.5rem ;
}

.customer1 a{
    /*padding: 1rem 6rem;*/
    background: var(--black-2);
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-2);
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    align-items: center;
}

.customer1 :nth-child(2){
    text-align: center;
    /*margin-bottom: 3rem;*/
}

.customer .customer2{
    background-color: var(--white);
 }
.customer .customer21{
    background-color: var(--black-2);
    width: 83%;
    margin: auto;
    margin-top:3rem;
    margin-bottom: 3rem;
    
 }

 .customer21 > div {
    padding: 30px;
 }

 .customer21 > div > h1 {
    font-size: 36px;
    color: var(--white);
    font-size: 700;
    text-align: start;
    margin: 1rem 0px;
 }

 .customer21 > div > h4 {
    font-size: 36px;
    color: var(--orange);
    font-size: 400;
    font-family: var(--font-2);
 }

 .customer21 > div > h5 {
    font-size: 24px;
    font-size: 400;
    color: var(--white-light);
    font-family: var(--font-2);
 }

 .customer21 > div > ul li {
    font-size: 24px;
    font-size: 400;
    color: var(--white);
    font-family: var(--font-2);
    text-decoration: none;
 }

 .customer211 {
    border-right: 1px solid var(--white-light);
 }

 .customer21 p {
   font-size: 24px;
   color: var(--white);
   text-align: start;
 }
 .customer21 p span {
   font-size: 24px!important;
   color: var(--orange);
   text-align: start;
   font-family: var(--font-2);
 }

 .customer21 :nth-child(2){
    justify-content: center;
    display: flex;
    flex-direction: column;
 }

 .rules{
    background-color: var(--white);
    padding-top: 5rem;
    padding-bottom: 10rem;
 }

.rules .row{
    width: 80%;
    margin: auto;
}

.rules .row h1{
    font-size: 60px;
    color: var(--light-blue);
    font-weight: 700;
    margin-bottom: 2rem;
}

.rules .row .card{
    background-color: var(--black-2);
    border: var(--black-2);
}

.rules .row .card-body{
    padding: 2rem 2rem;
    text-align: center;
}

.rules .row .card-body h5{
    color: var(--orange);
    font-size: 30px;
    font-family: var(--font-2);
}
.rules .row .card-body p{
    font-size: 24px;
    color: var(--white);
    font-family: var(--font-2);
}

.mobile{
    background: var(--light-blue);
    padding-top: 5rem!important;
}
.mobile-container{
    background: var(--black-2);
    padding: 5px 0px;
}
.mobile-container h3{ 
    font-size: 40px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.mobile .card{ 
    background-color: var(--black-2)!important;
}

.mobile .card-header{ 
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    color: var(--white);
}

.mobile .card-body p{ 
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
    font-family: var(--font-2);
}

.mobile .card-img-top{ 
    width: 90%!important;
    margin: auto;
    height: 400px;
}

.pricing{
    background-color: var(--white);
    padding-top: 5rem;
    padding-bottom: 10rem;
 }

 .pricing .row{
    width: 80%;
    margin: auto;
}

.pricing .row h1{
    font-size: 60px;
    color: var(--light-blue);
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing .row p{
    font-size: 24px;
    color: var(--black-2);
    font-weight: 400;
    font-family: var(--font-2);
}

.pricing .row h2{
    font-size: 36px;
    color: var(--black-2);
    font-weight: 700;
}

.pricing .row h3{
    font-size: 30px;
    color: var(--orange);
    font-weight: 400;
    font-family: var(--font-2);
}

.pricing .row h4{
    font-size: 24px;
    color: var(--black-2);
    font-weight: 400;
    font-family: var(--font-2);
}

.pricing-2child{
    background: var(--orange);
    text-align: center;
    padding: 2rem;
}

.pricing-2child h1{
    font-size: 36px!important;
    font-weight: 700!important;
    color: var(--black-2)!important;
}

.pricing-2child h2{
    color: var(--white)!important;
    font-size: 60px;
}
.pricing-2child p{
    color: var(--white)!important;
    font-size: 20px;
    font-weight: 400!important;
}
.pricing .pricing-2child h3{
    color: var(--black-2)!important;
    font-size: 30px;
    font-weight: 700!important;
    text-align: start;
    font-family: var(--font-1);
}

.pricing .pricing-2child ul li{
    color: var(--black-2)!important;
    font-size: 20px;
    font-weight: 400!important;
    text-align: start;
    font-family: var(--font-2);
}

.steps{
    background-color: var(--white);
    padding-top: 5rem!important;
    padding-bottom: 10rem!important;
 }

 .steps .row{
    width: 80%;
    margin: auto;
}

.steps h1{
    font-size: 72px;
    font-weight: 700;
    color: var(--light-blue);
}
.steps h5{
    font-size: 40px;
    font-weight: 700;
    color: var(--black-2);
}
.steps p{
    font-size: 36px;
    font-weight: 400;
    color: var(--black-2);
    font-family: var(--font-2);
    line-height: 35px;
}

.steps-child{
    background: var(--light-blue);
}

.steps-child .row{
    row-gap: 40px;
}

.steps-child .card{
    background-color: var(--black-2)!important;
    text-align: center;
}

.steps-child h5{
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
}

.steps-child h6{
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--font-2);
}

.steps-child p{
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--font-2);
}

.steps-child span{
    font-size: 20px;
    font-weight: 400;
    color: var(--orange);
    font-family: var(--font-2);
}


.squad{
    background-color: var(--white);
    padding-top: 5rem!important;
 }

 .squad .row{
    width: 80%;
    margin: auto;
}

.squad h1{
    font-size: 72px;
    font-weight: 700;
    color: var(--light-blue);
}

.squad p{
    font-size: 36px;
    font-weight: 400;
    color: var(--black-2);
    font-family: var(--font-2);
    line-height: 35px;
}


.squad-child{
    background: var(--black-2);
    padding-bottom: 5rem!important;
    margin-top: 5rem;
}

.squad-child .row {
    row-gap: 10rem;
}

.squad-child .card{
    background-color:  #5A5858;
    text-align: center;
    position: relative;
}

.squad-child h5{
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
}

.squad-child p{
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-2);
}

.squad-child .card-body{
    position: relative;
    padding-top: 160px;
}

.squad-child .card-body img{
    border-radius: 50%;
    position: absolute ;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
    
}