﻿*:hover {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    font-size: 16px;
}
.oswald-txt {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.poppins-black-txt {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.floatyMenu {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 20px;
    margin: auto;
    z-index: 9999;
}
    .floatyMenu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        text-transform: uppercase;
        justify-content: space-around;
        align-items: center;
    }
    .floatyMenu ul li {
        margin: 0 10px;
    }
        .floatyMenu ul li a {
            color: #185e90;
            font-size:21px;
            text-decoration: none;
            font-weight: 500;
        }
            .floatyMenu ul li a:hover {
                color: #000011;
            }
.logo {
    width: 150px;
}
    .logo img {
        width: 100%;
    }
.mainBanner {
    position: relative;
}
.mainBannerMask {
    overflow: hidden;
    position:relative
}
    .mainBannerMask:before {
        content: "";
        /*background: rgb(255,255,255);*/
        background: linear-gradient(90deg, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 70%);
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
.legendBox {
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    height: 300px;
    max-width: 880px;
    width: 100%;
    margin: auto;
    z-index: 2;
    text-align: right;
}
img.mainBannerMaskTop {
    z-index: 1;
    position: absolute;
    width: 100%;
    top: -10px;
}
.legendTop {
    font-size: 55px;
    font-weight: 900;
    color: #1b7fc7;
}
.legendBotton {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 90px;
    letter-spacing: -2px;
    margin: 10px 0;
}
.basicBtnAction {
    background: #ff6e38;
    border: none;
    font-size: 21px;
    text-decoration: none;
    /* font-weight: 500; */
    padding: 10px 20px;
    color: white;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 25px 15px;
    min-width: 150px;
}
    .basicBtnAction span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        transition: 0.3s;
    }

.kenburns-bottom {
    -webkit-animation: kenburns-bottom 20s ease-out infinite alternate-reverse;
    animation: kenburns-bottom 20s ease-out infinite alternate-reverse;
}
@-webkit-keyframes kenburns-bottom {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 84%;
        transform-origin: 50% 84%;
    }

    100% {
        -webkit-transform: scale(1.25) translateY(15px);
        transform: scale(1.25) translateY(15px);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
    }
}

@keyframes kenburns-bottom {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 84%;
        transform-origin: 50% 84%;
    }

    100% {
        -webkit-transform: scale(1.25) translateY(15px);
        transform: scale(1.25) translateY(15px);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
    }
}
.btn:active, .btn:hover, .btn:focus {
    outline: 0 !important;
    outline-offset: 0;
}

.btn::before,
.btn::after {
    position: absolute;
    content: "";
}
.btn-1::before {
    background-color: #ff6e38;
    transition: 0.3s ease-out;
}

.btn-1 span {
    color: rgb(255,255,255);
    border: 1px solid #ff6e38;
    transition: 0.2s 0.1s;
}

    .btn-1 span:hover {
        color: rgb(28, 31, 30);
        transition: 0.2s 0.1s;
    }

.btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    min-width: 150px;
    padding: 0;
}
    .btn span {
        position: relative;
        display: inline-block;
        font-size: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        top: 0;
        left: 0;
        padding: 15px 20px;
        transition: 0.3s;
    }
    .btn.hover-filled-slide-right::before {
        top: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }
    .btn.hover-filled-slide-right:hover::before {
        width: 0%;
    }
section#workings, section#contact {
    background: rgb(255, 255, 255);
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(222, 236, 255, 1) 100%);
    padding: 130px 0;
}
section#steps {
    background: rgb(255, 255, 255);
    background: linear-gradient(225deg, rgba(255, 255, 255, 1) 0%, rgba(222, 236, 255, 1) 100%);
    padding: 130px 0;
}
section#autorized {
    background: rgb(1,13,65);
    background: linear-gradient(219deg, rgba(1,13,65,1) 0%, rgba(63,71,116,1) 100%);
    padding: 130px 0;
}
section#vangard {
    background: rgb(18,112,179);
    background: linear-gradient(219deg, rgba(18,112,179,1) 0%, rgba(2,85,144,1) 100%);
    padding: 130px 0;
}
section#sevices{
    background: rgb(244,244,244);
    background: linear-gradient(219deg, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
    padding: 130px 0;
}
section#clients {
    background: white;
    padding: 130px 0;
}
.containerBase {
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
}

.columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.workingsColOne {
    width: 39%;
}
.workingsColTwo {
    width: 59%;
}
.stepsColOne {
    width: 40%;
}
.mainHeadlines {
   font-size: 55px;
    line-height: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.stepTxt {
    color: white;
}
.stepsImg img {
    width: 100%;
}
.text-focus-in {
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.hugeHeader {
   font-size: 55px;
    line-height: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 50px;
    text-align: center;
}
.legendBox.legendBoxAlt {
    margin-top:60px;
}
    .legendBox.legendBoxAlt .legendBotton {
        font-size: 50px;
        line-height: inherit;
    }
        .legendBox.legendBoxAlt .legendBotton b {
            font-weight: bolder;
            color: #1b7fc7;
        }
    .legendBox.legendBoxAlt .legendTop {
        font-size: 35px;
    }
img.toplogoFE {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto 20px;
}
.downloadLink a {
    width: 210px;
    display: block;
    margin-top: 50px;
    border: 5px solid #0c65a5;
    border-radius: 10px;
}
    .downloadLink a:hover {
        border: 5px solid white;
    }
.stepList.stepListAlt .stepListItem label i {
    color: white;
    background: #1b7fc7;
    padding: 15px 0;
    width: 60px;
    border-radius: 60px;
}
    .stepList.stepListAlt .stepListItem label i.fas.fa-check {
        background: #044d81;
    }

.stepList.stepListAlt .stepListItem label {
    text-align: center;
    font-size: 30px;
    /* color: #1b7fc7; */
}
.stepList.stepListAlt .stepListItem {
    align-items: center;
}
.stepList.stepListAlt {
    margin-top: 40px;
    margin-bottom: 30px;
}
.witImg {
    background: white;
    border-radius: 5px;
    padding: 0 30px;
}
label.witLogo {
    color: white;
    background: #1b7fc7;
    padding: 8.6666px 0;
    width: 60px !important;
    border-radius: 60px;
    margin: 0 auto;
}
    label.witLogo img {
        width: 100%;
        max-width: 40px;
        height: auto;
    }
@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: line-height: 40px;
        blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.fade {
    opacity: 0;
}
.stepsListTittle {
    color: #1b7fc7;
   font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height:40px
}
section#vangard .stepsListTittle,
section#autorized .stepsListTittle {
    color: white;
}
.stepListItem {
    display: flex;
    justify-content: space-between;
    font-size: 21px;
    margin-bottom:10px
}
    .stepListItem label {
        font-weight: 900;
        display: block;
        width: 20%;
    }
    .stepListItem div {
        width: 79.333%;
    }
.stepsColTwo {
    width: 50%;
}
.vibrate-1 {
    -webkit-animation: vibrate-1 5s ease-in-out infinite alternate-reverse backwards;
    animation: vibrate-1 5s ease-in-out infinite alternate-reverse backwards;
}
@-webkit-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.stepTxt p {
    margin: 0;
    font-size: 18px;
}
.hugeListItem {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.hugeListItemImg {
    width: 25%;
}
    .hugeListItemImg img {
        text-align: center;
        width: 100%;
    }
.hugeListItemTxt {
    width: 60%;
}
    .hugeListItemTxt p {
        margin: 0
    }
    .hugeListItemTxt > div {
         font-size: 32px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: -1px;
        margin-bottom: 10px;
        line-height: 40px;
    }
.hugeListItem.backwards .hugeListItemTxt {
    text-align: right;
}
.hugeFooter {
    text-align: center;
    margin-top: 60px;
}
/*carrusel*/
section#carrouselSection {
    width: 100%;
}
.owl-item {
    width: 128.906px;
    margin-right: 10px;
    background: powderblue;
}

.owl-theme .owl-dots .owl-dot{ display:none!important;}

/*carrusel end*/
.carouserShell {
    position: relative;
    background-image: url(img/sub-baner-bg.jpg);
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: left center;
    background-color: black;
}
    .carouserShell .item {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
.owl-item {
    background: transparent;
}
.textSide {
    color: white;
}
.carouserShellHeader {
     font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 40px;
}
.textSide {
    padding: 0px 10%;
    width: 55%;
}
.imgSide {
    position: relative;
    width: 60%;
    overflow: hidden;
    height: 360px;
}
.clientList div img {
    width: 66%;
    height: auto;
}

.clientList div {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.clientList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}
.contactShell {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.contactSection, .mapSection {
    background: white;
    padding: 30px;
    margin: 0px 10px;
    border-radius: 20px;
    align-self: stretch;
}
    .contactSection b {
        font-size: 27px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 0px;
        line-height: 30px;
        display: block;
    }
    .contactSection ul.social-menu {
        float: none;
        margin: 20px 0 30px;
    }

ul.social-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    float: right;
}
    ul.social-menu li {
        display: inline-block;
    }
        ul.social-menu li a {
            background: white;
            /* -webkit-box-shadow: 1px 1px 0px 1px #e1dff0; */
            /* box-shadow: 1px 1px 0px 1px #e1dff0; */
            text-align: center;
            border-radius: 5px;
            padding: 7px 0;
            width: 54px;
            display: block;
            font-size: 20px;
            position: relative;
            opacity: 1;
            color: white;
            margin-right: 10px;
        }
            ul.social-menu li a.twitter {
                background: black;
            }
            ul.social-menu li a.facebook {
                background: #3b5998;
            }
            ul.social-menu li a.linkedin {
                background: #0077b5;
            }
            ul.social-menu li a:hover {
                opacity:0.5;
            }
footer {
    background: black;
    color: white;
}
.footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.copyright {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}
footer {
    background: black;
    color: white;
    padding: 60px 0;
}
.footer div {
    width: 30%;
    margin: 0 20px;
}
.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
footer h1 {
    text-transform: uppercase;
  font-size: 24px;
    margin-top: 0;
}
.footer ul li {
    margin-bottom: 5px;
    display: flex;
}

.footer ul a {
    color: white;
    text-decoration: none;
}
.footer ul li i {
    padding-top: 4px;
    margin-right: 20px;
}
.resMenuSwich {
    display: none;
}
.responsive {
    display:none
}
#myBtnTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #203b4e;
    color: white;
    cursor: pointer;
    padding: 15px 0;
    width: 51px;
    height: 51px;
    border-radius: 100px;
}

    #myBtnTop:hover {
        background-color: white;
        color: #203b4e;
    }
.deskHiddenCol {
    display:none
}
iframe#contactFrame {
    border: none;
}
.legendTop span {
    color: #0e578b;
    text-decoration: underline;
}
span.hugeText {
    font-size: 80px;
    margin-top: 20px;
    display: block;
    font-weight: 100;
}
.rotate-in-2-tl-cw {
    -webkit-animation: rotate-in-2-tl-cw 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: rotate-in-2-tl-cw 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.stepsImg.phoneHugeImg {
    text-align: center;
}

    .stepsImg.phoneHugeImg img {
        width: 400px;
    }
@-webkit-keyframes rotate-in-2-tl-cw {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 0;
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 1;
    }
}

@keyframes rotate-in-2-tl-cw {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 0;
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 1;
    }
}
.stepList.stepListAlt.listHuge div {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.stepList.stepListAlt.listHuge .stepListItem {
    align-items: flex-start;
}
.downloadLink.downloadLinkAlt {
    text-align: center;
}
    .downloadLink.downloadLinkAlt a {
        display: inline-block;
        width: 330px;
        border-radius: 20px;
    }
.responsiveHeadHidden {
    display:none;
}
span.btn-bg {
    background: white;
    padding: 2px;
    display: inline-block;
}
@media only screen and (max-width: 768px) {
    .resMenuSwich {
        display: block;
        font-size: 35px;
        /* opacity: 0.5; */
        color: #333333;
    }
    a.resMenuSwich.menuOpened {
        color: #3fa0e5;
        opacity: 1;
    }
    .floatyMenu {
        flex-wrap: wrap;
        width: 95%;
    }
        .floatyMenu ul {
            flex-wrap: wrap;
            width: 95%;
            opacity: 0;
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            top: -380px;
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            -ms-transition: all 300ms ease-in-out;
            -o-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }
            .floatyMenu ul li {
                width: 100%;
            }
    .legendTop {
         font-size: 32px;
    }
    .legendBotton {
       font-size: 48px;
        line-height: 50px;
    }

    img.mainBannerMaskTop {
        z-index: 1;
        position: absolute;
        width: auto;
        height: 100%;
        top: -7px;
        left: -180%;
    }
    .mainBannerMask:before, img.mainBannerMaskTop, .desktop {
        display: none;
    }
    .responsive {
        display: block;
    }
    .legendBox.text-focus-in {
        right: 0;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.8);
        height: 260px;
        backdrop-filter: blur(20px);
    }
    .legendBox.legendBoxAlt.text-focus-in {
        height: fit-content;
    }
        .legendBox.legendBoxAlt.text-focus-in .legendBotton {
            font-size: 28px;
            text-align: center;
        }
    .legendBox.legendBoxAlt .legendTop {
        font-size: 23px;
        text-align: center;
    }
    .downloadLink a {
        margin: 50px auto -50px;
    }
    img.toplogoFE {
        max-width: 240px;
    }
    .containerBase {
        padding:0
    }
    .columns, .hugeListItem {
        flex-wrap: wrap;
        padding: 0;
    }
        .columns > div {
            width: 100%;
            margin-bottom: 70px;
            padding-left: 10px;
            padding-right: 10px;
        }
    .mainHeadlines {
        font-size: 30px;
        line-height: 35px;
    }
    .hugeListItem > div {
        width: 100%;
        padding: 20px;
    }
    .hugeListItemImg {
       text-align:center;
       margin-bottom:20px;
    }
        .hugeListItemImg > img {
            width: 90%;
        }
    .hugeListItem.backwards .hugeListItemTxt {
        text-align: left;
    }
    .item {
        flex-wrap: wrap;
    }
    .carouserShell .item > div {
        width: 100%;
        padding: 20px;
    }
    .carouserShell {
        background-size: cover;
    }
    .imgSide {
        height: auto;
        padding: 0 !important;
    }
    .clientList div {
        width: 49.333%;
    }
        .clientList div img {
            width: 75%;
            height: auto;
        }
    .contactShell {
        flex-wrap: wrap;
    }
    .contactSection, .mapSection {
        margin-bottom: 40px;
        width: 90%;
    }
        .mapSection iframe {
            width: 100%;
        }
    .contactSection {
        padding: 30px 15px;
    }
    .footer {
        flex-wrap: wrap;
    }
        .footer > div {
            width: 100%;
            margin-bottom: 40px;
        }
    ul.menuUlOpened {
        top: 115%;
        opacity: 1;
        /* margin-top: 20px; */
        background: white;
        padding: 10px;
        border-radius: 15px;
        -webkit-transition: all 300ms ease-in-out;
        -moz-transition: all 300ms ease-in-out;
        -ms-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }
    .floatyMenu ul li {
        margin: 15px 0 15px 20px;
    }
    a.resMenuSwich.menuOpened {
        opacity: 1;
        -webkit-transition: all 300ms ease-in-out;
        -moz-transition: all 300ms ease-in-out;
        -ms-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }
    section#workings, section#steps, section#autorized, section#vangard, section#sevices, section#clients, section#workings, section#contact {
        padding: 50px 0;
    }
    .deskHiddenCol {
        display: block;
    }
    .reskHiddenCol {
        display:none;
    }
    .hugeHeader {
        font-size: 40px;
        line-height: 40px;
    }
    .stepsImg.phoneHugeImg img {
        width: 100%;
    }
    .appcontent .legendBotton {
        font-size: 40px !important;
        line-height: normal !important;
    }
        .appcontent .legendBotton span.hugeText {
            font-size: 40px;
            margin-top: 0;
        }
    .legendBotton.longTextRes {
        font-size: 37px !IMPORTANT;
    }
    .stepList.stepListAlt.listHuge div {
        padding: 0 !important;
        font-size: 25px;
    }
    .stepsColFull .legendBotton {
        letter-spacing: normal;
    }
    .downloadLink.downloadLinkAlt a {
        width: 240px;
    }
    .stepListItem label {
        width: 35%;
    }
    .stepListItem div {
        width: 67.333%;
    }
    iframe#contactFrame {
        height: 520px;
    }
    .stepsListTittle {
        text-align: center;
    }
    .responsiveHeadHidden {
        display: block;
        width: 100%;
    }
    .responsiveHeadHidden img {
        max-width: 180px;
        margin: 10px auto;
    }
    .appcontent {
        padding: 0 !important;
    }
    img.toplogoFE.toplogoFEAlt {
        margin: 0 auto 20px !important;
    }
}
