* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: norm;
    src: url(../fonts/Mohave-Light.otf);
}

@font-face {
    font-family: med;
    src: url(../fonts/Mohave-Medium.otf);
}

html {
    overflow-x: hidden;
}

body {
    font-family: norm;
    overflow-x: hidden;
}

strong {
    font-family: med !important;
}

p {
    font-size: 22px;
    line-height: 50px;
}

.h2-as-p {
    font-size: 22px;
    line-height: 50px;
    margin-bottom: 1rem;
    margin-top: 0;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

.clr-blue {
    color: #1E50A6;
}

.clr-lblue {
    color: #2BA9C8;
}

.clr-lgreen {
    color: #25A180;
}

.clr-green {
    color: #58B34A;
}

/* Preloader */
.preloaderBg {
    z-index: 1000000000000000000;
    position: fixed;
    z-index: 10000;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-wrap {
    position: relative;
    width: 250px;
    height: 250px;
}

.preloader-logo {
    margin: auto;
    background: url(../img/Dimension-Digital-Logo-3.webp) no-repeat center;
    background-size: 150px;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 25px;
    left: 25px;
}


.preloader-circle {
    /*border: 5px solid #f3f3f3; GG*/
    border: 5px solid rgba(137, 210, 86, .2);
    /*border-top: 5px solid #c18263; GG*/
    border-top: 5px solid #110443;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    animation: spin 1.5s ease-in-out infinite;
    position: absolute;
    top: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.back-link {
    font-size: 20px;
    font-weight: 400;
    color: rgba(17, 4, 67, 1) !important;
    display: block;

}

.white-link {
    font-size: 22px;
    font-weight: 400;
    color: white !important;

}

.navbar-nav .dropdown-menu {
    /* top: 25px; */
    top: 43px;
    /* left: -33px; */
    left: 27px;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotateX(-90deg), translateX(-50px);
    }

    50% {
        transform: rotateX(20deg), translateX(-25px);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg), translateX(0px);
    }

}

@media all and (max-width:991px) {
    .main-nav .dropdown-menu li {
        opacity: 0;
    }

    .main-nav .dropdown-menu.show li:first-child {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: -150ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(2) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 0ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(3) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 150ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(4) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 300ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(5) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 450ms;
    }
}

.main-nav {
    background: url(../img/navbar-bg.png);
    background-size: cover;
    background-position: right;
    position: relative;
    z-index: 100 !important;
}

@media all and (min-width:992px) {
    .navbar-nav {
        margin-top: 0 !important;
    }

    /* 
    .index-header .video-div {
        position: relative;
    } */

    .index-header .video-div video {
        display: block;
    }

}


.navbar-dimensions .navbar-toggler:focus,
.navbar-dimensions .navbar-toggler:active {
    outline: 0;
    box-shadow: none;
}

.navbar-dimensions .navbar-toggler {
    height: 45px;
    border: none;
}

.navbar-dimensions .navbar-toggler span {
    display: block;
    background-color: white;
    height: 2px;
    width: 25px;
    margin-top: 6px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    opacity: 1;
}

.navbar-dimensions .navbar-toggler span:nth-child(1),
.navbar-dimensions .navbar-toggler span:nth-child(3) {
    -webkit-transition: transform 0.35s ease-in-out;
    -moz-transition: transform 0.35s ease-in-out;
    -o-transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
}

.navbar-dimensions .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    position: absolute;
    top: 32px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-dimensions .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    visibility: hidden;
    background-color: transparent;
}

.navbar-dimensions .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    position: absolute;
    top: 32px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}


.navbar-dimensions .nav-item>a {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-dimensions .nav-item>a:before,
.navbar-dimensions .nav-item>a:after {
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navbar-dimensions .nav-item>a:before {
    bottom: 0;
    display: block;
    height: 3px;
    width: 0%;
    content: "";
    /* background-color: #2980b9; */
    /* background-color: #0f0342; */
    background-color: #c2f267;
}

.navbar-dimensions .nav-item>a:after {
    left: 0;
    top: 0;
    padding: 0.5em 0;
    position: absolute;
    content: attr(data-hover);
    color: #ffffff;
    white-space: nowrap;
    max-width: 0%;
    overflow: hidden;
}



/* @media all and (min-width:992px) {
    .navbar-nav .dropdown-menu {
      padding-top: 20px;
    }
  } */

.navbar-nav .dropdown-menu a.dropdown-item {
    /* text-align: center; */
    padding-left: 12px;
    padding-right: 12px;
    transition: all .5s ease-in-out;
}

/* .navbar-nav .dropdown-menu a.dropdown-item:hover {
    transform: translateX(6px);
} */

a#navbarDropdown {
    border: none !important;
    outline: none !important;
}

a#navbarDropdown:hover>.dropdown-menu {
    display: block;
}

a#navbarDropdown::after {
    display: none;
}


/* .dropdown:hover .dropdown-menu {
    transform: scale(1);
} */


@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        transform: scale(1);
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0 17px;
    }

    .navbar-expand-lg .navbar-nav .nav-item {
        padding: 12px 0;
    }
}

.dropdown-menu {
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
}

.dropdown-menu a {
    display: none;
    background-color: white;
    color: #0f0342 !important;
    /* box-shadow: 0 0.5em 1em rgb(0 0 0 / 30%); */
    text-align: left;
    font-size: 13px;
    padding: 8px 4px;
    font-size: 18px;
    color: white;

}

.dropdown-item:hover::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    box-shadow: inset 0 0 3000px rgba(255, 255, 255, .5);
    filter: blur(10px);
    /* margin: -20px; */
}

/* .navbar-dimensions::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    box-shadow: inset 0 0 3000px rgba(255, 255, 255, .5);
    filter: blur(10px);
    margin: -20px;
} */

/* .dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, .1);
  }
  
  .dropdown-menu a:hover:after {
    left: 100%;
  }
  
  .dropdown-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: 0.5s;
    transition-delay: 0.5s;
  } */

.navbar-nav li:hover>.dropdown-menu a {
    display: block;
}

.navbar-nav li:hover>.dropdown-menu {
    perspective: 1000px;
}

/* .navbar-nav li:hover>.dropdown-menu a {
    transform-origin: center;
    opacity: 0;
  } */
@media all and (min-width:992px) {
    .navbar-nav li:hover>.dropdown-menu a {
        display: block;
    }

    .navbar-nav li:hover>.dropdown-menu {
        perspective: 1000px;
        top: 53px;
        left: 19px;
    }

    .navbar-dimensions .nav-item>a:hover:before,
    .navbar-dimensions .nav-item>.current a:before {
        opacity: 1;
        width: 84%;
    }

    .navbar-dimensions .nav-item>a:hover:after,
    .navbar-dimensions .nav-item>.current a:after {
        max-width: 100%;
    }

    .dropdown .dropdown-menu {
        transition: all 0.5s;
        box-shadow: 0 0.5em 1em rgb(0 0 0 / 45%);
        background-color: white;
        overflow: hidden;
        border-radius: 8px;
        transform-origin: top center;
        transform: scale(1, 0);
        display: block;
    }


}

/* .navbar-nav li:hover>.dropdown-menu a {
    transform-origin: center;
    opacity: 0;
  } */

/* .navbar-nav li:hover>.dropdown-menu a:nth-child(1) {
    animation: animate 300ms ease-in-out forwards;
    animation-delay: -150ms;
  }
  
  .navbar-nav li:hover>.dropdown-menu a:nth-child(2) {
    animation: animate 300ms ease-in-out forwards;
    animation-delay: 0ms;
  }
  
  .navbar-nav li:hover>.dropdown-menu a:nth-child(3) {
    animation: animate 300ms ease-in-out forwards;
    animation-delay: 150ms;
  }
  
  .navbar-nav li:hover>.dropdown-menu a:nth-child(4) {
    animation: animate 300ms ease-in-out forwards;
    animation-delay: 300ms;
  }
  
  .navbar-nav li:hover>.dropdown-menu a:nth-child(5) {
    animation: animate 300ms ease-in-out forwards;
    animation-delay: 450ms;
  }
  
  a#navbarDropdown :hover>.dropdown-menu a:nth-child(6) {
    animation: animate 300ms ease-in-out forwards;
    animation-delay: 600ms;
  } */

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    50% {
        transform: rotateX(20deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }

}


.dropdown-item {
    transition: all .05s ease-in;
}

.dropdown-item:hover {
    background-color: #F4F3F6;
    color: #0f0342;
}


.nav-item.dropdown:focus {
    border: 0;
    outline: none;
}

.navbar-dimensions a.nav-link {
    font-size: 25px;
    font-weight: 400;
    color: white;
}

.navbar-dimensions .nav-contact {
    padding: 21px 44px;
    background-color: #CEA741;
    outline: none;
    color: white;
    font-size: 25px;
    font-weight: 700;
    border: none;
}

@media all and (max-width:991px) {
    .navbar-dimensions .navbar-collapse {
        padding: 8px 0;
        text-align: center;
    }

    .dropdown-menu a {
        background-color: inherit;
        color: white !important;
        text-align: center;
    }
}

@media all and (max-width:767px) {
    .navbar-dimensions .nav-contact {
        padding: 5px 0;
        width: 100%;
    }
}

/* .navbar-dimensions li.nav-item {
    padding: 0 17px;
} */

.navbar-dimensions .navbar-brand img {
    padding: 0 15px;
    height: 70px;
    width: auto;
}

.navbar-dimensions {
    /* background: rgba(255, 255, 255, .1); */
    /* box-shadow: 0 5px 5px rgba(0, 0, 0.9); */
    box-shadow: 0 .5em 1em rgba(0, 0, 0, .3);
    position: relative;
}

.header {
    /* background: url(../img/Bg-header.png); */
    background-size: cover;
    position: relative;
}

.social-header.header {
    background: none;
}

.social-header .content {
    background: url(../img/web-Design-header-mfu.jpg);
    background-size: cover;
    background-attachment: fixed;
}

@media all and (min-width:992px) {

    /* .header {
        height: 80vh;
        overflow: hidden;
    } */
    .header .content {
        height: 75vh !important;
    }

    .index-header.header .content {
        height: 100%;
    }

    .index-header.header {
        height: 100vh;
    }
}

@media all and (max-width:991px) {
    .annimation-thing {
        margin: 30px 0 !important;
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
    }

    .header .content {
        height: auto !important;
    }

    .index-header .annimation-thing {
        position: absolute !important;
        left: 50% !important;
    }
}

@media all and (max-width:512px) {
    .index-header .annimation-thing {
        margin: 0px 0 30px !important;
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
    }
}

@media all and (max-width:372px) and (min-width:341px) {
    .index-header .annimation-thing {
        margin: 0px 0 52px !important;
    }
}

.header .content {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .content-wrap {
    width: 72.5%;
    margin: auto;
}

.header h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 100px;
    color: white;

}

@media all and (max-width:991px) {
    .header h1 {
        padding: 42px 0 20px 0;

    }
}

.index-header {
    /* background: url(../img/Bg-header.png); */
    background-size: cover;
    overflow: hidden;
}

.index-header .content-video {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.index-header .content video {
    z-index: 1;
    position: relative;
    min-width: 100vw;
    /* height: 120%; */
}

.index-header .video-div img {
    display: none;
}

.index-header .content {
    position: relative;
    overflow: hidden;
}

.index-header .content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-header .video-div {
    height: 100%;
    position: relative;
}

@media all and (max-width:991px) {
    .index-header .content-wrap {
        flex-direction: column;
    }

    .index-header .video-div {
        max-height: 625px;
    }

}

@media all and (max-width:597px) {
    .index-header .video-div img {
        display: block;
        width: 100%;
        min-height: 282px;
    }

    .index-header .video-div {}

    .index-header .video-div video {
        display: none;
    }

    /* .index-header .annimation-thing {
        margin: 30px 0 !important;
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
    } */
}

@keyframes dot {
    0% {
        top: 5px;
        opacity: 1;
    }

    99% {
        top: 22px;
        opacity: 0;
    }
}

.annimation-thing {
    position: absolute;
    bottom: 15px;
    margin: auto;
    left: 50%;
}

.index-header .annimation-thing {
    bottom: 97px;
}

.border-animation {
    position: relative;
    width: 24px;
    height: 36px;
    border: 2px solid white;
    border-radius: 25px;
    padding: 6px 0;
}

.circle-custom {
    animation: dot 1.2s linear 2s infinite;
    position: absolute;
    height: 4px;
    width: 4px;
    border-radius: 100%;
    background-color: white;
}

.index-gallery {
    margin-top: -140px;
}

/* .index-gallery .popup-youtube */
.play-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-icon span {
    font-size: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: white;
    border: 2px solid white;
}

.index-gallery iframe {
    width: 100%;
    height: 100%;
}

.index-gallery img {
    width: 100%;
    border-radius: 15px;
}

.expertise-in {
    padding: 0 0 140px;
    background-color: rgba(137, 210, 86, .2);
}

.expertise-in .strong-one {
    /* font-family: med; */
    font-size: 35px;
    line-height: 46px;
    /* font-weight: bold; */
}

/* footer  */
footer {
    color: #0F0342;
    padding: 100px 0;
}

footer .copy-right {
    background-color: #0F0342;
    color: white;
}

footer .copy-right a {
    color: white;
}

footer img {
    width: 100%;
}

footer p {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;

}

footer .mail-to a {
    color: #0F0342;
    font-size: 25px;
    font-weight: bold;
    line-height: 30px;
}

/* 
footer a {
    color: #0F0342;
} */

footer ul.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

@media all and (max-width:991px) {
    footer {
        padding: 75px 0;
    }
}

@media all and (max-width:767px) {
    footer ul.footer-links {
        text-align: center;
    }

    footer .socials-links .d-flex.justify-content-md-end p {
        text-align: center;
    }

    footer {
        padding: 50px 0;
    }
}

footer ul.footer-links li {
    list-style: none;
    line-height: 30px;
}

footer .conjest {
    text-align: center;
}

footer .conjest img {
    width: 213px;
}

footer ul.footer-links a {
    color: #0f0342;
    font-size: 20px;
    line-height: 30px;
}

footer .socials-links .d-flex.justify-content-md-end {
    gap: 12px;
}

footer .socials-links span {
    font-size: 35px;
    color: #0f0342;
    line-height: 0;
}



/* case studies page  */
.case-header {
    /* background-image: url(../img/cs-header.jpg);
    background-size: cover; */
    background: none;
}

.case-header .content {
    background-image: url(../img/cs-header.jpg);
    background-size: cover;
    background-attachment: fixed;
}

@media all and (max-width:767px) {
    .case-header .content {
        background-image: url(../img/cs-header-mb.jpg);
    }

}

.photo-header,
.socially-header {
    background: none;

}

.photo-header .content {
    background-image: url(../img/Photography-header.jpg);
    background-size: cover;
    background-attachment: fixed;
}

@media all and (max-width:767px) {
    .photo-header .content {
        background-image: url(../img/Photography-header-mb.jpg);

    }
}

.socially-header .content {
    background-image: url(../img/Social-media-header.jpg);
    /* background-image: url(../img/sm-service-header.jpg); */
    background-size: cover;
    background-attachment: fixed;
}

@media all and (max-width:767px) {
    .socially-header .content {
        background-image: url(../img/Social-media-header-mb.jpg);

    }
}

.design-header {
    background: none;
}

.design-header .content {
    background-image: url(../img/Design-header.jpg);
    background-size: cover;
    background-attachment: fixed;

}

@media all and (max-width:767px) {
    .design-header .content {
        background-image: url(../img/Design-header-mb.jpg);

    }
}

.video-header {
    background: none;
}

.video-header .content {
    background-image: url(../img/Video-service-header.JPG);
    background-size: cover;
    background-attachment: fixed;
}

@media all and (max-width:767px) {
    .video-header .content {
        background-image: url(../img/Video-service-header-mb.JPG);

    }
}

@media all and (max-width:600px) {
    .case-header .content {
        background-position: right;
    }
}

.customer-ex {
    color: #100342;
    padding: 20px 0;
}

.customer-ex h2 {
    font-size: 40px;
    font-weight: 700;
    /* margin-bottom: 0; */

}

.customer-ex h3 {
    font-size: 20px;
    font-weight: 700;
    /* margin-bottom: 0; */
}

.customer-ex img {
    width: 100%;
    border-radius: 40px;
}

.customer-ex .line {
    height: 1px;
    width: 100%;
    background-color: #000000;
}

.customer-ex button {
    font-family: med;
    font-size: 22px;
    /* background-color: #CEA741; */
    height: 59px;
    width: 258px;
    left: 591px;
    top: 1207px;
    border-radius: 30px;
    background-color: #100342;
    color: white;
    border: none;
    /* margin-bottom: 20px; */

}

.customer-ex a {
    color: #100342;
    font-size: 20px;
    font-weight: 700;
    line-height: 70px;

}

.portfolio.index-gallery {
    margin-top: 0;
    padding: 20px 0;
    color: #0F0342;
}

.portfolio.index-gallery h2 {
    margin-bottom: 20PX;
}





/* web design page  */


.card-services {
    padding: 20px 0;
}

.card-services .img-div {
    margin-bottom: 10px;
}

.card-services .img-div img {
    width: 100%;
    border-radius: 10px;
}

.card-services .content {
    background-color: #E9F6DD;
    padding: 30px 20px;
    height: 277px;
    border-radius: 10px;
    color: #100342;
    margin-bottom: 10px;
    /* display: flex;
    flex-direction: column;
    justify-content: end; */
}

.card-services .content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 55px;
}

.card-services .content p {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;

}

.choose-specialist {
    padding: 20px 0;
    color: #100342;
}

.choose-specialist .expert-mimg {
    border-radius: 20px;
}



.choose-specialist .innr-row .col-lg-6 {
    display: flex;
    gap: 10px;
}

.choose-specialist .innr-row .img-div img {
    width: 70px;
}

.choose-specialist .innr-row span {
    font-size: 60px;
    line-height: 0;
}

.choose-specialist .innr-row .hand-shake {
    font-size: 55px;
    line-height: 0;
}

.choose-specialist .innr-row p {
    line-height: 22px
}

.a-specialist {
    background-color: #E9F6DD;
    padding: 50px 0;
    color: #100342;
}

.a-specialist ul {
    font-size: 22px;
    line-height: 50px;
}

@media all and (max-width:575px) {
    .choose-specialist .innr-row span {
        font-size: 30px;
    }

    .choose-specialist .innr-row .col-6 {
        align-items: center;
    }

    .choose-specialist .innr-row p {
        font-size: 18px;
        line-height: 15px;
    }
}

.take-ur {
    padding: 30px 0;
    background: url(../img/case-header-2.png);
    background-size: cover;
    color: white;
}

.take-ur h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 70px;

}

.take-ur p {
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;

}

.take-ur button {
    font-size: 22px;
    font-weight: 700;
    text-align: center;

    background-color: #CEA741;
    height: 59px;
    width: 258px;
    left: 591px;
    top: 1207px;
    border-radius: 30px;
    /* background-color: #100342; */
    color: white;
    border: none;
}

.seo .wrap {
    max-width: 650px;
    margin: auto;
}

.seo .light {
    color: #6a7c92;
}

.cgub .inner {
    width: 50%;
    margin: auto;
}

.cgub img {
    width: 100%;
}

.cgub .row {
    background-color: #F4FBEE;
}

.cgub .row .col-lg-6 {
    padding: 30px 0;
}

.cgub .row .col-lg-6.con {
    background-color: #EAF7DF;
}

.cgub .inner-con {
    width: 75%;
    margin: auto;
}

/* contact page  */
.contact-form {
    padding: 50px 0;
    color: #110443;
}

.contact-form h1,
.contact-form h2 {
    font-size: 80px;
    font-weight: 400;
    line-height: 100px;
    letter-spacing: 0em;
    text-align: left;
}

.contact-form p {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;

}

.contact-form .contact-form-h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 1rem;

}

.contact-form input.form-control,
.contact-form select {
    height: 66px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 20px;
    color: #808080;
    background: rgba(217, 217, 217, 0.5);
}

.was-validated .form-control:invalid {
    margin-bottom: 10px;
}

.contact-form #chooose-intrest p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #110443;
}

.contact-form #chooose-intrest {
    flex-wrap: wrap;
}

@media all and (max-width:763px) {
    .contact-form #chooose-intrest .form-check {
        width: 50%;
    }
}

@media all and (max-width:440px) {
    .contact-form #chooose-intrest .form-check {
        width: 100%;
    }
}

.contact-form .invalid-feedback {
    margin-bottom: 15px;
}

.contact-form #chooose-intrest .form-check {
    flex-grow: 1;
}

.contact-form #chooose-intrest .form-check input[type=checkbox] {
    /* accent-color: #808080; */
    /* background: rgba(217, 217, 217, 0.5); */
    border-radius: 0;
}

/* 
.contact-form #chooose-intrest .form-check input[type=checkbox]:checked {
    background: #110443 !important;
} */
/* .form-check-input:checked {
    background-color: #0d6efd !important;
    border-color: #0d6efd;
} */
.contact-form textarea {
    border-radius: 10px;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 20px;
    color: #808080;
    background: rgba(217, 217, 217, 0.5);
}

.contact-form textarea:focus {
    background: rgba(217, 217, 217, 0.5);
}

.contact-form button {
    height: 59px;
    width: 258px;
    left: 591px;
    top: 1207px;
    border-radius: 30px;
    background-color: #100342;
    color: white;

}

.videos-section {
    padding: 30px 0;
}

.videos-section .position-relative {
    border-radius: 12px;
    overflow: hidden;
}

/* videography  */
/* -----------------------------------
      Gallery Section
--------------------------------------*/
.portfolio-section {
    padding: 50px 0;
    /* background-color: #000; */
}

@media all and (max-width:767px) {
    .portfolio-section {
        padding: 15px 0 0 0;
    }

    .portfolio-item {
        padding: 0 !important;
    }
}

.portfolio-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.portfolio-menu {
    text-align: center;
}

.control {
    background: #A3A3A3;
    color: #fff;
    /* padding: 5px 10px; */
    width: 112px;
    padding: 5px 0;
    /* border: 1px solid #343a40; */
    border: none;
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.control:hover {
    background: #343a40;
}

.mixitup-control-active {
    color: #fff;
    background: #343a40;
}

.fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
}

.portfolio-item {
    padding-top: 30px;
    list-style: none;
    /* display: flex;
    flex-wrap: wrap;
    overflow: auto; */
    /* zoom: 1; */
    column-gap: 20px;
    padding-left: 0;
    width: 100% !important;
    height: auto !important;
}

/* .main .main_content {
    margin: 60px 0 40px;
    column-gap: 20px;
    width: 100%;
  } */
/* .main .main_content .picture_wrapper {
    margin-bottom: 20px;
  }
  .main .main_content .picture_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
  } */
#phot-h,
#video-h {
    display: none;
}

/* responsive */
@media (min-width: 992px) {
    .portfolio-item {
        column-count: 4;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-item {
        column-count: 2;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .portfolio-item {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .main_content {
        column-count: 1;
    }
}

.mix {
    opacity: 1 !important;
}

.pd {
    padding: 0;
    padding: 10px;
    position: relative;
}

.pd img {
    /* height: 180px; */
    transition: all 0.5s;
}

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
}

.portfolio-overlay p,
.portfolio-overlay a {
    position: relative;
    z-index: 4;
}

.portfolio-overlay::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: 50ms height ease 150ms;
    z-index: 3;
}

.portfolio-overlay::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: 100ms width ease 200ms;
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay::before {
    width: 80%;
    height: 80%;
    border-top: 1px solid #50977f;
    border-right: 1px solid #50977f;
    transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
    width: 80%;
    height: 80%;
    border-bottom: 1px solid #50977f;
    border-left: 1px solid #50977f;
    transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
}

.portfolio-overlay .category {
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #50977f;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
}

.portfolio-overlay .magnify-icon:hover {
    background: #000;
}

.portfolio-overlay .magnify-icon p span i {
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
}

/*******Responsive media query******/

/* Extra small devices (portrait phones, less than 576px)*/

.people-watch {
    padding: 50px 0;
    background-image: url(../img/service-work.png);
    background-size: cover;
    color: white;
}

.people-watch h2 {
    text-transform: uppercase;
}

.people-watch p {
    font-size: 18px;
    line-height: 33px;
}

.people-watch img {
    border-radius: 17px;
}



/* social media page  */
.content-package {
    background-image: linear-gradient(to left, #B6D243, #12093F);
    color: white;
    padding: 30px 0;
}

.content-package .para-f {
    height: 90px;
    overflow: hidden;
}

.content-package .price-img {
    width: 200px;
}

.content-package .content-para {
    font-weight: bold;
    font-size: 40px
}

@media all and (max-width:426px) {
    .content-package .content-para {
        font-size: 30px;
    }
}

.content-package .content-h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 1rem;
    margin-top: 0;
}

@media all and (max-width:426px) {
    .content-package .content-h2 {
        font-size: 30px;
    }
}

.content-package .d-flex.justify-content-between {
    margin-bottom: 30px;
}

.content-package .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

@media all and (max-width:991px) {
    .content-package .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:767px) {
    .content-package .grid {
        grid-template-columns: 1fr;
    }
}

.content-package .entity {
    background-color: white;
    padding: 30px 15px;
    border-radius: 20px;
    color: black;
    position: relative;
    overflow: hidden;

}

.content-package .entity::before {
    content: "";
    width: 100%;
    background-color: #ECECED;
    height: 21px;
    position: absolute;
    top: 0;
    left: 0;
}

.content-package .entity::after {
    content: "";
    width: 100%;
    background-color: #ECECED;
    height: 21px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.content-package .entity h3 {
    /* font-size: 20px; */
    font-size: calc(1.325rem + .9vw);
}

.content-package .entity h2,
.content-package .entity h3 {
    font-weight: bold;
}

.content-package .entity p {
    font-size: 15px;
    line-height: 23px;
}

.content-package .entity ul {
    list-style: none;
    padding-left: 0;
}

.content .entity .para-f {
    height: 137px;
    overflow-y: hidden;
}

.content-package .entity .ul-list {
    height: 148px;
    overflow-y: hidden;
}

.content-package .entity .inc-wat p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 0;
}

.content-package .entity .price-here {
    font-size: 50px;
    font-family: med;
    margin-bottom: 0;
    line-height: 42px;
}

.social-portfolio .row {
    background-color: #F4FBEE;
}

.social-portfolio .row .inner {
    /*width: 50%;*/
    width: 100%;
    /*ADDED BY MFU WHEN HASH WAS IN SWL*/
    padding: 15px !important;
    /*ADDED BY MFU WHEN HASH WAS IN SWL*/
    margin: auto;
}

.social-portfolio .row .inner-con {
    width: 75%;
    margin: auto;
}

.social-portfolio .col-lg-6 {
    padding: 30px 0;
}

.social-portfolio .row .con {
    background-color: #EAF7DF;
}

.customer-page {
    padding-top: 50px;

}

.customer-page .main-img img {
    border-radius: 50px;
}

.customer-page h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 100px;

}

.set-scene {
    margin-top: -136px;
    padding: 142px 0 140px;
    background-color: rgba(137, 210, 86, .2);
}

.set-scene .small-paras p {
    font-size: 22px;
    font-weight: 400;
    line-height: 50px;

}

.set-scene .large-paras p {
    font-size: 38px;
    font-weight: 400;
    line-height: 55px;
}

.set-scene .large-paras .strong-one {
    font-size: 38px;
    font-weight: 700;
    line-height: 55px;

}

/* tabs  */

.gallery-wrap,
#gallery {
    overflow: hidden;
    /* column-count: 4; */
    /* column-gap: 20px; */
}

#filters {
    margin: 1%;
    padding: 0;
    list-style: none;
    overflow: hidden;
    display: flex;
}

/* #filters li {
    float: left;
} */

#filters li span {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: #666;
    cursor: pointer;
    text-transform: uppercase;
    transition: all ease-in-out 0.25s;
}

#gallery {
    column-count: 4;
}

#filters li:hover span {
    color: #000;
}

#filters li span.active {
    background: #1fbae7;
    color: #fff;
}

.gallery-item {
    /* float: left;
    width: 33.333%;
    padding: 10px;
    position: relative;
    z-index: 10;
    display: none; */
}

#gallery img {
    margin-bottom: 10px;
}

.inside {
    position: relative;
    /* overflow: hidden; */
    width: 100%;
    height: 100%;
    /* padding: 10px; */

}

a.gallery-item {
    display: block !important;
}

.details,
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
}

.details {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.details h2 {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

.details p {
    color: #fff;
    font-size: 1em;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.inside img {
    float: left;
    width: 100%;
}

.overlay {
    background: rgba(31, 186, 231, 0.8);
    z-index: 1;
    transition: all 0.7s ease-in-out;
}

.gallery-item:hover .details,
.gallery-item:hover .overlay {
    opacity: 1;
}

/* @media (max-width: 30em) {
    .wrap {
        padding-left: 1em;
        padding-right: 1em;
    }

    .gallery-item {
        float: none;
        width: 100%;
    }
} */
.services-heading {
    padding: 32px 0;

}

.services-heading h2 {
    color: black;
    font-family: med;
    font-size: 40px;

}

.services-section .card-entity {
    position: relative;
}

.card-entity iframe {
    width: 100%;
}

.services-section .card-entity .image-size {
    position: relative;
}

.services-section .card-entity img {
    width: 100%;
    height: auto;
    vertical-align: top;
    backface-visibility: initial;
}


.services-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

@media all and (max-width:1100px) {
    .services-card {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media all and (max-width:700px) {
    .header h1 {
        padding: 42px 0 20px 0;
        margin-bottom: 0;
        font-size: 73px;
        /* line-height: 59px; */
    }

    .index-header .services-card {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media all and (min-width:598px) {
    .index-header h1 {
        padding: 0;
    }
}

@media all and (max-width:597px) {
    .index-header h1 {
        padding: 80px 3px 35px 3px;
    }
}

@media all and (max-width:650px) {
    .header h1 {
        font-size: 50px;
    }

    .index-header h1 {
        font-size: 30px;
        line-height: 57px;
    }

    .services-card {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
    }

    .services-card h3 {
        font-size: 22px !important;
    }

    .services-card p {
        font-size: 18px !important;
    }
}

@media all and (max-width:340px) {

    .index-header h1 {
        font-size: 27px;
        line-height: 39px;
    }

}

@media all and (max-width:650px) {
    .header h1 {
        font-size: 41px;
    }
}

.services-card .sbilings-size {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hidden-anchor a {
    color: #0f0342;
    font-size: 14px;
}

.hidden-anchor a:hover {
    text-decoration: underline;
}

.card-entity .hidden-anchor {
    position: absolute;
    bottom: -18px;
    display: none;
    transition: all .3s ease-in;
}

.card-entity {
    background-color: #f0f0f0;
    transition: all .3s ease-in;
}

.card-entity:hover {
    background-color: white;
}

.card-entity:hover .sbilings-size {
    width: 0;
    height: 0;
}

.card-entity:hover .content {
    margin-top: -40px;
    background-color: white;
    height: fit-content;
}

.card-entity:hover .hidden-anchor {
    margin-bottom: 20px;
    display: block;
}

.services-section .content {
    color: #0f0342;
    z-index: 10;
    position: relative;
    transition: all .3s ease-in;
}

.services-section .content h3 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

.services-section .card-entity .content {
    padding: 29px 20px;
    max-height: 300px;
    overflow-y: hidden;
    color: #0f0342;
}

.services-section .card-entity p {
    font-size: 14px;
    line-height: 20px;
}

.services-card .sbilings-size {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.invalid-cap {
    display: none;
    color: red;
}

/* photography page  */
.photography-port {
    padding: 30px 0;
}

.photography-port img {
    margin-bottom: 10px;
}

#lightgallery {
    column-count: 4;
}

.demo-gallery>ul {
    margin-bottom: 0;
    padding-left: 15px;
}

.demo-gallery>ul>li {
    overflow: hidden;
    margin-bottom: 15px;
    /* width: 30%; */
    /* display: inline-block; */
    /* margin-right: 15px; */
    list-style: outside none none;
}

.demo-gallery>ul>li a {
    border: 3px solid #FFF;
    border-radius: 3px;
    display: block;
    overflow: hidden;
    position: relative;
    float: left;
}

.demo-gallery>ul>li a>img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.demo-gallery>ul>li a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery>ul>li a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery>ul>li a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery>ul>li a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 25px;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery>ul>li a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery>a>img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.demo-gallery .justified-gallery>a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: 0.8;
    width: 48px;
}

.demo-gallery.dark>ul>li a {
    border: 3px solid #04070a;
}

.webd-header .content {
    background: url(../img/web-design-header.jpg);
    background-size: cover;
    background-attachment: fixed;
}

/* .lb-outerContainer {
    width: 100vw;
    display: flex;
    height: 500px !important;
    align-items: center;
} */
.a-specialist.choose-page {
    padding-bottom: 150px;
}

.third-choose {
    margin-top: -100px;
}

.third-choose .position-relative {
    border-radius: 12px;
    overflow: hidden;

}

/* .lb-closeContainer {
    position: absolute;
    top: -36px;
}

.lb-nav {
    display: none;
}

.lb-nav a.lb-prev {
    opacity: 1 !important;
    margin-left: -58px;
}

.lb-nav a.lb-next {
    opacity: 1 !important;
    margin-right: -58px;
} */
.lb-closeContainer {
    display: none;
}

/* .text-right {
    text-align: right;
} */
.lightbox-container {
    height: 100vh;
}

/* .lightboxOverlay {
    height: 100vh !important;
} */

.lightboxOverlay {
    width: 100% !important;
    /* or a fixed pixel value */
    height: 100vh !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    width: 80%;
    /* or a fixed pixel value */
    height: 100vh;
    overflow: hidden;
}

.lb-details {
    display: none;
}

.lightbox {
    top: 50% !important;
    transform: translateY(-50%);
}

body.lightbox-open {
    overflow: hidden !important;
}

.elementor-text-editor p {
    font-size: 18px;
    line-height: 37px;
}

.elementor-text-editor .elementer-h1 {
    font-size: 18px;
    line-height: 37px;
    margin-bottom: 1rem;
}

.elementor-text-editor .elementer-h2,
.elementor-text-editor .elementer-h3 {
    font-size: 18px;
    line-height: 37px;
    margin-top: 0;
    margin-bottom: 1rem;
}

.elementor-text-editor .elementer-inner-h2 {
    font-size: 18px;
    line-height: 37px;
    margin-top: 0;
    margin-bottom: 0;
}

.elementor-text-editor .elementer-inner-h3 {
    font-size: 18px;
    line-height: 37px;
    margin-top: 0;
    margin-bottom: 1rem;
}

.elementor-text-editor .elementer-center-h3 {
    font-size: 18px;
    line-height: 37px;
    margin-top: 0;
    margin-bottom: 0;
    display: inline;
}

.cnt223 a {
    text-decoration: none;
}

.popup {
    width: 100%;
    margin: 0 auto;
    display: none;
    position: fixed;
    bottom: 10px;
    z-index: 101;
}

.cnt223 {
    width: 60%;
    margin: auto;
    background: white;
    position: relative;
    z-index: 103;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
}

@media all and (max-width:767px) {
    .cnt223 {
        width: 91%;
    }
}

.cnt223 p {
    clear: both;
    color: #555555;
    /* text-align: justify; */
    font-size: 16px;
}

.cnt223 p a {
    color: #d91900;
    font-weight: bold;
}

.cnt223 .x {
    float: right;
    height: 35px;
    left: 22px;
    position: relative;
    top: -25px;
    width: 34px;
}

.cnt223 .x:hover {
    cursor: pointer;
}

.elementor-text-editor {
    color: #0F0342;
}

.checkboxes-validation {
    margin-top: 0.25rem;
    font-size: .875em;
    color: var(--bs-danger-text);
    margin-bottom: 15px;
}

.error-popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: transparent;
}

.popup-wrap {
    background: #12093F !important;
    border-radius: 5px;
    /*   box-shadow: 0 0 5px 5px rgba(0,0,0,0.2); */
    padding: 5px 10px;
    max-width: 500px;
    margin: auto;
}

.hide-popup {
    color: white;
    text-align: right;
    cursor: pointer;
    font-weight: bold;
}

.popup-text {
    padding: 10px 30px 30px;
    text-align: center;
    color: white;
}


.was-validated .form-check-input:valid~.form-check-label {
    color: #110443;
}

.was-validated .form-check-input:valid {
    border-color: #dee2e6;
}

.form-control.is-invalid.has-value {
    border-color: #dc3545;
    /* border-color: var(--bs-danger); */
    box-shadow: 0 0 0 0.25rem rgba(#dc3545, .25);
    background-image: none;
}

.form-control.is-invalid.has-value:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, .25);
}

.sec-landing {
    position: relative;
    background-size: cover;
    padding: 30px 15px;
    background-image: url(../img/service-work.png);

}


.sec-landing .row::after {
    clear: both;
}

.sec-landing .heading-conjest {
    max-width: 700px;
    margin: auto;
}

.sec-landing h2 {
    color: white;
    font-size: 30px;
}


.sec-landing h3 {
    font-size: 25px;
    margin-bottom: 20px;
    color: white;
}

.sec-landing p {
    line-height: 1.8;
}

.sec-landing .form-entity {
    margin-bottom: 8px;
}

.sec-landing .form-entity input:not([type="checkbox"]),
.sec-landing .form-entity select {
    height: 28px;
    font-size: 13px;
    /* border: 1px solid #F3F5FD; */
    border: none;
    /* padding: 15px; */
    color: #808080;
    background: rgba(217, 217, 217, 0.5);
    padding: 5px 15px;
}

.sec-landing .form-entity textarea {
    font-size: 12px;
    border: none;
    /* padding: 15px; */
    color: #808080;
    background: rgba(217, 217, 217, 0.5);
}

.sec-landing .col-lg-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sec-landing .col-lg-4 .inner {
    /* position: relative; */
    /* margin-top: auto; */
    z-index: auto;
    position: relative;
    top: 0px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #0f0342;
    z-index: 1000;
}

.sec-landing form button {
    border-radius: 30px;
    background-color: #100342;
    color: white;
    border: none;
    line-height: 5px;
    padding: 10px 25px;
    font-size: 14px;
    letter-spacing: 1px;
    /* border-radius: 3px; */
}

.sec-landing .entit-inner {
    padding: 30px 0;
}

@media all and (min-width:992px) {
    .for-non .floating-btn {
        display: none;
    }
}

.sec-landing .entit-inner p,
.sec-landing .entit-inner ul {
    color: white;
    font-size: 16px;
}

@media all and (min-width:1600px) {
    .sec-landing .entit-inner {
        padding-right: 20px;
    }
}

.sec-landing .owl-stage .item img {
    border-radius: 20px;
}

.floating-btn {
    position: fixed;
    bottom: 15px;
    right: 29px;
    z-index: 10;
}

.floating-btn a {
    /* isplay: table-cell; */
    display: inline-block;
    width: auto;
    height: 45px;
    padding: 0 30px;
    background: #100342;
    color: rgb(255, 255, 255);
    border-radius: 25px;
    box-shadow: white 0 2px 5px;
    /* font-family: sans-serif; */
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.floating-btn {
    display: none;
}

@media all and (max-width:767px) {
    .floating-btn {
        display: block;
    }
}

.pop-car .owl-stage {
    display: flex;
}

.pop-car .owl-stage-outer {
    overflow-x: hidden;
}

.pop-car .owl-nav {
    display: none;
}

#carousel-custom-dots {
    margin-top: 15px;
    display: flex;
    gap: 7px;
}

#carousel-custom-dots button {
    border: none;
    border-radius: 10px;
}

.index-logos {
    padding-top: 50px;
}

.index-logos .owl-nav,
.index-logos .owl-dots {
    display: none;
}

.index-logos .owl-stage {
    display: flex;
    align-items: center;
}

.index-logos .owl-stage-outer {
    overflow: hidden;
}

.web-portfolio {
    padding: 30px 0;
}

.web-portfolio img {
    border-radius: 20px;
}