@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: #2c2e48;
    --theme-color-2: #59c174;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #646464;
    --heading-color: #1f2324;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #d6c5e2;
    --bg-color2: #ede4da;

    --theme-color-1-hover: #232542;
    --theme-color-2-hover: #348d4c;
}


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(--theme-color-1);
    background-color: var(--font-white);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-1-hover);
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#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: 5px;
    font-size: 13px;
}

.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: 16px;
    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;
}

.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: 180px;
}

.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: left;
}

.section-heading span {
    color: var(--theme-color-1);
}

.section-description {
    font-family: 'CenturyGothic-Regular', sans-serif;
    color: var(--font-black);
    text-align: left;
}

.banner-container {
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/banner-img.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    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: 9;
} */

.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-heading {
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-description {
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 0px;
    font-family: 'CenturyGothic-Medium', sans-serif;
}

.banner-btns {
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 2rem;
}

.banner-follow-wrapper {
    position: absolute;
    left: -18%;
    top: 75%;
    transform: translate(0%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-follow-wrapper p {
    transform: rotate(90deg);
    font-size: 16px;
    color: var(--font-white);
}

.banner-follow-wrapper ul {
    margin-top: 50px;
}

.banner-follow-wrapper ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    color: var(--font-white);
}

.about-experience-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.about-experience-wrapper h2 {
    font-size: 112px;
    margin-bottom: 20px;
}

.about-experience-wrapper p {
    font-size: 24px;
}

.about-contents-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    padding-left: 4rem;
}

.about-content-heading {
    width: 100%;
    position: relative;
    font-size: 34px;
    margin-bottom: 15px;
}

.about-services-card {
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 25px;
    border-radius: 6px;
    padding-top: 5rem;
    background-color: #fafafa;
}

.about-services-card.active {
    background-color: var(--theme-color-1);
}

.as-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-2);
    border-radius: 50%;
    margin-bottom: 2rem;
    padding: 16px;
}

.about-services-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.about-services-card.active h3 {
    color: var(--font-white);
}

.about-services-card .link-text {
    color: var(--font-color);
}

.about-services-card.active .link-text {
    color: var(--font-white);
}

.link-text i {
    margin-left: 5px;
    transition: ease-in-out 0.3s;
}

.link-text:hover {
    color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.about-services-card:hover {
    background-color: var(--theme-color-1);
}

.about-services-card:hover h3 {
    color: var(--font-white);
}

.about-services-card:hover .link-text {
    color: var(--font-white);
}

.section-border-heading {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.bigHeading {
    font-size: 150px;
    color: white;
    -webkit-text-stroke: 1px rgb(0 0 0 / 15%);
    text-transform: uppercase;
}

.smallHeading{
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 30px;
    color: var(--theme-color-2);
}

.service-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 3rem;
    height: 100%;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 15%);
    transition: ease-in-out 0.3s;
}

.sicon{
    margin-bottom: 2rem;
    display: inline-block;
    width: auto;
    transition: ease-in-out 0.3s;
}

.service-card h3{
    font-size: 24px;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
}

.slink{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
    opacity: 0;
    transition: ease-in-out 0.3s;
}

.service-card:hover{
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.service-card:hover h3{
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}


.service-card:hover p{
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.service-card:hover .slink{
    opacity: 1;
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.cnavpills{
    gap: 15px;
}

.cnavpills .nav-item{
    flex: 23%;
}

.cnavpills .nav-item .nav-link{
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #fafafa;
    color: var(--font-black);
    font-size: 18px;
    font-family: 'CenturyGothic-SemiBold', sans-serif;
}

.cnavpills .nav-item .nav-link.active{
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.tabHeading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.tabHeading-wrapper h4{
    font-size: 16px;
    color: var(--theme-color-2);
    margin-bottom: 10px;
}

.tabHeading-wrapper h3{
    font-size: 28px;
    margin-bottom: 10px;
}

.tabLists-wrapper{
    border-left: 5px solid #d9dee2;
    padding-left: 31px;
}

.tabList-item{
    position: relative;
    z-index: 2;
    margin-top: 50px;
    padding: 30px;
    border-radius: 6px;
    transition: ease-in-out 0.3s;
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
}

.tabList-item::before{
    content: "";
    position: absolute;
    transition: var(--transition);
    width: 100%;
    height: 100%;
    border-radius: 6px;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.tabList-item .inner::before{
    background: #d9dee2;
    position: absolute;
    content: "";
    width: 28px;
    height: 5px;
    right: 100%;
    top: 63px;
    transform: translateY(-7px);
    z-index: 0;
}

.tabList-item .inner .heading{
    border-bottom: 1px solid #e3e9ed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
}


.tabList-item .inner .heading .title h4{
    font-size: 24px;
    margin-bottom: 7px;
}

.tabList-item .inner .heading .title span{
    display: block;
    font-size: 14px;
}

.tabList-item .inner .heading .date-of-time span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0 15px;
    height: 36px;
    border-radius: 6px;
    font-weight: 500;
    background: var(--font-white);
    color: var(--theme-color-2);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 15%);
}


.tabList-item .inner::after{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    right: 104%;
    top: 55px;
    transform: translateY(-7px);
    border: 5px solid #d9dee2;
    background: #ecf0f3;
}

.skill-lists{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 50px;
}

.skill-item{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.skill-item:last-child{
    margin-bottom: 0px;
}

.progress-titles{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.awards{
    background-color: #f8f9fa;
}

.awards-list{
    width: 100%;
    position: relative;
    display: inline-block;
}

.award-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.award-item:last-child{
    margin-bottom: 0px;
}

.award-content h3{
    font-size: 24px;
    margin-bottom: 5px;
}

.award-icon img{
    width: 50px;
    min-width: 50px;
}

.awards-image-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.awards-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-author-image{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author-image img{
    border-radius: 12px;
    height: 350px;
    object-fit: cover;
}

.testimonial-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.testimonial-author-info{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.testimonial-author-info h3{
    font-size: 18px;
}

/* the slides */
 .slick-slide {
    margin: 0 15px;
}

/* the parent */
.slick-list {
    margin: 0 -15px;
}

.slick-dots{
    bottom: -60px;
}

.slick-dots li button:before{
    font-size: 10px;
}

.slick-dots li.slick-active button:before{
    color: var(--theme-color-2);
}

.clientstext{
    color: var(--theme-color-2);
    font-size: 28px;
}

.client-images{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.client-images img{
    background: var(--font-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 35px 5px;
    box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.08);
}

.contact-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.contact-list{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.contact-list a{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list a i{
    color: var(--theme-color-2);
}

.cf-input-container{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.cf-input-container label{
    color: var(--font-color);
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

.cf-input-container input{
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--font-color);
}

.cf-input-container textarea{
    width: 100%;
    padding: 6px 15px;
    border: 1px solid #ddd;
    background: transparent;
}

.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: 13px;
    background: var(--theme-color-2);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 35%;
    transform: translate(-50%, -50%);
    height: 200px;
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

footer {
    background-color: var(--theme-color-1);
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 4rem 0 0rem 0;
    z-index: 10;
}

.footer-top-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 20px;
}

.footer-top-wrapper img{
    width: 220px;
}

.footer-top-wrapper p{
    color: var(--font-white);
}

.footer-social{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.footer-social a{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
}

.footer-social a:hover{
    transition: ease-in-out 0.3s;
    background-color: var(--theme-color-2-hover);
}

.footer-bottom-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 30px 0px;
    margin-top: 2rem;
    border-top: 1px solid rgb(255 255 255 / 15%);
}

.footer-bottom-wrapper p{
    color: var(--font-white);
    text-align: center;
}