@import url('https://fonts.googleapis.com/css2?family=Philosopher&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

body {
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
    color: #333;
    font-weight: 200;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/*****************/
/* Page */
.page {
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 0 50px;
    margin: 0 auto;
    z-index: 1;
}
@media (max-width: 1000px){
    .container {
        padding: 0 30px;
    }
}
@media (max-width: 650px){
    .container {
        padding: 0 20px;
    }
}

/* Intro */
.intro {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay{
    background-color: #000000a6;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
}

.intro__inner {
    position: relative;
    width: 60%;
    z-index: 1;
}

.intro__title {
    font-family: "Philosopher", Arial, sans-serif;
    margin-bottom: 30px;
    font-size: 100px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 1px 1px 2px #000000, 0 0 1em transparent, 0 0 0.2em transparent;
}

.intro__suptitle {
    margin-bottom: 20px;
    font-size: 40px;
    color: #fff;
    font-weight: 200;
    line-height: 1.2;
}

.cta-main{
    background: #eb566c;
    padding: 18px 30px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s linear;
    border: none;
    margin-top: 20px;
}

.cta-main:hover{
    background: #991a2d;
}

@media (max-width: 1400px) {
    .intro__title {
        font-size: 80px;
    }
    .intro__suptitle {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .intro {
        padding: 150px 0 100px 0;
    }
    .intro__title {
        font-size: 70px;
    }
}

@media (max-width: 950px) {
    .intro {
        min-height: 50vh;
    }
    .intro__title {
        font-size: 55px;
    }
    .intro__suptitle {
        font-size: 25px;
    }
}

@media (max-width: 650px) {
    .intro__inner{
        width: 100%;
    }
    .intro {
        padding: 100px 0 60px 0;
    }
    .intro__title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .intro__suptitle {
        font-size: 20px;
        margin-bottom: 5px;
    }
}

/* Header */
.header {
    width: 100%;
    padding-top: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header.fixed {
    padding: 10px 0;
    background-color: #092c3f;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
}

.header.active {
    background-color: #eb8b8d;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    line-height: 0;
    padding: 5px 0;
}

.header__logo img {
    max-width: 100%;
    width: 200px;
    height: auto;
}

@media (max-width: 1400px) {
    .header__logo img {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .header__logo img {
        width: 130px;
    }
}

@media (max-width: 600px) {
    .header__logo {
        font-size: 25px;
    }
}

/* Nav */
.nav {
    font-size: 15px;
    text-transform: uppercase;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color .1s linear;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity .1s linear;
}

.nav__link:hover:after,
.nav__link.active:after {
    opacity: 1;
}

.nav__link.active {
    color: #ffffff;
}

.text-black{
    color: #000;
}

.text-silver{
    color: #bebebe!important;
}

.text-white{
    color: #fff!important;
}

/* Nav toggle */
.nav-toggle {
    width: 30px;
    padding: 16px 0;
    display: none;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 24px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform .2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0px, -2px, 0)
}

.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

@media (max-width: 1230px) {
    .nav {
        font-size: 13px;
        text-transform: uppercase;
    }
}

@media (max-width: 990px) {
    .nav {
        font-size: 11px;
        text-transform: uppercase;
    }
}

@media (max-width: 770px) {
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 120%;
        left: 0;
        background-color: #0b222e;
    }
    .nav.active {
        display: block;
        padding: 20px;
    }
    .nav__link {
        display: block;
        margin: 0;
        padding: 15px 20px;
    }
    .nav-toggle {
        display: block;
    }
}


/* Button */
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    border: 3px solid #fff;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .1s linear, color .1s linear;
}

.btn:hover {
    background-color: #fff;
    color: #333;
}


/* Slider */
.section-title {
    font-size: 50px;
    display: block;
    color: #092c3f;
    font-weight: 500;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-family: "Philosopher", Arial, sans-serif;
}

.section-subtitle{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 17px;
    text-transform: uppercase;
    color: #eb566c;
    display: inline-block;
    position: relative;
    padding-left: 68px;
}

.section-subtitle:after {
    position: absolute;
    content: "";
    width: 54px;
    height: 2px;
    background: #eb566c;
    left: 0px;
    top: 45%;
    transform: translateY(-50%);
}

.slider {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.slider__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.slider__item {
    width: 48.5%;
    padding: 60px 40px;
    position: relative;
    background-color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.slider__item img{
    width: 70px;
    max-width: 100%;
    height: auto;
}

.slider__item:after {
    position: absolute;
    content: "";
    width: 90%;
    height: 1px;
    background: #ff2143;
    bottom: 20px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.slider__num {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 21px;
    color: #082c3f;
}

.slider__num-ben {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #082c3f;
    margin-bottom: 15px;
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .slider__num {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .slider__item {
        padding: 40px 30px;
    }
    .slider__item img {
        width: 50px;
    }
}

@media (max-width: 820px) {
    .section-title {
        margin-bottom: 30px
    }
    .slider__inner {
        flex-wrap: wrap;
    }
    /*.slider__item {
        width: 47%;
        padding: 40px 20px;
    }*/
}

@media (max-width: 650px) {
    .section-title {
        margin-bottom: 15px;
        font-size: 25px;
    }
    .slider__item {
        width: 100%;
    }
}

/* Section */
.bg-white{
    background-color: #ffffff;
}
.bg-siver{
    background-color: #f7f7f7;
}
.bg-dark{
    background-color: #082c3f;
}
.color-white{
    color: #ffffff;
}

.section {
    padding: 200px 0;
    position: relative;
}

.section__header {
    width: 85%;
    margin-bottom: 70px;
}

.top-subtitle{
    font-size: 25px;
    font-weight: 500;
    color: white;
    line-height: 1.3;
}
.section__text {
    font-size: 18px;
    color: #082c3f;
}

.services {
    display: flex;
    flex-wrap: wrap;
}

.services__item {
    width: 100%;
    padding: 0 0 20px 70px;
    position: relative;
    margin-bottom: 20px;
}

.services__item:last-child {
    margin-bottom: 0;
}

.services__item--border {
    border-bottom: 1px solid #9d9d9d;
}

.services__item--border:last-child {
    border-bottom: none;
}

.services__icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 40px;
}

.services__title {
    margin-bottom: 10px;

    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}

.services__text {
    font-size: 20px;
    color: #000;
    font-weight: 300;
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .section {
        padding: 120px 0;
    }
}

@media (max-width: 1200px) {
    .services__text {
        font-size: 16px;
    }
    .section__text {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

@media (max-width: 950px) {
    .section {
        padding: 80px 0;
    }
    .section__header {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .section__text {
        font-size: 14px;
    }
}

/* We do */
.wedo-bg{
    background: url(/assets/images/intro3.jpg) center no-repeat;
    background-size: cover;
    background-position: center;
}

.wedo {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.wedo__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.wedo__img {
    display: block;
    max-width: 80%;
    height: auto;
}

.black-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(rgb(255 255 255 / 0%) 0%, #ffffff 80%);
    z-index: 1;
}

@media (max-width: 820px) {
    .header {
        padding: 10px 0;
    }
    .slider__item.active:before {
        width: 50%;
    }
    .services__item {
        width: 100%;
        max-width: 400px;
        padding: 0 0 15px 60px;
        margin-bottom: 15px;
    }
    .services__icon {
        left: 0;
    }
    .section__header {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 650px) {
    .wedo{
        flex-direction: column;
        margin-top: 0;
    }
    .wedo__item {
        width: 100%;
    }
    .wedo__img{
        margin-bottom: 40px;
        max-width: 100%;
    }

    .mobile-cta{
        padding-top: 60px;
    }
    .section {
        padding: 50px 0;
    }
    .section__header {
        margin-bottom: 30px;
    }
    .services__text {
        font-size: 14px;
    }
}

/*******  Form ********/
.form-control {
    min-height: 2.7em;
    box-shadow: none;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border-radius: 0;
    margin-bottom: 10px;
    border: 1px solid #082c3f;
    outline: none;
}

.form-control:active, .form-control:focus{
    border: 2px solid #000000;
    outline: none;
}

/***************** Modal **********************/

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 100111111;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-form{
    width: 100%;
    max-width: 500px;
    padding: 45px 0 0 0;
    margin: 0 auto;
}

#modal-title {
    font-size: 21px;
    font-weight: 600;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fff;
    padding: 20px;
    width: 100%;
}

@media (max-width: 399px){
    .modal-form {
        padding: 30px 20px 0 20px;
    }
    #modal-title {
        font-size: 15px;
        font-weight: bold;
    }
    .modal-subtitle{
        font-size: 12px;
    }
    .modal-content {
        padding: 10px;
    }
    .modal-header {
        padding: 10px 16px!important;
    }
}

.close {
    color: #000;
    float: right;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    color: white;
    height: 25px;

    display: block;
    width: 100%;
    position: relative;
}

.modal-body {
    text-align: center;
}
#ctaimg{
    max-width: 100%;
    width: 140px;
}

/*footer*/
.section-footer {
    padding: 150px 0;
    position: relative;
    background-color: #e8eef1;
    background-image: url(/assets/images/cta-bg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.footer-set {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-set-box {
    width: 32%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin: 15px 0;
}

.footer-set-box-item {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
    width: fit-content;
}

.footer-title{
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Philosopher", Arial, sans-serif;
}

.slider__num2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 30px;
}

.slider__num2 img{
    width: 25px;
    height: auto;
}

.slider__text2 {
    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #bababa;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-decoration: none;
    margin: 0;
}

.cta-form {
    padding: 40px;
    background: linear-gradient(315deg, #1c5c7c 0%, #082c3f 67.21%, #396982 100%);
    text-align: center;
    position: relative;
    box-shadow: -7px 5px 13px 0px #00000091;
}

.cta-title{
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media (max-width: 950px) {
    .footer-set-box {
        width: 46%;
    }
    .section-footer {
        padding: 80px 0;
    }
}

@media (max-width: 650px){
    .section-footer {
        padding: 50px 0;
    }
    .footer-set-box {
        width: 100%;
    }
    .slider__text2  {font-size: 14px;}
    .footer-set-box {padding: 0 5px;}
    .cta-form       {padding: 20px;}
}

/*Services*/
.service-box{
    padding: 50px;
    border: 1px solid #ffffff47;
    margin-bottom: 50px;
}

.service-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Philosopher", Arial, sans-serif;
}

.m-t-30{
    margin-top: 30px;
}

.text-upper{
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .service-title {
        font-size: 30px;
    }
    .slider__num-ben {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .slider__num-ben {
        font-size: 16px;
    }
}

@media (max-width: 650px) {
    .service-box {
        padding: 35px 20px;
        margin-bottom: 30px;
    }
    .service-box:last-child {
        margin-bottom: 0;
    }
    .service-title {
        font-size: 25px;
    }
}

/* loader */
.loading{
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    position: fixed; /* Stay in place */
    z-index: 1100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #232425; /* Fallback color */
}

.loader {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border: 16px solid #00A9CE;
    border-radius: 50%;
    border-top: 16px solid #ffffff;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-title{
    font-size: 24px;
    font-weight: 800;
    color: #5245cd;
    text-align: center;
    line-height: 1.1;
    margin: 20px 0;
}

.section-copyright{
    background-color: #ffffff;
    padding: 30px 0;
}

.copyright-title{
    font-size: 16px;
    text-align: center;
}
