@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: Roboto-SemiBold;
    src: url('../fonts/Roboto-SemiBold.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: PlusJakartaSans-SemiBold;
    src: url('../fonts/PlusJakartaSans-SemiBold.ttf');
}

@font-face {
    font-family: PlusJakartaSans-Medium;
    src: url('../fonts/PlusJakartaSans-Medium.ttf');
}


:root{
    --theme-color-1: #073356;
    --theme-color-2: #073356;
    --theme-color-3: #073356;
    --theme-color-4: #dfd0bc;
    --body-bg: #ffffff;
    --font-color: #45474f;
    --heading-color: #141516;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Roboto-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'PlusJakartaSans-SemiBold';
    font-weight: normal;
}

h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Roboto-SemiBold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Roboto-SemiBold';
    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: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto-Medium';
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #c5823f;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-3);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: var(--font-white);
    background-color: #411308;
}

.btn-border{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
}

.btn-border:hover{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
}

.btn-blue{
    border: 1px solid var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.btn-blue:hover{
    border: 1px solid #0e3758;
    background-color: #0e3758;
    color: var(--font-white);
}

.btn-border-blue{
    border: 1px solid var(--theme-color-1);
    background-color: transparent;
    color: var(--theme-color-1);
}

.btn-border-blue:hover{
    border: 1px solid var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--body-bg);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}
.navbar-brand img{
    max-height: 75px;
}

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Roboto-Medium';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}


.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.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-3);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 55px;
    }
    .cookie-notice {
        flex-wrap: wrap;
    }
}
@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;
}

.navbar{
    background: #fff;
    box-shadow: transparent;
    transition: none !important;
    height: 75px;
}

.dropdown-menu{
    min-width: 12rem;
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-size: 14px;
    font-family: 'Roboto-Medium';
    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;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-3);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.headerright{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.hritem span{
    font-family: 'Roboto-Regular';
    font-weight: normal;
    color: var(--theme-color-3);
    font-size: 12px;
}

.menubar-search{
    margin: 0px 25px;
}

.banner-section{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.banner-grid{
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
    z-index: 15;
}

.banner-grid-wrapper{
    vertical-align: middle;
    display: table-cell;
}

.banner-shape{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 100%;
    /* animation: left_to_right 3s ease; */
}

.banner-main-heading{
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 30px;
    color: var(--font-white);
}

.banner-top-heading{
    text-transform: uppercase;
    color: var(--font-white);
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 20px;
}

.banner-top-heading::after{
    content: '';
    width: 45px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    margin-left: 20px;
    position: relative;
    top: -5px;
}
.banner-description{
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 23px;
}

.banner-btns{
    width: 100%;
    display: flex;
}

.banner-image-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
}

#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);
}

.section{
    padding: 60px 0px;
    position: relative;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-small-heading{
    font-size: 20px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--font-color);
    margin-bottom: 10px;
}

.section-heading{
    font-size: 32px;
    line-height: 39px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

/* the slides */
.slick-slide {
    margin: 0 27px;
}

/* the parent */
.slick-list {
    margin: 0 -27px;
}

.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(--heading-color);
}

.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%;
    height: 100vh;
    position: relative;
    display: inline-block;
    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');
}

.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: 7px;
    right: 7px;
    border: none;
    width: 135px;
}

.soon-counter-list{
    display: flex;
}

.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(--theme-color-4);
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-size: 32px;
}

.soon-counter-list > div span{
    font-family: 'Roboto-Medium';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}

.policy-main-heading {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.policy-description {
    margin-bottom: 15px;
}

.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;
    /* border-radius: 5px; */
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
	margin-right: 10px
}

.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: #001941;
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}

.check-success-icon{
    padding: 10px;
    margin-right: 10px;
	color: #fff;
}
.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;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	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;
}

.main-content-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.ffactor-section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px 0px;
}

.ffactor-section::before{
    content: '';
    position: absolute;
    left: 0;
    width: 50%;
    top: 0;
    z-index: 1;
    background-color: var(--theme-color-2);
    display: inline-block;
    height: 100%;
}

.ffactor-section::after{
    content: '';
    position: absolute;
    right: 0;
    width: 50%;
    top: 0;
    z-index: 1;
    background-color: var(--theme-color-3);
    display: inline-block;
    height: 100%;
}

.ffactor-lists{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.ffactor-list-item{
    display: flex;
    align-items: center;
    flex: 25%;
    padding: 20px;
    gap: 20px;
}

.ffactor-info h2{
    margin-bottom: 10px;
    color: var(--font-white);
    font-size: 36px;
}

.ffactor-info p{
    margin-bottom: 0px;
    color: var(--font-white);
}

.feature-card{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px 3px rgb(0 0 0 / 15%);
}

.feature-card h3{
    font-size: 24px;
}

.feature-card.first{
    background-color: var(--theme-color-1);
}

.feature-card.first h3{
    color: var(--font-white);
}

.feature-card.first p{
    color: var(--font-white);
}

.about-img-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.about-img-left{
    padding-bottom: 3rem;
}

.about-img-left img{
    min-width: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 12px;
}


.about-img-right img{
    border-radius: 12px;
    height: 400px;
    object-fit: cover;
}

.about-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
}

.about-lists{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.about-item{
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-item img{
    width: 35px;
}

.about-item-info h3{
    font-size: 18px;
}

.wework-card{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%;
    padding: 25px;
    border-radius: 12px;
    background-color: transparent;
    transition: ease-in-out 0.3s;
}

.wework-card:hover{
    background-color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.wework-card .wework-icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    border-radius: 50%;
    position: relative;
    z-index: 10;
}

.wework-card h3{
    font-size: 20px;
    text-align: center;
}

.wework-card p{
    text-align: center;
}

.wework{
    background-image: url('../images/wework.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wework-card::after{
    content: '';
    position: absolute;
    left: 55%;
    top: 45px;
    width: 100%;
    height: 1px;
    background-color: var(--theme-color-2);
    display: inline-block;
    z-index: 1;
}

.wework-card.last::after{
    display: none;
}

.service-card{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px 3px rgb(0 0 0 / 15%);
    transition: ease-in-out 0.3s;
    background-color: var(--font-white);
}

.service-card .headinglink h3{
    transition: ease-in-out 0.3s;
}

.service-card h3{
    font-size: 20px;
}

.more-link{
    display: flex;
    align-items: center;
    gap: 8px;
    transition: ease-in-out 0.3s;
    text-decoration: underline;
}

.more-link:hover{
    color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
    text-decoration: underline;
}

.service-card p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.service-card:hover, .service-card.blue{
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.service-card:hover h3, .service-card.blue h3{
    color: var(--font-white);
}

.service-card:hover p, .service-card.blue p{
    color: var(--font-white);
}

.service-card:hover .more-link, .service-card.blue .more-link{
    color: var(--theme-color-2);
}

.service-card:hover .headinglink h3{
    color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.portfolio-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 300px;
}

.portfolio-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    display: inline-block;
}

.portfolio-content{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: end;
    padding: 25px;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
    z-index: 11;
}

.portfolio-content a h3{
    color: var(--font-white);
    font-size: 18px;
}

.portfolio-content p{
    color: #b3b3b3;
}

.portfolio-card:hover::before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    z-index: 10;
    border-radius: 12px;
    transition: ease-in-out 0.3s;
}

.portfolio-card:hover .portfolio-content{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}

.pricing-card{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    background-color: #fffaf3;
    border: 1px solid #ececec;
}

.pricing-top{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    background-color: var(--theme-color-1);
    padding: 20px;
}

.pricing-top h3{
    text-align: center;
    color: var(--font-white);
    margin-bottom: 10px;
    font-size: 18px;
}

.pricing-top p{
    text-align: center;
    color: var(--font-white);
}

.pricing-top h2{
    text-align: center;
    color: var(--font-white);
    font-family: 36px;
    margin-top: 15px;
}

.pricing-top h2 span{
    font-size: 14px;
    font-family: 'Roboto-Regular', sans-serif;
}

.pricing-middle{
    width: 100%;
    position: relative;
    display: inline-block;
}

.pricing-middle ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.pricing-bottom{
    width: 100%;
    position: relative;
    display: inline-block;
}

.pricing-card.popular .pricing-top{
    background-color: var(--theme-color-3);
}

.team-card{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    border-radius: 8px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 15%);
}

.team-image{
    width: 100%;
    position: relative;
    display: inline-block;
}

.team-image img{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
}

.team-info{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px;
}

.team-info h3{
    font-size: 20px;
    margin-bottom: 5px;
}

.teamsocial{
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teamsocial li a{
    width: 35px;
    height: 35px;
    min-width: 35px;
    border: 1px solid var(--font-white);
    background-color: var(--theme-color-2);
    color: var(--font-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
}

.teamsocial li a:hover{
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.brands{
    background-color: var(--theme-color-4);
}

.testimonial{
    background-image: url('../images/wework.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testimonial .ta-img{
    width: 35px;
    margin-bottom: 20px;
}

.ta-heading{
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--font-white);
}

.ta-description{
    margin-bottom: 15px;
    color: var(--font-white);
}

.testimonial-author{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.testimonial-author img{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.ta-info h3{
    font-size: 16px;
    color: var(--font-white);
}

.ta-info p{
    color: var(--font-white);
}

.slick-dots{
    bottom: -70px;
}

.slick-dots li button:before{
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--theme-color-2);
}

.blog-card{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blog-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 200px;
    margin-bottom: 15px;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-content{
    width: 100%;
    position: relative;
    display: inline-block;
}

.bpcalendar{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.bp-heading{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.bp-heading h3{
    font-size: 18px;
}

.postInfo{
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 20px;
}

.postauthor{
    display: flex;
    align-items: center;
    gap: 5px;
}

.postauthor img{
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.postread{
    display: flex;
    align-items: center;
    gap: 5px;
}

.bp-heading:hover h3{
    color: var(--theme-color-2);
}

footer{
    background-color: #071f33;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 10;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-about img{
    width: 180px;
}

.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{
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: ease-in-out;
}

.footer-follow ul li a:hover{
    background-color: #a04833;
}

.footer-contact{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-contact-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-item span{
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 15px;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-contact-item a{
    width: auto;
    display: inline-block;
    color: var(--font-white);
}

.footer-bottom-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f0f4f8;
    color: #28283d;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-button {
    background-color: #353ee3;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    margin-left: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-button:hover {
    background-color: #759bf6;
}
.cookie-notice p {
    margin: 0;
}
.modal2 {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #0c51a3;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

#contact-modal .close-button {
    color: #0c51a3;
    float: right;
    font-size: 24px;
    font-weight: bold;
}

#contact-modal .close-button:hover,
#contact-modal .close-button:focus {
    color: #00509e;
    cursor: pointer;
}

#contact-modal h2 {
    color: #0c51a3;
    margin-bottom: 15px;
    font-size: 30px;
}

#contact-modal label {
    display: block;
    margin: 10px 0 5px;
    color: #0c51a3;
}

#contact-modal input[type="text"],
#contact-modal input[type="number"],
#contact-modal textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #0c51a3;
    border-radius: 5px;
    background-color: #ffffff;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
#contact-modal button[type="submit"] {
    background-color: #0c51a3;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-modal button[type="submit"]:hover {
    background-color: #00509e;
}
.footer-bottom-wrapper p{
    color: var(--font-white)
}

.page-banner{
    background: linear-gradient(0deg, rgba(7, 51, 88, 0.8), rgba(7, 51, 88, 0.8)), url('../images/bannerImg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    display: inline-block;
    height: 380px;
    padding-top: 75px;
}

.page-banner-inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.page-banner-inner h3{
    font-size: 40px;
    line-height: 40x;
    color: var(--font-white);
    margin-bottom: 10px;
}

.breadcrump-list li{
    display: inline-block;
    font-size: 14px;
    color: var(--font-white);
    margin: 0px 5px;
}

.leftImage-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 400px;
}

.leftImage-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.leftContent-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.leftContent-wrapper p{
    margin-bottom: 20px;
}

.leftContent-wrapper p:last-child{
    margin-bottom: 0px;
}

.contact-us-card{
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    padding: 30px 50px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    height: 100%;
}

.contact-heading{
    padding: 20px 0px;
    font-size: 24px;
    text-transform: uppercase;
}

.page-contact-us{
    position: relative;
}

.contact-form-heading{
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--font-white);
}

.contact-form-left{
    border-radius: 6px;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-form-left p{
    color: var(--font-white);
}

.contact-form-container{
    position: relative;
    margin-bottom: 20px;
}

.contact-input{
    height: 51px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.contact-textarea{
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.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;
}

.search-widget{
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    display: inline-block;
}

.bolg-search-input{
    width: 100%;
    height: 51px;
    padding: 10px 15px;
    position: relative;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.blog-search-btn{
    width: 51px;
    height: 51px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--theme-color-1);
    border-radius: 6px;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
}

.recently-added-widget{
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    padding: 20px;
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}

.recent-post-list li{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.recent-post-list li:last-child{
    border: none;
}

.recent-post-inner{    
    display: flex;
    align-items: flex-start;
}

.recent-post-image{
    min-width: 80px;
    width: 80px;
    height: 60px;
    margin-right: 15px;
}

.recent-post-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.recent-post-info h3{
    font-size: 14px;
    margin-bottom: 0px;
}

.recent-post-info p{
    font-size: 12px;
    color: var(--theme-color-1);
}

.tags-widget{
    margin-top: 40px;
}

.tags-widget ul li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tags-widget ul li a{
    padding: 10px;
    border: 1px solid #ccc;
    color: var(--theme-color-1);
    border-radius: 6px;
    display: inline-block;
}

.services-widget{
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    padding: 20px;
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}

.widget-heading{
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 25px;
}

.widget-service-list li{
    padding: 10px 10px;
}

.widget-service-list li a::before{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f105";
    margin-right: 10px;
    font-size: 13px;
}

.widget-service-list li:hover{
    background-color: var(--theme-color-2);
    color: #fff;
    border-radius: 6px;
    transition: ease-in-out 0.3s;
}

.help-widget{
    background-color: var(--theme-color-2);
    padding: 40px;
    border-radius: 6px;
}

.help-widget h3{
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 20px;
    margin-top: 20px;
    color: var(--font-white);
}

.help-widget p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.help-widget-phone{
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--font-white);
}

.help-widget-mail{
    color: var(--font-white);
}

.service-detail-main-image{
    width: 100%;
    height: 350px;
    
}

.service-detail-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.service-detail-main-heading{
    font-size: 24px;
    margin-bottom: 25px
}

.service-detail-para{
    margin-bottom: 20px;
}

.service-detail-list li{
    margin-bottom: 15px;
}

.service-detail-list li::before{
    content: '\f0a9';
    left: 0px;
    top: 5px;
    color: var(--theme-color-1);
    font-size: 18px;
    line-height: 1em;
    font-family: 'FontAwesome';
    margin-right: 7px;
}

.blog-posted-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-posted-info li{
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    margin: 15px 0px;
}

.blog-post-details h3{
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
}

.blog-link{
    text-decoration: underline;
    font-family: 'Inter-Medium';
    width: 100%;
    display: inline-block;
    margin-top: 20px;
}

.blog-link i{
    margin-right: 10px;
    font-size: 14px;
    color: var(--theme-color-2);
}

.blog-posted-info a i{
    color: var(--theme-color-1);
}

.comments-list .comments-list-item{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.comments-list-inner{
    display: flex;
    align-items: flex-start;
}

.comment-author-image{
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-author-image img{
    border-radius: 50%;
}

.comment-author-heading{
    display: flex;
    justify-content: space-between;
}

.comment-author-heading h3{
    margin-bottom: 10px;
    font-size: 18px;
}

.comment-author-heading a{
    background-color: var(--theme-color-1);
    color: #fff;
    padding: 2px 10px;
    border-radius: 35px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.comment-author-info h4{
    font-size: 13px;
    margin-bottom: 15px;
}

.comments-list.replay{
    margin-left: 3rem;
}

.comments-list .comments-list-item:last-child{
    border: none;
    padding-bottom: 0;
}

.comments-list{
    padding-top: 3rem;
}

.leave-message{
    display: inline-block;
    margin-top: 4rem;
}

.message-container{
    position: relative;
}

.message-input{
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.service-small-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}