@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

/* font-family: 'Poppins',
sans-serif;
font-family: 'Roboto Slab',
serif; */


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


/* ------Scrollbar CSS Start----- */

/* Firefox */

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: var(--white);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 5px;
   border: 0px;
}

/* ------Scrollbar CSS End----- */



/*--- Common Style Start---*/

:root {
    --black: #101010;
    --dark: #101010;
    --white: #fff;
    --blue: #4777FB;
    --menu: #000000;
    --light-gray: #878787;
    --light-white: #F7F8FC;
    --body-font: 'Poppins',
        sans-serif;
    --heading: 'Roboto Slab',
        serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 23px;
    color: var(--black);
    font-family: var(--body-font);
}
p {
    padding: 0;
    font-weight: 400;
}
p:last-child {
    margin-bottom: 0;
}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
   -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
   display: block;
}

img {
    width: 100%;
    height: 100%;
}

h1,
h2,
.heading {
    line-height: normal;
   font-weight: 600;
  margin-bottom: 5px;
}

h3 {
    font-size: 22px;
}


h4 {

    font-size: 20px;

}



h5 {

    font-size: 18px;

}



h6 {

    font-size: 16px;

}



ul {

    padding-left: 0px;

    margin-bottom: 0px;

}



/*--- Common Style End---*/

/* ==========loader common css========== */
.loader-off.loaderWrap {
    opacity: 0;
    visibility: hidden;
}
.loader img {
    width: 50px;
}

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 300ms ease-in-out; 
}
.loader{
    animation: loader 2s infinite linear;
}
/* ============Loader Two CSS Start=============== */

@keyframes loader {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(-135deg);
    }
    100% {
      transform: rotate(-225deg);
    }
  }


/*--- Bootstrap Form Start ---*/

.form-control {
    height: 50px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
}

.sec-space {
    padding: 60px 0;
}

.sec-space-bottom {
    padding: 0 0 60px;
}

.sec-space-top {
    padding: 60px 0 0;
}

/*- Bootstrap Form End -*/

/*-- Button Start --*/

.btn {
    border-radius: 5px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    border: 1px solid transparent;
    text-transform: uppercase;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid {
    background: #af00ff;
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn-solid:hover {
    background: #5d0087;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    z-index: 9;
    position: relative;
    height: auto;
    line-height: normal;
    transition: all .4s;
    padding: 0px;
    font-weight: 600;
}
.btn-outline:before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--black);
    height: 1px;
    width: 100%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.btn-outline:hover::before {
    border: 1px solid var(--black);
    border-top: 0px;
    height: 1px;
    width: calc(100% + 15px);
    transition: all .4s;
}

/*-- Button End --*/

/*--- TITLE Start---*/

.section-title h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 0px;
    font-family: var(--heading);
}
.section-title h6 {
    font-size: 14px;
    color: var(--green-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-title {
    margin-bottom: 30px;
}

/*--- TITLE End---*/

/*----   HEADER  START  ----*/

.main-header {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 9;
    background: #ffffff;
}

.navbar {
    padding: 0;
}
.navbar-brand {
    padding: 10px 0;
}

.navbar-brand img {
    height:90px;
    width: auto;
}
.navbar-collapse ul li {
    margin-right: 15px;
    position: relative;
}
.navbar-collapse ul li:last-child {
    margin-right: 0px;
}

.navbar-collapse ul li>a {
    color: var(--menu);
    padding: 40px 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
}

.navbar-collapse ul li.active>a,
.navbar-collapse ul li:hover>a {
    color: var(--black);
}

.navbar-collapse ul li>a:before {
    position: absolute;
    left: 0;
    top: 100%;
    background: #af00ff;
    content: '';
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
}
.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item::before {
    left: 0;
    background: #3f74f573;
}

.navbar-collapse ul li.active>a:before,
.navbar-collapse ul li:hover>a:before {
    height: 2px;
    width: 100%;
    z-index: -1;
    transition: all .4s;
}

.navbar-text {
    padding: 13px 0;
    margin-left: 40px;
}

.navbar-text ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar-text ul li {
    margin-right: 9px;
    position: relative;
    z-index: 9;
}

.navbar-text ul li a {
    display: inline-block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
}

.navbar-text ul li:hover a img {
    filter: brightness(0) invert(0);
    transition: all .3s;
}

.navbar-text ul li:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    height: 0px;
    width: 0px;
    border-radius: 50%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:hover::before {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--blue);
    content: '';
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:last-child {
    margin-right: 0px;
}

.navbar-text ul li a img {
    width: auto;
    height: 14px;
}

.navbar-collapse ul li>ul {
    position: absolute;
    min-width: 200px;
    z-index: 99;
    background: #dedede;
    top: 100%;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s
}

.navbar-collapse ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all .4s;
}

.navbar-collapse ul li>ul>li>a {
    display: inline-block;
    padding: 5px 10px;
}

/*---   HEADER END   ---*/

/*---   BANNER START   ---*/

.bannerarea {
    position: relative;
}

.bannerinfo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}
.bd_banner {
    position: relative;
    padding-top: 64%;
    background: #000;
}

.bd_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}
.bannertxt{
    width:80%;
}

.bannertxt h2, .bannertxt h1, .bannertxt h3, .bannertxt h4 {
    color: #ffffff;
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 20px;
    font-weight: 700;
}
.bannertxt p{
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.banner-home{
    position: relative;
}

.banner-content-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-content {
    width: fit-content;
    max-width: 570px;
    margin: auto auto;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.banner-content h1,
.banner-content h2,
.banner-content h3 {
    font-family: var(--heading);
    font-size: 52px;
    line-height: 62px;
    margin-bottom: 15px;
}

.banner-content p {
    max-width: 470px;
    margin: 0 auto;
}

/*---   BANNER END   ---*/

.logosec {
	height: 80px;
}
.logosec img {
    height: 100%;
    object-fit: contain;
}
.logoslidersec {
    padding: 30px 0;
}

.logoslider {
    padding: 0 30px;
}

.logoslider.owl-carousel .owl-nav button {
    background: transparent !important;
    color: #000 !important;
    font-size: 20px;
    width: 20px;
}
.logoslider.owl-carousel .owl-nav button:hover{
    background: transparent !important;
}

.owl-carousel .owl-nav button {
    background: #9b111e94 !important;
    width: 40px;
    height: 40px;
    border-radius: 50px !important;
    color: #fff !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    outline: none;
}
.owl-carousel .owl-nav button:hover{
    background:#9b111e !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

/*--- About Home Start ---*/

.query-home {
    position: relative;
}
.query-text {
    color: var(--black);
    z-index: 9;
    padding:0 100px;
}
/*--- About Home End ---*/

.bluebg{
    background: #63cdf6;
}


.navbar-collapse ul li>ul.dropdown-menu li {

    margin: 0;

}



.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item {

    padding: 10px;

}





/*--- Article Start ---*/

/* #blog_slider .owl-stage-outer {

    padding: 20px;

} */

.article-wrap {

    box-shadow: 0px 3px 6px #0000001C;

    padding: 15px;

}



.article-content p.article-date {

    color: var(--light-gray);

    font-size: 12px;

    font-style: italic;

    margin-bottom: 2px;

    padding: 0px;

}



.article-content h6 {

    color: var(--black);

    font-size: 14px;

    line-height: 20px;

    font-weight: 600;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}



.article-content {

    padding: 15px 5px 10px;

}



.article-image {

    height: 250px;

}



.article-image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.article-content .btn {

    margin-top: 0px;

}





.blogslider .owl-nav {

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    transform: translateY(-50%);

    display: flex;

    justify-content: space-between;

}



.blogslider .owl-nav button {

    width: 30px;

    height: 30px;

    background: #3f74f5 !important;

    color: #fff !important;

    outline: none;

}

/*--- Article End ---*/

.consec {
    background: #dce5ff;
}
.mapsec iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
}

.form-content {
    padding: 70px 0;
}
.form-content h2 {
    letter-spacing: 0;
    margin-bottom: 0;
}
.form-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.form-wrap .btn {
    color: #fff;
    background-color: #3671ef;
}

.form-wrap .btn:hover {
    background-color: #1c1c1c;
}

.form-wrap .row {
    margin: 0 -8px -16px;
}
.form-wrap .row [class*="col-"] {
    padding: 0 8px;
    margin-bottom: 16px;
}
.form-wrap .form-control {
    background-color: rgb(255 255 255 / 60%);
    border-color: #95aae9;
    padding-left: 24px;
}
.form-wrap .form-control::placeholder {
    color: #1c1c1c;
}
.form-wrap textarea.form-control {
    height: 140px;
    padding-top: 20px;
}


/*--  Footer Start  --*/

.footer-main {
    background: #fff;
}
.footer-link-wrapper {
    padding: 50px 0 0;
}
.ft-logo a {
    background: #fff;
    padding: 15px;
}

.ft-logo a img {
    width: auto;
    height: 80px;
}
.ft-logo p {
    font-size: 13px;
    line-height: 20px;
    margin-top: 14px;
}

.quick-link-box h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
}
.quick-link-box p{
    font-size: 13px;
    line-height: 20px;
}
.contact-book .headsocial {
    margin-top: 30px;
}

.quick-link-box ul {
    list-style: none;
}

.quick-link-box ul li {  
    font-size: 12px;
}
.quick-link-box .menu {
    display: flex;
    flex-wrap: wrap;
}

.quick-link-box .menu li {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 1% 0;
}

.quick-link-box ul li a {
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.ft-social {
    margin-top: 15px;
}

.footer-main .row [class*="col-"] {
    position: relative;
}

.ft-social ul {
    list-style: none;
}

.ft-social ul li {
    margin-right: 12px;
    position: relative;
    z-index: 9;
}

.ft-social ul li:last-child {
    margin-right: 0px;
}

.ft-social ul li a {
    height: 28px;
    width: 28px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    transition: all .4s;
    -webkit-transition: all .4s;
   -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a img {
    height: 16px;
}

.ft-social ul li a:before {
    position: absolute;
    background: var(--blue);
    width: 0px;
    height: 0px;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a:hover::before {
    width: 32px;
    height: 32px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.copy-right {
    background: #ecc4ff;
    padding: 15px 0;
    margin-top: 30px;
}

.copy-right p {
    line-height: 13px;
    font-size: 13px;
    color: rgb(33 52 56 / 66%);
    font-weight: 500;
}

.copy-right p a {
    color: #213438;
}

.contact-book ul li {
    position: relative;    
    color: var(--dark);
    font-weight: 500;
}

.contact-book ul li a i {
    
    color: #650094;
    position: absolute;
    top: 6px;
    left: 0;
}

.contact-book ul li a {
    text-transform: none;
    position: relative;
    padding-left: 25px;
}

/*--  Footer End  --*/

.aboutimg {
    height: 100%;
}

.aboutimg img {
    object-fit: cover;
}

.gallimg a {
    width: 100%;
    height: 300px;
}
.gallimg a img {
    object-fit: cover;
    transform: scale(1.1);
    transition: 0.5s;
}

.gallimg {
    overflow: hidden;
}
.gallimg:hover a img{transform: scale(1);}

.masonry { /* Masonry container */
    -webkit-column-count: 4;
  -moz-column-count:4;
  column-count: 4;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
   margin: 1.5em;
    padding: 0;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: .85em;
}
.masonry .item {
    display: inline-block;
    background: #fff;
    padding: 1em;
    margin: 0 0 1.5em;
    width: 100%;
	-webkit-transition:1s ease all;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 #ccc;
}
.masonry .item img{max-width:100%; height: auto;}

@media only screen and (max-width: 320px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 321px) and (max-width: 768px){
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1200px){
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}
@media only screen and (min-width: 1201px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

.authimg {
    height: 300px;
    background: #eaf9ff;
    padding: 20px;
}

.authimg img {object-fit: contain;}


ul.order_details li:after {
    display: none;
}

p.woocommerce-notice {
    color: #000;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
}

.woocommerce-customer-details address {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
}

.woocommerce-thankyou-order-details.order_details {
    display: flex;
    flex-wrap: wrap;
}

ul.order_details li {
    padding: 10px 15px !important;
    background: #650094;
    color: #fff;
    margin: 0 1px;
    border-radius: 5px;
}

.checkout .form-row {
    margin: 0 0 20px 0;
}

.bd_orderdelivery {
    display: flex;
    flex-wrap: wrap;
}
.bd_orderdelivery>p {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.bd_orderdelivery .woocommerce-order-details {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 25px 0px 0;
    border-right: 1px dashed #cfcfcf;
    margin: 0 25px 0 0;
}
.bd_orderdelivery .woocommerce-customer-details {
    flex: 0 0 47%;
    max-width: 47%;
}
.bd_orderdelivery table.shop_table {
    border-collapse: collapse !important;
    width: 100%;
}

.bd_orderdelivery table.shop_table th {
    /*border:#000 solid 1px !important; background: #2e304f;*/
    color: #000000;
    padding: 10px 12px;
}

.bd_orderdelivery table.shop_table td {
    border: #cfcfcf solid 1px !important;
    border-left: 0 !important;
    border-right: 0 !important;
	padding: 10px 10px 10px 0;
}
.bd_orderdelivery .woocommerce-customer-details .woocommerce-column {
    flex: 0 0 100%;
    max-width: 100%;
}
.inner_con .bd_orderdelivery h2 {
    font-size: 22px;
    line-height: 30px;
}
