/* FONTS */
/* font-family: 'Barlow', sans-serif; */
/* font-family: 'Kreon', serif; */

html, body{
    font-family: 'Barlow', sans-serif;
    color: #2f2e41;
    scroll-behavior: smooth;
    background: #ebebeb;
}
h2{
    font-size: 44px;
}
.iregular-title{
    font-family: 'Kreon', serif;
}
button:focus{
    outline: none !important;
    box-shadow: inset 0 -1px 0 #ddd;
}
.primary-header{
    height: 100vh;
    background: #2f2e41 url('../img/bg-header.svg') no-repeat center right;
    background-blend-mode: multiply;
    background-size: contain;
}
.regular-header{
    min-height: 30vh;
    background: #2f2e41;
}
.wave{
    width: 100%;
    height: 250px;
    background: rgba(0,0,0,0) url('../img/d-wave--.png') no-repeat top center;
    background-size: cover;
    margin-top: -5px;
}
.header .navbar-brand .light-logo{
    height: 90px;
}
.header .navbar-brand .regular-logo{
    height: 55px;
}
.subs-form{
    position: absolute;
    bottom: 8%;
    background: rgba(255,255,255,0.8);
    padding: 10px 20px;
    margin-left: -277px;
    left: 50%;
    border-radius: 33px;
}
.sticked{
    padding-top: 8px !important;
    background: #fff;
    height: auto;
    animation: fd 1s;
}
@keyframes fd{
    0%{
        margin-top: -50px;
        opacity: 50%;
    }
    100%{
        margin-top: 0;
        opacity: 100%;
    }
}
.sticked .nav-item a{
    color: rgba(244, 102, 0, .5) !important;
}
.sticked .nav-item a:hover{
    color: #f46600 !important;
}
.sticked .active a{
    color: #f46600 !important;
}
.sticked .navbar-brand{
    position: relative;
    top: unset;
}
.sticked .nav-item:after{
    border-bottom: 2px solid #f46600;
}
.sticked .active:after{
    border-bottom: 2px solid #f46600;
}
.navbar{
    padding-top: 40px;
    padding-bottom: 20px;
    height: 70px;
}
.navbar-brand{
    position: absolute;
    top: 16px;
}
.nav-item{
    position: relative;
}
.nav-item:after{
    content: '';
    display:block;
    border-bottom: 2px solid #fff;
    transform: scaleX(0);
    transform-origin:  0% 50%;
    transition: transform 250ms ease-in-out;
}
.nav-item:hover:after{
    transform: scaleX(1);
}
.nav-item a{
    font-size: 20px;
    font-weight: 600;
}
.active:after{
    content: '';
    display: block;
    width: 100%;
    border-bottom: 2px solid #fff;
    transform: scaleX(1);
    transform-origin:  100% 50%;
    transition: transform 250ms ease-in-out;
}
.active:hover:after{
    transform: scaleX(0);
}
.header-title{
    position: absolute;
    bottom: 10px;
    right: 80px;
}
.header-title h2{
    font-weight: 600;
    color: #fff;
}
.header-title h1{
    font-size: 50px;
    background: rgba(255,255,255,.7);
    padding: 1px 50px;
}
.card, .ally-item{
    box-shadow: 5px 10px 18px #888888;
}
.hideof{
    overflow-y: hidden;
    overflow-x: hidden;
}
.soc-icon a{
    margin-left: 5px;
    margin-right: 5px;
}
.btn-totop{
    width: 30px;
    height: 30px;
    background: transparent;
    color: #f46600;
    font-size: 35px;
    position: fixed;
    right: 120px;
    bottom: 60px;
    animation: ud 2s infinite;
}
.btn-totop:hover{
    color: #ebebeb;
    background: #f46600;
}

@keyframes ud{
    0% {
        transform: translate(0);
    }
    50% {
        transform: translate(0,-5px);
    }
    100% {
        transform: translate(0);
    }
}
.btn-modal-creative{
    display: block;
    position: relative;
    transition: 300ms ease-in-out;
}
.btn-modal-creative:hover{
    box-shadow: 5px 10px 18px #888888;
    margin-top: -10px;
}
.quote{
    width: 55%;
    font-size: 21px;
}
.about-card{
    min-height: 400px;
}
.footer-menu li a{
    color: #fff;
    transition: 1000ms;
}

.sec-home1{
    padding-left: 70px;
}
.sec-home1 li {
    position: relative;
}
.sec-home1 li:after{
    content: '';
    position: absolute;
    bottom: 5px;
    left: -25px;
    width: 20px;
    height: 20px;
    background: url(../img/icons/check.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.trust-img{
    width: 120px;
    position: absolute;
    top: 50%;
    margin-top: -60px;
    right: 40px;
}
.barcode{
    position: absolute;
    bottom: 100px;
    width: 20%;
    left: 50%;
    margin-left: -10%;
}
.ps{
    position: absolute;
    bottom: 66px;
    left: 50%;
    width: 18%;
    margin-left: -9%;
}
.waved-sec{
    position: relative;
    margin-top: 200px;
    margin-bottom: 200px;
    background: #2f2e41;
    color: #fff;
}
.waved-sec:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    top: -200px;
    background: url('../img/d-wave2.png');
    background-size: cover;
    background-position: bottom center;
}
.waved-sec:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: -200px;
    background: #fff url('../img/d-wave3.png');
    background-size: cover;
    background-position: top center;
}
.footer-logo{
    width: 40%;
}
.lang{
    position: fixed;
    top: 8px;
    right: 0;
    padding: 20px;
    z-index: 9999;
    transition: 300ms ease-in-out;
}
.sticked-lang{
    top: -5px;
}
.lang a img{
    filter: saturate(15%);
}
.lang .lang-active img{
    filter: saturate(1);
}

@media (max-width: 425px){
    .navbar-collapse{
        background: #2f2e41;
        padding: 10px 20px;
        margin-top: -10px;
        margin-right: -20px;
        margin-left: -20px;
        z-index: 999;
    }
    .fixed-top .navbar-collapse{
        background: #fff;
    }
    .fixed-top .navbar-toggler {
        color: #2f2e41;
    }
    .header-content{
        position: absolute;
        bottom: 0;
    }
    .header-title{
        position: absolute;
        bottom: 10px;
        right: 20px;
    }
    .header-title h2{
        font-size: 35px;
    }
    .header-title h1{
        font-size: 38px;
        padding: 0 5px;
    }
    .header-img{
        margin-bottom: 53%;
    }
    .btn-totop{
        right: 3%;
        bottom: 15%;
    }
    .designed{
        display: block;
        text-align: center;
    }
    .page-title{
        margin-top: 55px;
    }
    .wave{
        height: 200px;
    }
    .quote{
        width: 87%;
    }
    .footer-logo{
        width: 75%;
    }
}

@media (max-width: 1024px){
    .sticked .navbar-collapse{
        margin: -5px -17px;
        padding: 0 10px;
    }
}

@media (max-width: 1024px){
    .navbar-brand{
        position: relative;
        top: 0;
    }
    .header .navbar-brand .light-logo{
        height: 50px;
    }
    .lang{
        position: absolute;
        top: 305px;
        right: 50%;
        margin-right: -60px;
        padding: 20px;
        z-index: 9;
    }
    .navbar-collapse{
        background: #2f2e41;
        position: relative;
        z-index: 99;
    }
    .sticked .navbar-collapse{
        background: #fff;
    }
}

@media (max-width: 768px){
    .sticked{
        padding-top: 0 !important;
    }
}

@media (max-width: 410px){
    .lang{
        top: 315px;
    }
}

@media (max-width: 306px){
    .lang{
        top: 367px;
    }
}

.pricing .card {
border: none;
border-radius: 1rem;
transition: all 0.2s;
box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing hr {
margin: 1.5rem 0;
}

.pricing .card-title {
margin: 0.5rem 0;
font-size: 1.5rem;
letter-spacing: .1rem;
font-weight: bold;
}

.pricing .card-price {
font-size: 3rem;
margin: 0;
}

.pricing .card-price .period {
font-size: 0.8rem;
}

.pricing ul li {
margin-bottom: 1rem;
}

.pricing .text-muted {
opacity: 0.7;
}

.pricing .btn {
font-size: 80%;
border-radius: 5rem;
letter-spacing: .1rem;
font-weight: bold;
padding: 1rem;
opacity: 0.7;
transition: all 0.2s;
}
.fa-li{
    top: -2px;
}

/* Hover Effects on Card */

@media (min-width: 992px) {
.pricing .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
}
.pricing .card:hover .btn {
    opacity: 1;
}
}