/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');

/* font-family: "Space Grotesk", sans-serif; */
/* font-family: "Google Sans Code", monospace; */
/* blog img size:- 600*800 */
/* service img size:- 600*800 */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --green:#47B1B1;
    --blue:#0E293E;
    --light:#fff;
    --red:#ED1C24;
    --dark:#000;
    --sky-blue:#2D7090;
}

p{
    font-size: 18px !important;
}

.text-primary{
    color: var(--sky-blue) !important;
}

.btn-primary{
    background-color: var(--green);
    border-color: var(--green);
}
.btn-primary:hover{
    background-color: var(--blue) !important;
    border-color: var(--blue) !important;
    color: var(--light) !important;
}
.btn-primary:hover i{
    color: var(--light) !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;
}

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

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.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;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--green);
    border-right: 2px solid var(--green);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--dark);
    border-right: 2px solid var(--dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .btn-primary{
    background-color: var(--green) !important;
}

.navbar .btn-primary:hover{
    background-color: var(--blue) !important;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    /* font-family: "Playfair Display", serif; */
    font-size: 16px;
    /* font-weight: 500; */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

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

.navbar .navbar-brand {
   width: 120px;
}

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

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--light);
    background: var(--green);
}

.navbar .dropdown-menu {
    height: 350px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

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

@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;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--light);
}

.navbar .btn-primary:hover {
    background: var(--blue);
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(255, 255, 255, 0.895), rgba(255, 255, 255, 0.895)), url(../img/banner/hero-bg.png) top left no-repeat;
    /* background: url(../img/hero-bg.jpg) top left no-repeat; */
    background-size: cover;
}

.hero-header .hero-header-text h2 {
    font-family: "Cinzel Decorative", serif !important;
}

.hero-header .hero-header-text h4{
    font-family: "Dancing Script", cursive;
    font-size: 27px !important;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--green);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--light);
}

.page-header {
    background: url(../img/banner/D\ Kreative\ Art.png) center center no-repeat;
    
}





/* about section */


.about-section .btn-square.bg-primary{
    background-color: var(--blue) !important;
    color: var(--light) !important;
}

.about-section .btn-square.bg-primary i{
    color: var(--light) !important;
}


.about-section p{
    font-size: 18px !important;
    text-align: justify;
}

















/*** Service ***/


@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--green);
}

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

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}



/*** Gallery ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: .5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--green);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--light);
    background: var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px !important;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--green) !important;
    
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark);
    background: var(--green);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--light);
    background: var(--dark);
}





.related-product-carousel  .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.related-product-carousel .owl-nav .owl-prev,
.related-product-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark);
    background: var(--green);
    transition: .5s;
}

.related-product-carousel .owl-nav .owl-prev:hover,
.related-product-carousel .owl-nav .owl-next:hover {
    color: var(--light);
    background: var(--dark);
}






.testimonial-carousel .owl-carousel .owl-item img {
    display: block;
    /* width: 100%; */
}



/*** Footer ***/
.footer{
    background: linear-gradient(rgba(0, 0, 0, 0.685) , rgba(0, 0, 0, 0.726)), url(../img/banner/contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--blue);
    }
}

.footer .footer-icon{
    color: var(--green) !important;
}

.footer p{
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

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

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

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--green);
    /* color: rgba(255, 255, 255, .5); */
    margin-right: 10px;
}

.footer a{
    color: var(--light) !important;
    text-decoration: none;
}
.footer p{
    color: var(--light) !important;
    text-decoration: none;
}

.copyright-sec a{
    color: var(--green) !important;
    text-decoration: none;
}

.footer .footer-product-list{
    height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* .footer .footer-product-list{
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
} */


/* owl prev */
.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}
 .owl-carousel .owl-nav button.owl-prev{
    /* background: 0 0; */
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    background: var(--green) !important;
    color: var(--light) !important;
}

.owl-carousel .owl-nav button.owl-next {
    /* background: 0 0; */
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    background: var(--green) !important;
    color: var(--light) !important;
}
























/* contact us start */


.contact-sec {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/banner/banner-1.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact-sec .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.contact-sec .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.contact-sec .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

@media (min-width: 280px) {
    .contact-sec .table td {
        padding: .5rem 0.1rem;
        border-color: rgba(255, 255, 255, .15);
    }
}

.contact-sec .table tr:last-child td {
    border: none;
}

.contact-sec .table .btn{
    background-color: transparent !important;
    border-color: var(--green) !important;
}
.contact-sec .table .btn:hover{
    background-color: var(--green) !important;
    border-color: var(--green) !important;
}
 

.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(#47b1b1c3, #47b1b1b9), url(../img/banner/contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.callback form input,textarea{
    width: 100%;
    padding: 10px 20px;
}

.callback2 {
    position: relative;
}



.callback2 form input,textarea{
    width: 100%;
    padding: 10px 20px;
}
/* 
.contact-icon i{
    color: var(--secondary);
} */
.contact-add-item{
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 8px;
    height: 190px !important;
}
/* contact us end */






/* captcha new design start */
.captchasep1 {
    display: flex;
}

.captchasep1 input {
    width: 100% !important;
    margin-top: 0 !important;
}

.captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    border-top: 1px solid #757070;
    border-right: 1px solid #757070;
    border-bottom: 1px solid #757070;
}

.captchasep1 .captcha-codes-sec p {
    margin-bottom: 0;
    letter-spacing: 9px;
    font-style: italic;
    font-size: 22px;
    padding: 10px;
    height: 100%;
    font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 22px;
    outline: none;
    background: transparent;
    height: 100%;
    border: none;
}

.captchasep1 .captcha-codes-sec button i {
    background: var(--purple);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
}


@media screen and (max-width:600px) {
    .captchasep1 {
      display: flex;
      flex-direction: column !important;
    }

    .captchasep1 .captcha-codes-sec {
      border-left: 1px solid #757070;
      border-right: 1px solid #757070;
      border-bottom: 1px solid #757070;
      margin-top: 3px;
    }
  }

.bg-danger22{
    background-color: var(--green) !important;
}


/* captcha new design end */







/* breadcrb */

.breadcrb {
    background: #f3f2f2;
    padding: 20px 0;
}

.breadcrb .breadcrumb {
    margin-bottom: 0;
}

.breadcrb .breadcrumb-item a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.breadcrb .breadcrumb-item.active {
    color: var(--green);
    text-transform: uppercase;
    font-weight: bold;
}
  .breadcrumb-item + .breadcrumb-item::before{
  color:var(--green) !important;
}



/* service start */
.service-section a{
    color: var(--dark) ;
    text-decoration: none;
}
.service-section .new-service-box .service-name {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-section .new-service-box .service-name h3{
    font-size: 20px;
    margin-top: 15px;
    
}
.service-section .new-service-box .service-img{
    overflow: hidden;
}
.service-section .new-service-box:hover img{
    transform: scale(1.1);
    transition: 0.5s ease-in-out all;
}







/* blog start */


/* blog */
.blog .blog-item .blog-img img{
    width: 100% !important;
}

.blog .blog-item .blog-content a.h3{
    font-weight: bold;
    font-size: 20px; 
    display: inline-block !important;
}
.blog .blog-item .blog-content p{
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    margin-bottom: 0 !important;
}
.blog .blog-item .blog-content2  p{ 
    width: 100%;
    text-align: justify; 
    font-size: 16px;
    margin-bottom: 0 !important;
}







/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--light);
    color: var(--dark);
    font-weight: bold;
    z-index: 2;
}
.blog .blog-item .blog-content a.h4{
    color: var(--dark);
    font-size: 25px;
    font-weight: 600;
}
.blog .blog-item .blog-content a {
    transition: 0.5s;
    
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--green) !important;
}

.blog a{
    text-decoration: none;
}
/*** Blog End ***/

.enq-form button{
    background: transparent !important;
}


.category .cate-pro{
    color:var(--dark);
    font-size:28px;
  }
  .category ul{
    padding-left:2rem;
  }
  .category p,
  .category ul li{
    font-size:18px;
    text-align:justify;
  }
  .category li::marker {
    content: "➽ ";
    font-size: 1.2em;
    margin-right:10px;
    color:var(--green);
  }
  
  
  
  
  /* multi img css*/
  .category .multi-dkreat-img{
      display: flex;
  }
  .category .multi-dkreat-img .multi-img{
      margin: 15px 8px 0 0;
  }
  .category .multi-dkreat-img img{
      width: 100%;
  }



  .modal-content {
      background: linear-gradient(#47b1b1e3 , #47b1b1dd), url(../img/logo/d-kreative-logo.png) !important;
  }

  .modal-content form button{
      background: var(--blue) !important;
  }









    /* fixed icons */


    .whatsapp-icon{
        width: 60px;
        height: 60px;
        position: fixed;
        bottom: 200px;
        right: 40px;
        z-index: 99999;
        background: transparent !important;
    }
    .phone-icon{
        width: 60px;
        height: 60px;
        position: fixed;
        bottom: 140px;
        right: 40px;
        /* background: white; */
        overflow: hidden;
        border-radius: 120px;
        z-index: 99999;
    }
    .phone-icon img{ 
        /* background: white; */
        overflow: hidden ;
    }




    /* expertise-include-section */



    .expertise-include-section ul li {
        font-size: 18px;
    }