* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: primary;
    font-size: var(--small-font-size);
}

@font-face {
    font-family: primary;
    src: url(./fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf);
}

:root {

    --primary-color: #9f3353;

    --secondary-color: #ed8639;

    --trinary-color: #ffffff;

    /* Font Sizes */

    --enormous-font-size: 10vw;

    --huge-font-size: 5vw;

    --big-font-size: 3vw;

    --medium-font-size: 2.5vw;

    --regular-font-size: 2vw;

    --intermediate-font-size: 1.3vw;

    --small-font-size: 1vw;

    --tiny-font-size: 0.6vw;

}

@media (min-width:1025px) and (max-width:1434px) {
    
    :root {

        --enormous-font-size: 11vw;

        --huge-font-size: 6vw;

        --big-font-size: 4vw;

        --medium-font-size: 3.5vw;

        --regular-font-size: 2.8vw;

        --intermediate-font-size: 1.7vw;

        --small-font-size: 1.3vw;

        --tiny-font-size: 1vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    
    :root {

        --enormous-font-size: 12vw;

        --huge-font-size: 7vw;

        --big-font-size: 5vw;

        --medium-font-size: 4.5vw;

        --regular-font-size: 3.7vw;

        --intermediate-font-size: 2.5vw;

        --small-font-size: 1.8vw;

        --tiny-font-size: 1.4vw;

    }
    
}

@media (min-width:500px) and (max-width:768px) {
        
    :root {

        --enormous-font-size: 15vw;

        --huge-font-size: 8vw;

        --big-font-size: 6vw;

        --medium-font-size: 5.5vw;

        --regular-font-size: 4.7vw;

        --intermediate-font-size: 3.5vw;

        --small-font-size: 2.6vw;

        --tiny-font-size: 2.2vw;

    }
    
}

@media (max-width:500px) {
    
    :root {

        --enormous-font-size: 17vw;

        --huge-font-size: 9vw;

        --big-font-size: 7vw;

        --medium-font-size: 6.5vw;

        --regular-font-size: 5.7vw;

        --intermediate-font-size: 4.5vw;

        --small-font-size: 3.6vw;

        --tiny-font-size: 2.5vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    p {
        line-height: 5vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    p {
        line-height: 6vw;
    }
}

@media (max-width:500px) {
    p {
        line-height: 7vw;
    }
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}




/* ////////////////////////////////////////////////////////////////////////     NAV     */




nav {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 5%;
    position: fixed;
    top: 0px;
    z-index: 100;transition: all ease-in-out .5s;
}

@media(max-width:500px) {
    nav {
        height: 120px;
    }
}

nav > a {
    max-width: 10%;
    height: 100%;
    position: relative;
}

nav > a > img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

nav > div.nav-btns {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 50px;
}

@media (max-width:1025px) {
    nav > div.nav-btns {
        display: none;
    }
}

nav > div.nav-btns a {
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--trinary-color);
    text-decoration: none;
    position: relative;
}

nav > div.nav-btns a::after {
    content: '';
    width: 0%;
    height: 1px;
    background-color: var(--trinary-color);
    position: absolute;
    top: 70%;
    left: 50%;
    transition: all ease-in-out .5s;
}

nav.scrolled > div.nav-btns a::after {
    top: 100%;
}

nav > div.nav-btns a:hover::after {
    width: 100%;
    left: 0%;
}

nav.scrolled {
    background-color: var(--primary-color);
    height: 100px;
}

nav > button {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    display: none;
    transition: all ease-in-out .5s;
}

@media (max-width:1025px) {
    nav > button {
        display: block;
    }
}

nav > button svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
    transition: all ease-in-out .5s;
}

nav.scrolled > button svg {
    fill: var(--trinary-color);
}

.drawer {
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    position: fixed;
    top: 0%;
    right: -100%;
    z-index: 101;
    padding: 30px 5% 5% 5%;
    display: none;
    transition: all ease-in-out .5s;
}

@media (max-width:1025px) {
    .drawer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
}

.drawer.active {
    right: 0%;
}

.drawer > .header {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

nav.scrolled ~ .drawer > .header {
    align-items: start;
}

.drawer > .header img {
    width: auto;
    height: 150px;
    object-fit: cover;
}

@media(max-width:500px) {
    .drawer > .header img {
        height: 70px;
    }
}

.drawer > .header svg {
    width: 50px;
    height: 50px;
    fill: var(--trinary-color);
}

.drawer ul {
    width: 100%;
    height: auto;
    list-style: none;
}

.drawer ul li {
    margin-top: 20px;
}

.drawer ul li a {
    text-decoration: none;
    color: var(--trinary-color);
}

@media (max-width:1025px) {
    .drawer ul li a {
        font-size: var(--intermediate-font-size);
    }
}

@media (max-width:768px) {
    .drawer ul li a {
        font-size: var(--medium-font-size);
    }
}

.drawer > .footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

@media (max-width:768px) {
    .drawer > .footer {
        margin-bottom: 80px;
    }
}

.drawer > .footer a {
    width: 50px;
    height: 50px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.199);
    border-radius: 16px;
}

.drawer > .footer a svg {
    width: 100%;
    height: 100%;
    fill: white;
}


/* ////////////////////////////////////////////////////////////////////////     HOME PAGE   */


/* ////////////////// */
/* ///// HOME - INTRO */
/* ////////////////// */


.index-body section {
    width: 100%;
    height: auto;
}

.index-body section .intro {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

.index-body section .intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
    position: absolute;
    top: 0px;
    left: 0px;
}

.index-body section .intro .dets {
    width: 60%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 5%;
}

@media (max-width:1443px) {
    .index-body section .intro .dets {
        width: 80%;
        margin-top: 10%;
    }
}

@media (max-width:1025px) {
    .index-body section .intro .dets {
        width: 100%;
        margin-top: 20%;
    }
}

.index-body section .intro .dets h1 {
    text-align: center;
    font-size: var(--big-font-size);
    color: var(--trinary-color);
}

.index-body section .intro .dets p {
    color: white;
    margin-top: 30px;
    text-align: center;
}

.index-body section .intro .dets a {
    width: fit-content;
    height: auto;
    margin-top: 10px;
    text-decoration: none;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--trinary-color);
    transition: all ease-in-out .5s;
    border-radius: 50px;
}

.index-body section .intro .dets a:hover {
    background-color: var(--trinary-color);
    color: var(--primary-color);
}


/* ///////////////////// */
/* ///// HOME - ABOUT US */
/* ///////////////////// */


.index-body section .index-con {
    width: 100%;
    height: auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.index-body section .index-con > .dets {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.index-body section .index-con > .dets h2 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
}

.index-body section .index-con > .dets p {
    width: 70%;
    text-align: center;
    margin-top: 30px;
}

@media (max-width:1025px) {
    .index-body section .index-con > .dets p {
        width: 90%;
    }
}


/* ///////////////////////// */
/* ///// HOME - ABOUT US CON */
/* ///////////////////////// */


.index-body section .about-us-con {
    padding: 5% 0%;
}

.index-body section .about-us-con .gallery {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.index-body section .about-us-con .gallery img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    filter: brightness(70%);
}

.index-body section .about-us-con .gallery img:first-child {
    border-radius: 0px 16px 16px 0px;
}

.index-body section .about-us-con .gallery img:last-child {
    border-radius: 16px 0px 0px 16px;
}

.index-body section .about-us-con .dets.second {
    margin-top: 30px;
}

.index-body section .about-us-con .dets.second h3 {
    width: 90%;
    text-align: center;
    font-size: var(--medium-font-size);
}

.index-body section .about-us-con .counters {
    width: 100%;
    height: auto;
    padding: 5%;
    padding-bottom: 0%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

@media (max-width:1025px) {
    .index-body section .about-us-con .counters {
        flex-wrap: wrap;
    }
}

.index-body section .about-us-con .counters > div {
    width: 15%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 16px;
    padding: 20px;
    background-color: rgb(245, 245, 245);
}

@media (max-width:1443px) {
    .index-body section .about-us-con .counters > div {
        width: 25%;
    }
}

@media (max-width:1025px) {
    .index-body section .about-us-con .counters > div {
        width: calc(50% - 10px);
    }
}

@media (max-width:500px) {
    .index-body section .about-us-con .counters > div {
        width: 100%;
    }
}

.index-body section .about-us-con .counters > div p {
    opacity: .8;
}

.index-body section .about-us-con .counters > div span {
    font-size: var(--big-font-size);
    font-weight: bold;
}


/* /////////////////////////// */
/* ///// HOME - OUR VISION CON */
/* /////////////////////////// */


.index-body section .vision-con {
    background-color: rgb(245, 245, 245);
}

.index-body section .vision-con .dets .gallery {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

@media (max-width:1025px) {
    .index-body section .vision-con .dets .gallery {
        flex-direction: column;
    }
}

@media (max-width:500px) {
    .index-body section .vision-con .dets .gallery {
        gap: 20px;
    }
}

.index-body section .vision-con .dets .gallery img {
    width: 300px;
    height: 600px;
    object-fit: cover;
    filter: brightness(70%);
    border-radius: 150px;
}

@media (max-width:1443px) {
    .index-body section .vision-con .dets .gallery img {
        width: 250px;
        border-radius: 125px;
    }
}

@media (max-width:1025px) {
    .index-body section .vision-con .dets .gallery img {
        width: 100%;
        height: 250px;
        border-radius: 125px;
    }
}

@media (max-width:500px) {
    .index-body section .vision-con .dets .gallery img {
        width: 100%;
        height: 150px;
        border-radius: 75px;
    }
}


/* /////////////////////// */
/* ///// HOME - WHY US CON */
/* /////////////////////// */


.index-body section .why-us-con .grid {
    width: 70%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width:1443px) {
    .index-body section .why-us-con .grid {
        width: 100%;
    }
}

@media (max-width:1025px) {
    .index-body section .why-us-con .grid {
        width: 100%;
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:500px) {
    .index-body section .why-us-con .grid {
        width: 100%;
        grid-template-columns: repeat(1,1fr);
    }
}

.index-body section .why-us-con .grid > div {
    height: auto;
    padding: 40px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background-color: rgb(245, 245, 245);
}

.index-body section .why-us-con .grid > div > div svg {
    width: 70px;
    height: 70px;
    stroke: black;
}

.index-body section .why-us-con .grid > div > div h3 {
    font-size: var(--intermediate-font-size);
    margin-top: 20px;
}

.index-body section .why-us-con .grid > div p {
    margin-top: 20px;
    opacity: .8;
}


/* ///////////////////////// */
/* ///// HOME - SERVICES CON */
/* ///////////////////////// */


.index-body section .services-con .services-slider {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.index-body section .services-con .services-slider .keen-slider__slide {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-radius: 18px;
    padding: 10px;
    background-color: rgb(245, 245, 245);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.014);
}

.index-body section .services-con .services-slider .keen-slider__slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(60%);
    border-radius: 16px;
}

.index-body section .services-con .services-slider .keen-slider__slide h3 {
    font-size: var(--intermediate-font-size);
    color: black;
    z-index: 5;
}

.index-body section .services-con .services-slider .keen-slider__slide p {
    opacity: .8;
}


/* //////////////////////// */
/* ///// HOME - BRANCHS CON */
/* //////////////////////// */


/* .index-body section .branchs-con .dual-branchs {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 30px;
}

.index-body section .branchs-con .dual-branchs > div {
    width: 50%;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
    padding: 5%;
}

.index-body section .branchs-con .dual-branchs > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    border-radius: 16px;
    position: absolute;
    top: 0%;
    left: 0%;
}

.index-body section .branchs-con .dual-branchs > div h3 {
    font-size: var(--big-font-size);
    color: var(--trinary-color);
    z-index: 3;
}

.index-body section .branchs-con .dual-branchs > div > div {
    z-index: 3;
}

.index-body section .branchs-con .dual-branchs > div > div p {
    color: var(--trinary-color);
}

.index-body section .branchs-con .dual-branchs > div > div a {
    width: fit-content;
    height: auto;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--trinary-color);
    text-decoration: none;
    display: block;
    margin-top: 20px;
    transition: all ease-in-out .5s;
    border-radius: 50px;
}

.index-body section .branchs-con .dual-branchs > div > div a:hover {
    background-color: var(--trinary-color);
    color: var(--primary-color);
} */


/* /////////////////////////// */
/* ///// HOME - CONTACT US CON */
/* /////////////////////////// */


.index-body section .contact-us-con {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 5%;
}

@media (max-width:1025px) {
    .index-body section .contact-us-con {
        flex-direction: column;
        margin-top: 30px;
    }
}

.index-body section .contact-us-con > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1025px) {
    .index-body section .contact-us-con > div {
        width: 100%;
    }
}

.index-body section .contact-us-con > div > span {
    opacity: .7;
}

.index-body section .contact-us-con > div h2 {
    font-size: var(--big-font-size);
}

.index-body section .contact-us-con > div p {
    margin-top: 30px;
}

.index-body section .contact-us-con > div > div {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 50px;
}

.index-body section .contact-us-con > div > div > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.index-body section .contact-us-con > div > div > div > span {
    opacity: .7;
}

.index-body section .contact-us-con > div > div > div > p {
    line-height: unset;
    margin-top: 0px;
}

.index-body section .contact-us-con > div > div > div > div {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.index-body section .contact-us-con > div > div > div > div a {
    width: 50px;
    height: 50px;
}

.index-body section .contact-us-con > div > div > div > div a svg {
    width: 30px;
    height: 30px;
}

.index-body section .contact-us-con form {
    width: 50%;
    padding: 5%;
    background-color: #fafafa;
    border-radius: 16px;
}

@media (max-width:1025px) {
    .index-body section .contact-us-con form {
        width: 100%;
    }
}

.index-body section .contact-us-con form h3 {
    font-size: var(--regular-font-size);
}

.index-body section .contact-us-con form p {
    margin-top: 20px;
}

.index-body section .contact-us-con form input {
    width: 100%;
    height: auto;
    padding: 20px;
    border: none;
    border-bottom: 1px solid #1e1e1e42;
    outline: none;
    background-color: transparent;
    margin-top: 20px;
    transition: all linear .5s;
}

.index-body section .contact-us-con form input:hover {
    border-bottom: 1px solid var(--primary-color);
}

.index-body section .contact-us-con form textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
    border: none;
    border-bottom: 1px solid #1e1e1e42;
    outline: none;
    background-color: transparent;
    margin-top: 20px;
    transition: all linear .5s;
}

.index-body section .contact-us-con form textarea:hover {
    border-bottom: 1px solid var(--primary-color);
}

.index-body section .contact-us-con form input[type=submit] {
    width: fit-content;
    height: auto;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    border: 1px solid #1e1e1e42;
    cursor: pointer;
}

.index-body section .contact-us-con form input[type=submit]:hover {
    background-color: var(--trinary-color);
    color: var(--primary-color);
}


/* ///////////////////////// */
/* ///// HOME - PARTNERS CON */
/* ///////////////////////// */


.index-body section .partners-con {
    padding: 5% 0%;
}

.index-body section .partners-con .partners-marque {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.356);
    margin-top: 50px;
}

.index-body section .partners-con .partners-marque img {
    height: 300px;
    object-fit: cover;
    margin: 0 20px 50px;
    vertical-align: middle;
}

@media (max-width:1025px) {
    .index-body section .partners-con .partners-marque img {
        height: 200px;
    }
}

@media (max-width:500px) {
    .index-body section .partners-con .partners-marque img {
        height: 150px;
    }
}

.index-body section .partners-con .partners-marque .marquee-inner {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* only move half, because content is doubled */
}




/* ////////////////////////////////////////////////////////////////////////     FOOTER   */




footer {
    width: 100%;
    height: auto;
    padding: 5%;
    padding-bottom: 40px;
    background-color: rgb(245, 245, 245);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer > img {
    width: 15%;
    height: auto;
    object-fit: cover;
}

@media (max-width:1443px) {
    footer > img {
        width: 30%;
    }
}

@media (max-width:1025px) {
    footer > img {
        width: 30%;
    }
}

@media (max-width:768px) {
    footer > img {
        width: 50%;
    }
}

@media (max-width:500px) {
    footer > img {
        width: 70%;
    }
}

footer > hr {
    width: 50%;
    height: 1px;
    background-color: white;
}

footer > div.ql,
footer > div.socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

@media (max-width:768px) {
    footer > div.ql,
    footer > div.socials {
        gap: 30px;
    }
}

@media (max-width:500px) {
    footer > div.ql {
        gap: 30px;
        flex-direction: column;
    }
}

footer > div.ql a {
    opacity: .8;
    transition: all ease-in-out .5s;
    text-decoration: none;
    color: black;
    white-space: nowrap;
}

footer > div.ql a:hover {
    opacity: 1;
}

footer > div.socials a {
    width: 60px;
    height: 60px;
    padding: 12px;
    background-color: var(--primary-color);
    border-radius: 16px;
}

footer > div.socials a svg {
    width: 100%;
    height: 100%;
    fill: var(--trinary-color);
}

footer > p {
    margin-top: 20px;
}

footer > p a {
    color: black;
}














