@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--green: #30BB2E;
    --gray: rgba(0,0,0,0.4);
    --dark: #222125;
	--main: #30BB2E;
	--main_light: rgba(8, 194, 4, 0.07);
}

html {
    height: 100%;
}

body {
    height: 100%;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 140%;
    color: #000;
    background: #fff;
}

a {
    color: var(--blue);
    transition: all 0.3s;
}

a:hover {
    color: var(--dark);
    text-decoration: none;
}

b,
strong {
    font-weight: bold;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.ok_list li {
    min-height: 28px;
    padding: 4px 0 16px 45px;
    background: url(../images/ok_icon.svg) no-repeat;
    background-size: 28px auto;
}

ul.ok_list li:last-child {
    padding-bottom: 0;
}

img {
    width: 100%;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #000;
    font-size: 52px;
    line-height: 130%;
    padding: 0 0 32px;
    margin: 0;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 42px;
    color: #000;
    line-height: 120%;
    padding: 0 0 16px;
    margin: 0;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: var(--dark);
    line-height: 120%;
    padding: 0 0 16px;
    margin: 0;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: var(--dark);
    line-height: 120%;
    padding: 0 0 8px;
    margin: 0;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: var(--dark);
    line-height: 120%;
    padding: 0 0 8px;
    margin: 0;
}

/*preloader*/

.error_top_text,
.success_top_text {
    position: fixed;
    display: block;
    top: -110px;
    right: 30px;
    z-index: 104400;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	margin-left: 30px;
}

.error_top_text.badge_shake4,
.success_top_text.badge_shake4 {
  top: 30px;

  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}

.custom_close {
	right: 15px;
    position: absolute;
    top: 15px;
}

#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.25;
    background-color: #fff;
    display: none;
    z-index: 9999;
}

#overlay_error {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.55;
  background-color: #fff;
  display:none;
  transition: opacity ease 0.3s;
  z-index: 9999;
}

#wait {
    position: fixed;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 100%;
    color: #fff;
    z-index: 9999;
    display: none;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 4rem;
  }

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    border-radius: 100%;
    animation: pulsOut 1.3s ease-in-out infinite;
    filter: drop-shadow(0 0 10rem rgba(255, 255, 255, 0.75));
}

.loader:before {
    width: 100%;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 10rem  var(--main);;
    animation-name: pulsIn;
}

.loader:after {
    width: calc(100% - 1rem);
    padding-bottom: calc(100% - 1rem);
    box-shadow: 0 0 0 0  var(--main);;
}

@keyframes pulsIn {
    0% {
        box-shadow: inset 0 0 0 5rem  var(--main);;
        opacity: 1;
    }
    50%, 100% {
        box-shadow: inset 0 0 0 0  var(--main);;
        opacity: 0;
    }
}

@keyframes pulsOut {
    0%, 350% {
        box-shadow: 0 0 0 0  var(--main_light);;
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 5rem  var(--main_light);;
        opacity: 1;
    }
}

/*end preloader*/
.wrapper {
    height: auto !important;
    min-height: 100%;
}

.error_text{
	color:#fff;
	background:red;
}

.h_field{
	display:none;
}

.hidden {
	opacity: 0;
}

.visible {
	opacity: 1;
}

/* forms */

.btn,
.btn_white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    padding: 10px 30px;
    border: none;
    background: var(--green);
    border-radius: 5px;
    transition: all 0.3s;
}

.btn:hover {
    color: #fff;
    background: #21801f;
}

.btn:focus {
    box-shadow: none;
}

.btn_white {
    color: var(--dark);
    background: #F2F3F5;
}

.btn_white:hover {
    color: var(--dark);
    background: #cecece;
}

.btn i {
    margin-right: 10px;
}

.btn i img {
    width: 16px;
}

/* has float label */

.has-float-label {
    position: relative;
    background: var(--light);
    border-radius: 4px;
}

.has-float-label .form-control {
    height: 44px;
    min-height: 44px;
    display: block;
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #333;
    outline: none;
    padding: 15px 20px 0;
    margin: 0;
    position: relative;
    z-index: 1;
    border: 1px solid var(--gray_light);
    background: none;
    border-radius: 6px;
}

.has-float-label textarea.form-control {
    min-height: 100px;
}

.has-float-label select.form-control {
    padding: 20px 15px 0;
}

.has-float-label textarea.form-control {
    padding: 22px 20px 0;
}

.has-float-label.input-daterange .form-control {
    width: 50%;
    text-align: left;
}

.has-float-label.input-daterange .form-control:last-child {
    border-left: 1px solid #fff;
}

.has-float-label label:not(.custom-control-label) {
    width: 100%;
    height: 26px;
    display: block;
    font-weight: 300;
    font-size: 12px;
    color: #9B9B9B;
    line-height: 26px;
    padding: 0 20px;
    margin: 0;
    cursor: text;
    position: absolute;
    top: 0; left: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: none;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + *,
.has-float-label .form-control:placeholder-shown:not(:focus) + div + * {
    display: block;
    font-size: 14px;
    line-height: 44px;
    top: 0; left: 0;
}

.has-float-label .form-control::-webkit-input-placeholder {
    opacity: 1;
    transition: all 0.3s;
}

.has-float-label .form-control::-moz-placeholder {
    opacity: 1;
    transition: all 0.3s;
}

.has-float-label .form-control:-ms-input-placeholder {
    opacity: 1;
    transition: all 0.3s;
}

.has-float-label .form-control::placeholder {
    opacity: 1;
    transition: all 0.3s;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
    opacity: 0;
}

.form-group > input, 
.form-group > select, 
.form-group > textarea, 
.form-group > select, 
.form-group > label {
    padding-left: 20px;
    padding-right: 20px;
}

.modal-body.has-float-label .form-control:placeholder-shown:not(:focus) + *,
.modal-body.has-float-label label {
    left: 24px;
}

.input-group .has-float-label {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.input-group .has-float-label:not(:last-child),
.input-group .has-float-label:not(:last-child) .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: 0;
}

.input-group .has-float-label:not(:first-child),
.input-group .has-float-label:not(:first-child) .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group .has-float-label {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group-append {
    margin: 0;
    border-left: 1px solid #fff;
    background: var(--blue_light);
}
.input-group-append .btn.bg-km {
    background: var(--blue_light)!Important;
    color: var(--dark)!Important;
}

.input-group-prepend {
    margin: 0;
    border-right: 1px solid #fff;
    background: var(--blue_light);
}

.input-group-append.custom-control .custom-control-label,
.input-group-prepend.custom-control .custom-control-label {
    padding-left: 20px;
}

.has-float-label.view {
    background: none;
    border: 1px solid var(--light)
}

.has-float-label.view .form-control {
    height: 34px;
    font-size: 14px;
    color: #9B9B9B;
    padding: 13px 15px 0;
    cursor: default;
}

.has-float-label.view label:not(.custom-control-label), 
.has-float-label.view > span {
    font-size: 11px;
    line-height: 16px;
    padding: 0 15px;
}

.has-float-label .select2-container--bootstrap .select2-selection {
    height: 44px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333;
    line-height: 39px;
    padding: 15px 20px 0;
    border: 1px solid var(--gray_light);
    background: url(/images/select-arrow.svg) no-repeat right 12px top 50%;
    background-size: 15px auto;
    box-shadow: none;
}

.select2-container--bootstrap .select2-dropdown {
    border: none;
    background: var(--light);
    border-radius: 0;
    box-shadow: 0 10px 10px 5px rgb(0 0 0 / 5%);
}

.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
    height: 40px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333;
    padding: 0 17px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.select2-container--bootstrap .select2-results__option {
    padding: 6px 20px;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
    border: none;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background: var(--main_light);
	color: var(--main);
}


/* end has float label */

/* end forms */


/* header section */

.top_section_bg {
    background: url(../images/top_section_bg.jpg) no-repeat 50%;
    background-size: cover;
}

.header_section {
    width: 100%;
    padding: 30px 0;
    position: absolute;
    top: 0; left: 0;
    z-index: 100;
    animation-delay: 0.6s;
}

.header_section .logo {
    display: flex;
}

.header_section .logo img {
    max-width: 140px;
}

.head_menu_box {
    display: flex;
    flex-grow: unset;
    justify-content: space-between;
}

.header_section .btn_box {
    display: flex;
    align-items: center;
    padding-right: 50px;
}

.head_menu_box .navbar-nav .nav-item {
    padding: 0 10px;
}

.head_menu_box .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    color: #fff;
    padding: 0;
    transition: all 0.3s;
}

.head_menu_box .navbar-nav .nav-item .nav-link:hover {
    opacity: 0.3;
}

/* end header section */

/* top banner section */

.top_banner_section {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 110px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.top_banner_section .container {
    position: relative;
}

.top_banner_section .info {
    max-width: 562px;
    color: rgba(255,255,255,0.6);
    line-height: 180%;
}

.top_banner_section .info .top_title {
    font-weight: bold;
    color: var(--green);
    text-align: right;
    text-transform: uppercase;
    margin-bottom: -15px;
    animation-delay: 0.9s;
}

.top_banner_section .info h1 {
    color: #fff;
    animation-delay: 1.2s;
}

.top_banner_section .info p {
    padding-bottom: 32px;
    animation-delay: 1.5s;
}

.top_banner_section .btn {
    animation-delay: 1.8s;
}

.browser_image_box {
    width: 936px;
    height: 536px;
    position: absolute;
    top: 50%; right: -365px;
    transform: translateY(-50%);
}

.top_section_browser_screen {
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
    animation-delay: 1s;
}

.top_section_browser_screen img {
    width: 936px;
}

.top_section_browser_screen_shadow {
    position: absolute;
    bottom: -265px;
    animation-delay: 1.5s;
}

.top_section_browser_screen_shadow img {
    width: 1230px;
}

.top_banner_section .figure_1 {
    position: absolute;
    top: 160px; left: 263px;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s;
}

.top_banner_section.visible .figure_1 {
    opacity: 1;
    animation: box1_animation 4s;
}

@keyframes box1_animation {
    0% {top: 192px; left: 294px; opacity: 0;}
    50% {top: 192px; left: 294px; opacity: 0;}
    100% {top: 160px; left: 263px; opacity: 1;}
}

@keyframes box1_shadow_animation {
    0% {opacity: 0; filter: blur(0); top: 0; left: 0;}
    50% {opacity: 0; filter: blur(0); top: 0; left: 0;}
    100% {opacity: 1; filter: blur(10px); top: 35px; left: 35px;}
}

.top_banner_section .figure_1 img {
    width: 281px;
    position: relative;
    z-index: 1;
}

.top_banner_section .figure_1::after {
    content: '';
    width: 303px;
    height: 227px;
    display: block;
    position: absolute;
    top: 35px; left: 35px;
    opacity: 0;
    background: url(../images/top_section_browser_block_1_shadow.svg) no-repeat;
    background-size: 100% 100%;
    filter: blur(10px);
}

.top_banner_section.visible .figure_1::after {
    opacity: 1;
    animation: box1_shadow_animation 4s;
}

.top_banner_section .figure_2 {
    position: absolute;
    top: 130px; left: 520px;
    z-index: 4;
    opacity: 0;
}

.top_banner_section.visible .figure_2 {
    opacity: 1;
    animation: box2_animation 5.5s;
}

.top_banner_section .figure_2 img {
    height: 268px;
    width: 213px;
    position: relative;
    z-index: 1;
}

.top_banner_section .figure_2::after {
    content: '';
    width: 213px;
    height: 268px;
    display: block;
    position: absolute;
    top: 35px; left: 35px;
    opacity: 0;
    background: url(../images/top_section_browser_block_2_shadow.svg) no-repeat;
    background-size: 100% 100%;
    filter: blur(10px);
}

.top_banner_section.visible .figure_2::after {
    opacity: 1;
    animation: box2_shadow_animation 5.5s;
}

@keyframes box2_animation {
    0% {top: 170px; left: 565; opacity: 0;}
    50% {top: 170px; left: 565px; opacity: 0;}
    100% {top: 130px; left: 520px; opacity: 1;}
}

@keyframes box2_shadow_animation {
    0% {opacity: 0; filter: blur(0); top: 0; left: 0;}
    50% {opacity: 0; filter: blur(0); top: 0; left: 0;}
    100% {opacity: 1; filter: blur(10px); top: 35px; left: 35px;}
}


/* end top banner section */

/* users section */

.users_section {
    min-height: 100vh;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.users_section h2 {
    animation-delay: 0.3s;
}

.users_section_image img {
    max-width: calc(100% - 35px);
}

.users_section_info p {
    color: var(--gray);
    line-height: 180%;
    margin-bottom: 32px;
    animation-delay: 0.6s
}

.users_section_info .ok_list {
    padding-bottom: 44px;
}

.users_section_info .ok_list li:nth-child(1) {
    animation-delay: 0.7s
}

.users_section_info .ok_list li:nth-child(2) {
    animation-delay: 0.8s
}

.users_section_info .ok_list li:nth-child(3) {
    animation-delay: 0.9s
}

.users_section_info .ok_list li:nth-child(4) {
    animation-delay: 1s
}

.users_section_info .ok_list li:nth-child(5) {
    animation-delay: 1.2s
}

.users_section_info .btn {
    animation-delay: 1.3s;
}

/* end users section */

/* scheme section */

.scheme_section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.scheme_section h2 {
    text-align: center;
    padding-bottom: 48px;
}

.scheme_image_block {
    width: 976px;
    position: relative;
    margin: auto;
    /* overflow: hidden; */
}

/* .scheme_image_block::after {
    content: '';
    height: 20px;
    width: 100%;
    display: block;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    background: linear-gradient(0, rgba(255, 255, 255, 0.00) 0%, #fff 100%);
} */

.scheme_image_inner {
    width: 100%;
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
}

.start_anim .scheme_image_inner {
    animation: scheme_image_inner_animation 2.25s cubic-bezier(.83,.65,.49,1.03);
}

@keyframes scheme_image_inner_animation {
    0% {transform: translate(-55%, -65%) scale(0.5) rotate(-20deg); top: 50%; left: 50%; opacity: 0;}
    92% {transform: translate(-55%, -65%) scale(0.5) rotate(-20deg); top: 50%; left: 50%; opacity: 0;}
    95% {opacity: 1;}
    100% {transform: scale(1) translate(0) rotate(0); top: 0; left: 0; opacity: 1;}
}

.scheme_image {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.start_anim .scheme_image {
    animation: scheme_image_animation 2.2s cubic-bezier(.15,.37,.82,1.14);
}

@keyframes scheme_image_animation {
    0% {top: -150px; opacity: 1;}
    40% {opacity: 1;}
    92% {opacity: 1;}
    100% {top: 0; opacity: 0;}
}

/* @keyframes scheme_image_animation {
    0% {transform: rotate(0deg); top: -150px; opacity: 1;}
    40% {transform: rotate(0deg); top: -20px; left: 0; opacity: 1;}
    80% {opacity: 1;}
    100% {transform: rotate(15deg); top: 0; left: 60px; opacity: 0;}
} */

.scheme_image_shadow {
    width: 939px;
    position: absolute;
    top: 650px; left: -110px;
    opacity: 0;
}

.start_anim .scheme_image_shadow {
    animation: scheme_image_shadow_animation 2.5s cubic-bezier(.15,.37,.82,1.14);
}


@keyframes scheme_image_shadow_animation {
    0% {transform: scale(0); opacity: 0;}
    80% {transform: scale(1); opacity: 1;}
    100% {opacity: 0;}
}

/* @keyframes scheme_image_shadow_animation {
    0% {transform: scale(0); opacity: 0;}
    50% {transform: scale(1); opacity: 1;}
    100% {top: 600px; opacity: 0;}
} */

/* end scheme section */

/* advantages section */

.advantages_section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.advantages_section h2 {
    text-align: center;
    padding-bottom: 48px;
}

.advantages_box .advantages_icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(48, 187, 46, 0.1);
    border-radius: 24px;
} 

.advantages_box .advantages_icon img {
    width: 60px;
}

.advantages_box h4 {
    padding-right: 30px;
}

.advantages_box p {
    font-size: 14px;
    padding-right: 30px;
}

.advantages_box:nth-child(1) {
    animation-delay: 0.3s;
}

.advantages_box:nth-child(2) {
    animation-delay: 0.45s;
}

.advantages_box:nth-child(3) {
    animation-delay: 0.6s;
}

.advantages_box:nth-child(4) {
    animation-delay: 0.75s;
}

/* end advantages section */

/* steps section */

.steps_section {
    min-height: 100vh;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps_section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps_section h2 {
    padding-bottom: 50px;
}

.step_box {
    display: flex;
    font-size: 14px;
    padding: 30px;
    border: none;
    position: relative;
    background: none;
    border-radius: 24px;
}

.col-xl-4:nth-child(1) .step_box:after {
    content: '';
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    top: 30px; right: -90px;
    background: url(../images/steps_section_arrow_1.svg) no-repeat;
    background-size: cover;
}

.col-xl-4:nth-child(2) .step_box:after {
    content: '';
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    bottom: 30px; right: -90px;
    background: url(../images/steps_section_arrow_2.svg) no-repeat;
    background-size: cover;
}

.col-xl-4:nth-child(1) .step_box {
    border: 1px dashed #DFDFDF;
    animation-delay: .45s;
}

.col-xl-4:nth-child(2) .step_box {
    margin-top: 120px;
    border: 1px solid #DFDFDF;
    animation-delay: .6s;
}

.col-xl-4:nth-child(3) .step_box {
    background: rgba(48, 187, 46, 0.1);
    animation-delay: .75s;
}

.step_box img {
    max-width: 151px;
    width: 100%;
    margin-bottom: 8px;
}

.step_box .card-body {
    padding: 0;
}

.step_box .card-title {
    padding-bottom: 16px;
    margin-bottom: 0;
}

.col-xl-4:nth-child(3) .step_box .card-title {
    color: var(--green);
}

.step_box p {
    color: var(--gray);
}

.steps_section .btn {
    margin-top: 70px;
    animation-delay: 1s;
}

/* end steps section */

/* team section */

.team_section {
    min-height: 100vh;
    padding: 50px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team_section h3 {
    padding-bottom: 50px;
}

.team_box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: all 0.3s;
}

.col-xl-4:nth-child(1) .team_box {
    animation-delay: 0.3s;
}

.col-xl-4:nth-child(2) .team_box {
    animation-delay: 0.45s;
}

.col-xl-4:nth-child(3) .team_box {
    animation-delay: 0.6s;
}

.team_box .team_box_photo,
.team_box .team_box_photo img {
    width: 100%;
    margin: 0;
}

.team_box .team_box_info {
    width: 100%;
    color: #fff;
    padding: 20px 30px 30px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(29, 29, 29, 0.00) 0%, #1C1C1C 100%);
    backdrop-filter: blur(2px);
    transition: all 0.3s;
}

.team_box .team_box_info .team_box_name {
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 4px;;
}

.team_box .team_box_info .team_box_status {
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    text-transform: uppercase;
}

.team_box .team_box_info .team_box_text {
    height: 0;
    font-size: 14px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.team_box:hover .team_box_info .team_box_text {
    height: auto;
    padding-top: 8px;
    opacity: 1;
}

/* end team section */

/* contact section */

.contact_section {
    padding-bottom: 30px;
}

.contact_section .contacts_info_box {
    padding: 40px 100px 40px 610px;
    background: url(../images/contact_section_bg.png) no-repeat 50%;
    background-size: cover;
    border-radius: 24px;
}

.contact_section h3 {
    color: #fff;
    padding-bottom: 30px;
}

.contacts_phone_line {
    padding-bottom: 20px;
}

.contacts_phone_line a {
    display: inline-flex;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.contacts_phone_line a i {
    margin-right: 10px;
}

.contacts_phone_line a i img {
    width: 25px;
}

.contacts_phone_line a .contacts_phone_name {
    font-weight: 500;
    font-size: 16px;
    opacity: 0.5;
    margin-left: 10px;
    position: relative;
    top: 1px;
    transition: all 0.3s;
}

.contacts_phone_line a:hover .contacts_phone_name {
    opacity: 1;
}

.contacts_section_btns_line {
    display: flex;
    padding-top: 20px;
}

.contacts_section_btns_line .btn {
    width: 100%;
    margin-left: 20px;
}

.contacts_section_btns_line .btn:first-child {
    margin: 0;
}

.contact_section .info_text {
    padding-bottom: 20px;
}

.contact_section .info_text a {
    font-size: 14px;
    color: var(--green);
}

.contact_section .info_text a:hover {
    color: #fff;
}

/* end contact section */

/* footer section */

.footer_section {
    padding: 30px 0;
}

.footer_section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials_row {
    display: flex;
}

.copyrights {
    font-size: 14px;
    color: var(--gray);
}

/* end footer section */

/* adaptive styles */

@media screen and (max-width: 1199px) {

    h1 {
        font-size: 48px;
    }

    .top_banner_section .info {
        max-width: 520px;
    }

    .browser_image_box {
        transform: translateY(-50%) scale(0.7);
    }

    .steps_section .btn {
        margin-top: 40px;
    }

    .team_box .team_box_info {
        padding: 20px;
    }

    .team_box .team_box_info .team_box_name {
        font-size: 20px;
    }

    .contact_section .contacts_info_box {
        padding: 40px 40px 40px 390px;
    }

    .scheme_image_block {
        width: 100%;
    }

    .scheme_image_shadow {
        width: 100%;
        top: 600px;
    }

}

@media screen and (max-width: 991px) {

    .head_menu_box.navbar-collapse {
		height: 100%;
		text-align: center;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0; right: 0; left: 0; bottom: 0;
		opacity: 0;
		z-index: 1000;
		background: #1C1C1C;
        backdrop-filter: blur(10px);
		transform: translateY(-100%);
	}

    .header_section .btn_box .btn.btn_green.d-xl-none {
        font-size: 14px;
        padding: 8px 20px;
    }

	@keyframes showMenu {
		0%    {opacity: 0;}
		80%   {opacity: 0; transform: translateY(-100%);}
		100%  {opacity: 1; transform: translateY(0);}
	}

	.head_menu_box.show.navbar-collapse {
		display: flex;
		flex-direction: column;
		padding: 0 50px;
		overflow-y: scroll;
		opacity: 1;
		transform: translateY(0);
		animation: showMenu ease-in-out;
	}

	.header-section .navbar-dark .navbar-toggler.active {
		position: fixed;
		top: 35px; 
		right: 50%;
		z-index: 10000;
		transform: translateX(calc(50% + 335px));
	}

    #burger-icon {
		width: 60px;
		height: 35px;
		transform: translateX(18px) scale(0.4);
		cursor: pointer;
        margin-top: -18px;
        position: absolute;
        top: 50%; right: 0;
	}

	#burger-icon.open {
		position: fixed;
		top: 49px; 
		right: 50%;
		z-index: 10000;
        border: none;
        box-shadow: none;
        outline: none;
		transform: translateX(calc(50% + 333px)) scale(0.4);
	}
	
	#burger-icon span {
		display: block;
		position: absolute;
		height: 6px;
		width: 50%;
		background: #fff;
		opacity: 1;
		transform: rotate(0deg);
		transition: .25s ease-in-out;
	}
	
	#burger-icon span:nth-child(even) {
		left: 50%;
	}
	
	#burger-icon span:nth-child(odd) {
		left:0px;
	}
	
	#burger-icon span:nth-child(1), #burger-icon span:nth-child(2) {
		top: 0px;
	}
	
	#burger-icon span:nth-child(3), #burger-icon span:nth-child(4) {
		top: 18px;
	}
	
	#burger-icon span:nth-child(5), #burger-icon span:nth-child(6) {
		top: 36px;
	}
	
	#burger-icon.open span:nth-child(1),#burger-icon.open span:nth-child(6) {
		transform: rotate(45deg);
	}
	
	#burger-icon.open span:nth-child(2),#burger-icon.open span:nth-child(5) {
		transform: rotate(-45deg);
	}
	
	#burger-icon.open span:nth-child(1) {
		left: 5px;
		top: 7px;
	}
	
	#burger-icon.open span:nth-child(2) {
		left: calc(50% - 5px);
		top: 7px;
	}
	
	#burger-icon.open span:nth-child(3) {
		left: -50%;
		opacity: 0;
	}
	
	#burger-icon.open span:nth-child(4) {
		left: 100%;
		opacity: 0;
	}
	
	#burger-icon.open span:nth-child(5) {
		left: 5px;
		top: 29px;
	}
	
	#burger-icon.open span:nth-child(6) {
		left: calc(50% - 5px);
		top: 29px;
	}

    .head_menu_box .navbar-nav .nav-item .nav-link {
        font-size: 18px;
        margin: 15px 0;
    }

    .head_menu_box .navbar-nav {
        padding-bottom: 40px;
    }

    .top_banner_section {
        padding: 200px 0 100px;
    }

    .browser_image_box {
        width: 100%;
        position: relative;
        top: 0; right: 0;
        transform: translateY(0);
    }

    .users_section_image {
        max-width: 500px;
        padding-bottom: 40px;
    }

    .advantages_section {
        padding-bottom: 10px;
    }

    .advantages_box {
        padding-bottom: 40px;
    }

    .col-xl-4:nth-child(2) .step_box,
    .step_box {
        margin: 15px 0;
    }

    .step_box {
        max-width: 400px;
    }

    .steps_section .col-xl-4 {
        display: flex;
        justify-content: center;
    }

    .col-xl-4:nth-child(1) .step_box:after {
        top: auto; bottom: -40px; right: -60px;
        transform: rotate(40deg);
    }

    .col-xl-4:nth-child(2) .step_box:after {
        top: auto; bottom: -40px; left: -60px; right: auto;
        transform: rotate(140deg);
    }

    .contact_section .contacts_info_box {
        padding: 30px 30px 30px 300px;
    }

    .team_section .col-xl-4.col-lg-4.col-md-4 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .team_box {
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .team_section h3 {
        text-align: center;
    }

    .team_box .team_box_info {
        padding: 20px 30px 30px;
    }

    .team_box:hover .team_box_info .team_box_text {
        line-height: 140%;
    }

    .scheme_image_shadow {
        margin-left: 30px;
        top: 420px;
    }
    
}

@media screen and (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    .animate__animated {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}

    #burger-icon.open {
        transform: translateX(calc(50% + 243px)) scale(0.4);
    }

    .browser_image_box {
        width: 100%;
        position: relative;
        top: 0;
        right: 140px;
        transform: translateY(0) scale(1);
    }

    .col-xl-4:nth-child(1) .step_box:after {
        right: -45px;
    }

    .col-xl-4:nth-child(2) .step_box:after {
        left: -45px;
    }

    .advantages_box {
        padding-bottom: 20px;
    }

    .browser_image_box {
        transform: scale(0.7) !important;
    }

    .contact_section .contacts_info_box {
        padding: 30px 60px;
        background: #1C1C1C;
    }

    .footer_section .container {
        flex-direction: column;
        align-items: center;
    }

    .copyrights {
        padding: 10px 0 15px;
    }

    .scheme_image_shadow {
        margin-left: 50px;
        top: 85%;
    }

}

@media screen and (max-width: 575px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 42px;
    }

    #burger-icon.open {
        right: -3px;
        transform: translateX(0) scale(0.4);
    }

    .advantages_box {
        text-align: center;
        padding-bottom: 20px;
    }

    .advantages_box .advantages_icon {
        margin: 0 auto 30px;
    }

    .advantages_box h4,
    .advantages_box p {
        padding-left: 50px;
        padding-right: 50px;
    }

    .contacts_section_btns_line {
        flex-direction: column;
    }

    .contacts_section_btns_line .btn,
    .contacts_section_btns_line .btn:first-child {
        margin: 0 0 20px;
    }

    .team_section {
        padding: 50px 0;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .top_banner_section .info .top_title {
        margin-bottom: -5px;
    }

}

@media screen and (max-width: 459px) {

    .header_section .logo img {
        max-width: 110px;
    }

    .contact_section .contacts_info_box {
        padding: 40px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    .header_section .btn_box {
        padding-right: 45px;
    }

}

@media screen and (max-width: 360px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }

}

/* end adaptive styles */