html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
    background-color: #fffaf8;
    scrollbar-width: thin;
    scrollbar-color: #90A4AE #ffffffab;
}

:root{
    --darkviolet:#241e4e;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #ffffffab;
}

body::-webkit-scrollbar-thumb {
    background-color: #90A4AE;
    border-radius: 6px;
    border: 3px solid #ffffff;
}

button:focus {
    outline: none;
}

a{
    color: inherit;
}
a:hover{
    text-decoration: none;
    color: inherit;
}

nav {
    font-weight: bold;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.blur {
    -webkit-filter: url(#better-blur);
    -moz-filter: url(#better-blur);
    -o-filter: url(#better-blur);
    -ms-filter: url(#better-blur);
    filter: url(#better-blur);
    
}

@supports (-moz-appearance:none) { /* for mozilla browsers*/
    .blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
    #email,#phoneNumber{
        border: none;
    }
}

.appear {
    position: relative;
    opacity: 0;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transform: translate3d(0px, 0px, 0px) scale(0.8);
    transform: translate3d(0px, 0px, 0px) scale(0.8);
}

.box-loader {
    border-radius: 100%;
    margin: 0 auto;
}

.box-loader span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #2e44a5;
    margin: 0 5px;
/*    opacity: 0;*/
}

/*
.box-loader span:nth-child(1) {
    -webkit-animation: opacitychange 2s ease-in-out infinite;
    animation: opacitychange 2s ease-in-out infinite;
}

.box-loader span:nth-child(2) {
    -webkit-animation: opacitychange 2s ease-in-out 0.33s infinite;
    animation: opacitychange 2s ease-in-out 0.33s infinite;
}

.box-loader span:nth-child(3) {
    -webkit-animation: opacitychange 2s ease-in-out 0.66s infinite;
    animation: opacitychange 2s ease-in-out 0.66s infinite;
}
*/
.btn-orange {
    color: #fff;
    background-color: #FF9F00;
    border-color: #FF9F00;
    background-image: linear-gradient(90deg, #FF4D07 0%, #FE7B01 35%, #FF9F00 100%);
}
.card:hover {
    background-color: lavender;
}
.shadowbox{
    box-shadow:rgb(0 0 0 / 10%) 6px 6px 6px 1px;
}
.clients{
    padding: 2rem;
    display: flex;
    color: #fff;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}
.clients h4{
    flex: 1;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-content: center;
    margin: auto;
    justify-content: center
}
.clients div{
    flex: 4;
}
.clients img{
    width: 100%
}


.contact-form {
    padding: 50px;
    overflow: auto
}

.contact-form div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    /*     min-height: 60px;*/
}

.contact-form input {
    padding: 5px 10px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    outline: none;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
}

.contact-form p {
    font-size: 1.5rem;
}

.contact-form span {
    padding: 5px 10px;
    pointer-events: none;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;

}

.comesFromLeft {
    position: relative;
    opacity: 0;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transform: translate3d(-100px, 0px, 0px);
    transform: translate3d(-100px, 0px, 0px);
}

.comesFromRight {
    position: relative;
    opacity: 0;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transform: translate3d(100px, 0px, 0px);
    transform: translate3d(100px, 0px, 0px);
}

.close-mod {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 3rem
}

.decorate {
    font-size: 2.7rem;
    text-transform: capitalize;
    letter-spacing: .2rem;
    color: #1e1f40;
    font-weight: bold;
    text-shadow: 1px 1px #ffffff;
}

.dropdown a {
    cursor: pointer;
}

.dropdown-item span {
    color: #515585;
    border-bottom: 1px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.dropdown-item:hover > span {
    color: #0a00dd;
    -webkit-animation: border-left-to-right .5s ease;
    animation: border-left-to-right .5s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.form-container {
    position: fixed;
    background-color: #ffffffab;
    z-index: 9999999999;
    top: 0;
    margin: 0;
    padding: 5px;
    width: 50vw;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: auto;
    right: 0;
    overflow: auto;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 0;
    left: auto;
}

.form-open-trigger {
    font-weight: bold;
}

.footer .list-unstyled a {
    text-decoration: none;
    color: #fff
}

.footer .list-unstyled a:hover {
    color: #9c9c9c
}

.in-view {
    opacity: 1 !important;
    -webkit-transform: translate3d(0px, 0px, 0px) scale(1) !important;
    transform: translate3d(0px, 0px, 0px) scale(1) !important;
}

.side-fixed-btn{
    position: fixed;
    z-index: 999;
    top: 40%;
    right: 0;
    -webkit-transform: translate(34%,-50%) rotate(270deg);
    transform: translate(34%,-50%) rotate(270deg);
    outline: none;
    font-weight: bold;
    font-size: 1.1rem;
    -webkit-font-smoothing: antialiased;
    -webkit-transform-origin: 50%  54%;
}

.short-form-cont {
    width: 100%;
    background-color: #2C3755;
    position: relative;
    margin-bottom: 5rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden
}

.slider-automatic-con {
    overflow: auto;
    scrollbar-width: none !important;
}

.slider-automatic {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
}
.slider-automatic .card{
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.2));
    filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.2));
}

.slider-automatic::-webkit-scrollbar {
    display: none;
    width: 0px !important;
   scrollbar-width: none; /* Firefox 64 */
        -ms-overflow-style: none; /* IE 11 */
}

.slider-automatic-con::-webkit-scrollbar {
    display: none;
    width: 0px !important;
    scrollbar-width: none; /* Firefox 64 */
    -ms-overflow-style: none; /* IE 11 */
}

.spinner {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 0;
}

.spinner .circle-1 {
    width: 100%;
    height: 100%;
    background-color: #ee5388;
    top: 0;
    -webkit-animation: pulse 1.6s linear 0s infinite;
    animation: pulse 1.6s linear 0s infinite;
}

.spinner .spinner-circle {
    border-radius: 100px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.spinner .circle-2 {
    width: 66.6%;
    height: 66.6%;
    background-color: #ee5388;
    top: 16.5%;
    -webkit-animation: pulse-2 1.6s linear 0s infinite;
    animation: pulse-2 1.6s linear 0s infinite;
}

.tagline {
    font-family: 'Kalam', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    opacity: 0;
    -webkit-animation: Bump-up;
    animation: Bump-up;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);

}

.translatex-20 {
    -webkit-transform: translateX(20%);
    transform: translateX(20%)
}

.translatex--30 {
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%)
}

.translatex--40 {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%)
}

.waves {
    position: absolute;
    bottom: 0;
    width: 100vw;
    left: 0;
    right: 0;
}

.waves-oposites {
    position: absolute;
    top: 0;
    width: 100vw;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.width-120 {
    width: 120%;
}

.work-process {
    position: relative;
}

.work-process .box-loader {
    position: absolute;
    top: 30%;
    right: -15%;
    left: inherit;
}


@-webkit-keyframes Bump-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .4;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes Bump-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .4;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes border-left-to-right {
    from {
        border-bottom: 1px solid #0a00dd;
        width: 0;
    }

    to {
        border-bottom: 1px solid #0a00dd;
        width: 100%;
    }
}

@keyframes border-left-to-right {
    from {
        border-bottom: 1px solid #0a00dd;
        width: 0;
    }

    to {
        border-bottom: 1px solid #0a00dd;
        width: 100%;
    }
}

@-webkit-keyframes comes-from-top {
    0% {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-110%);
        transform: translateY(-110%);
    }

    90% {
        visibility: visible;
        opacity: 0.8;
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }

    100% {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes comes-from-top {
    0% {
        visibility: visible;
        opacity: 0;
        -webkit-transform: translateY(-110%);
        transform: translateY(-110%);
    }

    90% {
        visibility: hidden;
        opacity: 0.8;
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }

    100% {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pulse-2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse-2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

@-webkit-keyframes opacitychange {

    0%,
    100% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }
}

@keyframes opacitychange {

    0%,
    100% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }
}

@media screen and (max-width: 992px) {
   .clients{
    flex-direction: column;
     padding: 1rem
}
.clients h4{
    flex: auto;
}
.clients div{
    flex: auto;
    margin: .5rem auto
}
.clients img{
    width: 100%
}
    .comesFromLeft,
    .comesFromRight,
    .appear {
        -webkit-transform: translate3d(0px, 0px, 0px) scale(0.8);
        transform: translate3d(0px, 0px, 0px) scale(0.8);
    }

    nav.fixed-top {
        position: relative;
        background-color: #343a40 !important;
    }

    .bg-triangles {
        background: url('images/laptop-bg.jpg') no-repeat center center;
        width: 100%;
        height: 80vh;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-attachment: inherit;
    }

    .contact-form p {
        font-size: 1rem;
    }

    .decorate {
        font-size: 1.8rem;
    }

    .form-container {
        width: 95%;
    }

    .hide-overflow {
        overflow: hidden;
    }

    .width-120 {
        width: 100%
    }

    .tagline {
        text-align: center;
        font-size: 1.5rem;
    }

    .translatex-20,
    .translatex--30,
    .translatex--40 {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

}

@media screen and (min-width: 992px) {
    .dropdown-menu {
        background-color: #ffffffab !important;
    }

    .dropdown-item span {
        color: #0c0c0c;
    }

    .dropdown > .dropdown-toggle:active {
        /*Without this, clicking will make it sticky*/
        pointer-events: none;
    }

    .fix-nav {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-110%);
        transform: translateY(-110%);
        -webkit-animation: comes-from-top 1s ease;
        animation: comes-from-top 1s ease;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        /*    background-image: radial-gradient(circle farthest-corner at 33% 49%, #2c27c5, #110f49);*/
        /*
        background-color: #FEAC5E;
        background: -webkit-gradient(linear, left top, right top, from(#4BC0C8), color-stop(#C779D0), to(#FEAC5E));
        background: linear-gradient(to right, #4BC0C8, #C779D0, #FEAC5E);
        color: #fff !important;
*/
        /*        background-color: #1817169e;*/
        color: #fff !important;
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        background-color: rgba(0, 0, 0, 0.25);
    }

    .fix-nav .nav-link,
    .fix-nav .navbar-brand > *,
    .fix-nav .navbar-brand svg {
        color: #fff !important;
        fill: #fff !important;
    }

    .dropdown:hover .dropdown-menu,
    .btn-group:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        margin-top: 0;
        width: 80vw;
        -webkit-transform: translate(-50%, 0px);
        transform: translate(-50%, 0px);
        left: 50%;
        top: 2.5rem;
    }

    .dropdown,
    .dropleft,
    .dropright,
    .dropup {
        position: inherit;
    }

    .dropdown-toggle {
        margin-bottom: 2px;
    }

    .navbar .dropdown-toggle,
    .nav-tabs .dropdown-toggle {
        margin-bottom: 0;
    }

    .nav-item {
        margin-left: .2rem;
        margin-right: .2rem;
    }

}

#email {
    background-color: #E6E6E6;
    min-height: 100%;
    /* font-size: 1.4rem */
}

/*Change text in autofill textbox*/
#form input:-webkit-autofill {
    -webkit-transition: background-color 9999s ease-out;
}

#phoneNumber {
    background-color: #E6E6E6;
    min-height: 100%;    
    /* font-size: 1.4rem */
}

#phoneNumber-email {

}

#phoneNumber-email:hover {
    color: #fff;
    background-color: #676161;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#phoneNumber-email-form {
    height: 3.5rem;
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

#sf-success-msg {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2rem;
    font-size: 2rem;
}

#scroll-up {
    position: fixed;
    height: 25px;
    width: 25px;
    background-color: #0000007a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 80%;
    left: 0;
    background-image: url('images/icons-stripe.png');
    /* color: #fff; */
    background-position: -140px -2px;
    background-repeat: no-repeat;
    border: none;
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    z-index: 9;
    cursor: pointer;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#short-form {
    z-index: 2
}

/*social media icons*/
.instagram,
.facebook,
.twitter,
.whatsapp,.linkedin,.youtube {
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url('http://mildain.us/images/icons-stripe.png');
    background-position: 0 0;
    background-repeat: no-repeat;
}

.instagram {
    background-position: -3px -4px;
}

.facebook {
        background-position: -43px -4px;
}

.twitter {
        background-position: -84px -4px;
}

.whatsapp {
       background-position: -44px -44px;
}
.linkedin {
        background-position: -4px -43px;
}
.youtube {
        background-position: -84px -44px;
}
.whatsapp-fixed {
    position: fixed;
    z-index: 9999;
    bottom: 60px;
    left: 10px;
    border-radius: 4px;
    -webkit-animation: pulse 1.8s ease-out infinite;
    animation: pulse 1.8s ease-out infinite;
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .4));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .4))
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}