:root {
    --primary-color: #080b1f;
    --secondary-color: #CB3320;
    --white-sections-color: #F6F6F8;
    --text-color: #fff;

    --normal-size: 1rem;
    --normal-medium-size: 1.125rem;
    --small-medium-size: 1.4rem;
    --medium-size: 4rem;
    --big-size: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* background-color: #c2c2c2; */
}

/* 
    GLOBALS
*/

.g_title {
    font-size: var(--small-medium-size);
    font-weight: bold;
    color: var(--primary-color);
    text-align: center !important;
}

.g_title.white {
    color: #fff;
}

.g_title::after {
    content: '';
    display: block;

    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 1px;
    
    margin: 5px auto 0;
}

.header {
    width: 100%;
    height: 70px;
    padding: 20px;

    z-index: 1000;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;

    background-color: var(--primary-color);

    box-shadow: 0 10px 12px var(--primary-color);
}

.logo {
    height: 45px;
}

.logo_mobile {
    height: 45px;
    display: none;
}

.navbar {
    position: absolute;
    inset: 0;
    margin: auto;

    height: 60px;

    display: flex;
    justify-content: center;
    align-self: center;
    gap: 50px;
}

.navbar .item {
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;   
}

.navbar .item a {
    text-decoration: none;
    font-size: var(--normal-size);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    color: #fff;

    transition: all 0.2s ease-out;
}

.navbar .item a:hover {
    color: var(--secondary-color);
}

.navbar .item.active a {
    color: var(--secondary-color);
}

.navbar .item.active a::after {
    content: '';
    position: absolute;
    display: block;

    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.header .hamburger {
    position: absolute;
    right: 20px;

    background: none;
    border: none;

    display: none;
}

.navbar_hamburger {
    width: 100%;
    height: 100%;
    z-index: 1005;

    position: fixed;
    top: 0;
    left: 0;
    
    background-color: var(--primary-color);

    overflow: hidden;
}

.navbar_hamburger .navbar {
    flex-direction: column;
}

.navbar_hamburger .quit {
    position: absolute;
    right: 20px;
    top: 20px;

    background: none;
    border: none;
}

/* .navbar .item.collap::after {
    content: '';
    display: block;

    margin-left: 5px;

    width: 16px;
    height: 16px;
    background: url('/assets/icons/caret-down-bold.png');
} */



/* 
    HERO SECTION
*/

.hero {
    width: 100%;
    height: 90vh;
    position: relative;

    background: url('/assets/media/IMG_20260805_181052_205.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero .content {
    width: 55%;
    height: 100%;
    position: relative;

    /* background: linear-gradient(
        to right,
        #080b1f 0%,
        #080b1ff8 80%,
        #080b1ff3 85%,
        #080b1fe5 90%,
        transparent 100%
    ); */
    background:
        linear-gradient(90deg, rgba(8, 11, 31, .98) 0%, rgba(8, 11, 31, .86) 46%, rgba(8, 11, 31, .0) 100%)
}

.hero .content .content_inner {

    position: absolute;
    top: 45%;
    left: 10%;
    transform: translateY(-50%);
}

.hero .content .slogan {
    color: var(--secondary-color);
    font-size: var(--normal-medium-size);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero .content .title,
.hero .content .descript {
    color: #fff;
    font-size: var(--big-size);
    font-weight: bold;
    line-height: var(--big-size);

    width: fit-content;
}

.hero .content .title {
    margin-left: -5px;
}

.hero .content .descript {
    font-size: var(--medium-size);
    line-height: var(--medium-size);
}

.hero .content .lore {
    color: #fff;
    font-size: var(--normal-medium-size);

    margin-top: var(--normal-medium-size);
    width: 60%;
}

.hero .content .buttons {
    margin-top: 2rem;

    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
}

.hero .content .buttons .button {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #fff;

    color: #fff;
    text-align: center;
    font-weight: 700;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    
    transition: all 0.5s ease;
}

.hero .content .buttons .button img {
    width: 1.5rem;
}

.hero .content .buttons .button.red {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.hero .content .buttons .button:hover {
    transform: scale(1.05);
}

/* 
    OUR SERVICES SECTION
*/

.our_services {
    width: 100%;
    height: 80vh;
    padding: 20px;
    margin-bottom: 40px;
}


.swiper {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
}

.swiper .swiper-wrapper {
    align-items: center;
}

.swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our_services .service {
    width: 500px;
    height: 500px;

    border-radius: 20px;

    background: var(--bg-url);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    box-shadow: 0 10px 30px rgba(8, 11, 31, 0.15);

    position: relative;
}

.our_services .service .content {
    position: absolute;
    left: -10px;
    bottom: -20px;

    width: 325px;
    height: 290px;

    background-color: #fff;
    border-radius: 10px;

    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-direction: column;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.our_services .service .content .title {
    font-size: var(--normal-medium-size);
    color: var(--primary-color);
    font-weight: bold;

    padding: 20px 30px;
}

.our_services .service .content.red .title {
    color: var(--secondary-color);
}

.our_services .service .content .benefits {
    display: flex;
    align-items: start;
    flex-direction: column;

    margin-left: 60px;
    gap: 10px;

    letter-spacing: 0.9px;
}

.our_services .service .content .benefits p {
    max-width: 250px;
}

.our_services .service .content .benefits p::before {
    content: '';

    display: block;

    margin-left: 30px;
    margin-top: 5px;

    position: absolute;
    left: 0;

    width: 16px;
    height: 16px;

    background: url(/assets/icons/check-bold\ \(1\).png);
    background-size: contain;
}

.our_services .service .content.red .benefits p::before {
    background: url(/assets/icons/check-bold\ \(2\).png);
    background-size: contain;
}

.our_services .service .content .details {
    margin: 20px 30px;
    padding: 10px;

    font-size: var(--normal-size);
    font-weight: bold;
    letter-spacing: 1px;

    background-color: var(--primary-color);
    color: #fff;

    text-decoration: none;

    border-radius: 5px;
    transition: all 0.2s ease;
}

.our_services .service .content.red .details {
    background-color: var(--secondary-color);
}

.our_services .service .details:hover {
    transform: scale(1.05);
}

.our_services .service .badge {
    min-width: 100px;
    height: 40px;
    border-radius: 10px;
    padding-left: 10px;

    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    background-color: var(--secondary-color);

    position: absolute;
    right: 15px;
    top: 15px;
}

.our_services .service .badge span {
    padding: 10px;
    background-color: #fff;
    border-radius: 0px 10px 10px 0px;
    font-weight: bold;
    color: var(--secondary-color)
}


.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: var(--primary-color);
    width: 12px;
    z-index: 100;
}

.swiper .swiper-button-next.white,
.swiper .swiper-button-prev.white {
    color: #fff;
}


.swiper .swiper-pagination-bullet {
    background: var(--primary-color);
}

/* 
    WHY US SECTION
*/

.why_us {
    width: 100%;
    min-height: 40vh;
    padding: 20px;
    background-color: var(--primary-color);
}

.why_us_content {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;

    padding: 15px;
}

.why_us_content .item {
    width: 250px;
    min-height: 150px;

    color: #fff;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why_us_content .item svg {
    width: 96px;
    height: auto;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.why_us_content .item .title {
    font-weight: bold;
    margin: 10px;
    font-size: var(--normal-medium-size);
    letter-spacing: 1px;
}

.why_us_content .item .description {
    font-size: var(--normal-size);
}


/* 
    STATISTICS SECTION
*/

.statistics {
    width: 100%;
    min-height: 10vh;
    padding: 20px;

    display: flex;
    justify-content: space-evenly;
    align-self: center;
    flex-wrap: wrap;
    gap: 20px;

    background-color: var(--white-sections-color);
}

.statistics .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.statistics .item svg {
    width: 64px;
    flex-shrink: 0;
}

.statistics .item .data .counter {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: bold;
}

.statistics .item .data .description {
    font-weight: 550;
    font-size: 14px;
}


/* 
    GALLERY
*/

.gallery {
    padding: 20px;
    width: 100%;
    min-height: 43vh;
    position: relative;
    padding-bottom: 80px;
}

.gallery .images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px;
}

.gallery .images img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery .see_more {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);

    height: 40px;
    padding: 10px 100px;

    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;

    font-size: var(--normal-size);
    color: var(--primary-color);
    font-weight: 500;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.gallery .see_more:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* 
    PARTNERS SECTION
*/

.partners {
    margin-top: 20px;
    padding: 20px;

    width: 100%;
    min-height: 20vh;
    background-color: var(--white-sections-color);
}

#partnersSwiper,
#reviewsSwiper {
    margin-top: 10px;
}

.logo-partner {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 
    REVIEWS SECTION
*/

.reviews {
    padding: 20px;

    width: 100%;
    min-height: 20vh;

    background-color: var(--primary-color);
}

.review {
    width: 500px;
    min-height: 225px;
    border-radius: 12px;
    padding: 25px;
    /* background-color: #0026ff10; */
    background: rgba(255, 255, 255, 0.05);

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.review .stars {
    display: flex;
    justify-content: left;
    align-items: center;
}

.review .stars img {
    width: 24px;
}

.review .content {
    padding: 5px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
}

.review .author {
    font-weight: 500;
}

.review .author .role {
    font-weight: normal;
    color: #a5a5a5;
}

/* 
    ABOUT US SECTION
*/

.about_us {
    width: 100%;
    min-height: 40vh;

    display: flex;
    justify-content: space-between;
    align-self: center;
}

.about_us .description {
    margin: 30px;
}

.about_us .content {
    padding: 50px;
    width: 50%;
    align-self: center;
}

.about_us .picture {
    width: 50%;
}

.about_us .picture img {
    width: 100%
}

/* 
    CONTACT US SECTION
*/

.contact_us {
    padding: 20px;
    background-color: var(--white-sections-color);

    width: 100%;
    min-height: 40vh;
}

.contact_us .content {
    margin-top: 20px;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
}

.contact_us .data {
    display: flex;
    justify-content: left;
    flex-direction: column;
}

.contact_us .data .item,
.contact .item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.contact_us .data .item .title,
.contact .item .title {
    font-weight: 500;
}

.contact_us .data .item a.title,
.contact .item a.title {
    color: var(--secondary-color);
}

.contact_us .data .item .descript,
.contact .item .descript {
    color: #5f5f5f
}

.contact_us .map {
    width: 50%;
    height: 30vh;
}

/* 
    FOOTER SECTION
*/

footer {
    width: 100%;
    min-height: 10vh;
    background-color: var(--primary-color);

    padding: 30px;
    color: #fff;
}

footer .footer_logo {
    width: 180px;
}

footer .footer_logo_mobile {
    display: none;
}

footer .elements {
    display: flex;
    justify-content: space-evenly;
}

footer .main,
footer .contact {
    width: 20%;
    height: 100%;
}

footer .socialmedia {
    margin-top: 20px;
    padding: 0px 10px;

    display: flex;
    justify-content: left;
    align-self: center;
    gap: 20px;
}

footer .socialmedia a {
    text-decoration: none;
    transition: all 0.2s ease;
}

footer .socialmedia a svg {
    width: 32px;
}

footer .socialmedia a:hover {
    transform: scale(1.1);
}

footer .column {
    width: 25%;
    height: 100%;

    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 3px;
}

footer .column a {
    text-decoration: none;
    color: #fff;
    transition: all ease 0.2s;
}

footer .column a:hover {
    color: var(--secondary-color);
}

footer .column .title,
footer .contact .title_head {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: var(--normal-medium-size);
}


footer .footer_text {
    font-size: 14px;
    text-align: center;
    height: 100%;
}

footer .footer_text p {
    margin-top: 20px;
}

footer .footer_text a {
    color: var(--secondary-color);
    font-weight: 500;
}

@media (max-width: 1600px) {
    .our_services {
        height: 100vh;
        margin-bottom: 80px;
    }

    .our_services .service {
        width: 360px;
    }
}


/* Small Desktops */
@media (max-width: 1280px) {
    :root {
        --normal-size: 0.8rem;
        --normal-medium-size: 1rem;
        --medium-size: 3rem;
        --big-size: 7rem;
    }

    .logo {
        display: none;
    }

    .logo_mobile {
        display: block;
    }

    .our_services {
        height: 80vh;
    }

    .our_services .service {
        width: 425px;
        height: 350px;
        margin-left: 100px;
    }

    .our_services .service .content {
        width: 275px;
        height: 275px;

        left: -100px;
        bottom: -10px;
    }

    .our_services .service .content .title {
        padding: 10px 20px;
    }

    .our_services .service .content .benefits {
        margin-left: 45px;
    }

    .our_services .service .content .benefits p::before {
        margin-left: 20px;
    }

    .our_services .service .content .details {
        margin: 10px 20px;
    }

    .why_us {
        min-height: 60vh;
    }

    .why_us_content {
        gap: 10px;
    }

    .why_us_content .item img {
        width: 76px;
    }

    .gallery .images img {
        flex: 0 0 45%;
    }

    .statistics .item {
        flex: 0 0 60%
    }

    .about_us {
        flex-direction: column;
    }

    .about_us .content {
        width: 100%;
        padding: 10px;
    }

    .about_us .picture {
        width: 100%;
    }

    footer .footer_logo {
        width: 120px;
    }

    footer .socialmedia a img {
        width: 28px;
    }

}

/* Tablets */
@media (max-width: 800px) and (max-height: 1280px) {
    .hero .content {
        width: 70%;
    }

    .hero .content .content_inner .buttons {
        flex-direction: column;
        align-items: start;
    }

    .our_services {
        height: 45vh;
    }

    /* .our_services .service {
        margin-left: 80px;
    }

    .our_services .service .content {
        left: -50px;
        bottom: -10px;
    } */

    .why_us {
        min-height: 40vh;
    }

    .why_us_content {
        gap: 10px;
        flex-wrap: wrap;
    }

    .why_us_content .item img {
        width: 76px;
    }

    .gallery .see_more {
        width: 80%;
    }

    .about_us {
        flex-direction: column;
    }

    footer #only_medium {
        display: none;
    }

    footer .contact {
        width: 40%;
    }
}

/* Phones */
@media (max-width: 600px) {
    :root {
        --normal-size: 0.8rem;
        --normal-medium-size: 0.9rem;
        --medium-size: 2rem;
        --big-size: 4rem;
    }

    .offer_hero .content .title {
        letter-spacing: 0.25px;
    }

    .header {
        box-shadow: 0 10px 28px var(--primary-color);
    }

    .header .hamburger {
        display: block;
    }

    .header .navbar {
        display: none;
    }

    .hero .content {
        width: 100%; 
        background: none;
        background-color: rgba(8, 11, 31, 0.9);
    }

    .hero .content .content_inner {
        left: 5%;
    }

    .hero .content .lore {
        width: 95%;
    }

    .hero .content .buttons .button {
        width: 95%;
    }

    .our_services {
        height: 80vh;
    }

    .our_services .service {
        width: 80%;
        height: 50%;
        margin-left: 0px;
        margin-bottom: 250px;
        border-radius: 10px;
    }

    .our_services .service .content {
        width: 100%;
        height: 275px;
        border-radius: 0px 0px 10px 10px;

        left: 0;
        bottom: -250px;
    }

    .our_services .service .content .title {
        padding: 10px 20px;
    }

    .our_services .service .content .benefits {
        margin-left: 45px;
    }

    .our_services .service .content .benefits p::before {
        margin-left: 20px;
    }

    .our_services .service .content .details {
        margin: 10px 20px;
    }

    .our_services .service .badge {
        height: 25px;
        font-size: 14px;
        line-height: 25px;
        left: 15px;
    }

    .our_services .service .badge span {
        padding: 0px;
        font-size: 14px;
        border-radius: 2px;
        padding: 0px 5px;
    }

    .why_us_content {
        gap: 30px;
    }

    .statistics {
        gap: 30px;
    }

    .review {
        width: 80%;
    }

    .about_us {
        flex-direction: column;
    }

    .about_us .content {
        width: 100%;
        padding: 10px;
    }

    .about_us .picture {
        width: 100%;
    }

    .contact_us .content {
        flex-direction: column;
        gap: 20px;
    }

    .contact_us .map {
        width: 90%;
    }

    footer {
        flex-direction: column;
        min-height: 50vh;
    }

    footer .main,
    footer .contact {
        width: 100%;
        height: 30vh;
    }

    footer .main .footer_logo {
        display: none;
    }

    footer .main .footer_logo_mobile {
        width: 64px;
        display: block;
    }

    footer .main .socialmedia {
        margin-top: 20%;
        flex-direction: column;
    }

    footer .column {
        display: none;
    }


}