:root {
    --FontSize: 3.3rem;
    --leftPadding: 170px;
    --headingUnderlineBottomDistance: 8px;
    --headingUnderlineHeight: 3px;
    --sidelineLeftPadding: 130px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Open Sans', sans-serif;
    /* border: 1px solid green; */
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #E31837;
    z-index: 1000;
}

nav .desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 9vh;
    background: #ffff;
    width: 100%;
}

nav .desktop img {
    width: 80%;
}

nav .desktop ul {
    list-style-type: none;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Source Sans 3', sans-serif;
}

nav .desktop ul li {
    margin-right: 1.7rem;
    font-weight: 600;
    transition: all .3s ease;
}

nav .desktop ul li:first-child,
nav #mobile-menu-cnt li:first-child {
    color: #E31837;
}

nav .desktop ul li:last-child,
nav #mobile-menu-cnt li:last-child {
    padding: .8rem 1rem;
    background-color: #231F20;
    border-radius: 5px;
    color: white;
    border: 1px solid #231F20;
}

nav .desktop ul li:hover {
    cursor: pointer;
    color: #E31837;
}

nav .desktop ul li:last-child:hover {
    background-color: #ffff;
    color: #231F20;
}

/* nav .menu-icon {
    display: none;
    position: fixed;
    top: 2%;
    right: 5%;
} */

nav .mobile {
    display: none;
    overflow: hidden;
    background-color: white;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #E31837;
    z-index: 1000;
}

nav .mobile .menu-icon img {
    width: 50px;
}

nav #mobile-menu-cnt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4d4d4fd4;
    z-index: 100;
    height: 100vh;
    width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-decoration: none;
    list-style-type: none;
    transform-origin: left;
    transition: all .3s ease-in-out;
    padding-top: 8rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

nav #mobile-menu-cnt li {
    margin-bottom: 1rem;
    margin-left: 1.4rem;
    transition: all .3s ease;
}

nav #mobile-menu-cnt li:first-child {}

/* -----------HAMBURGER ICON STYLES----------- */
.hamburger {
    margin: 0 auto;
    margin-top: 30px;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger .bar {
    padding: 0;
    width: 30px;
    height: 4px;
    background-color: maroon;
    display: block;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    position: absolute;
}

.bar1 {
    top: 0;
}

.bar2,
.bar3 {
    top: 13.5px;
}

.bar3 {
    right: 0;
}

.bar4 {
    bottom: 0;
}

/* * HAMBURGER 3 */
*/ .hamburger3 .bar1 {
    transform-origin: 5%;
}

.hamburger3 .bar4 {
    transform-origin: 5%;
}

.checkbox3:checked+label>.hamburger3>.bar1 {
    transform: rotate(45deg);
    height: 3px;
    width: 42px;
}

.checkbox3:checked+label>.hamburger3>.bar3 {
    transform: rotate(45deg);
    height: 3px;
    background-color: transparent;
}

.checkbox3:checked+label>.hamburger3>.bar2 {
    transform: rotate(-45deg);
    height: 3px;
    background-color: transparent;
}

.checkbox3:checked+label>.hamburger3>.bar4 {
    transform: rotate(-45deg);
    height: 3px;
    width: 42px;
}

main.hero {
    position: relative;
    height: 95vh;
    background: #00000069;
    background-image: url('../assets/bg_image.png');
    background-repeat: no-repeat;
    background-size: cover;
}

main.hero::after,
section.three::after,
section.five::after {
    position: absolute;
    content: '';
    top: 0;
    left: var(--sidelineLeftPadding);
    width: 2px;
    height: 100%;
    background-color: #ffff;
    z-index: 100;
}

main.hero .hero-text {
    position: absolute;
    top: 25%;
    margin-left: var(--leftPadding);
    color: #ffff;
    text-transform: uppercase;
    z-index: 10;
}

main.hero .hero-text h1:nth-child(1) {
    /* font-size: var(--FontSize); */
    font-size: 4rem;
}

main.hero .hero-text h1:nth-child(2) {
    /* font-size: calc*(var(--FontSize) - .2rem); */
    font-size: 3.7rem;
    font-weight: 400;
}

main.hero .hero-text button {
    background-color: #E31837;
    font-size: 1.3rem;
    margin-top: 2rem;
    cursor: pointer;
    /* border-radius: 5px; */
    border: none;
    padding: .8rem 1.5rem;
    font-weight: 500;
    transition: all .5s ease;
    color: white;
}

main.hero .hero-text button:hover {
    background-color: #ffff;
    color: #E31837;
}

main.hero .hero-text.desktop {
    display: block;
}

main.hero .hero-text.mobile {
    display: none;
}

main.hero .red-gradient {
    background: linear-gradient(54.22deg, rgba(227, 24, 55, 0.6) 11.01%, rgba(227, 24, 55, 0) 45.87%);
    width: 1280px;
    height: 752px;
    position: absolute;
    bottom: 0;
    right: 0;
    /* transform-style: preserve-3d; */
    transform: rotateY(180deg);
    z-index: 1;
}

.center-align {
    padding-right: 130px;
    padding-left: 170px;
}

section.one {
    background-color: #ffff;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    border-top: 1px solid #E3183799;
    border-bottom: 1px solid #E3183799;
    font-weight: 700;
}

section.one div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    padding-right: 1rem;
    border-right: 1px solid #E31837;
    height: 100%;
}

section.one div::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #E31837;
}

section.one div:hover div section.one div:first-child {
    justify-content: start;
}

section.one div:last-child {
    border: none;
}

section.one div img {
    margin-right: .5rem;
}

/* --------SECTION TWO------- */

section.two {
    padding-top: 10rem;
    position: relative;
}

section.two .part-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 3rem;
}

section.two::after,
section.six::after {
    background-color: #E31837;
    position: absolute;
    content: '';
    top: 0;
    left: var(--sidelineLeftPadding);
    width: 2px;
    height: 100%;
    z-index: -1;
}


section.two .part-1 h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    width: max-content;
}

section.two .part-1 h1::after {
    content: '';
    position: absolute;
    bottom: var(--headingUnderlineBottomDistance);
    left: 0;
    width: 70%;
    height: var(--headingUnderlineHeight);
    background-color: #E31837;
}

section.two .part-1 h1::before {
    content: '';
    position: absolute;
    bottom: var(--headingUnderlineBottomDistance);
    right: 0;
    width: 23%;
    height: var(--headingUnderlineHeight);
    background-color: #E31837;
}

section.two .part-1 .about .para-1 {
    font-weight: 300;
    width: 84%;
}

section.two .part-1 .about .para-2 {
    font-weight: 700;
    margin-top: 1rem;
}

section.two .part-1 .about button {
    padding: 1rem 1.5rem;
    border: none;
    /* border-radius: 20px; */
    margin-top: 2rem;
    background-color: #E31837;
    color: #ffff;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all .3s ease;
    /* border-radius: 5px; */
    border: 1px solid #E31837;
}

section.two .part-1 .about button:hover {
    cursor: pointer;
    background-color: #ffff;
    color: #E31837;
    border: 1px solid #E31837;
}

section.two .part-1 .img-cnt {
    position: relative;
}

section.two .part-1 .img-cnt img {
    width: 600px;
}

section.two .part-1 .img-cnt img:first-child {
    position: relative;
    z-index: 10;

}

section.two .part-1 .img-cnt img:last-child {
    position: absolute;
    z-index: 1;
    top: -25%;
    left: 5%;
    /* height: 0%; */
}

section.two .part-2 {
    background-color: #4D4D4F;
    width: 100%;
    z-index: 1000;
}

section.two .part-2 .cnt-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    width: 50%;
    padding: 2rem 2.2rem;
}

section.two .part-2 .cnt-1 .cnt:first-child,
section.two .part-2 .cnt-1 .cnt:nth-child(2) {
    border-bottom: 1px solid #ffff;
}

section.two .part-2 .cnt-1 .cnt {
    padding: 1.3rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}

section.two .part-2 .cnt-1 .cnt img {
    width: 50px;
}

section.two .part-2 .cnt-1 .cnt .text-cnt {
    display: flex;
    flex-direction: column;
}

section.two .part-2 .cnt-1 .cnt .text-cnt span:first-child {
    font-size: 1.5rem;
    font-weight: 600;
}

section.two .part-2 .cnt-1 .cnt .text-cnt span:last-child {
    font-size: 1rem;
    font-weight: 400;
}

/* ---------SECTION THREE-----------  */
section.three {
    position: relative;
    padding-bottom: 4rem;
}

section.three::after {
    background-color: #E31837;
}

section.three .heading,
section.six .heading,
section.four .heading, section.eight .heading{
    border-bottom: 1px solid #E31837;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 1rem;
}

section.three .heading h1,
section.six .heading h1,
section.four .heading h1, section.eight .heading h1 {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
    text-transform: capitalize;
    width: max-content;
}

section.three .heading h1::after,
section.six .heading h1::after,
section.four .heading h1::after, section.eight .heading h1:after {
    content: '';
    position: absolute;
    bottom: var(--headingUnderlineBottomDistance);
    left: 0;
    width: 110%;
    height: var(--headingUnderlineHeight);
    background-color: #E31837;
}

section.three .cnt {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 3rem;
    width: 100%;
}

section.three .cnt .left {
    /* display: flex;
    align-items: center;
    flex-direction: column; */
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 40%;
}

section.three .cnt .right {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

section.three .cnt .left .select {
    display: flex;
    justify-content: space-around;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3rem;
    align-items: center;
    width: 100%;
}

section.three .cnt .left .select span {
    position: relative;
    width: max-content;
}

section.three .cnt .left .select span:nth-child(2), section.three .cnt .left .select span:nth-child(3) {
    color: #231f204a;
}

section.three .cnt .left .select span:first-child:after {
    position: absolute;
    bottom: 2px;
    left: 0;
    content: '';
    background-color: #E31837;
    width: 100%;
    height: 2px;
}

section.three .cnt .left .img-cnt,
section.three .cnt .right .img-cnt {
    border: 1px solid black;

}

section.three .cnt .left .img-cnt img,
section.three .cnt .right .img-cnt img {
    width: 100%;

}

section.three .cnt button {
    width: 100%;
    background-color: #E31837;
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: .7rem 0;
    border: 1px solid #E31837;
    transition: all .3s ease;
    border-radius: 4px;
}

section.three .cnt button:hover {
    cursor: pointer;
    background-color: white;
    color: #E31837;
}

/* --------SECTION FPOUR----------- */

section.four {
    position: relative;
    height: 850px;
    overflow: hidden;
}

section.four .background {
    position: absolute;
    left: 0;
    height: 100%;
    z-index: -1;
}

section.four .background img {
    height: 100%;
}

section.four .button-cnt {
    position: absolute;
    bottom: 7%;
    left: 12%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    gap: 2rem;
}

section.four .button-cnt div:hover {
    cursor: pointer;
    z-index: 100;
}

section.four .heading {
    padding-top: 5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;

}

section.four .heading h1::after {
    width: 83%;
}

section.four .select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.2rem;
}

section.four .select div {
    position: relative;
    font-size: 1.3rem;
}

section.four .select div:first-child::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    height: var(--headingUnderlineHeight);
    width: 105%;
    background-color: #E31837;
}

section.four .select div:nth-child(2),
section.four .select div:nth-child(3) {
    color: #231f204a;
    transition: all .3s ease;
}

section.four .select div:nth-child(2):hover,
section.four .select div:nth-child(3):hover {
    color: #231F20;
    cursor: pointer;
}

section.four .slider-cnt {
    padding-left: 15rem;
    margin-top: 3rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transform: translateX(-70px);
    transition: all .3s ease-in-out;
}

section.four .slider-cnt img {
    z-index: 100;
}

/* ----------SECTION FIVE------------ */

section.five {
    position: relative;
    border-bottom: 1px solid #E31837;
    padding-bottom: 4rem;
}

section.five::after {
    background-color: #E31837;
}

section.five .heading-cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3rem 0;
    border-bottom: 1px solid #E31837;
    border-top: 1px solid #E31837;
}

section.five .heading {
    position: relative;
    width: max-content;
    /* text-align: center; */
    font-size: 3rem;
    font-weight: 700;
}

section.five .heading::after {
    content: '';
    position: absolute;
    bottom: var(--headingUnderlineBottomDistance);
    left: 0;
    width: 110%;
    height: var(--headingUnderlineHeight);
    background-color: #E31837;
    transform-origin: center;
}

section.five .sub-heading-cnt {
    text-align: center;
    padding: 1rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

section.five .sub-heading-cnt h3 {
    font-size: 1.6rem;
    font-weight: 500;
    font-family: 'Source Sans 3', sans-serif;
}

section.five .sub-heading-cnt p {
    font-weight: 400;
    font-size: .9rem;
    width: 120ch;
}

section.five .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

section.five .grid div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1.4rem;
    text-align: center;
}

section.five .grid div:nth-child(odd) {
    background-color: #ecf7e4;

    -webkit-box-shadow: inset -2px 0px 13px -1px rgba(0, 0, 0, 0.183);
    -moz-box-shadow: inset -2px 0px 13px -1px rgba(0, 0, 0, 0.183);
    box-shadow: inset -2px 0px 13px -1px rgba(0, 0, 0, 0.183);
}

section.five .grid div:nth-child(even) {
    background-color: white;
}

/* -------------SECTION SIX-----------  */
section.six {
    position: relative;
    padding-bottom: 6rem;
}

section.six .heading {
    border-bottom: none;
}

section.six .container {
    display: grid;
    /* justify-content: center;
    align-items: center; */
    grid-template-columns: 1fr 1fr;
    padding-top: 3rem;
    gap: 2rem;
}

section.six .container .form, section.popup .form {
    display: flex;
    /* justify-content: start; */
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

section.six .container .form input, section.popup .form input {
    background-color: #1e1e1e1b;
    height: 50px;
    border: none;
    outline: none;
    width: 100%;
    padding-left: 1rem;
    font-family: 'Source Sans 3', sans-serif;
}

section.six .container .form .wrapper, section.popup .form .wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

section.six .container .form .wrapper input:first-child, section.popup .form .wrapper input:first-child {
    width: 30%;
}

section.six .container .form .wrapper input:last-child, section.popup .form .wrapper input:last-child {
    width: 70%;
}

section.six .container .form button, section.popup .form button {
    border: none;
    outline: none;
    background-color: #231F20;
    color: white;
    text-align: center;
    width: 100%;
    height: 50px;
}

section.six .container .form button:hover {
    cursor: pointer;
}

section.six .right {
    width: 120%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    font-family: 'Source Sans 3', sans-serif;
    gap: 1rem;
}

section.six .right .desktop {
    display: block;
}

section.six .right .mobile {
    display: none;
}

section.six .right h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

section.six .right h3:first-child {
    margin-bottom: 0;
}

section.six .right .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

section.six .right .wrapper:first-child {
    margin-bottom: 0;
}

section.six .right .wrapper span {
    font-size: 1.2rem;
    font-weight: 600;
}

section.seven {
    position: relative;
    background-color: #4D4D4F;
    padding-bottom: 3rem;
}

section.seven .info {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: .7rem;
    color: #ffff;
}

section.seven h1 {
    text-align: center;
    font-size: 3rem;
    color: #ffff;
    padding: 3rem 0 1.5rem 0;
}

section.seven .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 315px;
}

section.seven .wrapper .cnt {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    border-right: 1px solid white;
    /* background-color: white; */
    width: 20%;
    height: 100%;
    text-align: left;
    padding-left: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

section.seven .wrapper .cnt .title {
    position: relative;
    font-size: 1.4rem;
    color: white;
    text-align: left;
    font-weight: 600;
    width: max-content;
}

section.seven .wrapper .cnt .title::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    content: '';
    width: 140%;
    background-color: #ffffff3b;
    height: 2px;
}

section.seven .wrapper .cnt .child {
    display: flex;
    flex-direction: column;
}

section.seven .wrapper .cnt .child span:first-child {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

section.seven .wrapper .cnt .child span:last-child {
    font-weight: 200;
    color: white;
    font-size: .8rem;
}

/* -------------SECTION EIGHT----------  */

section.eight {
    position: relative;
    height: 80vh;
    overflow: hidden;
    border-bottom: 1px solid #E31837;
}


section.eight .background {
    position: absolute;
    left: 0;
    z-index: -1;
}

section.eight .map-cnt {
    width: 80vw;
    /* height: 60%; */
    border: 1px solid #4d4d4f31;
    padding: 1rem;
    margin: 0 auto;
    margin-top: 4rem;
}

section.eight .map-cnt iframe {
    height: 350px;
    width: 100%;
}

section.eight .heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -----------FOOTER------------  */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #C7C8CA;
    padding: 1rem 0;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

footer .img-cnt {
    margin-bottom: 1.6rem;
}

footer ul li {
    list-style-type: none;
    margin-bottom: .6rem;
    display: flex;
    flex-direction: column;
    align-items: left;
}

footer ul li:hover {
    text-decoration: underline;
    cursor: pointer;
}

section.popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #231f2022;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 0 2rem;
    backdrop-filter: blur(8px);
    scale: 0;
    transition: all .3s ease;
}

section.popup .form {
    max-width: 400px;
    position: relative;
}

section.popup .form .close {
    position: absolute;
    top: -30px;
    right: 0;
}

section.popup .form .close:hover {
    cursor: pointer;
}

section.popup .form input {
    background-color: #1e1e1eaa;
}

section.popup .form input::placeholder {
    color: white;
}

@media screen and (max-width: 1024px) {

    main.hero::after,
    section.three::after,
    section.five::after,
    section.two::after,
    section.six::after {
        --sidelineLeftPadding: 80px
    }

    .center-align {
        padding-right: 60px;
        padding-left: 100px;
    }

    nav .desktop ul li {
        font-size: .7rem;
    }

    main.hero .hero-text {
        --leftPadding: 100px
    }

    main.hero .hero-text h1:nth-child(1) {
        font-size: 3rem;
    }

    main.hero .hero-text h1:nth-child(2) {
        /* font-size: calc*(var(--FontSize) - .2rem); */
        font-size: 2.8rem;
        font-weight: 400;
    }

    section.two .part-1 h1 {
        font-size: 1rem;
    }

    section.two {
        padding-top: 4rem;
    }

    section.two .part-1 .img-cnt img {
        width: 500px;
    }

    section.eight .map-cnt iframe {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {

    nav .desktop {
        display: none;
    }

    nav .mobile {
        display: flex;
    }

    nav .menu-icon {
        display: block;
    }

    nav .mobile img {
        width: 35%;
    }

    section.five .sub-heading-cnt p {
        width: 65ch;
    }

    .center-align {
        padding-right: 20px;
        padding-left: 60px;
    }

    main.hero::after,
    section.three::after,
    section.five::after,
    section.two::after,
    section.six::after {
        --sidelineLeftPadding: 40px;
        width: .5px;
    }

    main.hero .hero-text {
        --leftPadding: 70px;
    }

    main.hero .hero-text.desktop {
        display: block;
    }

    main.hero .hero-text.mobile {
        display: none;
    }

    /* main.hero .hero-text.mobile h1:last-child */

    main.hero .red-gradient {
        width: 600px;
    }

    main.hero .hero-text h1:nth-child(1) {
        font-size: 2.6rem;
    }

    main.hero .hero-text h1:nth-child(2) {
        font-size: 2.5rem;
    }

    section.two .part-1 {
        flex-direction: column;
    }

    section.two .part-1 h1 {
        font-size: 2.6rem;
    }

    section.two .part-1 .about .para-1 {
        font-size: .9rem;
    }

    section.two .part-1 .img-cnt img {
        width: 300px;
    }

    section.two .part-1 .about button {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    section.two .part-1 .img-cnt img:last-child {
        width: 390px;
        height: 280px;
        top: -46px;
    }

    section.two .part-1 .img-cnt img:first-child {
        width: 300px;
        height: 200px;
        top: 8px;
        left: -20px;
    }

    section.two .part-2 .cnt-1 {
        padding: 0;
        width: 100%;
        padding: 1.2rem 1rem;
        gap: 0;
    }

    section.two .part-2 .cnt-1 .cnt {
        border-right: 1px solid #fff;
        justify-content: space-evenly;
    }

    section.two .part-2 .cnt-1 .cnt:nth-child(2),
    section.two .part-2 .cnt-1 .cnt:nth-child(4) {
        border-right: none;
    }

    section.two .part-2 .center-align {
        padding: 0;
    }

    section.two .part-2 .cnt-1 .cnt .text-cnt span:first-child {
        font-size: 1.2rem;

    }

    section.two .part-2 .cnt-1 .cnt .text-cnt span:last-child {
        font-size: .7rem;
    }

    section.four .background {
        height: 150%;
    }

    section.four .heading {
        background-color: white;
    }

    section.four .select {
        background-color: white;
        width: 100%;
        padding: 1rem;
        justify-content: space-evenly;
    }

    section.four .slider-cnt img {
        width: 500px;
    }

    section.four .slider-cnt {
        margin-top: 6rem;
        padding-left: 8rem;
    }

    section.four {
        height: 770px;
    }

    section.four .button-cnt {
        bottom: 15%;
        left: 15%;
    }

    section.six .right .mobile {
        display: block;
    }

    section.six .right .desktop {
        display: none;
    }

    section.six .right {
        width: 100%;
    }

    section.six .right h3 {
        font-size: 1.5rem;
    }

    section.six .right p {
        width: 35ch;
        font-size: .9rem;
    }

    section.seven .wrapper.center-align {
        padding: 0 1rem;
    }

    section.seven .wrapper .cnt {
        padding: 0;
    }

    section.seven .wrapper .cnt:last-child {
        border-right: none;
    }

    section.eight .map-cnt iframe {
        height: 280px;
    }
}

@media screen and (max-width: 480px) {

    nav .desktop {
        display: none;
    }

    nav .menu-icon {
        display: block;
    }

    nav {
        flex-direction: column;
    }

    main.hero {
        height: 100vh;
    }

    nav .mobile img {
        width: 50%;
    }

    main.hero .hero-text {
        --leftPadding: 50px;
    }

    main.hero .hero-text.desktop {
        display: none;
    }

    main.hero .hero-text.mobile {
        display: block;
        font-size: 1rem;
        text-align: left;
    }

    main.hero .hero-text.mobile h1:first-child {
        font-size: 1.8rem;
        line-height: 2.3rem;
    }

    main.hero .hero-text.mobile h1:first-child span {
        font-size: 2.9rem;
    }

    main.hero .hero-text.mobile h1:nth-child(2) {
        font-size: 1.08rem;
        margin-top: .4rem;
    }

    main.hero .hero-text button {
        font-size: 1rem;
    }

    section.one {
        display: block;
        padding: 0;
    }

    section.one div {
        padding: .5rem;
        font-size: .7rem;
    }

    section.one div img {
        width: 15px;
    }

    section.one div:first-child,
    section.one div:nth-child(2) {
        width: 50%;
        /* flex: 0; */
    }

    section.one div:first-child {
        float: left;
    }

    section.one div:last-child {
        width: 100%;
        border-top: 1px solid #E31837;
        border-right: 1px solid #E31837;
    }

    section.two .part-1 .img-cnt img:last-child {
        width: 290px;
        height: 180px;
        top: 20px;
    }

    section.two .part-1 .img-cnt img:first-child {
        width: 300px;
        height: 200px;
        top: 40px;
        left: -20px;
    }

    section.three .cnt {
        flex-direction: column;
    }

    section.three .cnt .left {
        gap: 1rem;
    }

    section.three .cnt .left,
    section.three .cnt .right {
        width: 100%;
        margin-bottom: 2rem;
    }

    section.three .cnt .right .img-cnt {
        margin-bottom: 1rem;
    }

    section.four {
        height: 750px;
    }

    section.four .background {
        left: -15px;
    }

    /* section.four .slider-cnt {
        margin-top: 6rem;
        padding-left: 8rem;
    } */

    section.four .slider-cnt img {
        height: 200px;
    }

    section.four .button-cnt {
        bottom: 20%;
        left: 30%;
    }

    section.four .button-cnt img {
        width: 50px;
    }

    section.seven .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: auto;
        padding-left: 0;
        padding-right: 0;
    }

    section.seven .wrapper .cnt {
        width: 100%;
        align-items: center;
        padding: .5rem;
    }

    section.seven .wrapper .cnt:first-child,
    section.seven .wrapper .cnt:nth-child(2) {
        border-bottom: 1px solid white;
    }

    section.seven .wrapper .cnt:nth-child(2) {
        border-right: none;
    }

    section.seven .wrapper .cnt .child {
        align-items: center;
    }

    section.five .grid {
        position: relative;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0;
        z-index: 150;
    }

    section.five .grid div:last-child {
        display: none;
    }

    section.five .sub-heading-cnt p {
        font-size: .9rem;
        width: 38ch;
    }

    section.six .container {
        grid-template-columns: 1fr;
    }

    section.six .right {
        width: 100%;
    }

    section.six .right .desktop {
        display: none;
    }

    section.six .right .mobile {
        display: block;
        font-size: 2rem;
    }

    section.six .right h3 {
        font-size: 1.3rem;
    }

    section.six .right p {
        font-size: .9rem;
        margin-bottom: 1rem;
    }

    section.eight .background {
        left: -170px;
    }

    section.eight .map-cnt {
        margin-top: 2rem;
    }

    section.eight .map-cnt iframe {
        height: 300px;
    }


    footer.center-align {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
        font-size: .7rem;
    }

    footer img {
        width: 350px;
    }
}

@media screen and (max-width: 320px) {

    section.five .sub-heading-cnt p {
        width: 26ch;
    }

    section.five .grid div {
        padding: .9rem;
    }
}