*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}
*::-webkit-scrollbar {
    width: 10px;
}
*::-webkit-scrollbar-track {
    background: #f1f1f1;
}
*::-webkit-scrollbar-thumb {
    background: #2c66be;
}
*::-webkit-scrollbar-thumb:hover {
    background: #225095;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Work Sans", sans-serif;
    line-height: 1.2;
    color: #14171f;
    -webkit-font-smoothing: antialiased;
}
body.active {
    overflow: hidden;
}

button {
    background: transparent;
    outline: 0;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

h1 {
    font-size: 72px;
    font-weight: 600;
    color: #0e397a;
}

h2 {
    font-size: 60px;
    font-weight: 700;
    color: #2c66be;
}

h3 {
    font-size: 36px;
    font-weight: 700;
}

h6 {
    font-size: 20px;
    font-weight: 700;
}

p {
    font-size: 20px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 62px;
    }
    p {
        font-size: 18px;
    }
}
@media (max-width: 840px) {
    h1 {
        font-size: 52px;
    }
}
@media (max-width: 540px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 44px;
    }
    h3 {
        font-size: 28px;
    }
    p {
        font-size: 16px;
    }
}
.auto-container {
    margin-inline: auto;
    padding-inline: 60px;
    max-width: 1320px;
}

.button {
    padding: 16px 46px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    background: unset;
    transition: all 0.2s ease-in-out;
}
.button:hover {
    color: #2c66be;
    border-color: #2c66be;
    background: #fff;
}
.button--primary {
    background: #2c66be;
    border: 2px solid transparent;
}
.button--primary:hover {
    color: #2c66be;
    background: #fff;
    border-color: #2c66be;
}

.link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease-in-out;
}
.link:hover {
    color: #e6e6e6;
}
.link:hover svg {
    transform: translateX(10px);
}
.link svg {
    transition: all 0.2s ease-in-out;
}

@media (max-width: 1024px) {
    .auto-container {
        padding-inline: 30px;
    }
}
@media (max-width: 540px) {
    .auto-container {
        padding-inline: 16px;
    }
    .button {
        padding: 14px 36px;
        font-size: 16px;
    }
    .link {
        font-size: 16px;
    }
}
.swiper--hero .swiper-navigation {
    position: absolute;
    bottom: 10%;
    right: 10%;
    display: flex;
    gap: 30px;
}
.swiper--hero .swiper-button-prev,
.swiper--hero .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: #e0e3eb;
    border-radius: 50%;
}
.swiper--hero .swiper-button-prev:after,
.swiper--hero .swiper-button-next:after {
    font-size: 24px;
    font-weight: 700;
    color: #2c66be;
}
.swiper--hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #e0e3eb;
}
.swiper--hero .swiper-pagination-bullet-active {
    background: #2c66be;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-block: 20px;
    background: #fff;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.header-inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.header-logo {
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 124px;
    background: #fff;
}
.header .burger {
    display: none;
}

@media (max-width: 1024px) {
    .header-logo {
        width: 100px;
    }
}
@media (max-width: 840px) {
    .header {
        padding-block: 15px;
    }
    .header-inner {
        justify-content: space-between;
        align-items: center;
    }
    .header-logo {
        position: static;
        padding: 0;
        width: 44px;
    }
    .header .burger {
        position: relative;
        width: 30px;
        height: 24px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .header .burger span {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #2c66be;
        transition: all 0.3s ease-in-out;
    }
    .header .burger::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #2c66be;
        transition: all 0.3s ease-in-out;
    }
    .header .burger::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #2c66be;
        transition: all 0.3s ease-in-out;
    }
    .header .burger.active span {
        background: transparent;
    }
    .header .burger.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .header .burger.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
}
.nav-inner {
    display: flex;
    gap: 30px;
}
.nav-link {
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #14171f;
    transition: all 0.2s ease-in-out;
}
.nav-link:hover {
    color: #2c66be;
}

@media (max-width: 1024px) {
    .nav-inner {
        gap: 15px;
    }
    .nav-link {
        font-size: 16px;
    }
}
@media (max-width: 840px) {
    .nav {
        position: fixed;
        top: 77.14px;
        left: 0;
        width: 100%;
        height: calc(100% - 77.14px);
        display: flex;
        justify-content: flex-end;
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }
    .nav-inner {
        padding: 20px;
        width: 300px;
        flex-direction: column;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.3s ease-in-out;
    }
    .nav.active {
        pointer-events: auto;
        background: rgba(0, 0, 0, 0.3);
    }
    .nav.active .nav-inner {
        transform: translateX(0);
    }
}
.footer {
    padding-block: 50px;
}
.footer-inner {
    display: flex;
}
.footer-logo {
    margin-bottom: 25px;
    display: block;
    width: 85px;
}
.footer-col {
    padding-inline: 50px;
    flex: 1;
}
.footer-col:first-child {
    border-right: 1px solid #2c66be;
}
.footer-col:first-child p {
    color: #525b7a;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-item span {
    font-size: 20px;
    font-weight: 500;
}
.footer-contact-item span:first-child {
    color: #2c66be;
}

@media (max-width: 840px) {
    .footer-inner {
        flex-direction: column;
    }
    .footer-col {
        padding-inline: 0;
    }
    .footer-col:first-child {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-right: 0;
        border-bottom: 1px solid #2c66be;
    }
    .footer-contact-item span {
        font-size: 18px;
    }
}
@media (max-width: 540px) {
    .footer {
        padding-block: 40px;
    }
    .footer-logo {
        width: 60px;
        margin-bottom: 20px;
    }
    .footer-col:first-child {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .footer-contact {
        gap: 20px;
    }
    .footer-contact-item span {
        font-size: 16px;
    }
}
.copyright {
    padding-block: 25px;
    background: #2c66be;
}
.copyright-inner p {
    font-size: 16px;
    color: #fff;
}

@media (max-width: 540px) {
    .copyright {
        padding-block: 15px;
    }
    .copyright-inner p {
        font-size: 14px;
    }
}
.hero-slide {
    position: relative;
}
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.hero-slide-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}
.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide-inner {
    min-height: calc(100vh - 82px);
    min-height: calc(100dvh - 82px);
    max-width: 610px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}
.hero-slide-inner p {
    font-size: 30px;
    font-weight: 500;
}

.certificates {
    overflow: hidden;
    padding-block: 60px;
}
.certificates-inner {
    margin-inline: auto;
    max-width: 610px;
}
.certificates-inner h3 {
    margin-bottom: 50px;
    text-align: center;
}
.certificates-list {
    display: flex;
    gap: 30px;
}

.certificate {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
    border: 2px solid #e0e3eb;
    cursor: pointer;
}

.about {
    scroll-margin-top: 60px;
    padding-block: 60px;
}
.about-inner {
    position: relative;
}
.about-image {
    width: 80%;
    aspect-ratio: 4/3;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}
.about-content {
    width: 460px;
    padding: 40px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #2c66be;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.about-content-title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}
.about-content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-content-text p {
    color: #fff;
}

.services {
    overflow: hidden;
    scroll-margin-top: 60px;
    padding-block: 60px;
    background: #f6f8f7;
}
.services-inner h3 {
    margin-bottom: 40px;
    text-align: center;
}
.services-content {
    display: flex;
    gap: 40px;
}
.services-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.services-col:first-child .service:nth-child(even) {
    background: #2c66be;
}
.services-col:first-child .service:nth-child(even) .service-title,
.services-col:first-child .service:nth-child(even) .service-desc {
    color: #fff;
}
.services-col:first-child .service:nth-child(even) .service-title::before {
    background: #fff;
}
.services-col:last-child .service:nth-child(odd) {
    background: #2c66be;
}
.services-col:last-child .service:nth-child(odd) .service-title,
.services-col:last-child .service:nth-child(odd) .service-desc {
    color: #fff;
}
.services-col:last-child .service:nth-child(odd) .service-title::before {
    background: #fff;
}

.service {
    padding: 20px;
    border-radius: 4px;
    background: #fff;
}
.service-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #2c66be;
}
.service-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #e0e3eb;
}
.service-desc {
    font-size: 18px;
    color: #2c66be;
}

.features {
    overflow: hidden;
    padding-block: 100px;
}
.features-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.features-list {
    position: relative;
    width: 580px;
    height: 500px;
}
.features-content {
    width: 360px;
}
.features-content h2 {
    margin-bottom: 30px;
}
.features-content p {
    margin-bottom: 20px;
}

.feature {
    position: absolute;
    padding: 20px 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.feature img {
    max-width: 100px;
    position: absolute;
}
.feature-count {
    font-size: 72px;
    font-weight: 600;
}
.feature-desc {
    position: relative;
    padding-left: 20px;
    font-size: 24px;
    color: #667299;
}
.feature-desc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: #7eb1ff;
}
.feature:nth-child(odd) {
    z-index: 2;
}
.feature:first-child {
    width: 280px;
    top: 0;
    right: 0;
}
.feature:first-child img {
    top: -20px;
    right: -30px;
}
.feature:nth-child(2) {
    width: 360px;
    top: 20%;
    left: 0;
}
.feature:nth-child(2) img {
    top: -50px;
    left: -30px;
}
.feature:nth-child(3) {
    width: 280px;
    bottom: 20%;
    right: 10%;
}
.feature:nth-child(3) img {
    top: -15px;
    right: -20px;
}
.feature:last-child {
    width: 340px;
    bottom: 0;
    left: 10%;
}
.feature:last-child img {
    bottom: -40px;
    right: -40px;
}

.newsletter {
    padding-block: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("../images/newsletter-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.newsletter-title {
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.newsletter-contact {
    display: flex;
    gap: 40px;
}
.newsletter-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: #fff;
    transition: all 0.2s ease-in-out;
}
.newsletter-contact-item:hover {
    color: #2c66be;
}

.projects {
    overflow: hidden;
    scroll-margin-top: 60px;
    padding-block: 60px;
}
.projects-inner h3 {
    margin-bottom: 40px;
    text-align: center;
}
.projects-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 100px;
    row-gap: 70px;
}

.project {
    position: relative;
    width: calc(50% - 50px);
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 5px;
}
.project:hover .project-content {
    background: #2c66be;
    transform: translateY(0);
}
.project img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: rgba(44, 102, 190, 0.2);
    transform: translateY(40%);
    transition: all 0.3s ease-out;
}
.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.project-desc {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
}

.contact {
    scroll-margin-top: 60px;
    padding-block: 60px;
    background: #f6f8f7;
}
.contact-inner {
    margin-inline: auto;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-inner h3,
.contact-inner p {
    text-align: center;
}
.contact-form {
    margin-inline: auto;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #e0e3eb;
}
.contact-form textarea {
    resize: none;
    height: 135px;
}
.contact-form button {
    margin: 10px auto 0;
    width: 270px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}
.popup.active {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
}
.popup.active .popup-inner {
    opacity: 1;
    transform: scale(1);
}
.popup-inner {
    max-width: 1024px;
    position: relative;
    padding: 40px;
    margin-inline: auto;
    border-radius: 10px;
    background: #f6f8f7;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: scale(0.7);
}
.popup-top {
    margin-bottom: 30px;
}
.popup-content {
    overflow-y: auto;
    padding-right: 15px;
    max-height: 70vh;
}
.popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #2c66be;
    font-size: 32px;
    transition: all 0.2s ease-in-out;
}
.popup-close:hover {
    color: #4880d5;
}
.popup-title {
    color: #14171f;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .hero-slide-inner p {
        font-size: 26px;
    }
    .about-image {
        width: 90%;
    }
    .about-content {
        padding: 30px;
        gap: 20px;
    }
    .about-content-title {
        font-size: 40px;
    }
    .features {
        padding-block: 80px;
    }
    .features-inner {
        flex-direction: column-reverse;
    }
    .features-content {
        width: 480px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .newsletter {
        padding-block: 80px;
    }
    .newsletter-contact {
        flex-direction: column;
        gap: 20px;
    }
    .projects-list {
        gap: 50px;
    }
    .project {
        width: calc(50% - 25px);
    }
}
@media (max-width: 840px) {
    .hero-slide-inner {
        min-height: calc(100vh - 77.14px);
        min-height: calc(100dvh - 77.14px);
    }
    .hero-slide-inner p {
        font-size: 26px;
    }
    .about {
        position: relative;
        background: url("../assets/images/about.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .about-inner {
        position: static;
    }
    .about-image {
        display: none;
    }
    .about-content {
        margin-inline: auto;
        width: 100%;
        position: static;
        transform: unset;
        box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.1);
    }
    .features-list {
        width: 500px;
        height: 460px;
    }
    .feature img {
        max-width: 80px;
    }
    .feature-count {
        font-size: 62px;
    }
    .newsletter-inner {
        flex-direction: column;
        gap: 50px;
    }
    .newsletter-title {
        text-align: center;
    }
    .newsletter-contact {
        align-items: center;
    }
    .projects-list {
        flex-direction: column;
        gap: 30px;
    }
    .project {
        width: 100%;
    }
    .project-content {
        background: #2c66be;
        transform: translateY(0);
    }
}
@media (max-width: 540px) {
    .hero-slide-inner p {
        font-size: 22px;
    }
    .certificates {
        padding-block: 40px;
    }
    .certificates-inner h3 {
        margin-bottom: 30px;
    }
    .certificates-list {
        gap: 15px;
    }
    .about {
        padding-block: 40px;
    }
    .about-content {
        padding: 20px;
        gap: 15px;
    }
    .about-content-title {
        font-size: 34px;
    }
    .services {
        padding-block: 40px;
    }
    .services-col {
        gap: 20px;
    }
    .services-content {
        flex-direction: column;
        gap: 20px;
    }
    .features {
        padding-block: 40px;
    }
    .features-content {
        width: 100%;
    }
    .features-content h2 {
        margin-bottom: 20px;
    }
    .features-list {
        width: 100%;
        position: static;
        height: unset;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .feature {
        padding: 20px 90px 20px 20px;
        position: relative !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    .feature-count {
        font-size: 48px;
    }
    .feature-desc {
        font-size: 20px;
    }
    .feature img {
        max-width: 60px;
        top: 50% !important;
        right: 20px !important;
        bottom: unset !important;
        left: unset !important;
        transform: translateY(-50%);
    }
    .newsletter {
        padding-block: 40px;
    }
    .newsletter-title {
        font-size: 28px;
    }
    .newsletter-contact-item {
        font-size: 20px;
    }
    .projects {
        padding-block: 40px;
    }
    .projects-list {
        gap: 20px;
    }
    .contact {
        padding-block: 40px;
    }
    .popup-inner {
        padding: 20px;
        border-radius: 6px;
    }
    .popup-top {
        margin-bottom: 20px;
    }
    .popup-title {
        font-size: 24px;
    }
    .popup-image {
        border-radius: 6px;
    }
    .popup-close {
        font-size: 24px;
    }
}

.header .language-select {
    padding: 5px;
    width: 60px;
    outline: 0;
    border-radius: 6px;
    border: 2px solid #2c66be;
    color: #2c66be;
}
/*# sourceMappingURL=style.css.map */
