* {
    font-family: "Roboto Flex","system-ui","verdana","tahoma",sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html,body {
    margin: 0;
    padding: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}

:root {
    --white: #ffffff;
    --black: #000000;
    --dgreen: #005754;
    --green: #C8EEC4
}

img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: var(--dgreen)
}

a:hover {
    color: var(--dgreen);
    text-decoration: underline
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    max-width: 1140px;
    z-index: 10
}

.f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr)
}

.h-100 {
    height: 100%
}

.w-100 {
    width: 100%
}

.text,.text * {
    line-height: 1.5;
    color: var(--black)
}

p.text,.text>p {
    margin-bottom: 25px
}

.text--center {
    text-align: center
}

p.text--center {
    margin: -14px auto 25px;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 17px 33px;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    background-color: var(--dgreen);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 50px;
    height: 59px;
    border: 1px solid var(--dgreen)
}

.btn:hover {
    text-decoration: none;
    background-color: #fff;
    border-color: var(--dgreen);
    color: var(--dgreen);
}

.btn--white {
    background-color: #fff;
    border-color: var(--dgreen);
    color: var(--dgreen);
    width: 257px
}

.btn--white:hover {
    background-color: var(--dgreen);
    text-decoration: none;
    color: var(--white);
    border-color: var(--dgreen)
}

.icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.icon:before,.icon::after {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -36px;
    width: 72px;
    height: 72px;
    border: 3px dotted #000;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotation 2s linear infinite;
    animation: rotation 2s linear infinite;
    z-index: 222
}

.loader::after {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #000;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -webkit-animation: rotationBack 1s linear infinite;
    animation: rotationBack 1s linear infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center
}

.loader::before {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -24px;
    border: 2px dotted #000;
    border-style: solid dotted solid dotted;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    -webkit-animation: rotationBack 2.5s linear infinite;
    animation: rotationBack 2.5s linear infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center
}

.form-messages {
    position: absolute;
    background-color: rgba(255,255,255,.7);
    z-index: 20;
    top: 0;
    text-align: center;
    right: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--dgreen);
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem;
    display: none
}

.form-messages.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotationBack {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes rotationBack {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 80px;
    z-index: 999;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    box-shadow: 0 2px 5px rgba(0,0,0,.1)
}

main {
    padding-top: 80px
}

.menu-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.menu-wrapper {
    margin-top: -11px
}

.menu-wrapper a {
    display: inline-block;
    padding: 20px 30px;
    font-size: 18px;
    line-height: 1.5
}

.menu-wrapper a:hover {
    text-decoration: none;
    color: var(--dgreen)
}

.logo {
    width: 94px;
    height: 67px
}

.h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.16;
    margin: 26px 0 21px;
    letter-spacing: -1.3px;
}

.h1-under {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 50px
}

.hero-left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.hero-left-block {
    background-color: var(--green);
    padding: 26px 18px 26px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 80px
}

.hero-left-block img {
    height: 142px;
    width: 223px;
    margin-right: 30px
}

.hero-left-text {
    gap: 16px;
    padding: 2px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 283px;
    -ms-flex-align: center;
}

.icon-arrow-right-green {
    background-image: url("../images/ambits_group/arrow-right-green.svg");
    width: 39px;
    height: 39px
}

.icon-arrow {
    background-image: url("../images/ambits_group/arrow-right.svg");
    width: 39px;
    height: 39px
}

.text--big *,.text--big {
    font-size: 20px;
    line-height: 1.1;
}

.hero-right {
    background-image: url("../images/ambits_group/hero2.png");
    padding: 42px 42px 0;
    max-width: 445px;
    width: 100%;
    background-size: cover
}

.hero-right-text p {
    margin-top: 15px;
    line-height: 1.1
}

.hero-left-text *,.hero-right-info * {
    line-height: 1.16;
}

.hero {
    gap: 30px;
    padding: 59px 0 117px 0;
}

.hero-right-text {
    background-color: #fff;
    padding: 34px 53px 43px 51px;
    background-color: var(--green);
    margin-bottom: 65px;
    max-width: 360px;
    margin-left: auto;
    line-height: 1.4;
}

.hero-right-info {
    background-color: var(--dgreen);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    padding: 30px 70px 0px 53px;
    margin: 0 -42px;
}

.hero-right-info * {
    color: #fff
}

.partners {
    background-color: #F3F3F3;
    padding: 2px 0 2px 0;
}
.partner:nth-child(1) {
    flex: 0 1 101px;
}
.partner:nth-child(2) {
    flex: 0 1 154px;
}
.partner:nth-child(3) {
    flex: 0 1 154px;
}
.partner:nth-child(4) {
    flex: 0 1 157px;
}
.partner:nth-child(5) {
    flex: 1
}
.partner:nth-child(6) {
    flex: 1
}

.about {
    padding: 116px 0 72px 0;
    gap: 0;
}

.about-left {
    width: 100%;
    max-width: 540px;
    border: 1px solid #005754;
    margin: 37px 0 0;
    padding: 34px 29px;
}

.about-left h2 {
    font-size: 34px;
    letter-spacing: -0.3px;
    margin: 28px 0 23px;
}

.about-left p {
    font-size: 20px;
    line-height: 1.14;
}

.about-left img {
    height: 272px;
    margin: 15px 0 0
}

.block--title {
    font-weight: 700;
    font-size: 34px;
    margin: 0 0 40px;
    width: 100%;
    line-height: 1.1;
}

.about-right {
    gap: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 36px 0 0;
    margin-left: 27px;
}

.how {
    padding: 50px 0 118px 0;
}

.how-grid {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 61px;
}

.how-grid-item {
    border: 1px solid var(--dgreen);
    padding: 10px 26px 32px 26px;
}

.how-grid-item h3 {
    font-weight: 700;
    font-size: 24px
}

.how-grid-item p {
    font-size: 18px;
    line-height: 1.2;
}

.block--undertitle {
    max-width: 730px;
    font-size: 20px;
    width: 100%;
    line-height: 1.05;
}

.what {
    margin-top: 123px;
}
.what-left {
    background-color: var(--green);
    padding: 35px 41px 36px 40px;
    max-width: 540px;
    width: 100%;
    margin-top: 38px;
    margin-right: 28px;
}

.what-left img {
    width: 100%;
    margin: 0 30px 0 0;
}

.what-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    padding: 6px 0 43px 0;
}

.what--title {
    font-size: 24px;
    font-weight: 700;
    margin: 0px 0 18px 0;
    line-height: 1.1;
    max-width: 251px;
}

.what--info {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2
}

.what--info span {
    color: var(--dgreen)
}

.what-right {
    border: 1px solid var(--dgreen);
    padding: 10px 9px;
    margin-top: 38px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.what-item {
    margin-bottom: 16px;
    border: 1px solid var(--dgreen);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 31px 12px 36px 26px
}

.what-item:last-child {
    margin-bottom: 0
}

.what-item--title {
    font-size: 24px;
    font-weight: 700;
    max-width: 185px;
    margin: 19px 0
}

.what-item--num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: var(--dgreen);
    margin: 11px 0 0;
    font-weight: 700;
    font-size: 20px;
}

.what-item--num::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 18px;
    background-color: #d8d8d8
}

.what-item--num.active::before {
    background-color: var(--green)
}

.what-item--text {
    font-size: 18px;
    max-width: 196px;
    line-height: 1.2
}

.why {
    padding: 122px 0 95px 0;
}

.why-items {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 32px 0 0;
    gap: 9px;
}
.why-item {
    width: 100%;
    padding: 0 0 23px 10px;
    border-left: 1px solid var(--dgreen);
}

.why-item--num {
    font-size: 20px;
    color: var(--dgreen);
    font-weight: 700;
    margin-bottom: 19px;
    display: block;
}

.text--why {
    margin: -7px 0 0;
    line-height: 1.2;
}

.text--why b { 
    line-height: 1.2;
}

.why-top {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 14px
}

.why-left {
    padding-right: 31px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: -27px
}

.why-left ol {
    list-style: none;
    counter-reset: item;
    margin: 30px 0 0;
    padding: 0
}

.why-left li {
    margin-bottom: 16px;
    counter-increment: item;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1
}

.why-left li::before {
    content: counter(item, decimal-leading-zero) " ";
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin-right: 43px;
    color: var(--dgreen)
}

.why-right {
    max-width: 540px;
    width: 100%
}

.why-right img {
    height: 460px
}

.licenses {
    grid-template-columns: 1fr 1fr;
}
.licenses-left {
    background-color: var(--dgreen);
    padding: 56px 34px 27px 34px;
}

.licenses-left * {
    color: #fff
} 
.contact {
    padding: 64px 0 205px;
    border: 1px solid var(--dgreen);
    position: relative;
    max-width: 730px;
    margin: 118px auto 0;
}

.form {
    margin-top: 17px;
    width: 100%;
    max-width: 602px
}

.form-two {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 14px
}

.input-wrapper {
    margin-bottom: 14px;
    width: 100%;
    position: relative;
}


.input-wrapper input {
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--dgreen);
    height: 53px;
    padding: 0 16px
}

.input-wrapper input::-webkit-input-placeholder {
    color: var(--black)
}

.input-wrapper input::-moz-placeholder {
    color: var(--black)
}

.input-wrapper input:-ms-input-placeholder {
    color: var(--black)
}

.input-wrapper input::-ms-input-placeholder {
    color: var(--black)
}

.input-wrapper input::placeholder {
    color: var(--black)
}

.checkbox-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 27px 0 0
}

.checkbox {
    position: relative;
    overflow: hidden;
    margin-right: 7px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17px;
    flex: 0 0 17px;
}

.checkbox-wrapper label {
    font-size: 14px
}

.checkbox input {
    position: absolute;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
    width: 16px;
    height: 16px
}

.checkbox input:checked {
    opacity: 1
}

.checkbox label {
    font-size: 14px
}

.checkbox-mask {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #d5d5e8
}

.form-submit {
    margin-top: 60px;
    text-align: center
}

.form-submit input {
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    background: var(--dgreen);
    color: #fff;
    width: 220px;
    height: 60px;
    transition: .3s all;
    font-size: 20px;
    border: 1px solid var(--dgreen);
}

.form-submit input:hover {
    text-decoration: none;
    background-color: #fff;
    border-color: var(--dgreen);
    color: var(--dgreen);
}


.input-wrapper label {
  position: absolute;
  font-size: 14px;
  left: 16px;
  top: 18px;
  right: 16px;
  line-height: 1.1;
}

.input-wrapper .input--big {
  height: 70px;
}

.form-img {
    height: 145px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.menu-toggle {
    display: none
}

.footer {
    padding: 1px
}

.footer-logo {
    padding: 1px
}

.copyright {
    padding: 1px
}

@media screen and (max-width: 1200px) {
    .hero-right {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 400px
    }

    .hero-left-block img {
        width: 200px
    }

    .hero-right-info {
        margin-top: auto
    }

    .what-left {
        margin-right: 15px;
        padding: 20px 13px 36px 20px
    }

    .what-item {
        padding: 31px 12px 36px
    }

    .what-item--title {
        font-size: 22px
    }

    .what-item--num {
        margin: 11px 10px 0
    }

    .hero-right-text {
        padding: 34px 36px 43px;
    }
}

@media screen and (max-width: 992px) {
    .menu-toggle {
        display:block;
        position: relative;
        z-index: 999;
        width: 40px;
        height: 40px
    }

    .menu-toggle span {
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--gold);
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        display: block
    }

    .menu-toggle span:nth-child(1) {
        top: 5px;
        left: 0
    }

    .menu-toggle span:nth-child(2) {
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .menu-toggle span:nth-child(3) {
        bottom: 5px;
        left: 0
    }

    .menu-toggle.active span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 46%
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .menu-toggle.active span:nth-child(3) {
        bottom: 48%;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .menu-wrapper a {
        padding: 20px;
        line-height: 1;
        font-size: 16px
    }

    .btn--white {
        width: 200px;
        padding: 17px 16px;
        height: 50px;
        border-radius: 30px;
        font-size: 16px
    }

    .menu-wrapper {
        margin: 0
    }

    .logo {
        width: 80px;
        height: 50px
    }

    .hero {
        padding: 40px 0
    }

    .h1 {
        font-size: 36px;
        margin: 15px 0
    }

    .h1-under {
        font-size: 22px
    }

    .hero-left-block {
        margin-top: 60px;
        padding: 30px
    }

    .hero-left-block img {
        margin-right: 20px
    }

    .about-right {
        padding: 0
    } 

    .about-left img {
        margin-top: 10px
    }

    .h1-under {
        margin-bottom: 60px
    }

    .hero-left-text {
        gap: 20px
    }

    .hero-right,.hero-right-text {
        max-width: 100%; 
    }

    .hero-right-text {
        margin-bottom: 40px;
        padding: 20px 20px 10px;
    }

    .block--title {
        font-size: 28px;
        margin-bottom: 20px
    }

    .how-grid {
        gap: 15px;
        margin-top: 30px
    }

    .what-left {
        margin-top: 25px
    }

    .how {
        padding: 60px 0
    }

    .how-grid-item {
        padding: 0 20px 20px
    }

    .what--info {
        font-size: 28px
    }

    .how-grid-item h3 {
        font-size: 20px
    }

    .what-left {
        max-width: 100%;
        display: flex;
        gap: 40px;
        padding: 20px;

    }

    .what-right {
        margin-top: 20px;
    }

    .what-left img {
        height: 200px;
        width: 170px;
        margin: 0 
    }

    .about { 
        padding-top: 60px;
        padding-bottom: 35px;
        flex-direction: column;
    }

    .about-right,
    .about-left {
        margin: 0 auto;
        width: 100%;
        max-width: 540px;
    }

    .about-left {
        padding: 0 30px 30px;
        margin-bottom: 20px;
    }

    p.text--center {
        margin-top: 0;
    }

    .why {
        padding: 80px 0;
    }

    .licenses-left {
        padding: 40px 40px 20px;
    }
    
    .licenses {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .licenses-right,
    .licenses-left {
        max-width: 540px;
        width: 100%;
    }

    .what,
    .contact {
        margin-top: 80px;
    }
}

@media screen and (max-width: 768px) {
    .why-right img,
    .menu-wrapper {
        display: none
    }

    .hero-right-text p {
        line-height: 1.5;
    }

    .menu-wrapper a {
        padding: 20px 10px
    }

    .how-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-left-block {
        margin-top: 40px;
        padding-bottom: 10px;
    }
    .h1-under {
        margin-bottom: 40px;
        font-size: 18px;
    }

    .btn {
    }

    .partner:nth-child(1) {
        flex: 0 1 80px;
    }
    .partner:nth-child(2) {
        flex: 0 1 100px;
    }
    .partner:nth-child(3) {
        flex: 0 1 120px;
    }
    .partner:nth-child(4) {
        flex: 0 1 100px;
    }

    .contact {
        padding: 40px 15px 150px;
    }

    .form-img {
        bottom: -3px;
        height: auto;
    }
}

@media screen and (max-width: 576px) {
    .hero-left-block,.hero-left-text,.hero-right-info,.about-right {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .input-wrapper label {
        top: 12px;
    }

    .hero-right {
        padding: 20px 20px 0;
    }

    .hero-right-info {
        margin: 0 -20px;
        padding: 20px 20px 10px;
    }

    .about-left {
        padding: 0 20px 20px;
        margin-bottom: 0;
    }

    .about-right,.about {
        gap: 15px
    }

    .about-left h2 {
        font-size: 28px
    }

    .about-left p {
        font-size: 18px
    }

    .how-grid {
        gap: 5px
    }

    .hero-left-block img {
        margin: 0
    }

    .what-left {
        gap: 20px;
        margin: 0;
        width: 100%;
    }

    .what-left img {
        width: 50%;
        height: auto;
    }

    .h1 {
        line-height: 1.1;
        margin-top: 0;
        font-size: 30px;
        letter-spacing: 0;
    }

    .how-grid-item {
        padding: 0 8px 15px 8px;
    }

    .block--title {
        font-size: 24px
    }

    .how-grid-item h3,.block--undertitle,.what-item--title {
        font-size: 18px
    }

    .text--big,.text--big *,.what-item--text,.how-grid-item p {
        font-size: 16px;
        line-height: 1.5
    }

    .what-item--num {
        margin: 11px 15px 0
    }

    .form-two,.why-top {
        grid-template-columns: 1fr;
        gap: 0
    }

    .contact {
        padding: 30px 0 200px
    }

    .form {
        padding: 0 15px;
        margin-top: 10px
    }

    .form-img {
        height: 120px
    }

    .form-img img {
        height: 100%
    }

    main {
        padding-top: 60px
    }

    .header {
        height: 60px
    }

    .btn--white {
        height: 40px;
        padding: 12px 16px
    }

    .logo {
        width: 65px;
        height: auto
    }

    
    .how-grid-item p {
        line-height: 1.3;
    }

}

.menu-toggle {
    display: none
}

@media screen and (max-width: 992px) {
    .menu-toggle {
        display:block;
        position: relative;
        z-index: 999;
        width: 40px;
        height: 40px
    }

    .menu-toggle span {
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--gold);
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        display: block
    }

    .menu-toggle span:nth-child(1) {
        top: 5px;
        left: 0
    }

    .menu-toggle span:nth-child(2) {
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .menu-toggle span:nth-child(3) {
        bottom: 5px;
        left: 0
    }

    .menu-toggle.active span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 46%
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .menu-toggle.active span:nth-child(3) {
        bottom: 48%;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
} 