
@font-face { 
    font-family: "Arsenal";
    src: url(../fonts/Arsenal-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face { 
    font-family: "Arsenal";
    src: url(../fonts/Arsenal-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face { 
    font-family: "Arsenal";
    src: url(../fonts/Arsenal-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face { 
    font-family: "Arsenal";
    src: url(../fonts/Arsenal-BoldItalic.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --color-brown: #BDA588;
    --color-white: #fff;
    --color-blue: #173E62;
    --color-pudra: #F7F2EE;
    --color-gray: #66717A;
    --color-gray-light: #F8F8F8;

    --width-sidebar: 90px;
    --distance: 180px;
}
body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    position: relative;
    padding-left: var(--width-sidebar);
    padding-right: var(--width-sidebar);

}

.container:not(header) {
    margin-bottom: var(--distance);
}

.column {
    width: 100%;
    padding-left: var(--left);
    padding-right: var(--right);
}

.column-flex {
    display: flex;
    width: 100%;
    padding-left: var(--left);
    padding-right: var(--right);
}

/* Sidebar */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    max-height: 100vh;
    width: var(--width-sidebar);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar__button {
    width: 60px;
    height: 60px;
    background-color: var(--color-blue);
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    outline: none;
    border: none;
    border: 1px solid var(--color-white);
    z-index: 100001;
}

.sidebar__button:hover {
    cursor: pointer;
}

.sidebar__button__line {
    height: 5px;
    width: 31px;
    display: flex;
    justify-content: space-between;
}

.sidebar__button__line:not(:last-child) {
    margin-bottom: 8px;
}

.sidebar__button__line span {
    background-color: var(--color-white);
    width: 5px;
    height: 5px;
    border-radius: 100%; 
    display: inline-block;
}

.sidebar__line {
    height: 100px;
    width: 2px;
    background-color: var(--color-blue);
    margin-top: auto;
    margin-bottom: 45px;
}

.sidebar__social {
    flex-direction: column;
}

.social {
    display: flex;
}

.social__button {
    width: 38px;
    height: 38px;
    border: 2px solid var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--color-white); */
}

.sidebar .social__button {
    margin-bottom: 12px;
    background-color: var(--color-white);
}

.sidebar .social__button:last-child {
    margin-bottom: 30px;
}
/* 
.vk {
    background-image: url('/img/vk.svg');
}

.instagram {
    background-image: url('/img/instagram.svg');
}

.telegram {
    background-image: url('/img/telegram.svg');
}

.whatsapp {
    background-image: url('/img/whatsapp.svg');
}

.viber {
    background-image: url('/img/viber.svg');
} */

/* Header */

.header {
    margin-top: 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    padding-left: var(--width-sidebar);
    padding-right: 0;
}

.logo-block {
    flex: 0 1 30%;
    display: flex;
    justify-content: center;
}

.logo-block__text {
    text-transform: uppercase;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    color: var(--color-brown);
    display: flex;
    align-items: center;
}

.logo-block__text span {
    flex: 0 1 100%;
    padding: 15px;
}

.logo-block__left {
    text-align: right;
}

.logo-block__right {
    border-left: 2px solid var(--color-brown);
}

.header__menu {
    background-color: var(--color-pudra);
    min-height: 120px;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 50px;
}

.header__menu a {
    color: var(--color-blue);
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    display: inline-block;
    padding: 11px;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.header__menu a:hover {
    border: 2px solid var(--color-blue);
}

.header__contacts {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-left: auto;
    padding-right: 20px;
    flex: 0 1 20%;
}

.header__contacts a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-blue);
    line-height: 2em;
}

/* Content and more */
p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 2em;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.content {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 2em;
    color: var(--color-blue);
    margin-bottom: 20px;  
}

.content li {
    list-style-position: inside;
}

.content ul li {
    list-style-type: circle;
}

.content ol li {
    list-style-type: decimal;
}

.content ul, .content ol {
    margin-bottom: 20px;
}


h1 {

}

h2, .--h2 {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 45px;
    line-height: 1.3em;   

    
    color: var(--color-blue);
}

h3, h4, h5, h6 {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.3em;    
    color: var(--color-blue);
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    padding: 20px 50px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1em;
    color: var(--color-white);
    text-transform: uppercase;
    background-color: var(--color-brown);
    border: 1px solid var(--color-brown);
    outline: none;
    border: none;
}

.button:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
    border: 1px solid var(--color-brown);
    cursor: pointer;
}

.--h1 {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 45px;
    line-height: 100%;
    color: var(--color-blue);
}


/* First screen */
.first-screen {
    display: flex;
    padding-right: 0;
    height: 85vh;
    overflow: hidden;
    padding-top: 20px;
} 

.first-screen__slider {
    flex: 0 1 50%;
    overflow-x: hidden;
    overflow-y: inherit;
}

.first-screeen_slide {
    background-color: var(--color-pudra);
    padding: 100px 60px 200px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.first-screen__image {
    flex: 0 1 calc(50% + var(--width-sidebar));
    padding-left: 20px;
}

.big-title {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 64px;
    line-height: 1em;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.first-screeen_slide p {
    color: var(--color-gray);
    margin-bottom: 50px;
}


/* Help block */
.help-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.help-block {
    flex: 0 1 30%;
    margin-bottom: 20px;
}

.help-block:not(.--first) {
    background-color: var(--color-white);
    box-shadow: 4px 4px 100px rgba(0, 0, 0, 0.15);
    padding: 30px;
}

.help-block:not(:nth-child(3n)) {
    margin-right: 3.33%;
}

.help-block h2 {
    margin-bottom: 20px;
}

.help-block__top {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.help-block__icon {
    width: 58px;
    margin-right: 16px;
}

.help-block__title {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 1em;
    color: var(--color-blue);
}

.help-block__link {
    display: inline-block;
    position: relative;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    color: var(--color-brown);
    text-transform: uppercase;
}

.help-block__link::after {
    background-image: url('/img/icon_arrow.svg');
    width: 14px;
    height: 9px;
    background-repeat: no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    position: absolute;
    right: -26px;
    top: 3px;
}

.help-block__bottom {
    margin-bottom: 30px;
}

/* About */
.about {
    display: flex;
    padding: 0;
    max-height: 100vh;
    overflow: hidden;
}

.about-column {
    flex: 0 1 50%;
}

.about-column.--left {
    background-color: var(--color-blue);
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-column__in {
    max-width: 75%;
}

.about-column.--left h2 {
    color: var(--color-white);
    margin-bottom: 30px;
}

.about-column.--left p {
    color: var(--color-white);
}

.signature {
    margin-top: 60px;
    margin-bottom: 60px;
}

/* Why */ 

.why {
    display: flex;
}

.why-column {
    flex: 0 1 50%;
}

.why__block__great {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 96px;
    line-height: 1em;
    letter-spacing: -0.05em;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.why__block__small {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3em;    
    color: #173E62;
    text-align: center;
}

.why-column.--right {
    display: flex;
    padding-top: 30px;
    padding-left: 60px;
}

.why__block + .why__block {
    margin-left: 100px;
}

/* Advantages */
.advantages {
    padding-right: 0;
    padding-left: 20%;    
    position: relative;
    overflow-x: hidden;
}

.advantages__in {
    background-image: url('/img/advantages.png');
    background-color: var(--color-pudra);
    background-repeat: no-repeat;
    min-height: 760px;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-right: var(--width-sidebar);
}

.advantages__img {
    background-image: url('/img/rieltor.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 50%;
    left: 0;
    top: 80px;
    height: calc(100% - 80px * 2);
}

.advantages__slider {
    margin-left: 50%;
    padding-left: var(--width-sidebar);
    overflow-x: hidden;
    overflow-y: inherit;
}

.advantages__slide {
    padding-right: var(--width-sidebar);
    min-height: 200px;
}

/* Services */
.services {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url('/img/services.jpg');
}

.services h2 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 50px;
}

.services__tabs {
    border: 1px solid var(--color-white);
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 60px;
}

.services__tabs li {
    font-family: "Arsenal";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 1em;
    color: var(--color-white);
    position: relative;
    height: 78px;
    display: flex;
    align-items: center;
    flex: 0 1 100%;
    justify-content: center;
    cursor: pointer;
}

.services__tabs li:not(:last-child):after {
    width: 1px;
    height: 34px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    margin: auto 0;
}

.services__tabs li.--active {
    background-color: var(--color-brown);
}

.services__tabs li.--active::after {
    width: 1px;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    background-color: var(--color-brown);
    margin: auto 0;
}

.service__block {
    display: none;
}

.service__block.--active {
    display: flex;    
}

.service__block__content {
    flex: 0 1 calc(50% - 10px);
    background-color: var(--color-white);
    padding: 60px;
}

.service__block__image {
    flex: 0 1 calc(50% - 10px);
    margin-left: auto;

    overflow: hidden;
}

.service__block__button {
    margin-top: 30px;
}

/* Scroll top */
.scrollTop{
    width: 30px; 
    height: 30px;
    bottom: 40px; 
    right: 50px;
    border-top: 0.375rem solid #fff;
    border-right: 0.375rem solid #fff;
    transform: rotate(-45deg);
    border-image: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue) 100%);
    border-image-slice: 5;
    opacity: 1;
}

.scrollTop:hover{ 
    opacity: 0.5;
}


/* Reviews */
.reviews {
    position: relative;
    padding-right: 20%;
    padding-left: 0;
}

.reviews__in {
    background-color: var(--color-pudra);
    background-image: url('/img/reviews.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: calc( var(--width-sidebar) * 2 );
    padding-left: var(--width-sidebar);
}

.reviews__in h2 {
    margin-bottom: 30px;
    max-width: 50%;
}

.reviews__in p {
    max-width: 50%;
}

.reviews__blocks {
    position: absolute;
    right: var(--width-sidebar);
    top: 80px;
    height: calc(100% - 80px * 2);
    width: calc(50% - var(--width-sidebar));
}

.reviews__block {
    background: var(--color-white);
    box-shadow: 4px 4px 100px rgba(0, 0, 0, 0.15);
    padding: 60px;
    position: relative;
}

.reviews__block__video {
    height: 100%;
}

.reviews__block video{
    width: 100% !important;
    min-height: 300px !important;
    height: 100%;
}

.reviews__block::after {
    content: '';
    background-image: url('/img/quotes.svg');
    background-repeat: no-repeat;
    background-position: top right;
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
}

.reviews__block__top {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.reviews__block__img {
    flex: 0 1 83px;
    overflow: hidden;
    border-radius: 100%;
    margin-right: 38px;
}

.reviews__block__top h3 {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

#reviews-slider .slick-list {
    height: 100% !important;
}

#reviews-slider .slick-track {
    height: 100% !important; 
}

#reviews-slider .slick-slide > div {
    height: 100% !important;  
}

#reviews-slider .reviews__block {
    height: 100% !important;
}

/* Info */
.info {
    display: flex;
    align-items: center;
}

.info-column {
    flex: 0 1 50%;
}

.info-column p {
    margin: 0;
}

/* Nowork */
.nowork {
    padding-left: 20%;
    padding-right: 0;
    min-height: 500px;
}


.nowork__in {
    background-color: var(--color-pudra);
    background-image: url('/img/nowork.svg');
    background-repeat: no-repeat;
    background-position: 40% 50%;
    padding: 50px 0 50px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.nowork__in h3 {
    margin-bottom: 30px;
    width: 50%;
    margin-top: 30px;
}

.nowork__list {
    width: 50%;
}

.nowork__list li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-gray);
    margin-bottom: 20px;
    position: relative;
    padding-left: 34px;
}

.nowork__list li::last-child {
    margin: 0;
}

.nowork__list li::after {
    content: '';
    background-image: url('/img/cross.svg');
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.nowork__img {
    position: absolute;
    right: 0;
    top: 80px;
    height: calc(100% - 80px * 2);
    object-fit: cover;
}

/* Questions */
.questions {
    display: flex;
}

.questions-column {
    flex: 0 1 50%;
}

.questions-column h2 {
    margin-bottom: 20px;
}

.form-questions__box .checkmark__text{
    color: var(--color-blue);
}

.button {
    margin-top: 30px;
}

form.questions-column {
    padding: 60px;
    box-shadow: 4px 4px 100px rgba(0, 0, 0, 0.15);
}

form.questions-column .input,  form.questions-column .textarea{
    background-color: var(--color-white);
    border: 1px solid var(--color-pudra);
}

.contacts {
    background-image: url('/img/questions.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-block {
    background-color: var(--color-white);
    padding: 80px;
}

.contacts-block h3 {
    margin-bottom: 30px;
}

.contacts-block__phone {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--color-blue);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.contacts-block__phone::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background-image: url('/img/phone.svg');
    position: absolute;
    left: 0;
    top: 2px;
}

.contacts-block__email {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--color-blue);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.contacts-block__email::before {
    content: '';
    display: block;
    width: 14px;
    height: 11px;
    background-image: url('/img/email.svg');
    position: absolute;
    left: 0;
    top: 5px;
}

.contacts-social {
    position: relative;
    left: -8px;
    top: -5px;
}

.contacts-social .social__button {
    border: none;
}

/* Footer */
.footer {
    background-image: linear-gradient(180deg, rgba(23, 62, 98, 0) 0%, #173E62 100%), url('/img/footer.jpg');
    mix-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    min-height: 230px;

}

.container.footer {
    margin-bottom: 0;
}

.footer__top {
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer__top .logo-block {
    justify-content: flex-start;
    position: relative;
    left: -20px;
}

.footer__top .logo-block__text{
    color: var(--color-white);
}

.footer__top .logo-block__right {
    border-left: 2px solid var(--color-white);
}

.footer__bottom {
    display: flex;
}

.footer__social {
    margin-left: auto;
}

.footer__social .social__button {
    border: 2px solid var(--color-white);
    margin-right: 14px;
}

.footer__social .social__button svg path{
    fill: var(--color-white);
}

.footer__text {
    flex: 0 1 33.33%;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.2em;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    color: var(--color-white);
}

.footer__text a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.2em;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    color: var(--color-white);
}

.--text-center {
    text-align: center;
}

.--text-right {
    text-align: right;
}



/* Forms */

.input {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1em;
    color: var(--color-gray);
    background-color: var(--color-gray-light);
    width: 100%;
    padding: 20px 25px;
    border: none;
    margin-bottom: 20px;
}

.textarea {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1em;
    color: var(--color-gray);
    background-color: var(--color-gray-light);
    width: 100%;
    padding: 20px 25px;
    border: none;
    margin-bottom: 20px;
}

/* Form individual */
.form-individual {
    display: flex;
    background-color: var(--color-blue);
    background-image: url('/img/form_back.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 55px;
    padding-bottom: 55px;
    align-items: center;
}

.form-individual__title {
    flex: 0 1 50%;
    color: var(--color-white);
    padding-right: 20px;
}

.form-individual__form {
    flex: 0 1 50%;
    display: flex;
    flex-wrap: wrap;
}

.form-individual__form .button {
    width: 100%;
    padding: 15px;
    height: 57px;
}

.form-individual__box {
    flex: 0 1 calc(50% - 20px);
}

.form-individual__form .form-individual__box:nth-child(even) {
    margin-left: auto;
}

.form-individual__box:nth-child(odd) {
    margin-right: 20px;
}


/* Form consult */
.form-consult {
    display: flex;
    background-color: var(--color-pudra);
    background-image: url('/img/form_consult_back.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 55px;
    padding-bottom: 55px;
    align-items: center;
}

.form-consult__title {
    flex: 0 1 50%;
    color: var(--color-blue);
    padding-right: 20px;
}

.form-consult__form {
    flex: 0 1 50%;
    display: flex;
    flex-wrap: wrap;
}

.form-consult__form .input {
    background-color: var(--color-white);
}

.form-consult__form .button {
    width: 100%;
    padding: 15px;
    height: 57px;
}

.form-consult__box {
    flex: 0 1 calc(50% - 20px);
}

.form-consult__box .checkmark__text {
    color: var(--color-blue);
}

.form-consult__form .form-consult__box:nth-child(even) {
    margin-left: auto;
}

.form-consult__box:nth-child(odd) {
    margin-right: 20px;
}

.input-checkbox__container.form-consult__box input:checked ~ .checkmark {
    background-color: var(--color-white);
}

.form-consult__subtitle {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3em;
    color: var(--color-brown);
    display: block;
    margin-top: 30px;
}

/* Articles */
.articles__in {
    display: flex;
    margin-top: 60px;
}

.articles__block {
    flex: 0 1 calc(33.33% - 20px);
}

.articles__block:nth-child(2n) {
    margin: 0 30px;
}

.articles__block h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2em;
    margin-top: 24px;
}

.articles__block__date {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.3em;
    color: var(--color-blue);   
}

/* Customize the label */
.input-checkbox__container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.input-checkbox__container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--color-pudra);
}

  
.input-checkbox__container:hover input ~ .checkmark {
    background-color: var(--color-gray-light);
}
  
.input-checkbox__container input:checked ~ .checkmark {
    background-color: var(--color-pudra);
}
  
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.input-checkbox__container input:checked ~ .checkmark:after {
    display: block;
}
  
.input-checkbox__container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--color-blue);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkmark__text {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.3em;
    color: var(--color-white);
}

/* Calculator */
.calculator h2 {
    margin-bottom: 50px;
}

.calculator__wrapper {
    background: var(--color-white);
    box-shadow: 4px 4px 100px rgba(0, 0, 0, 0.15);
    padding: 50px;
}

.arenda__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.calculator__in {
    display: flex;
}

.calculator__left {
    flex: 0 1 calc(66.66% - 30px );
    margin-right: 30px;
}

.calculator__right {
    flex: 0 1 33.33%;
    border: 1px solid #E5E5E5;
    padding: 40px 20px;
}

.calculator__tab {
    display: flex;
    border: 1px solid #E5E5E5;
}

.calculator__tab li {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.2em;
    color: var(--color-gray);
    position: relative;
    text-align: center;
}


.calculator__tab li:first-child {
    flex: 0 1 18%;
}

.calculator__tab li:nth-child(2) {
    flex: 0 1 18%;
}

.calculator__tab li:nth-child(3) {
    flex: 0 1 30%;
}

.calculator__tab li:nth-child(4) {
    flex: 0 1 34%;
}

.calculator__tab li:hover {
    cursor: pointer;
    background-color: var(--color-blue);
    color: var(--color-white);
}

.calculator__tab li:not(:first-child):hover::before {
    content: none;
}

.calculator__tab li:not(:first-child)::before {
    content: '';
    width: 1px;
    height: 31px;
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    margin: auto;
    background-color: #E5E5E5;

}

.calculator__tab li.--active {
    color: var(--color-white);
    background-color: var(--color-blue);
}

.calculator__tab li.--active::before {
    content: none;
}

.calculator__right-title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2em;
    color: var(--color-gray);
    margin-bottom: 50px;
    padding: 0 20px;
}

.calculator__right-list {
    padding: 0 20px;
}

.calculator__right-list li{
    list-style-position: inside;
    list-style-type: circle;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.mini-text {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.3em;
    color: var(--color-gray);
    display: inline-block;
    margin-top: 40px;
}

.amount {
    display: flex;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding: 30px 0;
    margin-top: 50px;
}

.amount__title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1em;
    color: var(--color-blue);
}

.amount__price {
    margin-left: auto;
}

.amount__percent {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1em;
    color: var(--color-blue);
    display: block;
    text-align: right;
}

.amount__min {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--color-gray);
    display: block;
    margin-top: 10px;
}

.calculator__send-block {
    margin-top: 50px;
}

.form-calculator__box .checkmark__text{
    color: var(--color-blue);
    position: relative;
}

.form-calculator__box.input-checkbox__container input:checked ~ .checkmark {
    background-color: var(--color-blue);
}

.form-calculator__box.input-checkbox__container .checkmark:after {
    border: solid var(--color-white);
    border-width: 0 3px 3px 0;
}

.calculator__content {
    padding-top: 50px;
}

.field-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.field-row__text {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--color-gray);
}

.field-row__select {
    margin-left: auto;
    flex: 0 1 50%;
}

select {
    background: #E5E5E5;
    padding: 18px 18px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1em;
    color: var(--color-gray);
    border: none;
}

.field-row__radio-buttons {
    display: flex;
    margin-left: auto;
    flex: 0 1 50%;
}

.calculator__content-block {
    display: none;
}

.calculator__content-block.--active {
    display: block;
}

.tarif__wrapper {
    display: flex;
}

.tarif {
    flex: 0 1 calc(50% - 17px);
    background: var(--color-white);
    border: 1px solid #E5E5E5;
    padding: 50px 60px;
}

.tarif:hover {
    cursor: pointer;
}

.tarif.--active {
    background-color: var(--color-brown);
}

.tarif.--active svg path {
    fill: var(--color-white);
}

.tarif.--active .tarif__price {
    color: var(--color-white);
}

.tarif.--active ul li {
    color: var(--color-white);
}

.tarif.--active .tarif-top span {
    color: var(--color-white);
}

.tarif + .tarif {
    margin-left: auto;
}

.tarif__price {
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 45px;
    line-height: 1em;
    color: var(--color-brown);
    margin-bottom: 30px;
}

.tarif ul li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3em;
    margin-bottom: 10px;
    color: var(--color-gray);
    list-style-position: inside;
    list-style-type: circle;
}

.tarif-top {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.tarif-top svg{
    display: flex;
    margin-right: 10px;
}

.tarif-top span{
    font-family: Arsenal;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 1em;
    color: var(--color-blue);
}

/* Radio */
.form_radio_btn {
    flex: 0 1 50%;
    text-align: center;
}

.form_radio_btn input[type=radio] {
	display: none;
}
.form_radio_btn label {
	display: block;
	cursor: pointer;
	padding: 18px 18px;
	line-height: 1em;
	border: none;
    user-select: none;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    color: var(--color-gray);
    background: #E5E5E5;
}
 
.form_radio_btn input[type=radio]:checked + label {
    background: var(--color-brown);
    color: var(--color-white);
}

.form_radio_btn label:hover {
	color: var(--color-gray);
}

.slick-dots {
    position: absolute;
    right: 0;
    margin-top: 40px;
    z-index: 100;
}

.slick-dots::before {
    content: '';
    background: #173E62;
    width: 100px;
    height: 2px;
    position: absolute;
    left: -110px;
    top: 19px;

}

.slick-dots li {
    display: inline-block;
    border: 2px solid transparent;
    margin-left: 5px;
    cursor: pointer;
}

.slick-dots li button {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1em;
    display: flex;
    align-items: center;
    background: none;
    color: #173E62;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border: none;
    cursor: pointer;
} 

.slick-dots li.slick-active {
    border: 2px solid #173E62;
}

.slick-dots li:hover {
    cursor: pointer;
}

.slick-arrow {
    position: absolute;
    z-index: 30;
}

.slick-arrow:hover {
    background-color: var(--color-white);
}

.slick-next {
    left: -150px;
    top: 45%;
}

.slick-prev {
    left: -150px;
    top: calc(45% + 60px);
}

#advantages__slider .slick-next {
    left: auto;
    right: 0;
}

#advantages__slider .slick-prev {
    left: auto;
    right: 0;
}

.arrow-next {
    cursor: pointer;
    height: 40px;
    width: 40px;
    border: 2px solid #173E62;
}

.arrow-next-top, 
.arrow-next-bottom {
    background: #173E62;
    height: 2px;
    left: 8px;
    position: absolute;
    top: 18px;
    width: 15px;
}
.arrow-next-top {
    top: 18px;
}
.arrow-next-top {
    transform: rotate(45deg);
    transform-origin: bottom right;
}
.arrow-next-bottom {
    transform: rotate(-45deg);
    transform-origin: top right;
}
.arrow-next-top::after, 
.arrow-next-bottom::after {
    background: #000;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.15s;
}
.arrow-next-top::after {
    left: 100%;
    right: 0;
    transition-delay: 0s;
}
.arrow-next-bottom::after {
    left: 0;
    right: 100%;
    transition-delay: 0.15s;
}


.arrow-prev {
    cursor: pointer;
    height: 40px;
    width: 40px;
    border: 2px solid #173E62;
}

.arrow-prev-top, 
.arrow-prev-bottom {
    background: #173E62;
    height: 2px;
    left: -2px;
    position: absolute;
    top: 19px;
    width: 15px;
}
.arrow-prev-top {
    top: 17px;
}
.arrow-prev-top {
    transform: rotate(135deg);
    transform-origin: bottom right;
}
.arrow-prev-bottom {
    transform: rotate(-135deg);
    transform-origin: top right;
}
.arrow-prev-top::after, 
.arrow-prev-bottom::after {
    background: #000;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.15s;
}
.arrow-prev-top::after {
    left: 100%;
    right: 0;
    transition-delay: 0s;
}
.arrow-prev-bottom::after {
    left: 0;
    right: 100%;
    transition-delay: 0.15s;
}
/* .arrow-prev:hover .arrow-prev-top::after {
    left: 0;
    transition-delay: 0.15s;
}
.arrow-prev:hover .arrow-prev-bottom::after {
    right: 0;
    transition-delay: 0s;
} */

.sidebar {
    z-index: 1000;
}

.modal-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--color-blue);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: none;
}

.modal-menu.--open {
    display: flex !important;
}

.modal-menu__container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.modal-menu__container a {
    margin-bottom: 20px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 1.3em;
    color: var(--color-white);
    text-transform: uppercase;
}

main.content {
    min-height: 60vh;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
}

.kama_breadcrumbs {
    margin-top: 100px;
}

.kama_breadcrumbs {
    color: var(--color-brown);
}

.kama_breadcrumbs a, .kama_breadcrumbs span {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    color: var(--color-brown);
}

.content h1{
    margin-bottom: 100px;
    margin-top: 30px;
}

.content__text {
    margin-top: 30px;
}


/* Modal form */
.modal-form {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(51, 85, 115, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal-form__in {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 101;
}

.modal-form.--active {
    display: flex !important;
}

.modal-form__container {
    max-width: 635px;
    padding: 50px 60px;
    background-color: var(--color-white);
    position: relative;
    z-index: 102;
}

.form__close {
    position: absolute;
    top: 15px;
    right: 15px; 
}

.form__close:hover {
    cursor: pointer;
}

.modal-form .--h2 {
    margin-bottom: 50px;
    text-align: center;
}

.modal-form__flex {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.modal-form__flex label {
    flex: 0 1 50%;
}

.modal-form__flex .button {
    margin-top: 0;
    margin-left: auto;
    flex: 0 1 40%;
}

p.form-success {
    margin-bottom: 0;
}

#consult-form-1 p.form-success {
    color: var(--color-white);
}

#consult-form-1 p.form-error {
    color: var(--color-white);
}

#consult-form-2 p.form-success {
    color: var(--color-blue);
}

#consult-form-2 p.form-error {
    color: var(--color-blue);
}

.check-error .checkmark{
    background: red;
}

@media (max-width: 1440px) {
    .big-title {
        font-size: 45px;
    }

    .first-screen {
        height: 65vh;
    }

    .first-screeen_slide {
        padding: 50px 60px 100px 60px;
    }

    .first-screen__slider {
        flex: 0 1 50%;
    }

    .first-screen__image {
        flex: 0 1 calc(50% + var(--width-sidebar));
    }

    .slick-dots {
        bottom: 10px;
        top: auto;
    }

    .--h1 {
        font-size: 36px;
    }

    .signature {
        margin: 30px 0;
    }

    .about-column__in {
        max-width: 100%;
    }

    .about-column.--left {
        padding-left: var(--width-sidebar);
  
    }

    .about {
        max-height: none;
    }

    .about-column.--left {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .why__block__great {
        font-size: 75px;
    }

    .advantages__slider {
        padding-left: 0;
    }

    .about-column:not(.--left) img{
        object-fit: cover;
        height: 100%; 
    }
}

@media (max-width: 1240px) {
    .header__menu {
        display: none;
    }

    .header__contacts {
        flex: 0 1 50%;
    }

    .logo-block {
        flex: 0 1 50%;
        justify-content: flex-start;
    }

    .button {
        padding: 20px;
    }

    .help-block {
        flex: 0 1 48%;
    }

    .help-block:not(:nth-child(3n)) {
        margin-right: 0;
    }

    .help-block:not(:nth-child(2n)) {
        margin-right: 2%;
    }

    .why-column {
        flex: 0 1 100%;
    }

    .why {
        flex-wrap: wrap;
    }

    .why-column.--right {
        justify-content: flex-end;
    }

    .service__block__content {
        flex: 0 1 100%;
    }

    .service__block__image {
        display: none;
    }

    .calculator__in {
        flex-wrap: wrap;
    }

    .calculator__left {
        flex: 0 1 100%;
        margin-bottom: 30px;
        margin-right: 0;
        overflow: hidden;
    }

    .calculator__tab {
        overflow-x: auto;
    }

    .calculator__tab li {
        flex: 0 1 auto !important;
        width: 500px;
    }

    .calculator__right {
        flex: 0 1 100%;
    }
    
    .first-screen__image {
        display: none;
    }

    .first-screen__slider {
        flex: 0 1 100%;
    }

    .first-screen {
        padding-right: var(--width-sidebar);
    }

    .first-screen {
        height: 60vh;
    }

    :root {
        --distance: 80px;
    }

    .advantages__img {
        width: 40%;
        top: 160px;
        height: calc(100% - 160px * 2);
    }

    .advantages__slider {
        margin-left: 40%;
    }

    .services__tabs {
        overflow: scroll;
        justify-content: flex-start;
    }

    .services__tabs li {
        min-width: 300px;
    }

    .calculator__tab {
        overflow: scroll;
        justify-content: flex-start;
    }

    .calculator__tab li {
        min-width: 250px;
    }

    .form-individual {
        flex-wrap: wrap;
    }

    .form-individual__title {
        flex: 0 1 100%;
        margin-bottom: 30px;
    }

    .form-individual__form {
        flex: 0 1 100%;
    }

    .info {
        flex-wrap: wrap;
    }

    .info-column {
        flex: 0 1 100%;
    }

    .--h1.info-column {
        margin-bottom: 30px;
    }

    .nowork {
        padding-left: var(--width-sidebar);
        padding-right: var(--width-sidebar);
    }

    .nowork__img {
        display: none;
    }

    .nowork__in {
        padding-right: 50px;
    }

    .form-consult {
        flex-wrap: wrap;
    }

    .form-consult__title {
        flex: 0 1 100%;
        margin-bottom: 30px;
    }

    .form-consult__form {
        flex: 0 1 100%;
    }

    .questions {
        flex-wrap: wrap;
    }

    .questions-column {
        flex: 0 1 100%;
    }

    .contacts {
        padding: 30px;
    }

    .reviews__in {
        min-height: auto;
        padding: 50px;
        margin-bottom: 30px;
    }

    .reviews {
        padding: 0 var(--width-sidebar);
        flex-wrap: wrap;
    }

    .reviews__blocks {
        top: 0;
        right: 0;
        position: relative;
        height: auto;
        width: 100%;
    }

    #reviews-slider .slick-next {
        
    }
}


@media (max-width: 1024px) {
    :root {
        --width-sidebar: 25px;
    }

    .help-block {
        max-width: 48%;
    }

    .sidebar {
        flex-direction: row;
        bottom: auto;
        height: 80px;
        right: 0;
        width: 100%;
    }

    .sidebar__social {
        flex-direction: row;
        margin-left: auto;
        align-items: center;
        
    }

    .sidebar__social a {
        margin-bottom: 0 !important;
        margin-left: 10px;
    }

    .sidebar__line {
        display: none;
    }

    .sidebar__button {
        margin-top: 0;
        border: none;
    }

    .sidebar__button .sidebar__button__line:not(:first-child) {
        display: none;
    }
    .sidebar__button__line {
        flex-direction: column;
        height: auto;
        width: 30px;
        margin-bottom: 0 !important;
    }

    .sidebar__button__line span{
        width: 30px;
        height: 5px;
        margin-bottom: 5px;
        border-radius: 0;
    }

    .sidebar__button__line span:last-child {
        margin-bottom: 0;
    }

    .sidebar {
        padding: 0 var(--width-sidebar);
        background-color: var(--color-pudra);
    }

    .header {
        margin-top: 75px;
    }

    .about {
        flex-wrap: wrap;
    }

    .about-column {
        flex: 0 1 100%;
    }

    .about-column.--left {
        order: 2;
        padding-right: var(--width-sidebar);
    }

    .advantages__img {
        display: none;
    }

    .advantages {
        padding: 0 var(--width-sidebar);
    }

    .advantages__slider {
        margin-left: 0;
        padding: 40px;
    }

    .first-screeen_slide {
        padding: 25px 30px 50px 30px;
    }

    .first-screeen_slide p {
        margin-bottom: 30px;
    }

    .advantages__in {
        min-height: auto;
    }

    .reviews__in {
        padding: 30px;
    }

    .reviews__in p {
        max-width: 100%;
    }
    
    .reviews__block {
        padding: 30px;
    }

    #reviews-slider .slick-dots {
        bottom: -50px;
    }

    #reviews {
        margin-bottom: 100px !important;
    }

    .nowork__in {
        padding: 30px;
    }

    .nowork__in h3 {
        width: 100%;
    }

    .nowork__list {
        width: 100%;
    }

    .form-consult__title {
        padding-right: 0;
    }

}

@media (max-width: 768px) {
    .articles__in {
        flex-wrap: wrap;   
    }

    .articles__block {
        flex: 0 1 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .articles__block:nth-child(2n) {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }

    form.questions-column {
        padding: 30px;
    }

    .first-screen {
        height: auto;
        margin-bottom: 0 !important;
    }

    .first-screen__slider {
        padding-bottom: 150px;
    }

    .first-screen .slick-dots {
        bottom: 60px;
    }

    .service__block__content {
        padding: 30px;
    }

    .calculator__wrapper {
        padding: 30px;
    }

    .field-row {
        flex-wrap: wrap;
    }

    .field-row__text {
        flex: 0 1 100%;
        margin-bottom: 10px;
    }

    .field-row__select {
        flex: 0 1 100%;
        margin-left: 0;
    }

    .field-row__radio-buttons {
        flex: 0 1 100%;
        margin-left: 0;
    }

    .calculator h2 {
        margin-bottom: 30px;
    }

    .mini-text {
        margin-top: 20px;
    }

    .services {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    body.home {
        display: flex;
        flex-direction: column;
    }


    body.home section {
        order: 5;
    }

    body.home .first-screen {
        order: 1;
    }

    body.home .footer {
        order: 20;
    }    

    body.home .about {
        order: 3;
    }

    body.home .help {
        order: 4;
    }
    
    .calculator__tab li {
        min-height: 30px;
        min-width: 215px;
    }
    
    .calculator__content {
        padding-top: 20px;
    }

    .field-row {
        margin-bottom: 10px;
    }

    .mini-text {
        margin-top: 10px;
    }

    .calculator__right {
        padding: 15px 10px;
    }

    .calculator__right-title {
        margin-bottom: 10px;
        padding: 0;
    }

    .tarif {
        padding: 20px 25px;
        flex: 0 1 100%;
    }

    .tarif__wrapper {
        flex-wrap: wrap;
    }

    .calculator__right-list li {
        font-size: 12px;
    }

    .calculator__right-list {
        padding: 0;
    }

    .amount {
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .help-block {
        max-width: 100%;
        flex: 0 1 100%;
        margin-right: 0 !important;
    }

    .why-column.--right {
        justify-content: center;
        padding-left: 0;
    }

    .form-individual__box, .form-consult__box {
        flex: 0 1 100%;
        margin-right: 0 !important;
    }

    .footer__top {
        flex-wrap: wrap;
    }

    .footer__top .logo-block {
        flex: 0 1 100%;
        margin-bottom: 30px;
        justify-content: center;
    }

    .footer__social {
        flex: 0 1 100%;
        margin-left: 0;
        justify-content: center;
    }

    .footer__social .social__button:last-child {
        margin-right: 0;
    }
    
    .footer__bottom {
        flex-direction: column;   
    }

    .footer__text {
        flex: 0 1 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .container.footer {
        padding-bottom: 20px;
    }

    .footer__top {
        padding: 30px 0;
    }

    .contacts-block {
        padding: 50px;
    }

    .services__tabs li {
        font-size: 16px;
        height: 50px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .logo-block__text {
        font-size: 12px;
    }

    .logo-block__text span {
        padding: 5px;
    }

    .header__contacts a {
        font-size: 12px;
    }

    .logo-block__right {
        border-left: 1px solid var(--color-brown);
    }

    .big-title {
        font-size: 35px;
    }

    .button {
        padding: 10px 15px;
        font-size: 12px;
        margin-top: 0;
    }

    .slick-dots li button {
        width: 25px;
        height: 25px;
    }

    .first-screen .slick-dots {
        bottom: 80px;
    }

    .why-column.--right {
        flex-wrap: wrap;
    }

    .why__block {
        flex: 0 1 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .why__block + .why__block {
        margin-left: 0;
    }

    :root {
        --distance: 50px;
    }

    .advantages__slide {
        padding-right: 0;
    }

    .advantages__slider {
        padding: 30px;
    }

    .advantages__in {
        padding-right: 0;
    }

    .advantages {
        padding-bottom: 50px;
    }

    #advantages__slider .slick-dots{
        bottom: -20px;
    }

    .calculator__right {
        padding: 30px 20px;
    }



    
}

@media (max-width: 420px) {
    :root {
        --width-sidebar: 10px;
    }

    select {
        font-size: 12px;
        padding: 10px;
    }

    .form_radio_btn label {
        font-size: 12px;
        padding: 10px;       
    }
}