@font-face {
    font-family: 'ITC-Avant';
    src: url('assets/fonts/ITC-Avant-Garde-Gothic-LT-Bold.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('assets/fonts/Avenir.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

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

body {
    margin: 0;
    font-family: Avenir, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: ITC-Avant, sans-serif;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container1 {
    text-align: center;
    /* padding: 5px; */
    max-width: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container2 {
    text-align: left;
    /* padding: 10px; */
    padding-left: 10px;
    padding-right: 10px;
    max-width: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.containerP {
    text-align: center;
    /* padding: 10px; */
    max-width: auto;
}

.container3 {
    text-align: center;
    padding: 10px;
    max-width: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
  
.col-3 {
    flex: 0 0 auto;
    width: 25%;
}
  
.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
  
.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}
  
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
  
.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}
  
.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}
  
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}
  
.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.d-flex {
    display: flex !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}
  
.justify-content-end {
    justify-content: flex-end !important;
}
  
.justify-content-center {
    justify-content: center !important;
}
  
.justify-content-between {
    justify-content: space-between !important;
}
  
.justify-content-around {
    justify-content: space-around !important;
}
  
.justify-content-evenly {
    justify-content: space-evenly !important;
}
  
.align-items-start {
    align-items: flex-start !important;
}
  
.align-items-end {
    align-items: flex-end !important;
}
  
.align-items-center {
    align-items: center !important;
}
  
.align-items-baseline {
    align-items: baseline !important;
}
  
.align-items-stretch {
    align-items: stretch !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

.form-group {
    margin-bottom: 30px;
    position: relative;
}

  .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background: #F7F9F9;
    border: 1px solid transparent;
    outline: none;
    padding: 15px;
    border-radius: 10px;
    padding-left: 48px;
  }

  .form-control:focus {
    border-color: #707070;
    background: #fff;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #A0B5B4;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #A0B5B4;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #A0B5B4;
  }


@media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md {
        flex: 1 0 0%;
    }
    
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .order-lg-1 {
        order: 1 !important;
      }
    
    .order-lg-2 {
        order: 2 !important;
    }
    
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}


@media (min-width: 1800px) {
    .container {
        max-width: calc(100% - 150px);
    }
    
}


@media (min-width: 2000px) {
    .container {
        max-width: 1800px;
    }
    
}























header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 15px;
}

.logo {
    display: block;
}

.logo img {
    height: 170px;
}

.privacypolicy {
    text-align: center;
    /* margin-top: 20px; */
    font-size: 35px;
}


.menu {
    text-align: right;
    margin-top: 20px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu ul li {
    display: inline-block;
    margin-left: 40px;
}

.menu ul li a {
    display: block;
    text-decoration: none;
    color: #0C3635;
    font-size: 18px;
}

.menu ul li a.active {
    position: relative;
}

.menu ul li a.active:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-image: url(assets/img/heading-line.png);
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: 60px;
}

#link_contact.active {
    background: #2cf09c;
}

.ruf_divder img {
    width: 100%;
}

.ruf_divder {
    margin-top: -50px;
    position: relative;
    z-index: 99;
}

.banner h1 {
    font-size: 42px;
    color: #0C3635;
}
.banner {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 50px);
    padding-top: 120px;
}

.light_green {
    color: #2BF09C;
}

.banner p {
    font-size: 24px;
    color: #7B7B7B;
    line-height: 1.3;
}

.dot_bg {
    position: absolute;
    right: -75px;
    top: -75px;
}

.dot_bg.bottom_left {
    top: auto;
    right: auto;
    left: -75px;
    bottom: -75px;
}

.dot_bg img {
    width: 300px;
    height: 300px;
}

.banner_img {
    position: relative;
    text-align: center;
    display: inline-block;
}

.banner_mob_img {
    max-height: calc(100vh - 230px);
    position: relative;
    z-index: 99;
    max-width: 100%;
    min-height: 500px;
}

img.img_abs {
    position: absolute;
    left: 50%;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.btn-dark {
    background: #000000;
    color: #fff !important;
    border-radius: 40px;
    padding: 8px 30px;
}

.mini_continer {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.mb_bottom {
    margin-top: 0 !important;
    margin-bottom: -60px;
}

.section.bg_green {
    background: #104544;
    color: #fff;
    background-image: url(assets/img/hw-wrapper-bg.png);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.section h2 {
    font-size: 40px;
    text-align: center;
    position: relative;
    margin: 0;
    margin-bottom: 70px;
}

.section h3 {
    font-size: 40px;
    position: relative;
}

.section h3:after,
.section h2:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background-image: url(assets/img/heading-line.png);
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
}

.section p {
    font-size: 22px;
    line-height: 1.3;
}
.mini_continer p {
    color: rgba(0,0,0,0.5);
}

h3.left_center:after {
    transform: rotate(
90deg) translateX(0);
    left: -80px;
    top: 30px;
    bottom: 0 !important;
}

.hw_img {
    text-align: center;
    background-image: url(assets/img/hw-bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

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

.mb-5 {
    padding-bottom: 100px;
}

.video_box img {
    width: 100%;
}

.contact_us_wrapper {
    padding-top: 100px;
}

.contact_us_wrapper h2 {
    margin-bottom: 35px;
}

















footer {
    background: #104544;
    color: #fff;
    background-image: url(assets/img/hw-wrapper-bg.png);
    text-align: center;
    padding-top: 100px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}


.copyright p {
    margin: 0;
    color: #fff;
}

.copyright {padding-bottom: 70px;}

.footer_menu {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-bottom: 40px;
}

.footer_menu a {
    display: block;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 0 30px;
    border-right: 1px solid rgba(255,255,255,0.4);
}

.footer_menu ul li:last-child a {
    border-right: 0;
}

.social_liks li {
    margin: 0 15px;
}

.social_liks ul li a {
    display: block;
    width: 70px;
    height: 70px;
    background-image: url(assets/img/social-bg.png);
    text-align: center;
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 24px;
}

.contacts_links ul li a {
    background-image: url(assets/img/icon-bg.png);
}

.social_liks {
    margin-bottom: 30px;
}

.contacts_links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.contacts_links ul li img {
    max-height: 24px;
}

.contacts_links li a {
    display: inline-block !important;
}

.contacts_links li {
    text-align: center;
}

.contacts_links p {
    font-size: 14px;
    margin: 0;
    color: #000;
}

.contacts_links {
    margin: 40px 0;
}

.form_box {
    box-shadow: 0px 25px 40px rgb(0 0 0 / 10%);
    border-radius: 30px;
    margin-bottom: 50px;
    padding: 45px 30px;
    text-align: left;
}

label {
    margin-bottom: 12px;
    display: block;
    color: #404343;
}

textarea.form-control {
    min-height: 290px;
    resize: none;
}

.icon_ {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.icon_ path {
    fill: #A0B5B4;
}

.pos_relative {
    position: relative;
}




.heading_line._left:after {
    left: 0;
    transform: none;
}

.heading_line._left {
    text-align: left;
    margin-bottom: 40px;
}

.download_col {
    text-align: right;
    position: relative;
}

.download_col img {
    display: block;
    max-width: calc(100% - 300px);
    margin-left: auto;
    width: 100%;
    margin-top: 50px;
}

.qr_box {
    position: absolute;
    width: 180px;
    height: 160px;
    left: 70px;
    bottom: 44px;
    border-radius: 15%;
}

.qr_errow {
    width: 110px;
    height: 87px;
    position: absolute;
    left: -50px;
    bottom: 8px;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(
-20deg);
}

.download_col h6 {
    position: absolute;
    left: -170px;
    bottom: 70px;
    font-size: 22px;
    font-weight: 500;
    font-family: Avenir, sans-serif;
    margin: 0;
    transform: rotate( 
-20deg);
}


@media(max-width: 1367px) {
    .section h3,
    .section h2,
    .banner h1 {
        font-size: 32px;
    }

    .section p,
    .banner p {
        font-size: 20px;
    }

    .qr_box {
        width: 135px;
        height: 120px;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media(max-width: 1199px) {
    .download_col img {
        max-width: calc(100% - 200px);
    }

    .qr_errow {
        width: 110px;
        height: 87px;
        position: absolute;
        left: 50px;
        bottom: 188px;
        background-repeat: no-repeat;
        background-size: cover;
        transform: rotate( 
    45deg);
    }
}


@media(min-width: 992px) {
    .header_fixd .menu {
        text-align: center;
        position: fixed;
        background: white;
        width: 100%;
        left: 0;
        top: 0;
        margin: 0;
        padding: 10px;
        box-shadow: 0px 5px 15px rgb(0 0 0 / 16%);
    }

    .menu_trigger {
        display: none !important;
    }

    
}


@media(max-width: 991px) {

    header .container {
        position: relative;
    }

    header {
        padding: 15px 0;
    }

    .menu_trigger {
        position: absolute;
        right: 20px;
        top: 10px;
        width: 56px;
        height: 40px;
        z-index: 999;
    }
    
    header .container {
        position: relative;
    }
    
    .menu_trigger svg {
        width: 40px;
        height: 40px;
    }

    .menu_trigger:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 99;
    }

    .logo img {
        height: 110px;
    }

    .menu {
        background: #104544 !important;
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        margin: 0;
        box-shadow: 0px 5px 15px rgb(0 0 0 / 40%);
        transform: translateY(-350px);
        transition: all 0.3s;
    }

    .menu_open .menu {
        transform: translateY(0px);
    }

    .menu_open .menu_trigger path {
        fill: #fff;
    }

    .menu ul {
        text-align: left;
        width: calc(100% - 90px);
    }

    .menu ul li {
        display: block;
        margin-left: 0;
        padding: 20px;
    }

    .menu ul li a {
        color: #ffffff;
        font-size: 22px;
    }

    .menu ul li a.active:after {
        left: 0;
        transform: none;
    }

    a#link_contact {
        max-width: 250px;
    }


    .banner {
        padding-bottom: 100px;
        text-align: center;
        padding-top: 150px;
    }

    .download_col h6 {
        left: -10px;
        bottom: 310px;
    }

    .download_col {
        margin-top: 70px;
    }

    .footer_menu ul {
        display: block;
    }

    .footer_menu ul li {
        width: 49%;
        display: inline-block;
        padding: 15px;
    }

    .footer_menu a {
        border-right: 0;
    }
}

@media(max-width: 767px) {

    .contacts_links ul {
        display: block;
    }

    .ruf_divder img {
        height: 110px;
        object-fit: cover;
    }
}


@media(max-width: 576px) {

    .qr_box {
        position: static;
        width: 180px !important;
        height: 160px !important;
        margin: 0 auto !important;
        margin-bottom: 220px !important;
    }

    .footer_menu ul li {
        width: 100%;
    }

    .qr_errow {
        left: 37%;
        bottom: auto;
        transform: rotate( 
    -125deg) translateX(-50%);
        top: 145px;
    }

    .download_col h6 {
        left: 50% !important;
        bottom: auto !important;
        transform: rotate( 
    -20deg) translateY(-50%);
    top: 290px;
    }

    .download_col img {
        max-width: 100%;
    }
}