:root {
    --primary-color: black;
    --border-color: #eaeaea;
    --news-border-color: #eaeaea;
    --highlight-color: #1cbaae;
    --footer-icon-color: #1cbaae;
    --copyright-color: #1cbaae;
    --socials-icon-color: #1cbaae;
    --numbers-number-color: #1cbaae;
    --numbers-number-background: white;
    --link-color: #1cbaae;
    --button-color: #1cbaae;
    --background-secondary-color: #f4f4f4;
    --highlight-light-color: #f4f4f4;
    --services-boxes-color: #f4f4f4;
    --news-date-color: #ababab;
    --table-color: #f8f9fa;
    --table-header-color: #56595e;
    --section-preTitle-background-color: #f4f4f4;
    --section-preTitle-color: #575656;
    --menu-color: black;
    --paragraph-color: #545454;
    --background-color: white;
    --section2-preTitle-background2-color: white;
    --secondary-color: white;
    --footer-color: #282d75;
    --footer-secondary-color: #333332;
    --footer-color-text: #8a8dc4;
    --border-sm-radius: 20px;
    --border-radius: 50px;
    --input-radius: 5px;
    --button-radius: 7px;
}

body {
    font-size: 17px;
    line-height: 28px;
    font-family: "Host Grotesk", sans-serif;
    color: var(--paragraph-color);
}

button,
a {
    transition-duration: .15s;
}

b,
strong {
    font-weight: 700;
}

a {
    color: var(--highlight-color);
}

a:hover {
    color: var(--footer-color);
}

h1,
h2,
h3,
h4 {
    letter-spacing: .5px;
    font-weight: 700;
    line-height: 1.25;
}


h1 {
    font-size: 58px;
    color: var(--footer-color);
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 50px;
    color: var(--footer-color);
    margin-bottom: 2.25rem;
}

h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
}

h5 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h6 {
    font-size: 17px;
    line-height: 28px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.75rem;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 16px;
    }

    p {
        margin-bottom: 1.25rem;
    }

    body {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (min-width: 1200px) {
    .container-extended-xl {
        max-width: 1920px;
        padding: 0 2.75rem;
    }
}



.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.owl-carousel.owl-theme .owl-dots button span {
    margin: 0;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--highlight-color);
    opacity: .25;
    transition: all .15s;
}

.owl-carousel.owl-theme .owl-dots button:hover span,
.owl-carousel.owl-theme .owl-dots button.active span {
    background-color: var(--highlight-color);
    opacity: 1;
}

.owl-carousel .owl-dots.disabled {
    display: none !important;
}

/* BUTTON */

.button {
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    font-size: 15px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--background-color);
    font-weight: 500;
    letter-spacing: .5px;
    transition-duration: .15s;
    border-radius: var(--button-radius);
    background-color: transparent;
    overflow: hidden;
    text-decoration: none;
    border: 0;
}

.button svg {
    flex-shrink: 0;
    transition-duration: .15s;
}

.button-blue {
    color: var(--background-color);
}

.button-blue svg {
    fill: var(--background-color);
}

.button:hover {
    text-decoration: none;
    transform: translateY(-.25rem);
}

.button-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--highlight-color);
    z-index: 1;
}

.button-blue::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--highlight-color);
    filter: brightness(.9);
    transition-duration: .25s;
    z-index: 2;
}

.button-blue span,
.button-blue svg {
    position: relative;
    z-index: 3;
}

.button-blue:hover {
    color: var(--background-color);
}

.button-blue:hover::after {
    width: 100%;
}


/* HEADER */

.header {
    padding: 2rem 0;
    position: relative;
    background-color: var(--background-secondary-color);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    text-decoration: none;
}

.header-logo-large {
    color: var(--highlight-color);
    font-size: 47px;
    line-height: 1.25;
    font-weight: 800;
}

.header-logo-small {
    color: var(--footer-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    max-width: 200px;
}

.header .header-rightbox {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-shrink: 0;
}

.header .header-rightbox-mobile {
    display: none;
}

.header .header-about {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 6.75rem;
}

.header .header-about>div:first-child {
    padding-right: 4rem;
}

.header .header-about-title h1 {
    text-transform: uppercase;
    line-height: 1;
    font-weight: 800;
    color: var(--footer-color);
    margin-bottom: 0;
}

.header .header-about-description p {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0;
}

.header .header-about-description .button {
    display: none;
}

@media (max-width: 1200px) {

    .header .header-rightbox-mobile {
        display: flex;
        gap: .75rem;
    }

    .header {
        padding: 1.5rem 0;
    }

    .header .languages {
        margin-left: 0;
    }

    .header .header-wrapper {
        padding: 0;
        gap: 2.5rem;
    }

    .header .header-about {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .header .header-rightbox .button {
        display: none;
    }

    .header .header-about-description .button {
        display: flex;
        margin-top: 2.25rem;
    }
}

@media (max-width: 993px) {

    .header .header-about {
        margin-bottom: 5rem;
    }
}

@media (max-width: 768px) {

    .header .header-about-title h1 {
        line-height: 1.15;
    }

    .header .header-about-description p {
        font-size: 18px;
    }

    .header .header-wrapper {
        gap: 1.25rem;
    }

    .header-logo {
        gap: .675rem;
    }

    .header-logo-large {
        font-size: 36px;
    }

    .header-logo-small {
        font-size: 13px;
    }

}

.header .header-rightbox .languages .header-rightbox-lang {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    text-align: center;
    border: 2px solid var(--highlight-color);
    border-radius: 10px;
    background-color: var(--background-color);
    text-decoration: none;
    text-transform: uppercase;
    height: 51px;
}

.header .header-rightbox .languages .header-rightbox-lang::after {
    color: var(--highlight-color);
}

.header .header-rightbox .languages .header-rightbox-lang svg {
    transition-duration: 0.1s;
    transform: rotate(90deg);
}

.header .header-rightbox .languages .show svg {
    transform: rotate(270deg);
}

.header .header-rightbox .languages .dropdown-toggle::after {
    display: none;
}

.header .header-rightbox .languages .dropdown-menu {
    border: 2px solid var(--highlight-color);
    border-radius: 10px;
    min-width: 100%;
}

.header .header-rightbox .languages .dropdown-menu .dropdown-item {
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

.header .header-rightbox .languages .dropdown-menu .dropdown-item:active {
    background-color: var(--highlight-color);
}

/* HOMEPAGE BANNER */

.banner {
    width: 100%;
    height: auto;
    margin-top: -4.75rem;
}

.banner .banner-slider {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
}

.banner .banner-item-image {
    aspect-ratio: 2.5/1;
    object-fit: cover;
}

.banner .owl-carousel .owl-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    transform: translateY(50%);
}

@media (max-width: 1475px) {

    .banner .owl-carousel .owl-nav,
    .banner .owl-carousel .owl-dots {
        bottom: 4rem;
    }
}

@media (max-width: 993px) {

    .banner {
        margin-top: -3.75rem;
    }

    .banner .owl-carousel .owl-nav {
        display: none;
    }

    .banner .owl-carousel .owl-dots {
        left: 0;
        right: 0;
        justify-content: center;
        bottom: 1.75rem;
    }

    .banner .banner-slider {
        border-radius: var(--border-sm-radius);
    }
}

/* SECTIONS */

.section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2,
.section-header h3 {
    margin-bottom: 0;
}

.section-header h2 span,
.section-header h3 span {
    color: var(--highlight-color);
}

@media (max-width: 768px) {

    .section {
        padding: 2.25rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

}

/* ABOUT */

.about .about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about .about-text-large {
    font-size: 24px;
    line-height: 1.5;
    padding-right: 4rem;
}

@media (max-width: 1200px) {

    .about .about-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .about {
        margin-top: .25rem;
    }

    .about .about-text-large {
        padding-right: 0;
    }

}

@media (max-width: 768px) {

    .about .about-text-large {
        font-size: 18px;
    }

}

/* ICONS */

.icons .icons-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icons .icons-icons {
    padding-right: 4.5rem;
}

.icons .icons-list {
    background-color: var(--footer-color);
    border-radius: var(--border-sm-radius);
    padding: 4rem;
}

.icons .icons-list h3 {
    color: var(--secondary-color);
}

.icons .icons-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icons .icons-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--secondary-color);
    font-size: 21px;
    font-weight: 300;
}

.icons .icons-list li span {
    display: block;
    margin-top: 2px;
}

.icons .icons-list li img {
    flex-shrink: 0;
    width: 33px;
    height: 33px;
    object-fit: scale-down;
}

.icons .icons-list li:not(:last-child) {
    margin-bottom: .75rem;
}

.icons .icons-single {
    padding-top: 1rem;
    padding-left: 4rem;
    display: flex;
    gap: 2.5rem;
}

.icons .icons-single-img {
    display: block;
    margin-top: .5rem;
    width: 32px;
    height: 38px;
}

@media (max-width: 1200px) {

    .icons .icons-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .icons .icons-single {
        padding-top: 0;
        padding-left: 0;
    }

    .about .about-icons-item:not(:last-child) {
        margin-bottom: 1rem;
    }

}

@media (max-width: 768px) {

    .icons .icons-list {
        padding: 2.5rem;
    }

    .icons .icons-list li {
        font-size: 18px;
    }

    .icons .icons-list li span {
        margin-top: 3px;
    }

    .icons .icons-list h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .icons .icons-single {
        flex-direction: column;
        gap: 1rem;
    }

}

/* DOWNLOADS */

.downloads .downloads-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.downloads .downloads-item {
    background-color: var(--background-secondary-color);
    border-radius: var(--border-sm-radius);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    text-decoration: none;
    width: 294px;
    transition-duration: .15s;
    height: 100%;
}


.downloads .downloads-item-icon {
    background-color: var(--highlight-color);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--highlight-color);
    transition-duration: .15s;
}

.downloads .downloads-item h4 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--footer-color);
    text-align: center;
    transition-duration: .15s;
}

.downloads .downloads-item-icon img {
    width: 21px;
    height: 30px;
}

.downloads .downloads-item-arrow {
    width: 30px;
    height: 30px;
    transition-duration: .15s;
}

.downloads .downloads-item:hover {
    transform: translateY(-.25rem);
    background-color: var(--highlight-color);
}

.downloads .downloads-item:hover .downloads-item-icon {
    border-color: var(--secondary-color);
}

.downloads .downloads-item:hover h4 {
    color: var(--secondary-color);
}

.downloads .downloads-item:hover .downloads-item-arrow {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {

    .downloads .downloads-wrapper {
        gap: 1.5rem;
    }

}

/* GALLERY */

.gallery .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--border-sm-radius);
}

.gallery .gallery-item-image {
    transition-duration: .15s;
}

.gallery .gallery-item:hover .gallery-item-image {
    transform: scale(1.05);
}


/* CONTACTS */

.contacts .contacts-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
}

.contacts .contacts-item h3 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: .25rem;
}

.contacts .contacts-item p {
    margin-bottom: 0;
}


@media (max-width: 1200px) {

    .contacts .contacts-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts .contacts-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


}

@media (max-width: 768px) {

    .contacts .contacts-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

}


/* FORM */
.form .form-inner {
    background-color: var(--footer-color);
    padding: 5rem 5rem 6.25rem;
    border-radius: var(--border-sm-radius);
}

.form .section-header h3 {
    color: var(--secondary-color);
}

.form .form-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}

.form .form-col {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form .form-item {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    gap: .75rem;
}

.form .form-item-column {
    flex-direction: column;
    align-items: flex-start;
}

.form .form-item label {
    text-transform: uppercase;
    width: 180px;
    font-size: 16px;
    flex-shrink: 0;
}

.form .form-item textarea {
    resize: none;
    height: 215px;
}

.form .form-item input,
.form .form-item textarea {
    background-color: transparent;
    border: 1px solid #4d518d;
    border-radius: var(--input-radius);
    width: 100%;
    color: var(--secondary-color);
    padding: .75rem 1.25rem;
    transition-duration: .15s;
}

.form .form-item input:focus,
.form .form-item textarea:focus {
    outline: none;
    background-color: #4d518d;
}

.form .button {
    margin-top: 1rem;
}

@media (max-width: 1475px) {

    .form .form-item label {
        width: 160px;
    }
}

@media (max-width: 1200px) {

    .form .form-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

}

@media (max-width: 993px) {

    .form .form-col {
        gap: 1.5rem;
    }

    .form .form-wrapper {
        gap: 1.5rem;
    }

    .form .form-item {
        flex-direction: column;
        align-items: flex-start;
    }


    .form .form-item label {
        width: auto;
    }

}

@media (max-width: 768px) {

    .form .form-inner {
        padding: 3rem 1.5rem;
    }

    .form .button {
        margin-top: .5rem;
    }

}

/* FOOTER */

.footer {
    padding: 2.5rem 0;
    text-align: center;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: var(--highlight-color);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer .footer-logo {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid var(--highlight-color);
    padding: 1.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    border-radius: var(--border-sm-radius);
    color: var(--paragraph-color);
}

.footer .footer-logo:hover {
    text-decoration: none;
    background-color: var(--highlight-color);
    color: var(--secondary-color);
}

.footer .footer-logo img {
    transition-duration: .15s;
}

.footer .footer-logo span {
    font-size: 15px;
    letter-spacing: 1.75px;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.footer .footer-logo:hover img {
    filter: brightness(0) invert(1);
}


.footer .footer-item-about-text {
    max-width: 325px;
}

.footer .footer-copyright p {
    font-size: 14px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.footer .footer-copyright p,
.footer .footer-copyright a {
    color: var(--paragraph-color);
}

.footer .footer-copyright p span:not(:last-child)::after {
    content: "|";
    padding: 0 .75rem;
}

@media (max-width: 993px) {
    .footer .footer-copyright p {
        flex-direction: column;
        align-items: center;
    }

    .footer .footer-copyright p span:not(:last-child)::after {
        content: none;
    }
}

@media (max-width: 768px) {

    .footer .footer-item-about-logo {
        margin: 0 auto 2rem;
        width: fit-content;
    }
}