@font-face { font-family: opensans-regular; src: url('../fonts/opensans-regular.ttf'); } 
@font-face { font-family: opensans-light; src: url('../fonts/opensans-light.ttf'); } 
@font-face { font-family: opensans-semibold; src: url('../fonts/opensans-semibold.ttf'); } 
@font-face { font-family: opensans-bold; src: url('../fonts/opensans-bold.ttf'); } 
@font-face { font-family: opensans-extrabold; src: url('../fonts/opensans-extrabold.ttf'); } 
@font-face { font-family: cocogoose-pro-border; src: url('../fonts/cocogoose-pro-border.ttf'); } 

html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: opensans-regular;
    width: 100%;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #191515;
    color: #FFFBFB;
    font-size: 17px;
}
.nopadding{
    padding: 0px !important;
}
.sec-pad{
    padding: 100px 0px; 
}
.sec-pad-80{
    padding: 80px 0px;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
p{
    font-size: 17px;
    line-height: 25px;
    color: #D9D9D9;
}
.dark-color{
    color: #000!important;
}
.dark-color p{
    color: #888888;
}
.theme-color{
    color: #C41B1C!important;
}
.light{
    font-family: opensans-light!important;
}
.bold{
    font-family: opensans-bold!important;
}
.semibold{
    font-family: opensans-semibold!important;
}
.extra-bold{
    font-family: opensans-extrabold!important;
}
.cocogoose{
    font-family: cocogoose-pro-border!important;
}
.light-bg{
    background-color: #242020;
}
.text-white{
    color: #FFFBFB!important;
}
.theme-bg{
    background-color: #C41B1C!important;
}

/*header*/

.header{
    width: 100%;
    z-index: 999;
    padding: 30px 0px;
    background-color: transparent;
    position: fixed!important;
    left: 0px;
    right: 0px;
    top: 0px;
}
.sticky-bar{
    background-color: #242020;
    padding: 10px 0px;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header .navbar{
    padding: 0px;
}
.header .navbar-light .navbar-brand {
    padding: 0px;
}
.navbar-expand-xl .navbar-nav .nav-item {
    padding-right: 45px;
    padding-left: 45px;
}
.header .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0px;
    padding-left: 0px;
}
.header .navbar-light .navbar-nav .nav-link {
    color: #FFFBFB;
    font-size: 17px;
    line-height: 21px;
    position: relative;
    padding: 15px 0px;
}
.header .navbar-light .navbar-nav .nav-link:hover, .header .navbar-light .navbar-nav .nav-item.active .nav-link , .header .navbar-light .navbar-nav .nav-item .nav-link.active {
    color: #FFFBFB;
    text-decoration: none;
}
.nav-link::before, .nav-item.active .nav-link::before {
    content: "";
    width: 100%;
    height: 1px;
    border-radius: 50px;
    position: absolute;
    left: 0;
    right: 0px;
    margin: auto;
    bottom: 0;
    transition: 0.5s transform ease;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    background: #FFFBFB;
}
.nav-link:hover::before, .nav-item .nav-link.active::before {
    transform: scale3d(1,1,1);
    transform-origin: 0% 50%;
}
.header .nav-link-btn:hover{
    text-decoration: none;
}
.header .nav-link-btn::before{
    display: none!important;
}
.navbar-toggler:focus{
    box-shadow: none;
    outline: 0;
}
.navbar-light .navbar-toggler {
    color: #FAF6FF;
    border: none;
}
.navbar-toggler svg{
    color: #FAF6FF;
}
#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}
.dropdown-toggle::after{
    display: none;
}
.dropdown-item {
    display: block;
    width: 100%;
    font-size: 17px;
    padding: 7px 20px;
    clear: both;
    font-weight: 400;
    color: #FAF6FF!important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-menu {
    background-color: #242020;
    min-width: 13rem;
    box-shadow: 0px 0px 10px #00000030;
    border: none;
    border-radius: 10px;
    /*padding: 0px;*/
    overflow: hidden;
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: #36343C;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #36343C!important;
}
@media all and (min-width: 1200px) {
    .navbar .dropdown-menu.fade-up{ top:180%; transition: all ease .3s; display:block; opacity: 0; visibility: hidden; }
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        top: 100%;
    }
}


/*hero sec*/

.hero-sec{
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0px 50px;
    position: relative;
    overflow: hidden;
    background-position: top right;
}
.hero-sec::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000087;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}
.hero-side-img{
    position: absolute;
    right: -40px;
    top: -50px;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    height: auto;   
}
.hero-sec-video{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 0;
}
.hero-sec-bg{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    position: absolute;
    left: 0px;
    top: 0px;
    animation: heroscale 7000ms linear;
    animation-fill-mode: forwards;
}
@keyframes heroscale {
  0%   {transform: scale(1);}
  100% {transform: scale(1.15);}
}
.hero-content{
    position: relative;
    z-index: 9;
}
.hero-title{
    font-size: 65px;
    line-height: 70px;
    font-family: opensans-bold;
    margin-bottom: 25px;
}
.sticky-social{
    width: auto;
    height: 100vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 30px;
    top: 0px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 999;
}
.social-main-div span{
    display: inline-block;
    padding: 0px 10px;
}
.social-main-div .sc-img{
    transform: rotate(90deg);
}
.social-main-div.sticky-social span{
    padding: 17px 0px;
}
.social-main-div.sticky-social .sc-img{
    transform: rotate(-180deg);
}
.social-main-div .sc-img{
    transition: all ease .5s;
}
.social-main-div.sticky-social .sc-img:hover {
    transform: rotate(180deg);
}
.social-main-div .sc-img:hover {
    transform: rotate(360deg);
}
.sec-bg{
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.theme-btn{
    background-color: #C31A1B;
    border: none;
    border-radius: 5px;
    padding: 14px 30px;
    color: #FFFBFB!important;
    font-size: 17px;
    box-shadow: none!important;
    outline: 0!important;
    position: relative;
    overflow: hidden;
    transition: all ease .5s;
}
/*.theme-btn:hover{
    background-color: #a11516;
}*/
.small-btn{
    padding: 7px 20px;
}
.min-btn-width{
    min-width: 190px;
    text-align: center;
}
.theme-btn.grey-btn{
    background-color: #36343C;
}
.theme-btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #48111a;
    transform: scale(0);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    border-radius: 5px;
    opacity: 1;
}
.theme-btn:hover::after {
    opacity: 1;
    transform: scale(1);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.theme-btn.grey-btn::after{
    background-color: #191515;
}
.btn-text{
    position: relative;
    z-index: 9;
}


/*content part*/

.title-line{
    font-size: 21px;
    font-family: opensans-bold;
    color: #C41B1C;
    margin-bottom: 5px;
}
.title{
    font-size: 55px;
    line-height: 65px;
    font-family: opensans-bold;
    color: #FFFBFB;
    margin-bottom: 30px !important; 
}
.mini-title{
    font-size: 40px;
    line-height: 50px;
    font-family: opensans-semibold;
    color: #FFFBFB;
}
.small-title{
    font-size: 21px;
    font-family: opensans-bold;
    color: #FFFBFB;
}
.medium-title{
    font-size: 30px;
    line-height: 40px;
    font-family: opensans-semibold;
    color: #FFFBFB;   
}
.about-img{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 47%;
    height: 410px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.about-text{
    padding: 20px 0px;
}
.service-box-margin{
    margin-top: 30px;
}
.service-box{
    background-color: rgb(29 23 24 / 82%);
    border: 1px solid #242323;
    border-radius: 2px;
    padding: 50px 40px;
    height: 100%;
}
.services-icon-img{
    margin-bottom: 30px;
    height: 65px;
    display: inline-block;
    transition: all 500ms linear;
}
.service-box:hover .services-icon-img {
    transform: rotateY(360deg);
}
.services-icon-img img{
    max-height: 65px;
    width: auto;
}
.services-icon-img img.hover-icon{
    display: none;
}
.service-box:hover .services-icon-img img.reg-icon{
    display: none;
}
.service-box:hover .services-icon-img img.hover-icon{
    display: inline-block;
}
.service-link{
    transition: all ease .5s;
}
.service-link:hover {
    color: #C41B1C;
}
.features-box-margin{
    margin-top: 30px;
}
.features-box{
    background-color: #1D1718;
    border: 1px solid #242323;
    border-radius: 2px;
    padding: 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.features-box-bg-img{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    transition: all 1s linear;
}
.features-box:hover .features-box-bg-img{
    opacity: 1;
}
.features-content-box{
    position: relative;
    z-index: 1;
}
.features-box .small-title{
    display: flex;
    align-items: center;
}
.features-box p{
    margin-bottom: 10px;
}
.title-icon{
    min-width: 51px;
    width: 51px;
    height: auto;
    margin-right: 15px;
}
.team-box-margin{
    margin-top: 30px;
}
.team-box{
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.team-img{
    /*width: 100%;*/
}
.team-content{
    padding: 15px 10px;
    text-align: center;
}
.team-box p{
    margin-bottom: 0px;
}
.team-name{
    font-size: 18px;
    font-family: opensans-bold;
    margin-bottom: 7px;
}
.team-hover-content {
    background-color: #242020;
    padding: 15px 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-66%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
}
.team-box:hover .team-hover-content {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}
.team-social{
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-social a{
    position: relative;
    display: -webkit-box;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #FFFBFB;
    background-color: #191515;
    border-radius: 50%;
    font-size: 17px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}
.team-social a+a {
    margin-left: 10px;
}
.team-social a:hover {
    transform: rotate(360deg);
}
.team-social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #C41B1C;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}
.team-social a:hover:before {
    transform: scaleX(1);
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.testimonial-slider.owl-carousel .owl-nav.disabled{
    display: flex;
}
.testimonial-slider.owl-carousel .owl-nav{
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    position: relative;
    z-index: 9;
}
.testimonial-slider.owl-carousel .owl-nav button{
    background-color: transparent!important;
    box-shadow: none!important;
    outline: 0!important;
}
.testimonial-slider.owl-carousel .owl-nav button span{
    font-size: 0px;
    display: inline-block;
    height: 40px;
    width: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.testimonial-slider.owl-carousel .owl-nav button:hover{
    opacity: .7;
}
.owl-prev span{
    background-image: url('../img/icon/arrow-left.svg');
}
.owl-next span{
    background-image: url('../img/icon/arrow-right.svg');
}
.testimonial-slider.owl-carousel .owl-stage{
    display: flex;
}
.testimonial-slider.owl-carousel .item {
    display: flex;
    height: 100%;
}
.testimonials-box{
    padding: 0px 25px;
    background-color: #1D1718;
    border: 1px solid #242323;
    border-radius: 2px;
    height: 100%;
}
.testimonials-padding-relative-box{
    height: 100%;
    padding: 40px 0px 110px;
    position: relative;
}
.test-content p{
    font-style: italic;
}
.test-profile-div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 20px 0px;
    border-top: 1px solid #3B3B3B;
}
.test-profile-div p{
    margin-bottom: 0px;
}
.client-profile img{
    height: 51px;
    min-width: 51px;
    width: 51px;
    border-radius: 50%;
    background-color: #242020;
    display: inline-flex;
    margin-right: 20px;
}
.ft-18{
    font-size: 18px!important;
}
.clients-img-div img{
    margin: 20px 0px;
    opacity: .8;
    transition: all ease .5s;
}
.clients-img-div img:hover{
    opacity: 1;
}
.gallery-image-div{
    position: relative;
    overflow: hidden;
    background-color: #201D1D;
    border-radius: 2px;
    margin-bottom: 25px;
}
.galley-img{
    width: 100%;
    height: 225px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    transition: mix-blend-mode 500ms ease;
}
.gallery-image-div:hover .galley-img{
    mix-blend-mode: normal;
}
.galley-img.galley-big-img{
    width: 100%;
    height: 475px;
}
.gallery-content-div {
    background-color: rgb(32 29 29 / 80%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 13px 20px;
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: 1;
}
.gallery-content-div p{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: opensans-bold;
    margin-bottom: 0px;
}
.gallery-content-div p img.link-icon{
    min-width: 18px;
    width: 18px;
    height: 18px;
    margin-left: 15px;
    margin-top: -3px;
}
.gallery-image-div:hover .gallery-content-div {
    transform: scaleY(1);
}
.pos-relative{
    position: relative;
    overflow: hidden;
}
.side-img1-left{
    position: absolute;
    left: -250px;
    top: 150px;
    z-index: -1;
}
.side-img1{
    position: absolute;
    right: -250px;
    top: 150px;
    z-index: -1;
}
.side-img2{
    position: absolute;
    left: -50px;
    top: 150px;
    z-index: -1;
}
.side-img3{
    position: absolute;
    right: -50px;
    top: 150px;
    z-index: -1;
}
.contact-bg-div{
    background-attachment: fixed;
}


/*footer*/

.footer-div{
    padding-top: 70px;
    background-color: #242020;
}
.f-logo{
    margin-top: -10px;
}
.icon-img{
    min-width: 15px;
    height: auto;
}
.links-li p a{
    display: inline-block;
    position: relative;
}
.links-li p a::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0px;
    margin: auto;
    bottom: 0;
    transition: 0.5s transform ease;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    background: #D9D9D9;
}
.links-li p a:hover::before{
    transform: scale3d(1,1,1);
    transform-origin: 0% 50%;
}
.title-margin{
    margin-top: 50px;
}
hr.footer-hr{
    background-color: #515151;
    opacity: 1;
}
p.footer-text {
    font-size: 13px;
    line-height: 23px;
    color: #b5afae;
    padding: 20px 0px;
}
.socials a{
    display: inline-block;
    transition: all ease .5s;
}
.socials a:hover{
    transform: translateY(-5px);
}



/*inner pages*/

.pt-60{
    padding-top: 60px!important;
}
.inner-header{
    position: relative!important;
}
.side-about-img {
    position: absolute;
    left: -5%;
    bottom: 30px;
    width: 54%;
    height: auto;
}
.red-title-box{
    background-color: #C41B1C;
    padding: 20px;
}
.features-box-padding{
    padding: 28px;
}
.box-img-div{
    width: 100%;
    height: 310px;
    position: relative;
    overflow: hidden;   
    transition: all ease .5;
    margin-bottom: 25px;
    cursor: pointer;
}
.box-img-div.box-big-img-div{
    width: 100%;
    height: 645px;
}
.box-img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all ease .5s;
}
.box-img-div:hover .box-img{
    transform: scale(1.1);
}
.modal-content{
    background-color: #191515;
    border: 1px solid #242323;
}
.modal-body {
    padding: 2rem;
}
.btn-close{
    position: absolute;
    right: 12px;
    top: 10px;
    opacity: 1;
    z-index: 99;
    color: #fff!important;
    box-shadow: none!important;
    outline: 0!important;
    background-image: none;
}
.form-group{
    margin-bottom: 30px;
}
.form-control{
    background-color: #373232!important;
    border-radius: 5px;
    border: none;
    padding: 18px 25px;
    color: #FFFBFB!important;
    box-shadow: none!important;
    outline: 0!important;
}
.form-control::placeholder{
    color: #828282;
}
.form-group label{
    color: #D9D9D9;
    margin-bottom: 20px;
}