@font-face {
    font-family: CenturyGothic-Regular;
    src: url('../fonts/CenturyGothic-Regular.ttf');
}

@font-face {
    font-family: CenturyGothic-Bold;
    src: url('../fonts/CenturyGothic-Bold.TTF');
}

:root {
    --theme-color-1: #b72b97;
    --theme-color-2: #ff7130;
    --theme-color-3: #ff3c68;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #646464;
    --heading-color: #171721;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #d6c5e2;
    --bg-color2: #ede4da;

    --theme-color-1-hover: #6e0d58;
    --theme-color-2-hover: #d44e10;
}


body {
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}

h1,
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 30px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-2-hover);
}

.btn-secondary {
    color: var(--font-white);
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-1-hover);
}

.btn-border {
    color: var(--heading-color);
    background-color: var(--font-white);
    transition: all .5s ease-out;
    border: 1px solid var(--heading-color);
}

.btn-border:hover {
    background-position: left bottom;
    color: var(--font-white);
    background-color: var(--heading-color);
    border-color: var(--heading-color);
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
	margin-right: 10px;
    padding: 10px;
    color: #fff;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: var(--theme-color-3);
    font-size: 14px;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}
.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: auto;
    flex-direction: column;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 10px;
    font-size: 13px;
    line-height: 1;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--bg-white);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar .navbar-brand .logo-color{
    display: none;
}

.navbar .navbar-brand .logo-white{
    display: block;
}

.navbar.fixed-top .navbar-brand .logo-color{
    display: block;
}

.navbar.fixed-top .navbar-brand .logo-white{
    display: none;
}

.navbar.fixed-top .nav-link{
    color: var(--font-black) !important;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-1) !important;
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-black);
    font-size: 14px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar{
    background-color: transparent;
    padding: 12px 0px;
    width: 100%;
    border-bottom: 1px dashed #464646;
    margin-bottom: 15px;
}

.topbar-contact-wrapper ul li{
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a{
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i{
    color: var(--font-white);
    margin-right: 10px;
}

.topbar-social{
    text-align: right;
}

.topbar-social li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a{
    color: var(--font-white);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.fixed-top .topbar-contact-wrapper ul li a{
    color: var(--font-black);
}

.navbar.fixed-top .topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
}

.navbar.fixed-top .topbar-social li a{
    color: var(--theme-color-1)
}

.navbar-brand img{
    width: 135px;
}

section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    z-index: 11;
}

.section-heading{
    font-size: 32px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-heading span{
    color: var(--theme-color-1);
}

.section-description{
    font-family: 'CenturyGothic-Regular', sans-serif;
    color: var(--font-black);
    text-align: center;
}

.carousel-inner{
    height: 100%;
}

.carousel-item{
    height: 100%;
}

.carousel-caption{
    position: absolute;
    top: 50%;
    left: 50%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 9;
    right: 0;
    bottom: 0;
    height: 100%;
}

.sliderImg{
    height: 100%;
    object-fit: cover;
}

.banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 650px;
    overflow: hidden;
}

.banner-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: 1;
}

.banner-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 11;
    position: relative;
}

.banner-small-heading{
    font-size: 16px;
    text-transform: uppercase;
    color: var(--theme-color-3);
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.banner-heading{
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    text-align: center;
}

.banner-description{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 0px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    text-align: center;
}

.banner-btns{
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

/* the slides */
.slick-slide {
    margin: 0 15px;
}

/* the parent */
.slick-list {
    margin: 0 -15px;
}

.section{
    position: relative;
    padding: 60px 0px;
}

.brands .carosel-item{
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.brands .carosel-item .brandImg{
    filter: grayscale(1);
    opacity: 0.8;
}

.scard{
    width: 100%;
    position: relative;
    display: inline-block;
}

.scard-img{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    padding: 10px;
    background-color: #ffece4;
    position: relative;
    z-index: 10;
}

.scard::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ffece4;
    left: 50%;
    top: 40px;
    z-index: 9;
}

.scard.last::after{
    display: none;
}

.scard-img img{
    width: 36px;
}

.scard-info{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-top: 20px;
}

.scard-info h3{
    font-size: 24px;
}

.about-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.about-btns{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.about-image-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gservice-card{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    height: 100%;
}

.gcard-icon{
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    padding: 10px;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.gcard-icon img{
    width: 45px;
}

.gcard-info h3{
    font-size: 18px;
    margin-bottom: 10px;
}

.pricing-card{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 30px;
    border: 2px solid var(--theme-color-1-hover);
}

.plan-title-icon{
    position: relative;
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
    background-color: var(--theme-color-1-hover);
}

.plan-title{
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-heading{
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-price{
    font-size: 18px;
    color: var(--theme-color-2);
    margin-top: 1rem;
}

.plan-price span{
    color: var(--heading-color);
    font-size: 14px;
}

.plan-features{
    margin-top: 15px;
}

.plan-features li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pricing-card.middle{
    background-color: var(--theme-color-1-hover);
}

.pricing-card.middle .plan-title-icon{
    background-color: var(--font-white);
}

.pricing-card.middle .plan-title{
    color: var(--font-white);
}

.pricing-card.middle .plan-heading{
    color: var(--font-white);
}

.pricing-card.middle .plan-price span{
    color: var(--font-white);
}

.pricing-card.middle .plan-features li{
    color: var(--font-white);
}

.authorImg{
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--theme-color-3);
    margin: auto;
    margin-bottom: 15px;
}

.authorname{
    text-align: center;
    font-size: 16px;
    margin-bottom: 5px;
}

.authorposition{
    text-align: center;
}

.authorreview{
    text-align: center;
    margin-top: 20px;
}

.slick-dots{
    bottom: -40px;
}

.review{
    background-image: url('../images/reviewBg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.carosel-item{
    width: 100%;
    background-color: var(--bg-white);
    border-radius: 30px;
    padding: 30px;
}

.blog-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--font-white);
    box-shadow: 0px 12px 16px 0px rgb(16 24 40 / 3%);
    height: 100%;
}

.blogImg img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blogcontent{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.blogcontent span{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--theme-color-2);
}

.blog-link{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-link h3{
    font-size: 18px;
}

.blogauthor{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.authorInfo h4{
    font-size: 14px;
}

footer{
    background-color: #21120c;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 3rem 0 2rem 0;
}

.contact-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    z-index: 11;
}

.contact-input{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: rgb(255 255 255 / 10%);
    padding: 10px 15px;
    border: none;
    color: var(--font-white);
}

.contact-group .btn-main{
    width: 100%;
    max-width: 100%;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-right: 5rem;
}

.footer-about img{
    width: 140px;
    margin-bottom: 25px;
}

.footer-about p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-about p:last-child{
    margin-top: 2rem;
}

.footer-quick-links{
    position: relative;
    width: 100%;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-quick-links ul li{
    margin-bottom: 10px;
}

.footer-quick-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-quick-links ul li a{
    color: var(--font-white);
}

.footer-follow ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-follow ul li a{
    color: var(--font-white);
}

.page-banner{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/sliderImg-1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 350px;
}

.page-banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.page-banner-wrapper{
    width: 100%;
    position: relative;
    z-index: 11;
    display: flex;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.page-banner-wrapper h3{
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.page-banner-wrapper p{
    color: var(--font-white);
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.blogcontent-img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 30px 0px;
}

.funfactor-card{
    display: flex;
    align-items: center;
    background-color: var(--theme-color-1-hover);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    justify-content: flex-start;
}

.funfactor-card-img img{
    width: 50px;
    height: 50px;
    margin-right: 15px;
    min-width: 50px;
}

.funfactor-card-info h3{
    font-size: 32px;
    line-height: 40px;
    color: var(--font-white);
    margin-bottom: 0px;
}

.funfactor-card-info p{
    text-transform: uppercase;
    color: var(--font-white);
    margin-bottom: 0px;
}

.contactus{
    width: 100%;
    position: relative;
    display: inline-block;
}


.contact-form-wrapper{
    width: 100%;
    position: relative;
}

.contact-form-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.contactinfo-block{
    width: 100%;
    display: inline-block;
    position: relative;
    /* text-align: center; */
}

.contactinfo-block h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.contactinfo-block a{
    width: 100%;
    display: inline-block;
    color: var(--theme-color-3);
    margin-bottom: 10px;
}

.contactinfo-block p{
    font-size: 12px;
}

.contactus-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contactus-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--theme-color-1);
}

.custom-pills{
    align-items: center;
    justify-content: center;
}

.custom-pills .nav-link{
    color: var(--heading-color);
}

.custom-pills .nav-link.active{
    background-color: var(--theme-color-2);
}

.portfolio-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 300px;
}

.portfolio-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.portfolio-content{
    width: 100%;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: end;
    top: 0;
    border-radius: 12px;
    padding: 20px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 10;
    transition: ease-in-out 0.3s;
}

.portfolio-card:hover .portfolio-content{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}

.portfolio-content h3{
    color: var(--theme-color-2);
    font-size: 18px;
}

.portfolio-content p{
    color: var(--font-white);
}

.team-person-image{
    position: relative;
    width: 100%;
    display: inline-block;
}

.team-person-image{
    position: relative;
    height: 240px;
    width: 100%;
}

.team-person-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.team-social{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
}

.team-card-wrapper:hover .team-social{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}

.team-social li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    border-bottom: 1px solid var(--theme-color-4);
    color: var(--font-white);
    font-size: 14px;
}

.team-social li a.last{
    border: none;
}

.team-person-details h3{
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-person-details p{
    text-align: center;
}

.team-person-details{
    padding: 20px 10px;
}

.page-full{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.page-full-inner{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.error-inner h2{
    font-size: 150px;
    /* margin-bottom: 20px; */
    color: var(--theme-color-4);
}

.error-inner h4{
    font-size: 40px;
    margin-bottom: 20px;
}

.error-inner p{
    margin-bottom: 20px;
}

.page-full.error{
    background-image: url('../images/error-bg.png');
}

.faq .accordion-item{
    border: none;
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    margin-bottom: 20px;
    border-radius: 60x;
}

.faq .accordion-button:not(.collapsed){
    /* color: var(--theme-color-1); */
    background-color: transparent;
    box-shadow: none;
}

.faq .accordion-button::before{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f059";
    margin-right: 10px;
    font-size: 16px;
    color: var(--theme-color-4);
}

.page-full-coming{
    width: 100%;
    min-height: 100vh;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
    padding: 30px;
}

.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}

.soon-subscribe{
    width: 100%;
}

.soon-form-wrapper{
    position: relative;
    width: 100%;
}

.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}

.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}

.soon-counter-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--font-white);
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
    font-size: 32px;
}

.soon-counter-list > div span{
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}

.footer-social-list{
    margin-top: 20px;
}

.footer-social-list li{
   display: inline-block;
   margin-right: 20px;
}

.footer-social-list li a{
    display: inline-block;
    color: #fff;
}

.policy-main-heading {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
}

.policy-description {
    margin-bottom: 15px;
}

.blogDetails-wrapper p{
    margin-bottom: 20px;
}

.blogDetails-wrapper h2{
    font-size: 24px;
    margin-bottom: 20px;
}

.comments-wrapper{
    width: 100%;
    display: inline-block;
    position: relative;
    margin: 3rem 0;
}

.comments-wrapper h3{
    padding: 10px 10px;
    background-color: var(--theme-color-4);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

.comments-list-item{
    display: flex;
}

.comments-avatar{
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 15px;
    min-width: 60px;
}

.comments-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comments-info-top h4{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 10px;
}

.comments-info-top h4 a{
    font-size: 14px;
    font-family: 'Poppins-Medium';
    color: var(--theme-color-3);
}

.comments-info-top p{
    margin-bottom: 10px;
    font-size: 12px;
}

.reply-wrapper h3{
    padding: 10px 10px;
    background-color: var(--theme-color-4);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

.contactus-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contactus-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--theme-color-1);
}

.blogDetails-relatedlist{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 30px;
    border-top: 4px solid var(--theme-color-1);
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.blogDetails-relatedlist h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.blogDetails-relatedlist ul li{
    margin-bottom: 15px;
}

.blogDetails-relatedlist ul li a:hover{
    color: var(--theme-color-3);
    transition: ease-in 0.3s;
}