:root {
    /* ========== GREEN THEME ========== */
    --color-primary: #10ECD3;
    --color-primary-variant: #0078D0;
    --color-bg-1: #000e17;
    --color-bg-2: #001e2d;
    --color-bg-3: #012734;
    --color-bg-4: #003347;
    --color-light: #85a2b2;
    --color-white: hsl(0, 0%, 90%);

    /* ========== PURPLE THEME ========== */
    /* --color-primary: #ff7b02;
    --color-primary-variant: #e5a55d;
    --color-bg-1: #140021;
    --color-bg-2: #1e0032;
    --color-bg-3: #25003e;
    --color-bg-4: #36005a;
    --color-light: #d0b8e0;
    --color-white: hsl(0, 0%, 90%); */

    --container-width-lg: 88%;
    --container-width-md: 92%;

    --transition: all 400ms ease;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    text-size-adjust: auto;
}

::-webkit-scrollbar {
    width: 0.5rem;
    background: var(--color-bg-1);
}

::-webkit-scrollbar-thumb {
    width: 100%;
    background: var(--color-primary);
    border-radius: 0.25rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--color-bg-3) url('../images/bg-texture.png');
    color: var(--color-light);
    line-height: 1.7;
    overflow-x:hidden;
    width: 100vw;;
}

h1, h2, h3 {
    line-height: 1.1;
    font-weight: 400;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-white);
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

a {
    color: var(--color-white);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary);
}

.container {
    width: var(--container-width-lg);
    margin: 0 auto;
    max-width: 2160px;
}

img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: auto;
}

button
{
    cursor: pointer;
}


/* ========================= NAV ========================= */
nav {
    height: 5rem;
    width: 100vw;
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

/* nav class on scroll using javascript */
.window-scrolled {
    background: var(--color-bg-2);
    border-bottom: 0.2rem solid var(--color-bg-3);
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.3);
}

.nav__container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* only need on tablets and phones */
.nav__toggle-btn {
    display: none;
}

.nav__logo {
    width: 10rem;
}

.nav__links {
    display: flex;
    gap: 4rem;
}

.nav__socials {
    display: flex;
    gap: 1rem;
}

.nav__socials a {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(var(--color-primary-variant), var(--color-primary));
    border-radius: 0.5rem;
    color: var(--color-bg-4);
    display: grid;
    place-items: center;
}

.nav__socials a:hover {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.4);
}

/* ========================= HEADER ========================= */
header {
    max-width: 100vw;
    min-height: 100vh;
    position: relative;
    top: 0;
    padding: 0;
    /* background: linear-gradient(var(--color-bg-3), var(--color-bg-1)); */
    background-image:linear-gradient(rgba(0,0,0,0.3), transparent), url(../images/hero.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-right:0;
    margin-left:0;
}

.text-box
{
    color:#fff;
    position:absolute;
    bottom:8%;
    left:2%;
}

.text-box p
{
    font-size: 1rem;
    font-weight: 600;
}

.text-box h1
{
    font-size: 4rem;
    font-weight: 900;
    line-height: 3rem;
    color:transparent;
    -webkit-text-stroke: 1px#fff;
    background: url(../images/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}

@keyframes back
{
    100%{
        background-position: 2000px 0;
    }
}

.text-box h3
{
    font-size: 2rem;
    font-weight: 500;
}

.header__row
{
    display:grid;
    align-items: flex-start;
    justify-content: left;
    flex-wrap: wrap;
    margin-left: 2rem;
    gap: 1rem;
}

.header__top__btn {
    position: relative;
    width: 4rem;
    height: 4rem;
    border: 0.1rem solid var(--color-primary-variant);
    border-radius: 50%;
    font-size: 1rem;
    border-color: var(--color-primary-variant);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.header__top__btn:hover {
    transform: translateY(-1rem);
    border-color: var(--color-primary);
}

#header {
    margin-top: 5rem;
    min-height: 50vh;
    background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
}

.header__container {
    display: grid;
    grid-template-columns: 43% 53%;
    gap: 4%;
    margin-top: 10rem;
    position: relative;
}

.header__image-bg {
    background: var(--color-bg-4);
    height: 24rem;
    width: 24rem;
    position: absolute;
}

.header__image-lg {
    width: 32rem;
    position: relative;
    top: 1rem;
    left: 1rem;
    filter: saturate(0) brightness(0.3);
    transition: var(--transition);
}

.header__image-sm {
    width: 30rem;
    height: 30rem;
    overflow: hidden;
    position: absolute;
    left: 6rem;
    top: 6rem;
    transition: var(--transition);
}

.header__left:hover .header__image-sm {
    opacity: 0;
}

.header__left:hover .header__image-lg {
    filter: saturate(1) brightness(1);
    border: 1rem solid var(--color-bg-4);
    top: 0;
    left: 0;
}


.header__head {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

/* general empty styles */
.empty {
    height: 3.5rem;
    width: 18rem;
    background: var(--color-bg-2);
    border-radius: calc(3.5rem / 2);
    margin-bottom: 3.5rem;
    box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-bg-4);
}

.header__tag {
    color: var(--color-primary-variant);
}

.header__right p {
    margin-top: 2rem;
    width: 85%;
}

/* only shows on tablets and phones */
.header__btn-md {
    display: none;
}


.header__frames {
    position: absolute;
    top: 97vh;
    right: 48rem;
    transition: var(--transition);
    z-index: 1;
}

.header__frame {
    width: 14rem;
    border: 0.4rem solid var(--color-bg-3);
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.5);
    position: absolute;
    transform: rotate(-30deg);
    transform-origin: bottom left;
    transition: var(--transition);
}

.header__frame:nth-child(2) {
    transform: rotate(20deg);
    top: -2rem;
    left: 2rem;
}

.header__frame:nth-child(3) {
    transform: rotate(-10deg);
    top: -2rem;
    left: 2rem;
}

.header__frames:hover .header__frame {
    transform: rotate(0);
}

.header__frames:hover .header__frame:nth-child(2) {
    top: 0;
    left: 15rem;
}

.header__frames:hover .header__frame:nth-child(3) {
    top: 0;
    left: -15rem;
}


/* general style for contact buttons */
.contact__btn {
    color: var(--color-bg-1);
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.header__btn {
    background: linear-gradient(-30deg, var(--color-primary-variant), var(--color-primary), var(--color-primary-variant));
    position: absolute;
    right: 6%;
    bottom: -3rem;
}

.header__btn:hover {
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.3);
    transform: translateY(-1rem);
    color: var(--color-bg-1)
}

.contact__btn i {
    font-size: 3.5rem;
    position: absolute;
}

.contact__btn p {
    font-size: 1rem;
    font-weight: 600;
    width: 10rem;
    height: 10rem;
    display: flex;
    justify-content: center;
    animation: spinText 30s linear infinite;
}

.contact__btn p span {
    position: absolute;
    transform-origin: 0.3rem 5rem;
}

@keyframes spinText {
    to {
        transform: rotate(360deg);
    }
}



/* ========================= ABOUT ========================= */
#about {
    margin-top: 20rem;
}

.about__container {
    display: grid;
    grid-template-columns: 10rem 26rem auto;
    gap: 3rem;
    position: relative;
    margin-top: 3rem;
}

.about__title {
    position: absolute;
    top: -15rem;
    z-index: 1;
}

.about__btn {
    color: var(--color-primary-variant);
    align-self: end;
}

.about__btn:hover {
    transform: translateY(-1rem);
    color: var(--color-primary);
}

.about__image {
    position: relative;
}

.about__image-bg {
    width: 16rem;
    height: 24rem;
    position: absolute;
    bottom: 0;
    background: var(--color-bg-4);
}

.about__image-lg {
    position: relative;
    left: 1rem;
    bottom: 1rem;
    filter: saturate(0) brightness(0.4);
    transition: 500ms ease;
}

.about__image-sm {
    position: absolute;
    top: 3rem;
    left: 6rem;
    height: 24rem;
    width: 24rem;
    overflow: hidden;
    box-shadow: 2rem 2rem 2rem rgba(0, 0, 0, 0.2);
    transition: 500ms ease;
}

.about__image:hover .about__image-sm {
    opacity: 0;
}

.about__image:hover .about__image-lg {
    filter: saturate(1) brightness(1);
    box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.2);
    border: 1rem solid var(--color-bg-4);
    left: 0;
    bottom: 0;
}

.about__right {
    margin-left: 5rem;
    text-overflow: clip;
}

.about__right p {
    margin: 0 4rem 1.5rem 0;
}

.line-break {
    width: 99%;
}

/* ========================= SERVICES ========================= */

.services-section
{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
}

.services-head {
    display: flex;
    gap: 2rem;
}

.services-title {
    position: relative;
    margin-top: 3rem;
}

.services-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 80px;
    padding: 40px 20px;

}

.services-card
{
    position: relative;
    width: 350px;
    height: 450px;
    background: var(--color-bg-4);    
    transition: 0.5s;
    display:block; 
}

.services-card:hover
{
    height:500px;
}

.services-card .lines
{
    position: absolute;
    inset: 0;
    background: var(--color-bg-1);
    overflow: hidden;
}

.services-card .lines::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 120px;
    background: linear-gradient(transparent, var(--color-primary-variant), var(--color-primary-variant), var(--color-primary-variant), var(--color-primary-variant), var(--color-bg-1), transparent);
    animation: animate1 4s linear infinite;
    animation-play-state: paused;
}

.services-card:hover .lines::before
{
    animation-play-state: running;
}

@keyframes animate1
{
    0%
    {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%
    {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.services-card .lines::after
{
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-bg-2);
}

.services-card .imgBx
{
    position: absolute;
    top: -50px;
    left: 50%;
    width: 175px;
    height: 175px;
    transform: translateX(-50%);
    background: var(--color-bg-3);
    transition: 0.5s;
    z-index: 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-card:hover .imgBx
{
    width: 200px;
    height: 175px;
}

.services-card .imgBx::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: linear-gradient(var(--color-primary), var(--color-bg-1), transparent);
    animation: animate2 6s linear infinite;
    animation-play-state: paused;
}

.services-card:hover .imgBx::before
{
    animation-play-state: running;
}

@keyframes animate2
{
    0%
    {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100%
    {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.services-card .imgBx::after
{
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-bg-2);
}

.services-card .imgBx img
{
    position: absolute;
    width: 150px;
    z-index: 1;
    opacity: 0.5;
    transition: 0.5s;
}

.services-card:hover .imgBx img
{
    opacity: 1;
}

.services-card .content
{
    position: relative;
    width:100%;
    height: 100%;
    display:flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.services-card .content .details
{
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform: translateY(8rem);
}

.services-card:hover .content .details
{
    transform: translateY(7rem);
}

.services-card .content .details h2
{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.5rem;
}

.services-card .content .details p
{
    color: #fff;
    opacity: 0;
    transition: 0.5s;
}

.services-card:hover .content .details p
{
    opacity: 1;
}

.services-section a
{
    display: block;
    padding: 8px 15px;
    background: var(--color-primary-variant);
    color: #fff;
    margin-top: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

.services-section a:hover
{
    background: var(--color-primary);
}

.services-btn
{
    background: linear-gradient(180deg, var(--color-primary-variant), var(--color-primary));
    color: var(--color-bg-1);
    margin-top: 2rem;
    display: block;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    border-radius: 0.3rem;
}

.services-btn:hover
{
    color:var(--color-white);
}

.contact-now
{
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

/* ========================= GALLERY ========================= */
#photos {
    margin-top: 10rem;
    background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
}

.gallery__head {
    display: flex;
    justify-content: space-between;
}

.gallery__container {
    position: relative;
}

.gallery__container p {
    width: 45rem;
}

.image-gallery{
    min-height: 100vh;
    margin-top: 3rem;
    padding-bottom: 3rem;
}

.image-gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;
}

.image-gallery .controls .buttons{
    height:40px;
    width: 140px;
    background:#fff;
    color:var(--color-bg-2);
    font-size: 12px;
    line-height: 40px;
    cursor: pointer;
    margin:20px;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    text-align: center;
}

.image-gallery .controls .buttons.active{
    background:var(--color-primary-variant);
    color:#fff;
}

.image-gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
}

.image-gallery .image-container .image{
    height:250px;
    width: 350px;
    overflow: hidden;
    border:8px solid var(--color-bg-3);
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    margin: 20px;
}

.image-gallery .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.image-gallery .image-container .image:hover img{
    transform: scale(1.3);
}

/* ========================= VIDEOS ========================= */
#videos {
    margin-top: 10rem;
    background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
}

.videos__container {
    position: relative;
    padding-bottom: 10px;
}

.videos__empty {
    width: 20rem;
    position: absolute;
    right: 14rem;
    top: 0;
}

.videos__head {
    display: grid;
    grid-template-columns: auto 10rem;
    justify-content: space-between;
    align-items: center;
}

.videos__head > p {
    width: 45rem;
}

.videos__btn {
    color: var(--color-primary-variant);
}

.videos__btn:hover {
    transform: translateY(-1rem);
}

.video-container{
    max-width: 1200px;
    margin:100px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap:1rem;
 }
 
 .video-container .main-video-container{
    flex:1 1 820px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    background-color: var(--color-white);
    padding:15px;
 }
 
 .video-container .main-video-container .main-video{
    margin-bottom: 7px;
    border-radius: 5px;
    width: 100%;
 }
 
 .video-container .main-video-container .main-vid-title{
    font-size: 20px;
    color:#444;
 }
 
 .video-container .video-list-container{
    flex:1 1 350px;
    height: 516px;
    overflow-y: scroll;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    background-color: var(--color-white);
    padding:15px;
 }
 
 .video-container .video-list-container::-webkit-scrollbar{
    width: 10px;
 }
 
 .video-container .video-list-container::-webkit-scrollbar-track{
    background-color: #fff;
    border-radius: 5px;
 }
 
 .video-container .video-list-container::-webkit-scrollbar-thumb{
    background-color: var(--color-primary-variant);
    border-radius: 5px;
 }
 
 .video-container .video-list-container .list{
    display: flex;
    align-items: center;
    gap:15px;
    padding:10px;
    background-color: #eee;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
 }
 
 .video-container .video-list-container .list:last-child{
    margin-bottom: 0;
 }
 
 .video-container .video-list-container .list.active{
    background-color: #444;
 }
 
 .video-container .video-list-container .list.active .list-title{
    color:#fff;
 }
 
 .video-container .video-list-container .list .list-video{
    width: 100px;
    border-radius: 5px;
 }
 
 .video-container .video-list-container .list .list-title{
    font-size: 17px;
    color:#444;
 }
 
 @media (max-width:1200px){
 
    .video-container{
       margin:0;
    }
 
 }
 
 @media (max-width:450px){
 
    .video-container .main-video-container .main-vid-title{
       font-size: 15px;
       text-align: center;
    }
 
    .video-container .video-list-container .list{
       flex-flow: column;
       gap:10px;
    }
 
    .video-container .video-list-container .list .list-video{
       width: 100%;
    }
 
    .video-container .video-list-container .list .list-title{
       font-size: 15px;
       text-align: center;
    }
 
 }

/* ========================= STEPS ========================= */

.cards-section
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
    margin-top: 5rem;
}

.cards-section .cards-head
{
    position: relative;
    margin: 2rem;
}

.cards-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cards-container .card
{
    position: relative;
    width:  350px;
    height: 420px;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.5), inset -5px -5px 5px rgba(255,255,255,0.5), 5px 5px 5px rgba(0,0,0,0.05), -5px -5px 5px rgba(255,255,255,0.5);
    border-radius: 15px;
    margin: 20px;
}

.cards-container .card .box
{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--color-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.cards-container .card:hover .box
{
    transform: translateY(-20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    background: linear-gradient(0deg, var(--color-primary-variant), var(--color-primary));
}

.cards-container .card .box .content
{
    padding: 20px;
    text-align: center;
}

.cards-container .card .box .content h2
{
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8em;
    color: rgba(0, 0, 0, 0.02);
    transition: 0.5s;
    pointer-events: none;
}

.cards-container .card:hover .box .content h2
{
    color: rgba(0, 0, 0, 0.1);
}

.cards-container .card .box .content h3
{
    font-size: 1.5em;
    font-weight: 500;
    color: var(--color-bg-1);
    z-index: 1;
    transition: 0.5s;
}

.cards-container .card .box .content p
{
    font-size: 1em;
    font-weight: 300;
    color: var(--color-bg-2);
    z-index: 1;
    transition: 0.5s;
}

.cards-container .card:hover .box .content h3,
.cards-container .card:hover .box .content p
{
    color:#fff;
}

.cards-container a
{
    position: relative;
    display: block;
    padding: 8px 20px;
    background: var(--color-primary-variant);
    margin-top: 15px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cards-container a:hover
{
    background: var(--color-primary);
}

/* ========================= FOOTER ========================= */
footer {
    margin-top: 8rem;
}

.footer__container {
    border-bottom: 0.5rem solid var(--color-bg-4);
    padding-top: 6rem;
    padding-bottom: 3rem;
    display:grid;
}

.footer__head {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer__btn {
    width: 4rem;
    height: 4rem;
    border: 0.2rem solid var(--color-primary-variant);
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.footer__btn:hover {
    transform: translateY(-1rem);
    border-color: var(--color-primary);
}

.footer__links {
    margin: 2rem 0 2rem;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.logo {
    width: 10rem;
}

.footer__row
{
    display:flex;
    align-items: center;
    flex-wrap:wrap;
}
.footer__col1
{
    flex-basis: 40%;
    padding: 2rem;
}

.footer__col2
{
    flex-basis: 57%;
    padding: 2rem;
}

.footer__col img
{
    max-width: 16rem;
}

.footer-container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.vertical-row {
    height:10rem;
    border-left: 2px solid var(--color-primary-variant);
   } 

/*
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 80px;
  margin: 0 40px;
}
*/

/*============================= MEDIA QUERIES (medium screens) =============================*/
@media screen and (max-width: 1024px) {
    .container {
        width: var(--container-width-md);
        position: relative;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 2.5rem;
    }

    /* =============== NAV ============= */
    .nav__socials {
        display: none;
    }

    .nav__links {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        gap: 0;
        display: none;
        perspective: 400px;
    }

    .nav__links li {
        height: 5rem;
        box-shadow: -3rem 3rem 3rem rgba(0, 0, 0, 0.7);
        animation: navAnimation 600ms ease forwards;
        transform: rotateX(90deg);
        opacity: 0;
        transform-origin: top;
    }

    .nav__links li:nth-child(2) {
        animation-delay: 200ms;
    }

    .nav__links li:nth-child(3) {
        animation-delay: 400ms;
    }

    .nav__links li:nth-child(4) {
        animation-delay: 600ms;
    }

    @keyframes navAnimation {
        to {
            transform: rotateX(0);
            opacity: 1;
        }
    }

    .nav__links li a {
        background: var(--color-bg-4);
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 1rem 5rem 1rem 3rem;
        border-top: 1px solid var(--color-bg-2);
    }

    .nav__toggle-btn {
        display: inline-block;
        font-size: 2rem;
        background: transparent;
        cursor: pointer;
        color: var(--color-white);
    }

    #nav__toggle-close {
        display: none;
    }

    /* =============== HEADER ============= */
    header {
        height: fit-content;
        padding: 6rem 0 5rem;
        display: grid;
        place-items: center;
    }

    .header__image-bg, .header__image-sm {
        display: none;
    }

    .header__container {
        grid-template-columns: 40% 54%;
        gap: 6%;
        margin: 0;
    }

    .header__image-lg {
        filter: saturate(1) brightness(1);
        border: 1rem solid var(--color-bg-2);
        border-radius: 15rem 15rem 0 0;
        overflow: hidden;
        width: 100%;
        top: 0;
        left: 0;
    }

    .empty {
        display: none;
    }

    .header__tag {
        margin-bottom: 1rem;
    }

    .header__right p {
        width: 100%;
        margin-top: 1.5rem;
    }

    .header__frames, .contact__btn {
        display: none;
    }

    .header__btn-md {
        background: linear-gradient(135deg, var(--color-primary-variant), var(--color-primary));
        color: var(--color-bg-1);
        margin-top: 2rem;
        display: inline-block;
        padding: 0.6rem 1.6rem;
        font-weight: 600;
        border-radius: 0.3rem;
    }

    .header__btn-md:hover {
        color: var(--color-bg-1);
    }

    /* =============== ABOUT ============= */
    .about__container {
        grid-template-columns: 40% 54%;
        gap: 6%;
    }

    .about__image-bg, .about__image-sm {
        display: none;
    }

    .about__image-lg {
        left: 0;
        top: 0;
        filter: saturate(1) brightness(1);
    }

    .about__image:hover .about__image-lg {
        border: none;
    }

    .about__right {
        margin: 0;
    }

    .about__right p {
        margin-bottom: 1rem;
    }


    /* =============== GALLERY ============= */
    #photos {
        margin-top: 8rem;
    }

    .gallery__container p {
        width: 100%;
        margin-top: 2rem;
    }

    .portfolio {
        margin-top: 4rem;
        height: fit-content;
    }


    /* =============== VIDEOS ============= */
    .videos__head > p {
        width: 100%;
        margin-top: 2rem;
    }

    .video-container {
        margin-top: 3rem;
        gap: 1rem;
    }
}



/*============================= MEDIA QUERIES (small screens) =============================*/
@media screen and (max-width: 600px) {

    h1, h2 {
        font-size: 2rem;
        line-height: 1.3;
        color: var(--color-white);
    }

    header {
        padding: 0;
        padding-bottom: 6rem;
    }

    .text-box h1
    {
        font-size: 2rem;
        font-weight: 600;
        line-height: 2rem;
    }

    .header__container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .header__image-lg {
        width: 80%;
        height: 24rem;
        margin: 0 auto;
        margin-top: 7rem;
        overflow: hidden;
        border-radius: 15rem 15rem 0 0;
    }
    
    .header__head {
        justify-content: center;
    }

    .header__right p {
        margin-top: 1rem;
    }

    .header__title {
        margin-top: 1rem;
    }



    /* =============== ABOUT =============== */
    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__right p {
        width: 100%;
    }

    .swiper-slide {
        border: 0;
    }

    .services-card {
        flex-basis: 100%;
      }


    /* =============== GALLERY =============== */
    #photos {
        margin-top: 6rem;
    }

    .gallery__container p {
        margin-top: 1rem;
    }



    /* =============== VIDEOS =============== */
    #videos {
        margin-top: 6rem;
    }

    .videos__head {
        grid-template-columns: 1fr;
    }

    .videos__head > p {
        margin-top: 1rem;
    }

    .video-container {
        display: block;
    }

    /* =============== FOOTER =============== */
    .footer__head {
        flex-direction: column;
    }

    .footer__head h2 {
        font-size: 1.5rem;
    }

    .footer__links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 4rem;
    }
}

/* =================================================== */