/*======================
   02. Basic css
========================*/

@font-face {
    font-family: MondelineRegular;
    src: local('Lato Regular'), url(../webfonts/MondelineRegular.ttf);
    font-display: swap;
}

::root {
    --blue: #0778E4;
    ;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333b55;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.003px;
    color: #00052C;
}

ol,
ul {
    list-style: none;
}

a,
button {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 35px;
    line-height: 48px;
}

h2 {
    font-size: 43px;
    line-height: 59px;
    color: #0778E4;
}

h3 {
    font-size: 27px;
    line-height: 37px;
}

h4 {
    font-size: 23px;
    line-height: 27px;
}

.progressive.replace .preview {
    border-radius: 150px !important;
}

.position-relative {
    position: relative !important;
}


/*Proloader START CSS*/

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
}

.loader_34 {
    /* Preloader */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.loader_34 .ytp-spinner {
    /* Spinner Container */
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.loader_34 .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}

.loader_34 .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}

.loader_34 .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.loader_34 .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.loader_34 .ytp-spinner-left {
    /* Position inside Container*/
    right: 50%;
}

.loader_34 .ytp-spinner-right {
    /* Position inside Container*/
    left: 50%;
}

.loader_34 .ytp-spinner-circle {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: var(--blue) var(--blue) transparent;
    border-radius: 50%;
    border-width: 6px;
}

.loader_34 .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: transparent;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}

.loader_34 .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: transparent;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}


/* Preloader Animations */

@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}


/*Hamburger-menu START CSS*/

.hamburger-menu {
    cursor: pointer;
    position: absolute;
    right: 15px;
    display: none;
    z-index: 999;
    top: -15px;
    text-align: right;
}

.hamburger-menu span {
    background: #0778E4;
    width: 30px;
    height: 2px;
    display: block;
    margin: 6px 0;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger-menu .line-center {
    width: 22px;
    margin-left: auto;
}

.hamburger-menu .line-bottom {
    width: 26px;
    margin-left: auto;
}

.hamburger-menu .line-top.current {
    -webkit-transform: translateY(355%) rotate(135deg);
    -ms-transform: translateY(355%) rotate(135deg);
    transform: translateY(355%) rotate(135deg);
    background-color: #ffffff;
    width: 30px;
}

.hamburger-menu .line-center.current {
    opacity: 0;
}

.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-430%) rotate(-135deg);
    -ms-transform: translateY(-430%) rotate(-135deg);
    transform: translateY(-430%) rotate(-135deg);
    background-color: #ffffff;
    width: 30px;
}

header {
    z-index: 1024;
    width: 100%;
    padding: 10px 0;
    background-color: #ffffff;
}


/*sticky START CSS*/

header.sticky {
    background-color: #ffffff;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
}

.site_logo {
    display: inline-block;
}

.site_logo img {
    width: 270px;
    height: 65.50px;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu li {
    display: inline-block;
}

.menu li a {
    font-size: 16px;
    color: #00052C;
    padding: 0 25px;
    line-height: 19px;
    font-weight: 700;
}

.menu>ul>li>a.active,
.menu>ul>li>a:hover {
    color: var(--blue);
}

.header_social {
    margin-left: 5px;
}

.header_social a {
    display: inline-block;
    font-size: 22px;
    color: var(--blue);
    margin-left: 20px;
}

.header_social a svg {
    width: 19px;
    height: 20px;
}


/*home area*/

.home_area {
    position: relative;
    padding-bottom: 44vh;
    padding-top: 90px;
    z-index: 1;
}

.ab_column {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.button {
    display: inline-block;
    border: none;
    padding: 15px 44px;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF !important;
    background: -o-linear-gradient(315deg, #FFB200 0%, #FF5800 100%);
    background: linear-gradient(135deg, #FFB200 0%, #FF5800 100%);
    border-radius: 10px;
    background-size: 100%;
    -webkit-transition: background 0.4s, background-size 0.4s;
    -o-transition: background 0.4s, background-size 0.4s;
    transition: background 0.4s, background-size 0.4s;
}

.button:hover {
    background-size: 600%;
    background-position: 100% 100%;
}

.home_shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.home_area p {
    padding: 10px 10px 10px 8px;
    border-left: 3px solid #00052C;
}

.shape {
    position: absolute;
}

.shape.v1 {
    bottom: -20px;
    left: 60%;
    width: 243px;
    height: 243px;
}

.shape.v2 {
    bottom: -30px;
    left: 10%;
    width: 219px;
    height: 218px;
}


/*care area*/

.care_area {
    padding-top: 40px;
    padding-bottom: 100px;
}

.care_shape {
    left: 0;
    top: 0;
    width: 100%;
}

.signature {
    font-size: 39px;
    line-height: 43px;
    color: #03539F;
    font-family: MondelineRegular;
}

.shape.v3 {
    right: 10%;
    bottom: 24%;
    width: 193px;
    height: 192px;
}

.shape.v4 {
    left: 32%;
    bottom: -7%;
    width: 180px;
    height: 181px;
}


/*advantage area*/

.advangtage_area {
    padding: 105px 0 220px;
    position: relative;
}

.advangtage_area .shape {
    left: 0;
    top: -205px;
    z-index: -1;
}

.advantage_row {
    min-height: 405px;
}

.adva_box {
    background: -o-linear-gradient(135deg, #FE8E27 0%, #FFCC4A 100%);
    background: linear-gradient(315deg, #FE8E27 0%, #FFCC4A 100%);
    -webkit-box-shadow: 10px 40px 50px rgba(108, 152, 219, 0.3);
    box-shadow: 10px 40px 50px rgba(108, 152, 219, 0.3);
    border-radius: 45px;
    padding: 0 20px 45px;
    position: relative;
    z-index: 1;
    min-height: 280px;
}

.adva_box::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 104%;
    background: -o-linear-gradient(135deg, #FE8E27 0%, #FFCC4A 100%);
    background: linear-gradient(315deg, #FE8E27 0%, #FFCC4A 100%);
    border-radius: 180px 45px 45px 220px;
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    z-index: -1;
}

.adva_box p {
    color: #ffffff;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.3;
}

.adva_box.v2 {
    background: -o-linear-gradient(315deg, #86E6FF 0%, #1A68FF 100%);
    background: linear-gradient(135deg, #86E6FF 0%, #1A68FF 100%);
}

.adva_box.v2::before {
    background: -o-linear-gradient(315deg, #86E6FF 0%, #1A68FF 100%);
    background: linear-gradient(135deg, #86E6FF 0%, #1A68FF 100%);
}

.adva_box.v3 {
    background: -o-linear-gradient(310.89deg, #91FF8C 0%, #02C44D 100.87%);
    background: linear-gradient(139.11deg, #91FF8C 0%, #02C44D 100.87%);
}

.adva_box.v3::before {
    background: -o-linear-gradient(310.89deg, #91FF8C 0%, #02C44D 100.87%);
    background: linear-gradient(139.11deg, #91FF8C 0%, #02C44D 100.87%);
}

.box_img img {
    max-height: 185px;
    margin-top: -55px;
    margin-bottom: 25px;
}

.sub_title {
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #00052C;
    margin-bottom: 10px;
}

.sub_title span.line {
    width: 36px;
    height: 2px;
    background-color: #00052C;
    display: inline-block;
    margin-bottom: 2px;
    margin-left: 10px;
}

.img_box {
    border-radius: 45px;
    background-image: url(../img/network_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 130px 100px;
    margin-bottom: 100px;
}

.img_box.replace {
    background-image: url(../img/network_bg-tiny.webp);
}

.box_content {
    max-width: 408px;
}

.offer_area {
    position: relative;
    padding-bottom: 130px;
}

.offer_shape {
    left: 0;
    top: -400px;
    z-index: -1;
}

.offer_area [class*="order-"] p {
    max-width: 389px;
}

.offer_shape2 {
    left: 0;
    top: 2vh;
}

.offer_area.network_design [class*="order-"] p {
    max-width: 465px;
}

.network_shape {
    left: 0;
    top: 21vh;
}

.automation .shape {
    left: 0;
    top: -340px;
    z-index: -1;
}

.offer_area .progressive img {
    width: 520px;
    height: 505px;
}

#network.offer_area .progressive img {
    height: 620px;
}


/*pricing_area*/

.pricing_area {
    padding: 50px 0 140px;
}

.pricing_area .adva_box {
    text-align: center;
    color: #ffffff;
    height: 100%;
    border-radius: 29px;
}

.pricing_area .adva_box::before {
    border-radius: 260px 29px 29px 260px;
}

.price_row {
    margin-right: -70px;
    margin-left: -70px;
}

.price_row [class*=col-] {
    padding-left: 70px;
    padding-right: 70px;
}

.pricing_area .box_img img {
    max-height: 147px;
    margin-top: -45px;
    margin-bottom: -10px;
}

.pricing_area .adva_box .line {
    width: 36px;
    border: 1px solid #FFFFFF;
}

.pricing_area .adva_box ul {
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    min-height: 165px;
}

.pricing_area .adva_box ul li {
    font-weight: 700;
    text-align: left;
    position: relative;
    padding-left: 22px;
    margin-top: 5px;
    font-size: 15px;
}

.pricing_area .adva_box ul li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #ffffff;
}

.pricing_area .button {
    border-radius: 15px;
}

.pricing_area .adva_box.v3 .button {
    background: #ffffff;
}

.pricing_area .adva_box.v3 .button:hover {
    -webkit-box-shadow: 0 0 5rem rgba(0, 255, 255, 0.3) inset;
    box-shadow: 0 0 5rem rgba(0, 255, 255, 0.3) inset;
}

.pricing_area .adva_box.v3 .button span {
    -webkit-text-fill-color: transparent;
    background: -o-linear-gradient(310.89deg, #91FF8C 0%, #02C44D 100.87%);
    background: linear-gradient(139.11deg, #91FF8C 0%, #02C44D 100.87%);
    -webkit-background-clip: text;
}

.pricing_shape {
    left: 0;
    top: 30%;
}

.hire_us {
    padding-top: 0;
}

.hire_us .pricing_shape {
    top: 0;
    z-index: -1;
}

.hire_us .adva_box ul {
    min-height: 190px;
}

.box_img img {
    height: 147px;
}

.box_img.one img {
    width: 155px;
}

.box_img.two img {
    width: 206px;
}


/**/

.partner_wrapper {
    padding-bottom: 200px;
}

.partner_wrapper .shape {
    left: 0;
    top: -76%;
}

.partner_heding {
    padding-bottom: 60px;
}

.owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*banner area*/

.banner_wrapper {
    margin-top: 85px;
    margin-bottom: 80px;
}

.banner_img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 130px 0 165px;
    border-radius: 45px;
    overflow: hidden;
}

.banner_heading {
    text-align: center;
    color: #FFFFFF;
}

.banner_link {
    padding-top: 35px;
    text-align: center;
}

.banner_link a {
    color: #FFFFFF;
    font-weight: bold;
}

.banner1_img {
    position: absolute;
    top: -85px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.banner2_img {
    position: absolute;
    left: -62px;
    top: 98px;
}

.banner3_img {
    position: absolute;
    left: 15px;
    bottom: 5px;
    border-radius: 0 0 0 37px;
}

.banner4_img {
    position: absolute;
    bottom: -33px;
    right: 60px;
}

.banner5_img {
    position: absolute;
    top: 45px;
    right: 15px;
}

.img-fluid.banner1_img {
    width: 209px;
    height: 178px;
}

.img-fluid.banner5_img {
    width: 124px;
    height: 128px;
}

.img-fluid.banner2_img {
    width: 147px;
    height: 160px;
}

.img-fluid.banner4_img {
    width: 92px;
    height: 143px;
}


/* contact area*/

.contact_wrapper {
    padding-bottom: 170px;
}

.contact_heading {
    padding-bottom: 60px;
}

.contact_content_area {
    padding-top: 25px;
}

.contact_content_area p {
    padding-bottom: 15px;
}

.contact_info li {
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact_info li span {
    font-weight: 700;
    padding-right: 15px;
}

.contact_info .contact_info_title {
    min-width: 162px;
    display: inline-block;
}

.contact_info li a {
    font-weight: 700;
    color: #0778E4;
}

.contact_icon a {
    padding-right: 35px;
}

.contact_icon img {
    min-width: 22px;
}

#contact_form p {
    padding-bottom: 5px;
}

#contact_form input,
#contact_form textarea {
    padding: 14px 16px;
    width: 100%;
    background: -o-linear-gradient(110.02deg, #ABC4FF -271.33%, #FFFFFF 134.36%);
    background: linear-gradient(339.98deg, #ABC4FF -271.33%, #FFFFFF 134.36%);
    border-radius: 11px;
    border: none;
    color: #00052C;
    font-weight: 700;
}

#contact_form input::-webkit-input-placeholder,
#contact_form textarea::-webkit-input-placeholder {
    opacity: 0.5;
    color: #00052C;
}

#contact_form input::-moz-placeholder,
#contact_form textarea::-moz-placeholder {
    opacity: 0.5;
    color: #00052C;
}

#contact_form input:-ms-input-placeholder,
#contact_form textarea:-ms-input-placeholder {
    opacity: 0.5;
    color: #00052C;
}

#contact_form input::-ms-input-placeholder,
#contact_form textarea::-ms-input-placeholder {
    opacity: 0.5;
    color: #00052C;
}

#contact_form input::placeholder,
#contact_form textarea::placeholder {
    opacity: 0.5;
    color: #00052C;
}

#contact_form textarea {
    max-height: 119px;
    resize: none;
}

#contact_form button,
.submit_btn {
    margin-top: 5px;
    -webkit-box-shadow: 0px 0px 50px rgba(128, 165, 255, 0.5);
    box-shadow: 0px 0px 50px rgba(128, 165, 255, 0.5);
    width: 100%;
    max-width: 184px;
}
.submit_btn.open{
    margin-top: 35px!important;
}
#message_text button.close {
    background: transparent;
    border: none;
    position: absolute;
    top: -5pxpx;
    right: -3px;
    display: inline-block;
    padding: 0;
    max-width: 30px !important;
    color: #fff;
    cursor: pointer;
}
.help-block {
    color: #f01b1b;
    font-size: 10px;
}

.help-block {
    color: #f01b1b;
    font-size: 10px;
}

.alert-success {
    color: #fff;
    background-color: #09b931;
    border-color: transparent;
    font-size: 15px;
    padding: 10px 15px;
}
#contact_form .form_text {
    padding-top: 30px;
    font-size: 14px;
    font-weight: 400;
}

.contact_icon a img {
    width: 25px;
    height: 24px;
}

.contact_icon a {
    display: inline-block;
}


/*terms area*/

.terms_wrapper {
    padding-bottom: 140px;
    position: relative;
    padding-top: 100px;
}

.terms_shape {
    position: absolute;
    top: -126px;
    right: 0;
    z-index: -1;
}

.terms_shape2 {
    position: absolute;
    bottom: -301px;
    right: 0;
    z-index: -1;
}

.terms_shape3 {
    bottom: 0;
    left: 0;
}

.terms_text {
    font-weight: 500;
}

.terms_list li {
    position: relative;
    padding-left: 35px;
}

.terms_list li:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background-color: #0778E4;
    border-radius: 50px;
    left: 0;
    top: 4px;
}


/*footer area*/

footer {
    position: relative;
}

.footer_shape {
    bottom: -4%;
    left: 0;
    z-index: -1;
}

.footer_wrapper {
    padding-bottom: 100px;
}

.footer_img {
    padding-bottom: 35px;
}

.footer_wrapper h4 {
    font-size: 24px;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
    color: #0778E4;
    padding-bottom: 25px;
}

.footer_wrapper .footer_contact_heading {
    padding-bottom: 50px;
}

.footer_list li a {
    color: #00052C;
}

.footer_list li a:hover {
    color: #0778E4;
}

.footer_wrapper li {
    padding-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
}

.footer_info .footer_info_title {
    min-width: 154px;
    display: inline-block;
}

.footer_wrapper li span {
    display: inline-block;
}

.footer_icon a {
    padding-right: 40px;
}

.footer_icon img {
    min-width: 24px;
}

.footer_text {
    line-height: 19px;
    font-weight: 700;
    color: #80A5FF;
    padding-top: 45px;
}

.footer_icon img {
    width: 25px;
    height: 24px;
}

.ft-logo {
    display: inline-block;
}

.ft-logo img {
    width: 280px;
    height: 68px;
}


/*return-to-top START CSS*/

.back-to-top {
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, #86E6FF 0%, #1A68FF 100%);
    background: linear-gradient(135deg, #86E6FF 0%, #1A68FF 100%);
    z-index: 1000;
}

.back-to-top img {
    width: 15px;
    margin-bottom: 7px;
}

.rotate {
    display: inline-block;
    -webkit-animation: rotate 10s linear infinite;
    animation: rotate 10s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.updown {
    -webkit-animation: updown 1s alternate infinite;
    animation: updown 1s alternate infinite;
}

@-webkit-keyframes updown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes updown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}