    /* == == == == FONTS == == == == */

@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    /* == == == == VARIABLES == == == == */

:root {
    /* Color Palette */
    --c-primary-l:  #FFFF33;
    --c-primary:    #FCFC05;
    --c-primary-d:  #CCCC00;
    --c-secondary-l:#4D2EE5;
    --c-secondary:  #2404C2;
    --c-secondary-d:#1A0099;
    --c-tertiary-l: #21A63C;
    --c-tertiary:   #06771D;
    --c-tertiary-d: #005912;
    --c-dark-l:     #2B2929;
    --c-dark:       #121212;
    --c-dark-d:     #0D0B0B;
    --c-grey-l:     #cccccc;
    --c-grey:       #353535;
    --c-grey-d:     #0F0E0E;
    --c-light-l:    #FFFFFF;
    --c-light:      #F2F2F2;
    --c-light-d:    #E6E6E6;

    /* Font Family */
    --ff-display: "Ephesis", cursive;
    --ff-serif: "Noto Serif", serif;
    --ff-s-serif: "Poppins", sans-serif;

    /* Font Size */
    --fs-big: 42px;
    --fs-h1: 34px;
    --fs-h2: 30px;
    --fs-h3: 26px;
    --fs-h4: 22px;
    --fs-h5: 18px;
    --fs-par: 16px;
    --fs-small: 14px;
    --fs-smaller: 12px;
}

    /* == == == == GLOBAL == == == == */

* {
    color: var(--c-dark);
    font-family: var(--ff-s-serif);
    margin: 0;
    padding: 0;
    font-size: var(--fs-par);
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {background-color: var(--c-light);}
ul {list-style: none;}
a {text-decoration: none;}

.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

    /* == == == == SPLASH SCREEN == == == == */

#intro {
    background-color: var(--c-primary);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: 1s;
}

#logo_splash {
    top: 30%;
    position: absolute;
}

.logo {
    opacity: 0;
    font-family: var(--ff-display);
    font-size: var(--fs-big);
    bottom: -20px;
    position: relative;
    display: flex;
    align-items: center;
}

.logo.active {
    opacity: 1;
    bottom: 0;
    transition: ease-in-out 0.5s;
}

.logo.fade {
    opacity: 0;
    bottom: 150px;
    transition: ease-in-out 0.5s;
}

.logo img {
    margin-right: 20px;
    width: 70px;
    height: 70px;
}

#slogan {
    font-family: var(--ff-serif);
    margin-top: 10px;
    font-size: var(--fs-h5);
}

    /* == == == == Whatsapp Fixed Button == == == == */

#whatsapp a {
    position: fixed;
    transform: all .5s ease;
    background-color: #25D366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    border-right: none;
    padding-top: 7px;
    bottom: 50px;
    left: 50px;
    border: 0;
    z-index: 100;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

#whatsapp a:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    -webkit-animation: pulse-border 1200ms ease-out infinite;
    animation: pulse-border 1200ms ease-out infinite;
}

#whatsapp a:focus {
    border: none;
    outline: none;
}

#whatsapp a:hover {transform: scale(1.1);}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#whatsapp i {
    color: var(--c-dark);
    font-size: var(--fs-h1);
}

    /* == == == == HEADER == == == == */

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    transition: .6s;
    letter-spacing: 1px;
}

header.sticky {background-color: var(--c-dark);}
nav { height: 70px;}

#nav_data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav_logo {
    display: inline-flex;
    align-items: center;
    transition: .6s;
}

#nav_logo img {
    width: 65px;
    height: 65px;
}

#nav_toggle {
    width: 25px;
    height: 25px;
    position: relative;
}

.nav_toggle_menu, .nav_toggle_close {
    cursor: pointer;
    color: var(--c-primary);
    font-size: var(--fs-h4);
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    transition: opacity .1s, transform .4s;
}

.nav_toggle_close {opacity: 0;}

@media screen and (max-width: 1118px) {
    .nav_menu {
        opacity: 0;
        overflow: auto;
        pointer-events: none;
        background-color: var(--c-dark);
        width: 100%;
        height: calc(100vh - 70px);
        padding-block: 26px 22px;
        position: absolute;
        left: 0;
        top: 70px;
        transition: top .4s, opacity .3s;
    }

    .nav_menu::-webkit-scrollbar {width: 6px;}
    .nav_menu::-webkit-scrollbar-thumb {background-color: #afafaf;}
}

.nav_link, .nav_link a {
    color: var(--c-light-d);
    font-weight: 600;
    padding: 26px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .3s;
}

.nav_link:hover {color: var(--c-primary);}

.show_menu {
    pointer-events: initial;
    opacity: 1;
    top: 70px;
}

.show_icon .nav_toggle_menu {
    opacity: 0;
    transform: rotate(90deg);
}

.show_icon .nav_toggle_close {
    opacity: 1;
    transform: rotate(90deg);
}

.drop_btn {cursor: pointer;}

.drop_arrow {
    color: var(--c-primary);
    font-weight: initial;
    font-size: var(--fs-h4);
    transition: transform .4s;
}

.drop_content, .drop_group, .drop_list {display: grid;}

.drop_container {
    overflow: hidden;
    background-color: var(--c-grey-l);
    height: 0;
    transition: height .4s;
}

.drop_content {row-gap: 26px;}

.drop_group {
    padding-left: 30px;
    row-gap: 8px;
}

.drop_group:first-child {margin-top: 16px;}

.drop_title {
    color: var(--c-dark);
    font-weight: 600;
    font-size: var(--fs-h5);
}

.drop_list {row-gap: 3px;}

.drop_link {
    color: var(--c-grey);
    font-size: var(--fs-par);
    transition: color .4s;
}

.drop_link:hover {
    color: var(--c-primary);
    transform: scale(1.07);
}

.show_drop .drop_arrow {transform: rotate(180deg);}

    /* == == == == MAIN == == == == */

/* carousel */
.carousel{
    height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}

.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 25%;
    transform: translateX(-25%);
    padding-right: 40%;
    box-sizing: border-box;
    text-shadow: 0 5px 10px var(--c-grey-d);
}

.carousel .list .item .title {
    color: var(--c-light);
    font-size: var(--fs-h3);
    font-weight: bold;
    line-height: var(--fs-big);
}

.carousel .list .item .topic{
    color: var(--c-primary);
    font-size: var(--fs-big);
    font-weight: bold;
    line-height: var(--fs-big);
    letter-spacing: 1px;
}

.carousel .list .item .des{
    color: var(--c-light-d);
    font-size: var(--fs-h4);
    line-height: var(--fs-h2);
    letter-spacing: 1px;
}

.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 140px);
    gap: 16px;
    text-align: center;
    align-items: center;
    margin-top: 30px;
}

.carousel .list .item .buttons a{
    padding: 9px;
    border-radius: 26px;
    border: none;
    background-color: var(--c-primary);
    letter-spacing: 2px;
    font-weight: 600;
}

.carousel .list .item .buttons a:nth-child(2){
    background-color: transparent;
    border: 1px solid var(--c-primary);
    color: var(--c-light);
}

/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 5%;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content{
    width: 100%;
    padding-bottom: 6px;
    text-align: center;
    position: absolute;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    bottom: 0;
    box-shadow: inset 0px -26px 8px #fcfc0591;
}

.thumbnail .item .content .title{
    text-shadow: 1px 1px 1px var(--c-primary-d);
    font-size: var(--fs-h5);
    font-weight: 500;
    color: var(--c-dark);
}

/* arrows */
.arrows{
    position: absolute;
    top: 75%;
    right: 55%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 16px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--c-light-d);
    font-size: var(--fs-h3);
    border: none;
    color: var(--c-dark-l);
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover{
    background-color: var(--c-primary);
    color: var(--c-dark-l);
}

/* animation */
.carousel .list .item:nth-child(1){z-index: 1;}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.4s!important;
}

.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.6s!important;
}

.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 2s!important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img{
    z-index: 100;
}

@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: var(--c-primary);
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}

/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

    /* == == == == WHY CHOOSE US == == == == */

.wcu_container {
    width: 100%;
    height: 100%;
    padding: 0 28px;
}

.wcu_container h1 {
    font-size: var(--fs-h1);
    text-align: center;
    padding-top: 28px;
    margin-bottom: 28px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
}

.wcu_container h1::after {
    border-radius: 20px;
    content: '';
    background-color: var(--c-primary);
    width: 140px;
    height: 4px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service {
    text-align: center;
    padding: 20px 10px;
    border-radius: 5px;
    font-size: var(--fs-small);
    background: transparent;
    transition: transform .5s, background .5s;
}

.service i {
    font-size: var(--fs-big);
    margin-bottom: 8px;
    color: var(--c-primary);
}

.service h2 {
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.service p {
    font-size: var(--fs-par);
    letter-spacing: 1px;
    color: var(--c-grey);
}

.service:hover {
    background: var(--c-primary);
    transform: scale(1.05);
}

.service:hover i {color: var(--c-dark);}

    /* == == == == PRODUCTS == == == == */

#products {
    width: 90vw;
    margin: 0 auto;
}

#products h1 {
    font-size: var(--fs-h1);
    text-align: center;
    padding-top: 28px;
    margin-bottom: 48px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
}

#products h1::after {
    border-radius: 20px;
    content: '';
    background-color: var(--c-primary);
    width: 140px;
    height: 4px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.p_item {
    margin: 30px 0 0 100px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.p_item:nth-child(2n) {
    flex-direction: row-reverse;
    margin: 30px 100px 0 0;
}

.p_item:nth-child(2n) h2 {text-align: end;}
.p_text {margin: 0 42px;}

.p_text h2, .p_text span {
    font-size: var(--fs-h2);
    font-family: var(--ff-serif);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.p_text h2 > span {
    letter-spacing: 2px;
    padding: 0 2px;
    background: linear-gradient(to bottom, transparent 50%, var(--c-primary) 50%);
}

.p_text p {letter-spacing: 1px;}

.p_img {
    border: 2px solid var(--c-primary);
    border-radius: 16px;
    width: 400px;
    height: 250px;
    transition: transform .5s, background .5s;
}

.p_img:hover {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

    /* == == == == ABOUT US == == == == */

#about_us {
    margin-top: 48px;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)), url('../assets/aboutus/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    background-attachment: fixed;
}

#testimonial {padding: 48px 10%;}

#testimonial h1 {
    color: var(--c-light);
    font-size: var(--fs-h1);
    text-align: center;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
}

#testimonial h1::after {
    border-radius: 20px;
    content: '';
    background-color: var(--c-primary);
    width: 140px;
    height: 4px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

#testimonial img {
    height: 200px;
    width: 200px;
    border: 2px solid var(--c-primary);
    border-radius: 50%;
    margin-top: 60px;
}

#testimonial p {
    color: var(--c-light);
    margin-top: 48px;
    letter-spacing: 1.5px;
}

    /* == == == == CONTACTS == == == == */

#contacts {
    padding: 60px 0 60px 60px;
    display: flex;
    justify-content: end;
    text-align: center;
    height: 100%;
}

#c_text h1 {
    padding-top: 48px;
    color: var(--c-dark);
    font-size: var(--fs-h1);
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
}

#c_text h1::after {
    border-radius: 20px;
    content: '';
    background-color: var(--c-primary);
    width: 140px;
    height: 4px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

#c_text p {
    color: var(--c-dark-l);
    font-size: var(--fs-par);
    margin-top: 48px;
    letter-spacing: 1px;
}

#c_info {
    background-color: var(--c-dark);
    padding: 48px 28px;
    min-width: 35vw;
    height: 100%;
    margin-left: 28px;
}

#c_info h2 {
    color: var(--c-light);
    font-size: var(--fs-h4);
    font-family: var(--ff-serif);
    letter-spacing: 1px;
    text-align: start;
}

#c_links {
    margin-top: 28px;
    text-align: start;
}

.c_item {
    margin-top: 28px;
    transition: .5s;
    display: flex;
    align-items: center;
}

.c_item:hover {transform: scale(1.05);}
.c_item:hover i {color: var(--c-light);}
.c_item:hover a {color: var(--c-primary);}

.c_item i {
    color: var(--c-primary);
    font-size: var(--fs-h1);
    margin-right: 12px;
}

.c_item a {
    color: var(--c-light);
    font-size: var(--fs-h5);
    letter-spacing: 1.5px;
}

    /* == == == == FOOTER == == == == */

footer {
    background-color: var(--c-dark);
    padding: 70px 0;
    line-height: 1.5;
}

.f_container {
    max-width: 1170px;
    margin: auto;
}

.f_row {
    display: flex;
    flex-wrap: wrap;
}

.f_col {
    width: 25%;
    padding: 0 15px;
}

.f_col h4 {
    font-size: var(--fs-h5);
    color: var(--c-light);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.f_col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--c-primary);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.f_col ul li:not(:last-child) {margin-bottom: 10px;}

.f_col ul li a {
    font-size: var(--fs-par);
    text-transform: capitalize;
    color: var(--c-grey-l);
    display: block;
    transition: all .3s ease;
}

.f_col ul li a:hover {
    color: var(--c-light);
    padding-left: 8px;
}

.social_links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: var(--c-grey);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: .5s ease;
}

.social_links a:hover{
    background-color: var(--c-primary);
    transform: scale(1.10);
}

.social_links a:hover i {
    color: var(--c-dark);
    transform: scale(1.10);
}

.social_links a i {color: var(--c-light);}

    /* == == == == RESPONSIVENESS == == == == */

    /* == == == == Whatsapp Fixed Button == == == == */

@media screen and (max-width: 500px) {
    #whatsapp a {
        bottom: 30px;
        left: 30px;
    }
}

    /* == == == == HEADER == == == == */

@media screen and (max-width: 500px) {
    header {background-color: var(--c-dark);}
    .drop_group {padding-left: 22px;}
}

@media screen and (min-width: 1118px) {
    nav {
        height: 90px;
        display: flex;
        justify-content: space-between;
    }

    #nav_toggle {display: none;}

    #nav_list {
        height: 100%;
        column-gap: 30px;
        display: flex;
    }

    nav li {display: flex;}
    .nav_link {padding: 0;}
    .nav_link:hover {background-color: initial;}

    .drop_btn {
        pointer-events: none;
        column-gap: .25rem;
    }

    .drop_container {
        pointer-events: none;
        opacity: 0;
        box-shadow: 0 1px 12px #929292;
        background-color: var(--c-grey-l);
        height: max-content;
        position: absolute;
        left: 0;
        right: 0;
        top: 6.5rem;
        transition: top .4s, opacity .3s;
    }

    .drop_content {
        max-width: 1120px;
        margin-inline: auto;
        grid-template-columns: repeat(4, max-content);
        display: flex;
        justify-content: space-around;
    }

    .drop_group {
        padding: 26px 0;
        align-content: baseline;
        row-gap: 18px;
    }

    .drop_group:first-child, .drop_group:last-child {margin: 0;}
    .drop_list {row-gap: 12px;}
    .drop_title {font-size: var(--fs-h5);}
    .drop_link {font: var(--fs-par);}
    .drop_link:hover {color: var(--c-primary);}
    .drop_item {cursor: pointer;}
    .drop_item:hover .drop_arrow {transform: rotate(180deg);}

    .drop_item:hover > .drop_container {
        pointer-events: initial;
        cursor: initial;
        opacity: 1;
        top: 90px;
    }
}

@media screen and (min-width: 1152px) {
    .container {margin-inline: auto;}
}

    /* == == == == MAIN == == == == */

@media screen and (max-width: 678px) {
    .carousel{height: calc(100vh - 50px);}

    .carousel .list .item .content{
        top: 12%;
        padding-right: 0;
    }

    .carousel .list .item .title {
        font-size: var(--fs-h4);
        line-height: var(--fs-h1);
    }

    .carousel .list .item .topic{font-size: var(--fs-h1);}

    .carousel .list .item .des{
        font-size: var(--fs-h5);
        line-height: var(--fs-h3);
    }

    .thumbnail{bottom: 5%;}
}

    /* == == == == WHY CHOOSE US == == == == */

@media screen and (max-width: 678px) {
    .wcu_container {height: 100%;}
}

    /* == == == == ALL OUR PRODUCTS == == == == */

@media screen and (max-width: 750px) {
    #products {width: 95vw;}

    .p_item {
        margin: 30px 0 0 0;
        flex-direction: column;
        text-align: center;
    }

    .p_item:nth-child(2n) {
        flex-direction: column;
        margin: 36px 0 0 0;
    }

    .p_item:nth-child(2n) h2 {text-align: center;}
    .p_text {margin: 0 8px;}
    
    .p_text h2, .p_text span {
        font-size: var(--fs-h4);
        font-family: var(--ff-serif);
        margin-bottom: 8px;
    }
    
    .p_text h2 > span {
        letter-spacing: 2px;
        padding: 0 2px;
        background: linear-gradient(to bottom, transparent 50%, var(--c-primary) 50%);
    }

    .p_text p {font-size: var(--fs-small);}
    .p_item a {text-align: center;}
    
    .p_img {
        margin-top: 28px;
        width: 95%;
        height: 200px;
    }
}

    /* == == == == ABOUT US == == == == */

@media screen and (max-width: 750px) {
    #testimonial {padding: 48px 3%;}
}

    /* == == == == CONTACTS == == == == */

@media screen and (max-width: 750px) {
    #contacts {
        padding: 0;
        flex-direction: column;
    }
    
    #c_text p {
        padding: 0 3%;
        color: var(--c-dark-l);
        font-size: var(--fs-par);
        margin: 48px 0 24px 0;
        letter-spacing: 1px;
    }
    
    #c_info {
        padding: 48px 28px;
        width: 100vw;
        height: 100%;
        margin-left: 0;
        margin-bottom: 90px;
    }
}

    /* == == == == FOOTER == == == == */

@media(max-width: 750px) {
    .f_col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 350px) {
    .f_col {width: 100%;}
}