/* - Google Fonts ---------------------------- ***/

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6 .h6 {
    font-weight: 700;
}

p {
    line-height: 1.8;
}

.relative {
    position: relative;
    z-index: 9;
}

.trs-01 {
    transition: all ease-in 0.1s;
    -o-transition: all ease-in 0.1s;
    -moz-transition: all ease-in 0.1s;
    -webkit-transition: all ease-in 0.1s;
}

.trs-02 {
    transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
    -moz-transition: all ease-in 0.2s;
    -webkit-transition: all ease-in 0.2s;
}

.trs-03,
a,
button,
.footer-img-box,
.slider-contacts a:hover .cricle {
    transition: all ease-in 0.3s;
    -o-transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
    -webkit-transition: all ease-in 0.3s;
}

input {
    outline: none;
}

.dotted-bg {
    background-image: url('../images/dotted-bg.png');
}

.blue-text {
    color: #1681ed;
}

.heading-title {
    color: #000;
    font-size: 38px;
    margin-bottom: 17px;
}

.heading p {
    color: #626262;
    font-size: 16px;
    max-width: 900px;
    display: block;
    margin: 0 auto;
}

.heading .full-width {
    max-width: 100%;
}

.heading-light,
.heading-light p,
.heading-light .heading-title {
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

button,
button:focus,
button:active {
    outline: none;
    border: none;
}

.btn-blue {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    position: relative;
    background-color: #1681ed;
    box-shadow: 0 0px 30px rgba(22, 129, 237, 0.7);
}

.btn-blue:hover {
    background-color: rgb(34, 137, 241);
}

.slider-buttons {
    display: flex;
}

.slider-buttons > button {
    color: #fff;
    font-size: 16px;
    width: 60px;
    height: 60px;
    margin-left: 2px;
    background-color: #1a1a26;
}

.slider-buttons > button:hover {
    background-color: #111119;
}

/* - Preloader ---------------------------- ***/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow: hidden;
    background: #0f1015;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 110px;
    height: 110px;
    margin: -55px 0 0 -55px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #16a085;
    animation: spin 1.7s linear infinite;
    -moz-animation: spin 1.7s linear infinite;
    -webkit-animation: spin 1.7s linear infinite;
    z-index: 11;
}

#loader:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9c713c;
    animation: spin-reverse 0.6s linear infinite;
    -moz-animation: spin-reverse 0.6s linear infinite;
    -webkit-animation: spin-reverse 0.6s linear infinite;
}

#loader:after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #a6f922;
    animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
    0% {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222;
    z-index: 10;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    -o-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
    -o-transition: all 0.3s 1s ease-out;
    -moz-transition: all 0.3s 1s ease-out;
    -webkit-transition: all 0.3s 1s ease-out;
}

/* - Header ---------------------------- ***/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    background-color: transparent;
}

.site-logo {
    display: inline-block;
    margin-top: 25px;
}

.site-logo img {
    height: 40px;
}

.menu-col {
    position: static;
}

.mobile-menu {
    display: none;
    text-align: right;
}

.mobile-menu button {
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-top: 23px;
    background: #1681ed;
}

.fixed-menu .mobile-menu button {
    margin-top: 5px;
}

.header-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 33px 0 0 0;
}

.header-menu > li {
    display: block;
    position: relative;
}

.header-menu > li > a {
    color: #fff;
    font-size: 14px;
    display: block;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.header-menu > li.active > a,
.header-menu > li > a:hover {
    color: #1089fc;
    text-decoration: none;
    border-color: #1089fc;
}

.fixed-menu {
    display: none;
    background-color: #1a1a26;
    box-shadow: 0 1px 4px #09090c;
}

.fixed-menu .site-logo {
    margin-top: 10px;
}

.fixed-menu .site-logo img {
    height: 40px;
}

.fixed-menu .header-menu {
    margin-top: 16px;
}

/* - Slider ---------------------------- ***/

.slider-section {
    position: relative;
    background-color: #ddd;
}

.slider-section .slider-buttons {
    position: absolute;
    right: 0;
    bottom: 30px;
}

.slider-item {
    color: #fff;
    display: none;
    position: relative;
}

.active .slider-item {
    display: block;
    padding-top: 250px;
}

.slider-item .container {
    padding-right: 150px;
}

.slider-item .container:before {
    position: absolute;
    content: '';
    top: -65px;
    left: -65px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../images/dots-slider.png') no-repeat;
}

.slider-item h1 {
    font-size: 50px;
    margin-bottom: 16px;
}

.slider-item p {
    font-size: 18px;
}

.slider-item-bottom {
    margin-top: 50px;
    padding-bottom: 160px;
}

.slider-item-bottom .btn-blue {
    margin-bottom: 70px;
    padding: 20px 55px;
}

.slider-contacts {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.slider-contacts a {
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.slider-contacts a:hover {
    text-decoration: none;
}

.slider-contacts:last-child a {
    font-size: 13px;
    text-decoration: underline;
}

.slider-contacts:last-child a:hover {
    text-decoration: none;
}

.slider-contacts span {
    color: #1977d6;
    display: inline-block;
    margin-right: 7px;
}

.slider-contacts .cricle {
    width: 40px;
    height: 40px;
    display: inline-block;
    padding: 10px;
    margin-right: 30px;
    border-radius: 50%;
    border: 2px solid #1977d6;
    box-shadow: 0 0 3px 0px #1681ed;
}

.slider-contacts a:hover .cricle {
    background-color: #1977d6;
}

.slider-contacts .cricle > img {
    width: 100%;
    display: block;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-right {
    position: absolute;
    right: 15px;
    bottom: 100%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    padding-bottom: 170px;
}

.social-menu {
    text-align: right;
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

.social-menu > li {
    display: block;
    margin-bottom: 25px;
}

.social-menu > li > em {
    width: 1px;
    height: 70px;
    display: inline-block;
    margin-right: 6px;
    background-color: #fff;
}

.social-menu > li > a {
    color: #fff;
    font-size: 25px;
    display: block;
}

.social-menu > li > a:hover,
.footer-social-menu li a:hover {
    color: #1681ed;
    text-shadow: 0 0 10px rgba(22, 129, 237, 0.5);
}

.slider-right-buttons {
    display: block;
    margin-top: 60px;
}

.btn-lang {
    color: #fff;
    font-size: 13px;
    text-align: center;
    display: block;
    padding: 5px 10px;
    margin-top: 2px;
}

.btn-lang.active,
.btn-lang:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1681ed;
    box-shadow: 0 0 3px #1463b5;
}

/* - Services ---------------------------- ***/

.service-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 200px;
}

.service-items {
    position: relative;
    margin-top: 65px;
}

.service-col {
    margin-bottom: 30px;
}

.service-item {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 50px 0 60px;
    background-color: #fff;
    box-shadow: 3px 9px 25px rgba(35, 35, 52, 0.05);
}

.service-item-img {
    position: relative;
    width: 100px;
    height: 100px;
    display: block;
    padding: 20px;
    margin: 0 auto 45px;
    background-color: #f2f2fc;
}

.service-item-img:before {
    position: absolute;
    content: '';
    top: -18px;
    left: -25px;
    width: 100px;
    height: 100px;
    z-index: -1;
    background: url('../images/dots-square.png') no-repeat;
}

.service-item-img > img {
    width: 100%;
    display: block;
}

.service-item > h3 {
    font-size: 22px;
    margin: 0;
}

.service-item > p {
    font-size: 16px;
    display: block;
    margin: 0;
    padding: 25px 30px 0;
}

.services-img-box {
    position: absolute;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.services-img-box img {
    width: 200px;
}

/* - About ---------------------------- ***/

.about-section {
    position: relative;
    padding: 100px 0 270px;
}

.about-img-box {
    position: absolute;
    right: 50px;
    bottom: 0;
    display: block;
}

.about-content {
    color: #626262;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 35px;
}

/* - Caluclate ---------------------------- ***/

.calculate-section {
    position: absolute;
    width: 100%;
    height: 1px;
    z-index: 99;
}

.calculate-in {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    padding: 50px;
    background: #fff;
    box-shadow: 3px 9px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.calculate-input,
.calculate-button {
    height: 50px;
    line-height: 50px;
}

.calculate-input {
    color: #626262;
    width: 100%;
    border: none;
    padding: 25px;
    background-color: #fafaff;
}

.calculate-button {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* - How we work ---------------------------- ***/

.how-we-work-section {
    color: #fff;
    position: relative;
    padding: 250px 0 140px;
    background-image: url('../images/how-we-work-bg.jpg');
    background-size: cover;
    background-position: center center;
}

.how-we-work-section:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(35, 35, 52, 0.95);
}

.how-we-work-section .heading {
    margin-bottom: 50px;
}

.how-we-work-section .heading p {
    font-size: 26px;
}

.work-item-col {
    margin-bottom: 30px;
}

.work-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-item h3 {
    font-size: 18px;
    margin: 35px 0 30px;
}

.work-item p {
    font-size: 15px;
    margin: 0;
}

.work-item-number {
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.work-item-img {
    position: relative;
    width: 150px;
    height: 150px;
    padding: 45px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #363a52;
}

.work-item-img img {
    width: 100%;
    display: block;
}

.circle-progress {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.circle-progress canvas {
    width: 100%;
    height: 100%;
}

.work-item:after {
    position: absolute;
    content: '';
    top: 20%;
    left: 92%;
    width: 30%;
    height: 1px;
    border-bottom: 2px dashed #1089fc;
}

.work-item-col:last-child .work-item:after {
    display: none;
}

/* - Support ---------------------------- ***/
.support-section {
    position: relative;
    padding-top: 125px;
}

.support-content {
    margin-bottom: 60px;
}

.support-item-col {
    margin-bottom: 30px;
}

.support-item {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
}

.support-item img {
    height: 65px;
    display: block;
    margin-bottom: 30px;
}

.support-item h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.support-item p {
    font-size: 15px;
    margin: 0;
}

.support-bg-image {
    position: absolute;
    bottom: 0;
    left: -120px;
    z-index: -1;
}

/* - Tariffs ---------------------------- ***/

.tariffs-section {
    position: relative;
    padding: 125px 0 140px;
}

.tariffs-section .heading {
    margin-bottom: 45px;
}

.tariffs-section .heading-title {
    margin-bottom: 25px;
}

.tariffs-tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.tariffs-tab-buttons button {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    width: 40%;
    padding: 20px;
    margin: 0 15px;
    background-color: #fff;
    border: 1px solid #1681ed;
}

.tariffs-tab-buttons button:hover {
    color: #1681ed;
    border-color: rgb(34, 137, 241);
}

.tariffs-tab-buttons .active {
    color: #fff;
    background-color: #1681ed;
    box-shadow: 0 0px 30px rgba(22, 129, 237, 0.7);
}

.tariffs-tab-buttons .active:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    width: 20px;
    height: 20px;
    z-index: -1;
    margin: -10px 0 0 -10px;
    background-color: #1681ed;
    transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
}

.tariffs-tab-buttons .active:hover,
.tariffs-tab-buttons .active:hover:after {
    color: #fff;
    background-color: rgb(34, 137, 241);
}

.tariffs-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tariffs-info img {
    height: 50px;
    margin: 0 20px;
}

.tariffs-info p {
    font-size: 18px;
    text-align: left;
    margin: 0;
    padding-left: 30px;
    border-left: 1px solid #1681ed;
}

.tariffs-table {
    margin-bottom: 45px;
}

.tariffs-table thead th {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    vertical-align: middle;
    background-color: #1681ed;
    border: 2px solid #1681ed;
}

.tariffs-table thead th:after {
    position: absolute;
    content: '';
    top: 25%;
    right: -2px;
    width: 1px;
    height: 50%;
    background-color: #fff;
}

.tariffs-table thead th:last-child:after {
    display: none;
}

.tariffs-table tbody td {
    font-size: 15px;
    border-color: #ebebeb;
}

/* - Testimonials  ---------------------------- ***/

.testimonials-section {
    position: relative;
    padding: 125px 0 255px;
}

.testimonials-carousel {
    margin-top: 70px;
}

.testimonail-item {
    position: relative;
    width: 100%;
    max-width: 750px;
    opacity: 0.5;
    padding: 0 20px 0 60px;
}

.testimonail-item-img {
    position: absolute;
    top: 50%;
    left: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 5px solid #fff;
    box-shadow: 8px 15px 49px rgba(0, 0, 0, 0.04);
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.center .testimonail-item {
    opacity: 1;
}

.testimonail-item-img img {
    width: 170px !important;
}

.testimonials-block {
    padding: 45px 45px 30px 145px;
    background-color: #fff;
    background-image: url('../images/quote.png');
    background-repeat: no-repeat;
    background-position: 95% 35px;
    background-size: 115px;
}

.testimonials-block h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.testimonials-block h4 {
    color: #1089fc;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.testimonials-block p {
    font-size: 14px;
}

.testimonials-block span {
    color: #8e8e8e;
    font-size: 13px;
    text-align: right;
    display: block;
}

.testimonials-section .slider-buttons {
    justify-content: center;
    margin-top: 45px;
}

/* - Footer ---------------------------- ***/

footer {
    position: relative;
    padding: 230px 0 70px;
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center center;
}

footer:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(35, 35, 52, 0.9);
}

.footer-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-img-box {
    width: 70px;
    min-width: 70px;
    height: 70px;
    padding: 20px;
    margin-right: 30px;
    border-radius: 50%;
    border: 2px solid #1681ed;
    box-shadow: 0 0 3px 0px #1681ed;
}

.footer-item:hover .footer-img-box {
    background-color: #1681ed;
}

.footer-content > span {
    color: #1681ed;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.footer-content > p,
.footer-content > a {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.footer-content > a:hover {
    color: #1681ed;
    text-decoration: none;
}

ul.footer-social-menu {
    justify-content: center;
    margin-top: 50px;
}

ul.footer-social-menu li {
    font-size: 25px;
    margin: 0 15px;
}

ul.footer-social-menu li a {
    color: #fff;
    display: inline-block;
}

/* - Copyright ---------------------------- ***/

.copyright {
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 9;
    padding: 25px 0;
    background-color: #1c1c28;
}

.copyright a {
    color: #1681ed;
}

.scroll-top-top {
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 40px;
    height: 40px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    padding-top: 7px;
    margin: 0 0 -20px -20px;
    background-color: #1c1c28;
}
