body
{ 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*HERO MINI SECTION */
.hero
{
    position: relative;
    width: 100%;
}

.hero .banner
{
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .banner img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero .banner .content
{
    position: relative;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .banner .content .icon
{
    width: 200px;
    height: auto;
    opacity: 1;
}

.hero .banner .content h2
{
    color: var(--text-on-bg);
    font-size: 60px;
    margin-bottom: 20px;
}

.hero .banner .content h2 span
{
    color: var(--on-hover);
}

.hero .banner .content p
{
    color: var(--text-on-bg);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: ui-monospace;
}

.hero .banner .content a
{
    text-decoration: none;
    background: var(--background-color);
    border: 1px solid var(--text-on-bg);
    padding: 10px 10px;
    color: var(--text-on-bg);
    display: flex;
    justify-content: center;
    width: 120px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.hero .banner .content a:hover
{
    background: var(--on-hover);
    filter: drop-shadow(0 0 5px var(--on-hover));
}

@media (max-width: 1080px) 
{
    .hero .banner .content
    {
        width: 90%;
    }
    .hero .banner .content .icon
    {
        width: 170px;
    }
    .hero .banner .content h2
    {
        font-size: 40px;
    }
    .hero .banner .content h2 span
    {
        font-size: 45px;
    }
}

@media (max-width: 580px) 
{
    .hero .banner .content .icon
    {
        width: 120px;
    }
    .hero .banner .content h2
    {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .hero .banner .content h2 span
    {
        font-size: 30px;
    }
    .hero .banner .content p 
    {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .hero .banner .content a
    {
        margin-top: 20px;
    }
}

.join
{
    padding: 100px;
}

.join .row
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.join .row .col50
{
    position: relative;
    width: 48%;
}

.join .row .col50 h2
{
    color: var(--background-color);
    font-size: 2em;
    font-weight: 300;
}

.join .row .col50 h2 span
{
    color: var(--on-hover);
    font-weight: 600;
    font-size: 1.5em;
}

.join .row .col50 .imgBx
{
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.join .row .col50 .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px)
{
    .join .row .col50 h2
    {
        font-size: 1.5em;
    }
    .join .row .col50 h2 span
    {
        font-size: 1.3em;
    }
}

@media (max-width: 1080px)
{
    .join 
    {
        padding: 50px;
    }
    .join .row .col50 .imgBx
    {
        width: 90%;
        min-height: 300px;
    }
}

@media (max-width: 900px)
{
    .join .row
    {
        flex-direction: column-reverse;
    }
    .join .row .col50
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px)
{
    .join .row .col50 h2
    {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    .join .row .col50 h2:first-child
    {
        margin-top: 10px;
    }
    .join .row .col50 p
    {
        font-size: 14px;
        font-style: italic;
    }
}


/* ABOUT US MINI SECTION */
.about
{
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
    background: var(--background-color);
}

.about h1
{
    margin-top: 30px;
    margin-bottom: 20px;
    font: 600 2rem sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--text-on-bg);
    text-align: center;
}

.about .divide
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.about .divide .box
{
    width: 30%;
    min-height: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    border: 3px solid var(--text-on-bg);
    padding: 20px 20px;
}

.about .divide .box .mv 
{
    width: 90%;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.about .divide .box h2
{
    font: 600 25px sans-serif;
    text-transform: uppercase;
    color: var(--on-hover);
    margin-bottom: 10px;
    text-align: center;
}

.about .divide .box p
{
    display: flex;
    flex-direction: column;
    color: var(--text-on-bg);
}

.about .divide .box p:last-child
{
    margin-bottom: 10px;
}

.about .divide .box p span
{
    color: var(--on-hover);
}

.about .btn
{
    width: 150px;
    text-align: center;
    font-family: 'Oxanium', sans-serif;
    text-decoration: none;
    padding: 10px;
    background: var(--on-hover);
    color: var(--text-on-bg);
    border-radius: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 20px;
}

@media (max-width: 1000px)
{
    .about .divide .box
    {
        width: 40%;
        height: 200px;
        margin-bottom: 20px;
    }
    .about .divide .box:last-child
    {
        height: auto;
        margin-bottom: 20px;
    }
    .about .divide .box:last-child p
    {
        font-size: 16px;
    }
    .about .divide .box .mv 
    {
        font-size: 17px;
    }
}

@media (max-width: 920px)
{
    .about .divide
    {
        flex-direction: column;
    } 
    .about .divide .box
    {
        width: 90%;
        min-height: 120px;
        margin-bottom: 30px;
    }
    .about .divide .box:last-child
    {
        height: auto;
        margin-bottom: 10px;
    }
    .about .divide .box p:last-child
    {
        margin-bottom: 30px;
    }
    .about .divide .box .mv 
    {
        font-size: 16px;
    }
}


/* PROJECTS MINI SECTION */
.projects
{
    min-height: 100vh;
    position: relative;
    padding: 90px 0;
    display: block;
}

.projects p,
.projects h5,
.projects h1,
.projects a
{
    color: var(--background-color);
}

.projects .container
{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.projects .container .proj_info
{
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.projects .container .proj_info h2
{
    position: relative;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 0;
}

.projects .container .proj_info span
{
    color: var(--on-hover);
}

.projects .container .proj_info p
{
    margin-top: 10px;
    margin-bottom: 0;
}

.projects .container .row
{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.projects .container .row .details
{
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

@media (min-width: 567px)
{
    .projects .container .row .details
    {    
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px)
{
    .projects .container .row .details
    {    
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.projects .container .row .details .box
{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 55px;
    border-radius: 5px;
}

.projects .container .row .details .box .img_bx
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    min-width: 90px;
    height: 90px;
    padding: 10px;
    margin-bottom: -45px;
    position: relative;
}

.projects .container .row .details .box .img_bx::before,
.projects .container .row .details .box .img_bx::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--background-color);
    transition: all 0.3s;
    transform: rotate(45deg);
}

.projects .container .row .details .box:hover .img_bx::before
{
    transform: rotate(0);
}

.projects .container .row .details .box .img_bx svg
{
    fill: white;
    max-width: 50px;
    max-height: 50px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}


.projects .container .row .details .box:hover .img_bx svg
{
    fill: var(--on-hover);
}

.projects .container .row .details .box .details_bx
{
    background-color: whitesmoke;
    padding: 75px 20px 20px 20px;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    min-height: 300px;
}

.projects .container .row .details .box .details_bx h5
{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.projects .container .row .details .box .details_bx p
{
    margin-top: 0;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-end: 0px;
}

.projects .container .row .details .box .details_bx a
{
    color: var(--background-color);
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s;
}

.projects .container .row .details .box .details_bx a,
.projects .container .row .details .box .details_bx a:hover,
.projects .container .row .details .box .details_bx a:focus
{
    text-decoration: none;
}

.projects .container .row .details .box:hover .details_bx a
{
    color: var(--on-hover);
}



/* TESTIMONIALS MINI SECTION */
.testimonials
{
    background: var(--background-color);
    min-height: 100vh;
    margin-bottom: 10px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonials h1
{
    font-family:'Oxanium', sans-serif;
    color: var(--text-on-bg);
    font-size: 40px;
    font-weight: 600;
    margin-top: 17px;
    margin-bottom: 50px;
}

.testimonials .container
{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.testimonials .box
{
    width: 320px;
    height: 500px;
    background: var(--on-hover);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.testimonials .box:hover
{
    transform: translateY(-10px);
}

.testimonials .box .content .quote
{
    top: 0;
    width: 40px;
    fill: var(--background-color);
}

.testimonials .box .content p
{
    padding: 10px 0;
    margin-bottom: 30px;
    color: var(--background-color);
}

.testimonials .box .content img
{
    max-width: 74px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonials .box .info
{
    position: relative;
    bottom: 0px;
}

.testimonials .box .content h3
{
    color: var(--background-color);
    position: relative;
    font-size: 15px;
}


@media (max-width: 400px)
{
    .testimonials h1
    {
        font-size: 30px;
        font-weight: 500;
    }
    .testimonials .box
    {
        width: 80%;
        height: auto;
    }
    .testimonials .box .content p
    {
        padding: 10px 0;
        margin-bottom: 10px;
        font-size: 12px;
    }
    .testimonials .box .content h3
    {
        font-size: 10px;
    }
}


/* TEAMS MINI SECTION */
.teams
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 100vh;
    margin-bottom: 40px;
}

.teams h1,
.teams h2,
.teams p,
.teams span,
.teams a
{
    color: var(--background-color);
}

.teams h2
{
    margin-top: 20px;
    color: var(--background-color);
    font-size: 2em;
}

.teams span
{
    font-size: 14px;
    font-style: italic;
}

.teams p
{
    width: 80%;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width:520px)
{
    .teams p
    {
        font-size: 18px;
    }    
}

.teams .container
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.teams .container .cards
{
    position: relative;
    width: 300px;
    height: 400px;
    background: linear-gradient(var(--on-hover), var(--on-hover) 30%,
    var(--background-color) 30%, var(--background-color));
    margin: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgb(0 0 0 / 21%);
}

.teams .container .cards .imgBx
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in;
    z-index: 900;
    border-radius: 20px;
    overflow: hidden;
    transform-origin: top;
}

.teams .container .cards:hover .imgBx
{
    transform: translateY(30px) scale(0.5);
}

.teams .container .cards .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teams .container .cards .content
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px;
    transform: translateY(100%);
    transition: 0.5s;
}

.teams .container .cards:hover .content
{
    transform: translateY(0);
}

.teams .container .cards .content .details
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.teams .container .cards .content .details h2
{
    color: var(--text-on-bg);
    font-size: 1.4em;
    font-weight: 600;
}

.teams .container .cards .content .details h2 span
{
    font-size: 0.8em;
    font-weight: 400;
    color: var(--on-hover);
}

.teams .container .cards .content .details .social_icons
{
    position: relative;
    display: flex;
    margin-top: 10px;
}

.teams .container .cards .content .details .social_icons li
{
    list-style: none;
    display: flex;
    gap: 6px;
}

.teams .container .cards .content .details .social_icons li a
{
    width: 40px;
    height: 40px;  
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--on-hover);
    border-radius: 50%;
}

.teams .container .cards .content .media
{
    width: 25px;
    fill: var(--background-color);
    transition: 0.5s ease-in;
}

.teams .container .cards .content .details .social_icons li a:hover .media
{
    transform: rotate(360deg);
    fill: var(--text-on-bg);
    opacity: 1;
}

.teams .bottom_btn
{
    width: 150px;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    background: var(--background-color);
    color: var(--text-on-bg);
    border-radius: 4px;
    transition: all 0.3s ease-in;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-radius: 20px;
}

.teams .bottom_btn:hover
{
    background: var(--on-hover);
}

@media (max-width:420px)
{
    .teams p
    {
        width: 60%;
        font-size: 15px;
        margin-bottom: 10px;
    }    
    .teams .container
    {
        width: 80%;
    }
    .teams .container .cards
    {
        width: 250px;
        height: 350px;
    }
    .teams .container .cards .content .details .social_icons li a
    {
        width: 30px;
        height: 30px;
    }
    .teams .container .cards .content .media
    {
        width: 20px;
    }
    .teams .container .cards .content .details h2
    {
        font-size: 1.1em;
    }
    .teams .container .cards .content .details h2 span
    {
        font-size: 0.6em;
    }
}


/* PATRNERS MINI SECTION */
.partners
{
    min-height: 30vh;
    display: grid;
    place-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.partners h1
{
    margin-top: 10px;
    font: 600 2rem sans-serif;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    color: var(--background-color);
    text-align: center;
}

.partners .slider
{
    position: relative;
    width: 100%;
    height: 12rem;
    background-color: whitesmoke;
    box-shadow: 0 .8rem 1.4rem -.2rem #0001;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 20vh;
}

.partners .slider::before,
.partners .slider::after
{
    position: absolute;
    content: "";
    height: 100%;
    width: 12rem;
}

.partners .slider::before
{
    left: 0;
    background: linear-gradient(to right, #fff 0%, #fff0 100%);
}

.partners .slider::after
{
    right: 0;
    background: linear-gradient(to left, #fff 0%, #fff0 100%);
}

.partners .slider ul.brands
{
    width: calc(14 * 12rem * 2);;
    display: flex;
    animation: sliderleft calc(14 * 2s) linear infinite;
    transition: 0.3s;
}

.partners .slider:hover ul.brands
{
    animation-play-state: paused;
}


@keyframes sliderleft
{
    100%
    {
        transform: translateX(calc(-100% / 2));
    }
}

.partners .slider ul.brands li
{
    list-style: none;
}

.partners .slider ul.brands li.brand-logo
{
    width: 9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5rem;
}

.partners .brand-img
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: auto;
}

@media (max-width: 420px)
{
    .partners .slider::before,
    .partners .slider::after
    {
        width: 4rem;
    }
    .partners .brand-img
    {
        width: 130px;
    }
}


/* CTA MINI SECTION */
.CTA
{
    min-height: 40vh;
    width: 100%;
    background: rgba(40, 40, 40, 0.746) url(../img/2copy.jpg);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    overflow-x: hidden;
    margin-bottom: 6px;
}

.CTA .info
{
    width: 90%;
}

.CTA .info h1
{
    text-align: center;
    width: 100%;
    font-family: 'Oxanium ExtraBold', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.CTA form
{
    display: flex;
    align-items: center;
}

.CTA form input[type="email"]
{
    font-size: 14px;
    padding: 10px 15px;
    border:none;
    margin-right: 10px;
    width: 400px;
    overflow-x: hidden;
}

.CTA form input[type="submit"]
{
    cursor: pointer;
    background-color: var(--background-color);
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    border: none;
    overflow-x: hidden;
    transition: all 0.3s ease-in;
}

.CTA form input[type="submit"]:hover
{
    background: var(--on-hover);
}

@media (max-width: 680px)
{
    .CTA .info
    {
        width: 100%;
    }
    .CTA .info h1
    {
        font-family: 'Oxanium Bold', sans-serif;
        width: 100%;
        font-size: 20px;
        text-align: center;
    }
    .CTA form
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .CTA form input[type="email"]
    {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px)
{
    .CTA .info h1
    {
        font-size: 17px;
    }
    .CTA form input[type="email"]
    {
        width: 300px;
    }
}