/* RESET
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
    -webkit-appearance: none;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
b-footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
p {
    margin: 0;
    font-weight: 400;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
}
/* REUSABLE STYLES
---------------------------------*/

/* Font
---------------------------------*/

/* FOUNDATION
---------------------------------*/
html {
    height: 100%;
}
body {
    color: #585858;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Mulish', sans-serif;
    background-color: #fff;
}
.title {
    font-family: 'Baloo Tammudu 2', cursive;
}
a,
button {
    cursor: pointer;
    background: none;
}
a {
    color: inherit;
    text-decoration: underline;
}
button,
input[type="submit"] {
    cursor: pointer;
}
img {
    display: block;
    border: none;
}
svg {
    pointer-events: none;
}
a:hover {
    text-decoration: none;
}
.row {
    display: flex;
    margin: 0 -15px;
}
.col {
    width: 100%;
    max-width: 50%;
    margin: 0 15px;
}
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
    .row {
        margin: 0;
        flex-wrap: wrap;
    }
    .col {
        max-width: 100%;
    }
}

/* GENERAL
---------------------------------*/
.page-wrap {
    padding-top: 166px;
    overflow: hidden;
}
.section {
    padding: 90px 0 130px;
}
.wrap {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.section-title {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 600;
    color: #191919;
}
.btn {
    position: relative;
    display: inline-block;
    min-width: 260px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 20px;
    background-color: #ff7d49;
    box-sizing: border-box;
    border-radius: 30px;
    text-align: center;
    padding: 15px 20px;
}
.btn:hover {

}
.btn-secondary {
    background: #7f4c85;
    color: #c9c9c9;
    text-transform: uppercase;
    font-size: 15px;
}
@media (max-width: 1024px) {
    .page-wrap {
        padding-top: 60px;
    }
}
@media (max-width: 767px) {
    .section {
        padding: 50px 0 70px;
    }
    .section-title {
        font-size: 40px;
    }
}
@media (max-width: 480px) {

}

.rcb {
    display: inline-block;
    min-width: 26px;
    min-height: 26px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left
}
.rcb input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0
}
.rcb input[type="checkbox"]~label {
    padding: 0 0 0 45px;
    display: block;
    font-size: 14px;
    line-height: 24px
}
.rcb input[type="checkbox"]~label a {
    color: #f6a228
}
.rcb input[type="checkbox"]~label::before {
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    background-color: #f8f8f8;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #cdcdcd;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.rcb input[type="checkbox"]:checked~label::before {
    background-color: #fff;
    border-color: #6c727c
}
.rcb input[type="checkbox"]:checked~label::after {
    display: block;
    content: "";
    width: 12px;
    height: 7px;
    position: absolute;
    top: 6px;
    left: 6px;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 2px solid #6c727c;
    border-bottom: 2px solid #6c727c;
    transform: rotate(-45deg);
}

/* header
---------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.8);
    transition: padding 0.4s ease;
}
.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 1);
}
.header .wrap {
    max-width: 1560px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: auto;
}
.header-logo {
    max-width: 291px;
    margin-left: 100px;
}
.nav-list {
    display: flex;
    align-items: center;
    padding-top: 5px;
}
.nav-link {
    color: #57c5f2;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 50px 0 0;
    padding: 8px 10px;
    position: relative;
    letter-spacing: 2.1px;
}
.nav-link::after {
    transition: 0.3s;
    width: 0;
    content: "";
    position: absolute;
    left: -10px;
    bottom: -6px;
    border-bottom: 3px solid #57c5f2;
    overflow: hidden;
}
.nav-item:last-child .nav-link {
    margin-right: 0
}
.nav-item--active .nav-link::after,
.nav-item:hover .nav-link::after {
    width: 100%;
    left: 0px;
}
.header-nav-btn {
    border: none;
    display: none;
    position: absolute;
    top: 20px;
    right: 25px;
    width: 35px;
    height: 28px;
    padding: 0;
    z-index: 101;
}
.header-nav-btn span {
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #2a2a2a;
    transition: 0.3s;
    border-radius: 10px;
}
.header-nav-btn span:first-child {
    top: 10px;
}
.header-nav-btn span:last-child {
    top: 21px;
}
.header-nav-btn.open span {
    transform: rotate(45deg);
    top: 12px;
}
.header-nav-btn.open span:first-child {
    transform: rotate(-45deg);
}
.header-nav-btn.open span:nth-child(2) {
    transform: rotate(-135deg);
}
@media (max-width: 1560px) {
    .header-logo {
        margin-left: 0;
    }
}
@media (max-width: 1024px) {
    .header,
    .header.scrolled {
        padding-top: 17px;
        padding-bottom: 17px;
    }
    .header-logo {
        width: 146px;
    }
    .header-nav-btn {
        display: block;
    }
    .header-nav {
        display: none;
        position: absolute;
        padding-top: 60px;
        background-color: #fff;
        right: 0;
        top: 0;
        height: 100vh;
        transition: right 0.5s;
    }
    .nav-list {
        flex-wrap: wrap;
        width: 100vw;
    }
    .nav-item {
        flex-basis: 100%;
        font-size: 18px;
        margin: 10px 0;
        padding-left: 15px;
    }
    .nav-link::after {
        display: none;
    }
}

/* footer
---------------------------------*/
.footer {
    background: #2e2030;
    position: relative;
    z-index: 2;
    padding: 53px 0 80px;
}
.footer:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 50px;
    background-image: url('../images/bg-footer.png');
    background-repeat: no-repeat;
    background-position: center bottom;
}
.footer-nav {
    display: flex;
    justify-content: center;
}
.footer-nav li {
    margin: 0 35px;
}
.footer-nav  li a {
    font-size: 18px;
    color: #c9c9c9;
    text-decoration: none;
}
.footer .btn-wrap {
    text-align: center;
    margin-top: 44px;
}
.footer .btn {
    padding: 15px 40px;
}
.footer .copy {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    letter-spacing: 0.3px;
    color: #c9c9c9;
}
@media (max-width: 768px) {
    .footer-nav {
        display: block;
    }
    .footer-nav li {
        text-align: center;
        margin: 15px;
    }
}
@media (max-width: 450px) {
    .footer .copy {
        font-size: 16px;
    }
}

/* intro section
---------------------------------*/
.section-intro {
    padding: 50px 0 50px;
}
.section-intro .wrap {
    max-width: 1560px;
}
.section-intro .col-left {
    padding: 56px 40px 20px 100px;
}
.section-intro .intro-title {
    font-size: 85px;
    text-transform: uppercase;
}
.section-intro .intro-title span {
    display: inline-block;
    font-size: 52px;
    line-height: 70px;
    letter-spacing: 0.4px;
    text-transform: initial;
    max-width: 500px;
}
.section-intro .btn {margin-top: 30px;}
.section-intro .col-right img {
    width: 100%;
    max-width: 749px;
}
@media (max-width: 1560px) {
    .section-intro .row {
        align-items: center;
    }
    .section-intro .col-left {
        padding: 0;
    }
}
@media (max-width: 1024px) {
    .section-intro .intro-title {
        line-height: 1;
        font-size: 60px;
    }
    .section-intro .intro-title span {
        line-height: 1;
        font-size: 40px;
    }
    .section-intro .btn {
        margin: 20px auto 30px;
        display: block;
    }
}
@media (max-width: 768px) {
    .section-intro {
        padding-bottom: 20px; 
    }
    .section-intro .btn {
        position: absolute;
        bottom: 0;
        margin: auto;
        left: 50%;
        margin-left: -130px;
    }
    .section-intro .row {
        position: relative;
        padding-bottom: 70px;
    }
}
@media (max-width: 450px) {
    .section-intro .intro-title {
        line-height: 1;
        font-size: 52px;
    }
    .section-intro .intro-title span {
        font-size: 32px;
    }
}

/* about section
---------------------------------*/
.section-about {
    background-image: url('../images/bg-about.jpg');
    background-repeat: no-repeat;
    background-position: 62% 58px;
}
.section-about .wrap { }
.section-about .title { }
.section-about .section-title { }
.section-about .columns {
    column-count: 2;
    column-gap: 80px;
    padding: 50px 25px 40px 50px;
    letter-spacing: -0.3px;
}
.section-about .columns p {
    margin-bottom: 32px;
}
@media (max-width: 767px) {
    .section-about {        
        background-size: auto 100%;
        background-position: center 0;
    }
    .section-about .columns {
        padding: 20px 0 0;
        column-gap: 40px;
    }
}
@media (max-width: 560px) {
    .section-about .columns {
        column-count: 1;
    }
}

/* achievements section
---------------------------------*/
.section-achievements { }
.section-achievements .wrap { }
.section-achievements .section-title { }
.section-achievements .achievements {
    display: flex;
    justify-content: space-between;
    margin: 55px 0 0;
}
.section-achievements .achievements-item {
    width: 100%;
    max-width: 410px;
}
.section-achievements .item-icon {
    min-height: 200px;
}
.section-achievements .item-icon img {
    display: block;
    margin: auto;
}
.section-achievements .item-amount {
    display: block;
    font-size: 70px;
    font-weight: 600;
    padding-left: 60%;
    margin-top: -50px;
}
.section-achievements .item-name {
    display: block;
    white-space: nowrap;
    padding-left: 60%;
    margin-top: -33px;
}
@media (max-width: 1560px) {
    .section-achievements .item-amount {
        padding: 0;
        text-align: center;
        margin-top: -20px;
    }
    .section-achievements .item-name {
        padding: 0;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .section-achievements .achievements {
        flex-wrap: wrap;
    }
    .section-achievements .achievements-item {
        max-width: 100%;
        margin-bottom: 40px
    }
    .section-achievements .item-amount {
        font-size: 50px;
    }
}

/* utilities section
---------------------------------*/
.section-utilities {
    background-image: url('../images/bg-utilities.jpg');
    background-repeat: no-repeat;
    background-position: 53% 152px;
}
.section-utilities .section-title {
    margin-bottom: 42px;
}
.section-utilities .utilities {
    margin-top: 50px;
    position: relative;
    padding-bottom: 106px;
}
.section-utilities .utilities img {
    display: block;
    margin: 0 auto;
    padding-left: 30px;
}
.section-utilities .utilities-item {
    position: absolute;
    padding-top: 23px;
}
.section-utilities .utilities-item:before {
    content: '';
    display: block;
    width: 87px;
    height: 82px;
    position: absolute;
    background: url('../images/icon-check.png');
    top: -7px;
}
.section-utilities .utilities-item .title {
    font-size: 32px;
    font-weight: 600;
}
.section-utilities .item-1 {
    top: 66px;
    left: 151px;
}
.section-utilities .item-2 {
    top: 461px;
    left: 195px;
}
.section-utilities .item-3 {
    top: 319px;
    left: 954px;
}
.section-utilities .icon-right:before {
    left: 98%;
}
.section-utilities .icon-left:before {
    right: 100%;
}
.section-utilities .common-list {
    margin-top: -6px;
    list-style: disc;
    list-style-position: inside;
    padding-left: 3px;
    line-height: 1.3;
}
.section-utilities .common-list ::marker {
    display: block;
    font-size: 1.2em;
}
@media (max-width: 1240px) {
    .section-utilities {
        background-size: auto 100%;
        background-position: center 0
    }
    .section-utilities .utilities img {
        padding: 0;
        width: 100%;
        max-width: 350px;
    }
    .section-utilities .item-1 {
        left: auto;
        right: calc(50% + 210px);
        top: 0;
    }
    .section-utilities .item-2 {
        left: auto;
        right: calc(50% + 210px);
        top: 230px;
    }
    .section-utilities .item-3 {
        right: auto;
        left: calc(50% + 210px);
        top: 160px;
    }

}
@media (max-width: 980px) {
    .section-utilities .utilities img {
        position: absolute;
        left:0;
        margin-top: 20px;
        max-width: 50%;
    }
    .section-utilities .utilities-item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        padding-left: 90px;
        max-width: 50%;
        margin-left: auto;
        margin-bottom: 20px
        box-sizing: border-box;
    }
    .section-utilities .utilities-item:before {
        left: 0;
    }

}
@media (max-width: 768px) {
    .section-utilities .section-title {
        margin-bottom: 20px;
    }
    .section-utilities .utilities-item .title {
        font-size: 26px;
    }
}
@media (max-width: 660px) {
    .section-utilities .utilities img {
        position: relative;
        max-width: 400px;
    }
    .section-utilities .utilities-item {
        max-width: 300px;
        margin: 0 auto 20px
    }
    .section-utilities .utilities {
        padding-bottom: 20px;
    }
}
/* team section
---------------------------------*/
.section-team {
    background-image: url('../images/bg-team.jpg');
    background-repeat: no-repeat;
    background-position: 50% 117px;
    padding-bottom: 66px;
}
.section-team .wrap {
    max-width: 1460px;
}
.section-team .row { }
.section-team .col {
    flex-grow: 1;
}
.section-team .col:last-child {
    max-width: 665px;
    padding: 22px 0 0 10px;
}
.section-team .section-title {
    margin-bottom: 46px;
}
.section-team img {
    width: 100%;
    max-width: 643px;
}
.section-team p {
    letter-spacing: -0.3px;
}
@media (max-width: 767px) {
    .section-team {
        background-size: auto 100%;
        background-position: 0 0;
    }
}

/* contact section
---------------------------------*/
.section-contacts {
    padding-bottom: 190px;
}
.section-contacts .section-title {
    text-align: center;    
}
.section-contacts .form {
    margin: 78px auto 0;
    max-width: 840px;
}
.section-contacts .form-row {
    display: flex;
    margin: 0 -15px;
}
.section-contacts .form-col {
    width: 100%;
    max-width: 50%;
    margin: 0 15px 57px;
}
.section-contacts .form-col.form-col--full {
    max-width: 100%;
}
.section-contacts .form-row--btn .form-col.form-col--full {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-contacts .form-control {
    display: block;
    width: 100%;
    background-color: #f8f8f8;
    border: 1px solid #cdcdcd;
    padding: 14px 15px 14px 65px;
    border-radius: 30px;
    font-size: 20px;
    color: #585858;
    box-sizing: border-box;
    resize: none;
    height: 60px;
    background-repeat: no-repeat;
    background-position: 26px center;
}
.section-contacts .form-control--user {
    background-image: url('../images/icon-user.png');
}
.section-contacts .form-control--email {
    background-image: url('../images/icon-email.png');    
}
.section-contacts .form-control--message {
    background-image: url('../images/icon-message.png');    
} 
.section-contacts .has-error .form-control {
    border-color: #e64545;
}
.section-contacts .alert-msg {
    font-size: 16px;
    color: #e64545;
    position: absolute;
    padding: 0 28px 0;
}
.section-contacts .form__textarea {}
.section-contacts .container-captcha {}
.section-contacts .note {}
.section-contacts .container-btn {}
.section-contacts .btn {}

.form__success-message {
    display: none;
}

.form__success-title {
}
.form__success-subtitle {
}
@media (max-width: 767px) {
    .section-contacts {
        padding-bottom: 70px;
    }
    .section-contacts .form-row {
        flex-wrap: wrap;
        margin: 0;
    }
    .section-contacts .form-col {
        max-width: 100%;
        margin: 0 0 40px;
    }
    .section-contacts .form-row--btn .form-col.form-col--full {
        display: block;
        text-align: center;
    }
    .section-contacts .container-captcha {
        margin-bottom: 20px;
    }
    .section-contacts .container-btn {
        margin-top: 20px
    }
}

/* cookie popup */
.cookie-popup {
    display: block;
    position: fixed;
    bottom: -100%;
    right: 0;
    left: 0;
    background-color: #2e2030;
    -webkit-box-shadow: 2px 2px 0px #090b0c;
    box-shadow: 2px 2px 5px #000;
    color: #fff;
    width: 100%;
    z-index: 1002;
    -webkit-transition: bottom .8s;
    transition: bottom .8s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.cookie-popup:before, .cookie-popup:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: -1px;
    height: 1px;
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    z-index: 0;
}
.cookie-popup:after {
    -webkit-transform: rotateZ(-135deg);
    transform: rotateZ(-135deg);
    -webkit-transform-origin: calc(100% - 48px) 0;
    transform-origin: calc(100% - 48px) 0
}
.cookie-popup .close {
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    z-index: 10
}
.cookie-popup .close:before, .cookie-popup .close:after {
    display: block;
    content: '';
    height: 100%;
    width: 1px;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #d7cdea;
}
.cookie-popup .close:after {
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg)
}
.cookie-popup.show {
    bottom: 0;
}
.cookie-popup .popup-inner {
    padding: 45px 20px 25px;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    z-index: 1;
    font-size: 18px;
}
.popup-content {
    display: flex;
}
.cookie-popup .link {
    padding-top: 5px;
    color: #ff7d49;
    white-space: nowrap;
}
.cookie-popup .title {
    margin-bottom: 10px
}
.cookie-popup .btn {
    width: 100%;
    max-width: 270px;
    padding: 15px;
    margin: auto;
    display: block;
}
@media (min-width:577px) {
    .popup-content .info {
        flex-grow: 1;
        padding-right: 40px;
    }
}
@media (max-width:576px) {
    .cookie-popup .popup-inner {
        padding: 38px 15px
    }
    .popup-content {
        display: block;
    }
    .cookie-popup .btn {
        width: 100%;
        padding: 6px;
        margin-top: 15px;
    }
}

/* MODAL
---------------------------------*/
.modal {position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; outline: 0; padding: 0; text-align: center; color: #2b2b2b;}
.modal:before {content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -4px;}
.modal-dialog {display: inline-block; max-width: 100%; width: 566px; margin: 0 auto; background-color: #fff; vertical-align: middle; box-shadow: 0 15px 35px rgba(0,0,0,.15);}
.modal-content {padding: 70px 15px 50px; border: none;}
.modal-thanks .main-info {width: 100%; max-width: 460px; margin: 0 auto;}
.modal-thanks .heading {position: relative; padding-left: 97px; font-size: 3.75rem; text-align: left;}
.modal-thanks .heading .icon-holder {position: absolute; content: ''; display: block; width: 73px; height: 73px; background-repeat: repeat; left: 0; top: 5px; display: flex; align-items: center; justify-content: center;}
.modal-thanks .heading .icon-check {position: relative; z-index: 2;} 
.modal-thanks .text {margin-top: 6px; font-size: 1.25rem;}
.modal-thanks .btn-holder {margin-top: 42px;}
.modal-thanks .btn {text-transform: uppercase;}
.modal-backdrop {background: rgba(16,15,27,.5);}

@media (max-width: 768px) {
  .modal-dialog {width: 430px;}
  .modal-content {padding: 40px 15px 30px;}
  .modal-thanks .heading {padding-left: 70px; font-size: 3.125rem;}
  .modal-thanks .heading .icon-holder {width: 53px; height: 53px;}
  .modal-thanks .heading .icon-check {width: 35px; height: auto;}
  .modal-thanks .main-info {max-width: 360px; padding-bottom: 20px;}
  .modal-thanks .text {font-size: 1.125rem;}
  .modal-thanks .btn-holder {margin-top: 30px;}
}
@media (max-width: 400px) {
  .modal-thanks .heading {font-size: 2.5rem;}
  .modal-thanks .heading .icon-holder {top: 2px; width: 48px; height: 48px;}
  .modal-thanks .heading .icon-check {width: 30px;}
}

/* legacy section
---------------------------------*/
.section-legacy h2 {
    font-size: 40px;
    font-weight: 600;
}
.section-legacy h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 20px;
}
.section-legacy h4 {}
.section-legacy p {
    margin-top: 16px;
}
.section-legacy ul {
    margin: 10px 0;
    list-style: disc;
    list-style-position: inside;
}
.section-legacy ol {}
.section-legacy li {
    margin-top: 15px;
} 
.section-legacy ul li {}
.section-legacy ol li {}