@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    border: none;
    outline: none;
    text-decoration: none;
    list-style-type: none;
    /* scroll-behavior: smooth; */
}

:root {
    --f-color: #13b8be;
    --s-color: #2c2d31;
    --t-color: #FFFFFF;
    --border-color: #dacece;
    --para-color: #494949;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    z-index: 11;
    /* background: yellow; */
}

.header > a {
    font-size: 3rem;
    color: var(--s-color);
    font-weight: 700;
    transition: .3s;
}

.header > a:hover {
    opacity: .6;
}

.header .list_container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.list_container li {
    width: 90px;
    text-align: center;
    position: relative;
    margin-right: 1rem;
}
.list_container li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: var(--f-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s;
}

.list_container li:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.list_container li:hover a {
    font-weight: 600;
    color: var(--f-color);
}

.header i {
    font-size: 20px;
    cursor: pointer;
    /* display: none; */
}



.list_container a {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: var(--s-color);
    font-weight: 550;
    transition: ease-in-out .3s;
}

.list_container #active a {
    color: var(--f-color);
}

/* -----SECTION DESIGN START-----  */

section {
    width: 100%;
    padding: 0rem 9%;
    margin: auto;
}

section.home {
    min-height: 100vh;
    margin-top: 8rem;
}

section.home .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    width: 100%;
    height: 100%;
    /* background: red; */
}


section.home .content {
    width: 50%;
    height: auto;
}

section.home .content h1 {
	font-size: 7rem;
	font-weight: 800;
	line-height: 9rem;
}

.content .detail {
    margin: 2rem 0;
}

.content .detail p {
    font-size: 2rem;
    line-height: 3rem;
    font-style: italic;
}

.content > p {
    font-size: 2rem;
    font-weight: 550;
    color: var(--para-color)
}

.content p a {
    color: var(--f-color);
    font-weight: 600;
}

.content p a:hover {
    text-decoration: underline;
}

.content .btn_bx {
    margin-top: 3rem;
}
.content .btn_bx a {
    display: inline-block;
    font-size: 2rem;
    padding: 1.2rem 4rem;
    background: var(--s-color);
    border-radius: 5rem;
    color: var(--t-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: ease .3s;
}

.content .btn_bx a:hover {
    background: var(--f-color);
    cursor: pointer;
}

section.home .wrapper .image_bx {
    width: 50%;
}
section.home .wrapper .image_bx img {
    width: 100%;
}

/* --- QUALITY SECTION DESIGN ---  */

section.quality {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section.quality .box1, .box2, .box3 {
    padding: 1rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    width: 100%;
    max-width: 415px;
    min-width: 300px;
}

section.quality h1 {
    font-size: 3rem;
    line-height: 5rem;
    color: var(--t-color);
}

section.quality p {
    text-align: center;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--t-color);
}

section.quality .box1 {
    background: var(--s-color);
}
section.quality .box2 {
    background: #00f4fc;
}
section.quality .box3 {
    background: var(--f-color);
}

/* --- ABOUT SECTION DESING --- */

section.about {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about .main_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    min-width: 300px;
}

.main_container i {
    font-size: 7rem;
    margin-bottom: 1rem;
}

.main_container h1 {
    line-height: 7rem;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

section.about .details_bx {
    margin: 0 0 3rem 0;
}

section.about p {
    text-align: center;
    font-size: 1.5rem;
}

section.about .btn_bx button {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    background: transparent;
    transition: ease .3s;
    margin-bottom: 30px;
}

section.about .btn_bx button:hover {
    background: var(--f-color);
    border: 2px solid var(--f-color);
    color: var(--t-color);
    box-shadow:
        0px 0px 10px var(--f-color),
        0px 0px 30px var(--f-color),
        0px 0px 40px var(--f-color),
        0px 0px 50px var(--f-color);
}

section.image_details {
    min-height: 70vh;
    /* background: red; */

}

.about_container {
    overflow: hidden;
}
.about_container .img_bx {
    width: 50%;
    max-width: 700px;
    height: 501px;
    float: left;
}

.about_container .img_bx img {
    width: 100%;
    height: 100%;
}

.about_container .details_bx {
    overflow: hidden;
    width: 50%;
    max-width: 700px;
    height: 501px;
    padding: 5%;
    background: var(--f-color)
}

.about_container .details_bx h1 {
    font-size: 3rem;
    color: var(--t-color);
    margin-bottom: 3rem;
}

.about_container .details_bx p {
    font-size: 1.5rem;
    color: var(--t-color);
}

section.services {
    min-height: 94vh;
    margin-top: 2rem;
}

.service_container .heading_text {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    margin-bottom: 3rem 0;

}
.service_container .heading_text h1 {
    font-size: 4rem;
    margin: 1rem 0;
    font-weight: 800;
}

.service_container .heading_text p {
    font-size: 1.5rem;
    text-align: center;
}

.services .card_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    grid-template-rows: repeat(2, 300px);
    place-content: center;
    grid-gap: 2rem;

}

.card_container .card {
    /* background: var(--f-color); */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.logo_box {
    width: 85px;
    height: 85px;
    background: var(--f-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

i {
    font-size: 50px;
}

/* .card_container .card .logo_box {
    width: 50px;
    height: 50px;
} */


.card_container .card h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card_container .card p {
    font-size: 1.5rem;
    text-align: center;
}

.services .button_container {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .button_container button {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--f-color);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    font-weight: 500;
    transition: ease .3s;
}
.services .button_container button:hover {
    background: var(--f-color);
    cursor: pointer;
    color: var(--t-color);
}

section.meting {
    padding: 50px 0;
    background: rgba(216, 213, 213, 0.5);
}

.meting .content {
    width: 50%;
    max-width: 700px;
    height: 501px;
    padding-bottom: 2rem;
}

.meting .content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.meting .content p:first-of-type {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.meting .content p:last-of-type {
    font-size: 1.5rem;
    margin: 2rem 0;
}

.meting .content button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--f-color);
    color: var(--t-color);
    transition: ease .3s;
    /* margin-top: 2rem; */
}

.meting .content button:hover {
    cursor: pointer;
    color: var(--border-color);
}

.meting .image_box {
    width: 50%;
    max-width: 700px;
    height: 501px;
    overflow: hidden;
}

.meting .image_box img {
    width: 100%;
    height: 100%;
}

.meting .content {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem;
    background: #f1f1f1;
}


.get_knoledge {
    padding: 5rem 0;
    background: var(--f-color);
    padding: 1rem 9%;
    display: flex;
    column-gap: 20px;
}

.get_knoledge .know_box {
    width: 70%;
}

.get_knoledge .know_box h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--t-color);
    margin-bottom: 2rem;
}
.get_knoledge .know_box p {
    font-size: 1.5rem;
    color: var(--t-color);
}

.get_knoledge .btn_bx {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get_knoledge .btn_bx a {
    display: inline-block;
    padding: 1.2rem 3rem;
    color: var(--f-color);
    background: var(--t-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 8rem;
    transition: .3s;
}

.get_knoledge .btn_bx a:hover {
    background: var(--f-color);
    color: var(--t-color);
    border: 2px solid var(--t-color);
}

section.last {
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


section.last .heading_container h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;

}
section.last .heading_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.last .heading_container p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

section.last .btn_box {
    margin: 2rem 0 4rem 0;
}

section.last .btn_box a {
    display: inline-block;
    padding: 1.2rem 3rem;
    color: var(--t-color);
    background: var(--f-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 8rem;
    transition: ease .5s;
}

section.last .btn_box a:hover {
    background: var(--para-color);
    color: var(--t-color);
    border: 2px solid var(--f-color);
}

@media only screen and (max-width: 1399.98px) {
    section.home {
        min-height: 66vh;
    }

    section.quality .box1, .box2, .box3 { 
        max-width: 380px;
    }

    section.quality {
	    background: rgba(216, 213, 213, 0.5);
    }

    section.about {
        min-height: 64vh;
    }

    section.image_details {
        min-height: 70vh;
        background: rgba(216, 213, 213, 0.5);
        padding-top: 70px;
    }

    .services .card_container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 365px));
    }


}

@media only screen and (max-width: 1199.98px) {
    section.quality {
	    /* background: rgba(216, 213, 213, 0.5); */
        padding: 20px 0;
        margin: 10px 0;
    }
}
@media only screen and (max-width: 997.98px) {
     section.home {
        min-height: 55vh;
    }

    section.home .content h1 {
        font-size: 4rem;
        line-height: 6rem;
    }
    .meting .content {
        float: none;
        width: 100%;
        max-width: none;
    }
    section.meting {
        display: flex;
        flex-direction: column-reverse;
        padding: 50px 9%;
    }
    .meting .image_box {
        width: 100%;
        max-width: none;
    }   

    .about_container .img_bx {
        width: 100%;
        max-width: none;
        float: none;
    }
    .about_container .details_bx {
        width: 100%;
        max-width: none;
    }
}

@media only screen and (max-width: 767.98px) {
    section.home .wrapper{
        flex-direction: column-reverse;
    }
    section.home .content {
        width: 100%;
        height: auto;
        text-align: center;
    }
    section.home .content h1 {
        font-size: 4rem;
        line-height: 5rem;
        margin-top: 3rem;
    }
    section.home .wrapper .image_bx {
        width: 70%;
    }
    .get_knoledge {
        gap: 20px;
        flex-direction: column;
    }    
    .get_knoledge .know_box {
        width: 100%;
        text-align: center;
    }
    .get_knoledge .btn_bx {
        width: 100%;
    }
    .header > a {
        font-size: 2rem;
    }
    .list_container a {
        font-size: 1.5rem;
    }
    .list_container li {
        width: 82px;
    }
    .list_container li::before {
        height: 1.5px;
    }
}