:root {
    --accent: #2370CA;
    --text: #313131;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    overflow-x: hidden;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
}

a {
    text-decoration: none;
    outline: none;
}

.img-responsive {
    max-width: 100%;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 15px;
}

.h1-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 118%;
    margin: 0;
}

.h2-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 128%;
    color: #111111;
    margin: 0;
}

.h2-title span {
    color: var(--accent);
}

/* HEADER */
.header {
    position: absolute;
    top: 0;
    width: 100%;
}

.header-flex {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo img {
    height: 70px;
}

.nav {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 28px;
}

.nav-link {
    color: #fff;
    font-size: 16px;
}

.call-links {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wts-link {
    color: #fff;
    display: flex;
    align-items: center;
}

.wts-link span {
    display: block;
    background: url("images/whatsapp.svg") no-repeat center;
    background-size: contain;
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.mail-link {
    color: #fff;
    margin-top: 4px;
    font-size: 15px;
}

/* HERO */
.hero {
    padding: 146px 0 100px 0;
    background: radial-gradient(52.96% 103.16% at 15.62% 33.18%, #0E264C 0%, rgba(0, 0, 0, 0) 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
        , #131313;
    color: #fff;
}

.hero-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 730px;
}

.hero-image-m {
    display: none;
}

.hero-content p {
    font-size: 18px;
    line-height: 140%;
    margin-top: 42px;
}

.hero-list {
    display: none;
}

.hero-btn {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 262px;
    height: 64px;
    top: 498px;
    background: var(--accent);
    border-radius: 30px;
    transition: .3s all ease-out;

}

.hero-btn:hover {
    background-color: #1a5394;
}


.hero-btn span {
    display: block;
    width: 20px;
    height: 20px;
    background: url("images/arrow.svg") no-repeat center;
    background-size: contain;
    margin-right: 12px;
}

/* CONSUL */
.consul {
    padding: 80px 0;
}

.consul-flex {
    display: flex;
    justify-content: flex-start;
    gap: 180px;
}

.consul-content {
    max-width: 445px;
}

.consul-content p {
    margin-top: 24px;
}

.consul-form {
    width: 380px;
    max-width: 380px;
}

.form {
    width: 100%;
}

.form .number {
    width: 100%;
    border: none;
    font-size: 20px;
    line-height: 136%;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
    margin-bottom: 28px;
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
}

.checkbox-round {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #BABABA;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    margin-right: 18px;
}

.checkbox-round:checked {
    background: var(--accent) url("images/checked.svg") no-repeat center;
    background-size: contain;
    border: none;
}

.checkbox-round-text {
    font-size: 12px;
    line-height: 136%;
}

.form-btn {
    width: 278px;
    height: 64px;
    border-radius: 30px;
    background-color: var(--accent);
    color: #fff;
    margin-top: 36px;
    cursor: pointer;
    transition: .3s all ease-out;
}

.form-btn:hover {
    background-color: #1a5394;
}

/* Service */
.service {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.service .h2-title {
    margin-bottom: 55px;
}

.service-flex {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.service-item {
    background-color: #fff;
    width: 50%;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    transition: .3s all ease-out;
}
.service-item:hover {
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
}
.service-item:hover.service-item .content .title {
    color: var(--accent);
}

.service-item .content {
    flex: 1 0 auto;
}

.service-item .content .title {
    font-family: 'Montserrat';
    font-style: normal;
    font-size: 24px;
    line-height: 136%;
    margin-bottom: 24px;
    display: flex;
    max-width: 456px;
    font-weight: 600;
    color: #111;
}

.service-item .content .title span {
    margin-right: 6px;
}

.service-item .content ul {
    list-style-type: none;
    padding: 0;
    margin: 30px 0 40px 0;
}

.service-item .content ul li {
    font-size: 15px;
    line-height: 150%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-item .content ul li span {
    display: block;
    background: url("images/check.svg") no-repeat center;
    background-size: contain;
    width: 28px;
    height: 28px;
    min-width: 28px;
    margin-right: 8px;
}

.btn-link {
    display: flex;
    align-items: center;
    color: #111;
    font-weight: 600;
    flex: 0 0 auto;
    transition: .3s all ease-in-out;
}

.btn-link span {
    display: block;
    width: 15px;
    height: 15px;
    background: url("images/arrow-right.svg") no-repeat center;
    background-size: contain;
    margin-left: 12px;
}

.btn-link:hover {
    color: var(--accent);
}

/* ABOUT */
.about {
    padding: 80px 0;
}

.about .h2-title {
    margin-bottom: 40px;
}

.about-flex {
    max-width: 954px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 90px;
}

.about-img {
    max-width: 324px;
    min-width: 270px;
}

.about-content {
    max-width: 538px;
}

.about-content p {
    line-height: 172%;
}

.about-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.45;
}

.about-name span {
    color: var(--accent);
    font-size: 18px;
}

.about-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.about-item {
    margin-bottom: 12px;
    color: #313131;
    display: flex;
    align-items: flex-start;
}

.about-item span {
    display: block;
    width: 18px;
    min-width: 18px;
    height: 2px;
    background: #313131;
    margin-right: 12px;
    margin-top: 14px;
}

/* STEPS */
.steps {
    padding: 80px 0 100px 0;
    background: radial-gradient(31.46% 55.95% at 81.46% 50.06%, rgba(35, 112, 202, 0.15) 0%, rgba(248, 248, 248, 0) 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
        , radial-gradient(43.28% 71.89% at 7.6% 56.16%, rgba(35, 112, 202, 0.02) 16.76%, rgba(248, 248, 248, 0) 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
        , #F8F8F8;
}

.steps .h2-title {
    max-width: 730px;
    margin-bottom: 80px;
}

.steps-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 58px;
    max-width: 1000px;
}

.steps-item {
    max-width: 430px;
}

.steps-item .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 150%;
    display: flex;
    align-items: flex-start;
}
.steps-item .title span {
    margin-right: 5px;
}

/* CONTACT */
.contact {
    background: radial-gradient(53.55% 114.52% at 11.84% 32.43%, rgba(14, 38, 76, 0.8) 0%, rgba(0, 0, 0, 0) 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
        , #131313;
    padding: 140px 0 180px 0;
    color: #fff;
    position: relative;
}

.contact .h2-title {
    color: #fff;
}

.map {
    position: absolute;
    width: 50%;
    top: 0;
    right: 0;
    height: 100%;
}

.contact-info {
    margin-top: 45px;
}

.contact-item {
    margin-bottom: 14px;
    font-size: 18px;
}

.contact-item a {
    color: #fff;
}

.contact-btn {
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.contact-btn .arrow {
    display: block;
    width: 68px;
    height: 68px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-btn .arrow .icon {
    display: block;
    width: 30px;
    height: 30px;
    background: url("images/arrow-right-white.svg") no-repeat center;
    background-size: contain;

}

.requisites {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.requisites li {
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background-color: #111;
    padding: 15px 15px;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0 8px 0;
    background-color: #0D2242;
    justify-content: space-around;
    box-shadow: 0px -2px 25px rgba(0, 0, 0, 0.06);
}

.mm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mm-item img {
    max-width: 100%;
    height: 24px;
}

.mm-item .text {
    font-size: 12px;
    line-height: 136%;
    text-align: center;
    color: #fff;
    margin-top: 4px;
}

/* MOBILE LIST */
#m-menu-content {
    min-width: 300px;
    max-width: 500px;
}

.mobile-list {
    display: flex;
    flex-direction: column;
}

.mobile-list-item {
    margin-bottom: 10px;
    cursor: pointer;
    color: #313131;
}
.mobile-list-item:active,
.mobile-list-item:hover, 
.mobile-list-item:focus {
    color: #111;
}

/* POPUP */
.overlay-c {
    position: fixed;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.popup-c {
    position: fixed;
    width: 400px;
    height: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-c h2 {
    font-size: 28px;
    margin: 0;
}

.form-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.form-close path {
    fill: #000;
}

.form-overlay-show {
    visibility: visible;
    opacity: 1;
}

.form-popup-show {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.popup-c {
    flex-direction: column;
    padding: 50px 15px 0 15px;
}

.popup-c h2 {
    color: var(--text);
}

.popup-c h3 {
    margin-top: 10px;
    font-weight: 400;
    text-align: center;
    color: var(--text)
}

/* WhatsApp Fix */
.whatsapp-fix {
    position: fixed;
    bottom: 50px;
    right: 50px;
}
.whatsapp-fix img {
    max-width: 100%;
    height: 70px;
}
