/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap');
:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.carousel-item{z-index: 9999;}
.carousel-inner{
    z-index: 9999;
}
.navbar.sticky-top {
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
   
}

.navbar .navbar-brand {

}
div#header-carousel {
    height: 100%;
    z-index: 9999;
}
.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 99999;
    position: relative;
    height: 100%;
    padding: 208px 0px 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
      position: relative;
    margin: 0rem 0;
    padding: 80px 0px;
}
.facts  h3{
    text-align: center;
    color:#fff;
    padding-bottom: 50px;
}
.facts .border {
    border-color: rgba(255, 255, 255, 18%) !important;
    border-radius:100px;
}
.facts img {
margin-right: 20px;
    padding: 17px;
    background-color: #ff98e663;
    border-style: solid;
    border-width: 1px;
    border-color: #d760ff;
    border-radius: 60px 60px 60px 60px;
    width: 80px;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}
.owl-dots{
      display: flex;  
      justify-content: center;
}
.owl-dot{

    
}
.owl-dot span{
    width:7px;
    height:7px;
    background-color: #fff;
    display: inline-block;
    border-radius: 100%;
    margin:0px 3px;
}
/*** Service ***/
.service-item {
    position: relative;
    margin: 25px 0 0px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 2px solid #ddd;
    background-color: #f4f4f4;
}

.service-item .service-img {
    padding: 12px;
    z-index: 2;
    position: relative;
}

.service-item .service-detail {
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item h4 {
font-weight: 600;
    color: #000;
    font-size: 20px;
}

.service-item .service-text {
    text-align: center;
    transition: .5s;
    padding: 30px;
    
}


.service-item .btn {
    position: absolute;
    height: 50px;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
         transition: all 3s ease-in-out;
}

.project-item {
    position: relative;
    display: inline-block;
    width: 20%;
    transition: all 3s ease-in-out;
    margin: 6px;
}

.project-item img {
    transition: .5s;
    width: 100%;
}

.project-item:hover img {
    margin-top: -10px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


.testimonial-carousel .owl-nav {
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev{
    position: absolute;
    left: 0;
    top: 34%;
}
.testimonial-carousel .owl-nav .owl-next{
       position: absolute;
    right: 0;
    top: 34%; 
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -59px;
    left: 46%;
    transform: translateX(4%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 4px;
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #091316;
}

/*start css*/

.offsetopen{
 justify-content: space-between;
 display: flex;
 width: 100%;
 position: absolute;
 border-bottom: 1px solid #102335ab;
 z-index: 9999999;
 left: 0;
 right: 0;
}
section.backford {
    background-size: 100%;
    height: 115vh;
    position: relative;
    background-repeat: no-repeat;
    background-position: 100%;
}
.h1textsite{
    font-size: 58px;
    text-transform: uppercase;
}
.elementor-shape[data-negative=false].elementor-shape-bottom, 
.elementor-shape[data-negative=true].elementor-shape-top {
    transform: rotate(180deg);
}

.elementor-shape-bottom {
    bottom: -1px;
}
.elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}
.elementor-shape-bottom svg {
    width: calc(100% + 1.3px);
    height: 37px;
}
.elementor-shape-bottom:not([data-negative=true]) svg {
    z-index: -1;
}
.elementor-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.elementor-background-overlay {
/*    background-image: url(https://adymize.com/wp-content/uploads/2022/07/DSC00746-1-copy.png);*/
    /*background-position: -13% 100%;
    background-repeat: no-repeat;
    background-size: 32% auto;
    opacity: 1;
    transition: background .3s,border-radius .3s,opacity .3s;*/
}

.elementor-background-overlay {
    pointer-events: none;
}
.elementor-background-overlay, 
.elementor-background-slideshow {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.elementor-shape .elementor-shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}
.h1textsite span{
/*   background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);*/
background: linear-gradient(-45deg, #e73c7e, #23d5ab, #ee7752,  #23a6d5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btnback {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    border: none;
}
.marque img{
    height: 50px;
}
.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
  height: 58px;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
p.textmarg {
    margin: 0px;
    font-size: 34px;
    font-weight: 600;
    color: #000;
}
.elementor-shape-top {
    top: -1px;
}
.elementor-shape-top svg {
    width: calc(100% + 1.3px);
    height: 37px;
}
.marquesec{
    position: relative;
}
.tortents {
    display: flex;
    align-items: center;
}
.servicebar{
    position: relative;
    background-color: #fff;
}
.centertiles h3{
    text-align: center;
    font-size:40px;
    color:#fff;
}
.overflop{
    table-layout: fixed;
    /* display: table; */
    width:100%;
    position: relative;
    transition: all 3s ease-in-out;
}

.overflop div{
    height: 100%;
}
.btngradient{
    fill: #fff;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(150deg,#cf58fd 0,#f2295b 100%);
    border-radius: 27px 27px 27px 27px;
    font-size: 15px;
    padding: 12px 24px;
    text-align: center;
    transition: all .3s;
    display: inline-block;
    line-height: 1;
}
.centertiles{
    padding: 50px 0px;
}
.footers{
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: 100%;
}
.relative{
    position: relative;
}
.testimonial{
    position: relative;
    padding: 80px 0px;
}
.formsasets{
    padding:80px 0px;
    background-color:#fff;
}
.testimonial-item{
    background-color:#fff;
    padding: 10px;
    border-radius: 20px;
}
.form-floating{
    margin-bottom: 20px;
}
.bluetext{
  border: 1px solid #9c9c9c;
    padding: 10px;
    display: table;
    margin:0 auto;
}
.close{position: absolute;right: -17px;top: -12px;    z-index: 99999;}
#myModal{
    z-index: 99999999;
}
#spin:after {
  content:"";
  animation: spin 10s linear infinite;
}
@keyframes spin {
  0% { content:"Guaranteed";Â }
  10% { content:"Results";Â }
  20% { content:"sit";Â }
  30% { content:"amet";Â }
  40% { content:"consectetur";Â }
  50% { content: "adipisicing"; }
  60% { content: "elit"; }
  70% { content: "Hic"; }
  80% { content: "atque"; }
  90% { content: "fuga"; }
}
@media (min-width:768px){
    .servicebar .flex img{
    width:150px !important;
}
}
@media (max-width:767px){
    .project-item{
        width:50%;
    }
    .footers {
    background-size: cover;
}
.service-item .service-img img{
height:auto;
}
section.backford{
     background-size: cover;
    height: auto;   
}
.servicebar .flex img{
    width:25% !important;
}
.facts {
    padding: 70px 0px;
}
.h1textsite {
    font-size: 25px;
    text-transform: uppercase;
}
.carousel-caption {
    padding: 125px 0px 50px;
}
.offsetopen{
    padding: 0px 15px;
}
.close {
    position: absolute;
    right: 0px;
    top: -5px;
}
.modal-body{
    padding:25px 15px;
}
}
.relative.mbapart{
    background-color: #fff;
}
h1, h2,h3,h4,h5,h6 {
   font-family: 'Josefin Sans', sans-serif;
}
body {
    font-family: 'Josefin Sans', sans-serif;
}
.bluetext
{
    font-family: 'Josefin Sans', sans-serif;
}
.project-carousel{
   position: absolute;
   white-space: nowrap;
   will-change: transform;
   animation: marquee 10s linear infinite;
   /* width: 100%; */
   /* overflow: hidden; */
        transition: all 3s ease-in-out;
}
.overflop{
     position: relative;
     /* width: 100vw; */
     max-width: 100%;
     overflow-x: hidden;
     height: 300px;
     overflow-y: hidden;
     transition: all 3s ease-in-out;
}

