/********** Template CSS **********/
:root {
    --primary: #0d6efd;
    --secondary: #9b7d2c;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #0d1355;
    --blue:#3f66e737;
}

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

h1,
.h1 {
    color: #0d1355;
}
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
@media (max-width: 320px) {
    #spinner {
        /* Adjust styles for mobile if needed */
        width: 50px; /* Example size */
        height: 50px; /* Example size */
    }

    #spinner.show {
        /* Optional: Adjust visibility for mobile devices */
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
}
@media (max-width: 768px) {
    #spinner {
        /* Adjust styles for tablets if needed */
        width: 75px; /* Example size */
        height: 75px; /* Example size */
    }

    #spinner.show {
        /* Optional: Adjust visibility for tablets */
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
}
@media (min-width: 901px) {
    #spinner {
        /* Default or larger sizes for desktop screens */
        width: 100px; /* Example size */
        height: 100px; /* Example size */
    }

    #spinner.show {
        /* Optional: Adjust visibility for larger screens */
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
}



/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
@media (max-width: 320px) {
    .btn-square {
        width: 30px; /* Adjusted size for mobile */
        height: 30px; /* Adjusted size for mobile */
    }

    .btn-sm-square {
        width: 28px; /* Adjusted size for mobile */
        height: 28px; /* Adjusted size for mobile */
    }

    .btn-lg-square {
        width: 46px; /* Adjusted size for mobile */
        height: 46px;
        margin-right: 2px; /* Adjusted size for mobile */
    }

    .btn {
        font-size: 18px;
        font-weight: bold; /* Adjusted font size for better readability on smaller screens */
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    .btn-square {
        width: 36px; /* Slightly larger size for tablets */
        height: 36px; /* Slightly larger size for tablets */
    }

    .btn-sm-square {
        width: 30px; /* Slightly larger size for tablets */
        height: 30px; /* Slightly larger size for tablets */
    }

    .btn-lg-square {
        width: 44px; /* Slightly larger size for tablets */
        height: 44px; /* Slightly larger size for tablets */
    }

    .btn {
        font-size: 16px; /* Adjusted font size for tablets */
    }
}
@media (min-width: 901px) {
    .btn-square {
        width: 38px; /* Default size for larger screens */
        height: 38px; /* Default size for larger screens */
    }

    .btn-sm-square {
        width: 32px; /* Default size for larger screens */
        height: 32px; /* Default size for larger screens */
    }

    .btn-lg-square {
        width: 48px; /* Default size for larger screens */
        height: 48px; /* Default size for larger screens */
    }

    .btn {
        font-size: 18px; /* Larger font size for readability on larger screens */
    }
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

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


.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--secondary);
    font-weight: 500;
    outline: none;
}

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

@media (max-width: 768px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background:#0d1355;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px;
    }
}

@media (max-width: 320px) {
  .navbar .navbar-nav {
      margin-top: 10px;
      border-top: 1px solid rgba(0, 0, 0, .07);
      background:#0d1355;
  }

  .navbar .navbar-nav .nav-link {
      padding: 10px 0;
  }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }



    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
        
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height:fit-content;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 8rem;
    padding-bottom: 2rem;
    background: url(../img/dubaihead.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}

.page-header1 {
    padding-top: 8rem;
    padding-bottom: 2rem;
    background: url(../img/abouthead.png) top left no-repeat;
    background-size: cover;
    
}

.page-header1 .breadcrumb-item,
.page-header1 .breadcrumb-item a {
    font-weight: 500;
}

.page-header1 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}
.page-header2 {
    padding-top: 8rem;
    padding-bottom: 2rem;
    background: url(../img/serviceheadimg.png) top left no-repeat;
    background-size: cover;
}

.page-header2 .breadcrumb-item,
.page-header2 .breadcrumb-item a {
    font-weight: 500;
}

.page-header2 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}
/*** Facts ***/
.facts {
    background: url(../img/counterbg.png);
    background-size: cover;
    align-items: center;
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/bg-goldbluepattern.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--bs-secondary) !important;
    background: var(--bs-dark);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

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

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

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


/*** Team ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 10px;
    left: 1px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    object-fit: contain;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    right: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

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


.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

.bg-image{
  background-image: url('../img/contactpagebg.png'); background-size:cover;

            height: auto;
            background-position: center;
            background-size: cover;
}


.bg-image4{
  background-image: url('../img/mvbg.png'); background-size:cover;

            height: auto;
            background-position: center;
            background-size: cover;
}

.bg-image1{
    background-image: url('../img/prefooterimg.png');
            height: auto;
            
}

.bg-image2{
    background-image: url('../img/ctabgimgdark.png');
            height: auto;
            
}

.bg-image3{
    background-image: url('../img/bg-goldbluepattern.png');
            height: auto;
            background-position: center;
            background-size: cover;
}



.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 0px;
    height: calc(100vh);
  }
  
  .hero-section small {
    color: var(--white-color);
    text-transform: uppercase;
  }
  
  .hero-section .section-overlay {
    z-index: 2;
    opacity: 0.45;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 50px;
  }
  
  .hero-section .container .row {
    height: 100%;
  }

.video-wrap {
    z-index: -100;
  }
  
  .custom-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .custom-video {
        object-fit: contain; /* Adjust the object-fit property to contain the video within the screen */
        width:100%;
    }
}

@media (max-width: 1440px) {
  .custom-video {
      object-fit: cover; /* Adjust the object-fit property to contain the video within the screen */
      width:100%;
  }
}


@media (min-width: 1441px) and (max-width: 2560px) {
  .custom-video {
      object-fit: cover; /* Adjust the object-fit property to contain the video within the screen */
      width:100%;
  }
}

/* For very small screens, like small smartphones */
@media (max-width: 320px) {
    .custom-video {
        object-fit: cover;
        height: auto; /* Set the height to auto to maintain aspect ratio */
        min-height: 100%; /* Ensure the video still covers the height */
        width:100%;
    }
    #section_1{
      height:fit-content;
    }
}

  /*** About Start ***/

.about .about-item .about-item-inner {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: #0607188c;
    transition: 0.5s;
    width: 90%;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    background: var(--bs-white);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}
/*** About End ***/

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/
@media (max-width: 768px) {
    .ra-button {
        padding: .2em .7em; /* Reduce padding for smaller screens */
        border-radius: .2em; /* Slightly reduce the border radius */
        font-size: 0.9em; /* Reduce font size */
    }
    .ra-button svg {
        height: 0.9em; /* Adjust icon size */
        margin: 0 .4em 0 0; /* Adjust margin for smaller spacing */
    }
}

@media (max-width: 320px) {
    .ra-button {
        padding: .1em .5em; /* Further reduce padding for very small screens */
        border-radius: .15em; /* Further reduce the border radius */
        font-size: 0.8em; /* Smaller font size */
    }
    .ra-button svg {
        height: 0.8em; /* Further reduce icon size */
        margin: 0 .3em 0 0; /* Adjust margin for tighter spacing */
    }
}

/* services */

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
  }
  
  .clients .swiper {
    padding: 10px 0;
  }
  
  .clients .swiper-wrapper {
    height: auto;
  }
  
  .clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
  }
  
  .clients .swiper-slide img:hover {
    transform: scale(1.1);
  }

  #team {
	padding: 30px 0;
}
.sec-heading h6 {
	font-family: "Font Awesome 5 Free";
	font-size:x-large;
}
.single-box {
	border: 1px solid #fff9ef;
	border-radius: 20px;
	overflow: hidden;
	background-color: #fff9ef
}
.info-area {
	padding: 0 20px 45px;
}
.img-area {
	overflow: hidden;
	padding: 10px 0 10px;
}
.img-area img {
	margin: 0 auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	max-width: 400px
}
.single-box:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.info-area i {
	display: inline-block;
	color: #d5b41b;
	margin: 0 4px;
}
.info-area h4 {
	font-weight: 600
}
.info-area h5 {
	color: #0d1355;
	margin: 10px 0 0;
	font-weight: 600
}
.info-area a {
	display: inline-block;
	margin: 25px 0 0;
	background-color: #9a7d2b;
	color: #fff9ef;
	padding: 10px 35px;
	border-radius: 4px;
}
.team-slider .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -50px;
	text-align: center;
	width: 100%;
}
.team-slider button.owl-dot {
	width: 16px;
	height: 16px;
	display: inline-block;
	margin: 0 6px;
	text-align: center;
	border-radius: 50%;
	background-color: #0d1355;
}
.team-slider .owl-dot.active {
	background-color: #9a7d2b;
}
.move-animation {
	position: relative;
	-webkit-animation: move-animation 2s ease-in-out infinite;
	animation: move-animation 2s ease-in-out infinite;
}
@keyframes move-animation {
	0% {
		top: 3px;
	}
	50% {
		top: -3px;
	}
	100% {
		top: 3px;
	}
}


.retro-layout .v-height {
    height: 240px; }
  
  @media (max-width: 767.98px) {
    .retro-layout .img {
      height: 240px; } }
  
  .retro-layout .h-entry {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden; }
    .retro-layout .h-entry .post-category {
      color: #fff; }
    .retro-layout .h-entry .featured-img {
      position: absolute;
      height: 100%;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05);
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .retro-layout .h-entry:hover .featured-img {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
    .retro-layout .h-entry.mb-30 {
      margin-bottom: 30px; }
    .retro-layout .h-entry .date {
      font-size: 15px; }
    .retro-layout .h-entry.gradient {
      position: relative; }
      .retro-layout .h-entry.gradient:before {
        z-index: 1;
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
        background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
        background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
        background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }
  
  .retro-layout .text {
    position: absolute;
    bottom: 0;
    z-index: 10;
    padding: 20px;
    max-width: 350px; }
    .retro-layout .text h2, .retro-layout .text .h2 {
      color: #fff;
      font-size: 18px;
      line-height: 1.2;
      margin-bottom: 0; }
    .retro-layout .text span {
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
      display: block;
      margin-bottom: 5px; }
    .retro-layout .text.text-sm h2, .retro-layout .text.text-sm .h2 {
      font-size: 18px;
      line-height: 1.5; }
  
  .retro-layout .gradient {
    position: relative; }
    .retro-layout .gradient:before {
      z-index: 1;
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
      background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }
  
  @media (max-width: 767.98px) {
    .retro-layout .img-5 {
      height: 240px !important;
      margin-bottom: 30px;
      margin-top: 30px; } }
  
  .retro-layout-alt .img-1 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    @media (max-width: 767.98px) {
      .retro-layout-alt .img-1 {
        height: 240px !important;
        position: relative;
        margin-bottom: 30px; } }
  
  .retro-layout-alt .img-2 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    @media (max-width: 767.98px) {
      .retro-layout-alt .img-2 {
        height: 240px !important; } }
  
  .retro-layout-alt .mb30 {
    margin-bottom: 30px; }
  
  .retro-layout-alt .hentry {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px; }
    .retro-layout-alt .hentry .featured-img {
      position: absolute;
      height: 100%;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05);
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .retro-layout-alt .hentry:hover .featured-img {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
  
  .retro-layout-alt .gradient {
    position: relative; }
    .retro-layout-alt .gradient:before {
      z-index: 1;
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
      background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }
  
  .retro-layout-alt .post-category {
    margin-left: 20px;
    margin-top: 10px; }
  
  .retro-layout-alt .v-height {
    height: 300px; }
  
  .retro-layout-alt .text {
    position: absolute;
    bottom: 0;
    z-index: 10;
    padding: 20px;
    max-width: 350px; }
    .retro-layout-alt .text h2, .retro-layout-alt .text .h2 {
      color: #fff;
      font-size: 26px; }
    .retro-layout-alt .text span {
      color: rgba(255, 255, 255, 0.7); }
    .retro-layout-alt .text.text-sm h2, .retro-layout-alt .text.text-sm .h2 {
      font-size: 18px;
      line-height: 1.5; }
  
  .retro-layout-alt .two-col > a {
    width: calc(50% - 15px);
    float: left; }
    @media (max-width: 575.98px) {
      .retro-layout-alt .two-col > a {
        width: 100% !important;
        float: none !important;
        margin-bottom: 30px; } }

        .posts-entry-title {
            text-transform: uppercase;
            font-size: 20px;
            color: #000;
            letter-spacing: .05rem; }
          
          .posts-entry .blog-entry .img-link {
            position: relative;
            overflow: hidden;
            display: inline-block;
            border-radius: 10px;
            margin-bottom: 10px; }
          
          .posts-entry .blog-entry h2, .posts-entry .blog-entry .h2 {
            line-height: 1.3;
            font-size: 26px; }
            .posts-entry .blog-entry h2 a, .posts-entry .blog-entry .h2 a {
              color: #4D4C7D; }
          
          .posts-entry .btn-sm, .posts-entry .btn-group-sm > .btn {
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 15px;
            padding-right: 15px; }
          
          .posts-entry .blog-entry-sm li {
            margin-bottom: 20px; }
          
          .posts-entry .blog-entry-sm h3, .posts-entry .blog-entry-sm .h3 {
            font-size: 20px; }
            .posts-entry .blog-entry-sm h3 a, .posts-entry .blog-entry-sm .h3 a {
              color: #4D4C7D; }
          
          .posts-entry.posts-entry-sm .blog-entry h2, .posts-entry.posts-entry-sm .blog-entry .h2 {
            font-size: 18px; }
          
          .posts-entry .blog-entry-search-item {
            margin-bottom: 30px; }
            .posts-entry .blog-entry-search-item .img-link {
              width: 280px;
              border-radius: 0; }
              .posts-entry .blog-entry-search-item .img-link img {
                margin-bottom: 0;
                border-radius: 10px; }
          
          .read-more {
            border-bottom: 2px solid #214252; }
          
          .post-entry-alt h2, .post-entry-alt .h2 {
            font-size: 18px;
            margin-bottom: 20px; }
            .post-entry-alt h2 a, .post-entry-alt .h2 a {
              color: #4D4C7D; }
          
          .post-entry-alt .excerpt {
            padding-left: 20px;
            padding-right: 20px; }
          
          .post-entry-alt .img-link {
            position: relative;
            display: inline-block;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 10px; }
            .post-entry-alt .img-link img {
              margin-bottom: 0; }
          
          .post-meta {
            color: gray;
            font-size: 13px;
            width: 100%;
            display: block;
            margin-bottom: 20px; }
            .post-meta a {
              color: #000; }
            .post-meta .author-figure img {
              width: 30px;
              border-radius: 50%; }
          
          .blog-entries .blog-entry {
            display: block;
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease;
            margin-bottom: 30px;
            position: relative; }
            .blog-entries .blog-entry:hover, .blog-entries .blog-entry:focus {
              opacity: .7;
              top: -1px;
              -webkit-box-shadow: 0 3px 50px -2px rgba(0, 0, 0, 0.2) !important;
              box-shadow: 0 3px 50px -2px rgba(0, 0, 0, 0.2) !important; }
            .blog-entries .blog-entry .blog-content-body {
              padding: 20px;
              border: 1px solid #efefef;
              border-top: none; }
            .blog-entries .blog-entry img {
              max-width: 100%; }
            .blog-entries .blog-entry h2, .blog-entries .blog-entry .h2 {
              font-size: 18px;
              line-height: 1.5; }
            .blog-entries .blog-entry p {
              font-size: 13px;
              color: gray; }
          
          .blog-entries .post-meta {
            font-size: 14px;
            color: #b3b3b3; }
            .blog-entries .post-meta .author img {
              width: 30px;
              border-radius: 50%;
              display: inline-block; }
          
          .custom-pagination span, .custom-pagination a {
            text-align: center;
            display: inline-block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            border-radius: 50%; }
          
          .custom-pagination a {
            background: #214252;
            color: #fff; }
            .custom-pagination a:hover {
              background: #214252; }
          
          .sidebar {
            padding-left: 5em; }
            @media (max-width: 767.98px) {
              .sidebar {
                padding-left: 15px; } }
          
          .sidebar-box {
            margin-bottom: 4em;
            font-size: 15px;
            width: 100%;
            float: left;
            background: #fff9ef; }
            .sidebar-box *:last-child {
              margin-bottom: 0; }
            .sidebar-box .heading {
              font-size: 18px;
              color: #000;
              font-weight: 400;
              margin-bottom: 30px;
              padding-bottom: 20px;
              border-bottom: 1px solid #e6e6e6; }
          
          .comment-wrap .heading, .search-result-wrap .heading {
            font-size: 18px;
            color: #000;
            font-weight: 400;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e6e6e6; }
          
          .tags {
            padding: 0;
            margin: 0;
            font-weight: 400; }
            .tags li {
              padding: 0;
              margin: 0 4px 4px 0;
              float:left;
              display: inline-block; }
              .tags li a {
                float: left;
                display: block;
                border-radius: 4px;
                padding: 2px 6px;
                color: gray;
                background: #f2f2f2; }
                .tags li a:hover {
                  color: #fff;
                  background: #214252; }
          
          .pagination {
            margin-bottom: 5em;
            text-align: center !important;
            display: block; }
            .pagination li {
              margin-right: 2px;
              margin-bottom: 3px;
              display: inline-block; }
              .pagination li a {
                border-radius: 50% !important;
                width: 40px;
                height: 40px;
                line-height: 40px;
                padding: 0;
                margin: 0;
                display: inline-block;
                text-align: center; }
                .pagination li a:focus, .pagination li a:active {
                  -webkit-box-shadow: none !important;
                  box-shadow: none !important; }
                .pagination li a:hover {
                  background: #214252;
                  color: #fff;
                  border: 1px solid transparent; }
              .pagination li.active a {
                border: 1px solid transparent !important; }
          
          .categories, .sidelink {
            padding: 0;
            margin: 0;
            font-weight: 400; }
            .categories li, .sidelink li {
              padding: 0;
              margin: 0;
              position: relative;
              margin-bottom: 10px;
              padding-bottom: 10px;
              border-bottom: 1px dotted gray("300");
              list-style: none; }
              .categories li:last-child, .sidelink li:last-child {
                margin-bottom: 0;
                border-bottom: none;
                padding-bottom: 0; }
              .categories li a, .sidelink li a {
                display: block;
                font-size: 16px; }
                .categories li a span, .sidelink li a span {
                  position: absolute;
                  right: 0;
                  top: 0;
                  color: #ccc;
                  -webkit-transition: .3s all ease;
                  -o-transition: .3s all ease;
                  transition: .3s all ease; }
                .categories li a:hover span, .sidelink li a:hover span {
                  color: #000; }
              .categories li.active a, .sidelink li.active a {
                color: #000;
                font-style: italic; }
          
          .comment-form-wrap {
            clear: both; }
          
          .comment-list {
            padding: 0;
            margin: 0; }
            .comment-list .children {
              padding: 50px 0 0 40px;
              margin: 0;
              float: left;
              width: 100%; }
            .comment-list li {
              padding: 0;
              margin: 0 0 30px 0;
              float: left;
              width: 100%;
              clear: both;
              list-style: none; }
              .comment-list li .vcard {
                width: 80px;
                float: left; }
                .comment-list li .vcard img {
                  width: 50px;
                  border-radius: 50%; }
              .comment-list li .comment-body {
                float: right;
                width: calc(100% - 80px); }
                .comment-list li .comment-body h3, .comment-list li .comment-body .h3 {
                  font-size: 20px;
                  color: #000; }
                .comment-list li .comment-body .meta {
                  text-transform: none;
                  color: #ccc; }
                .comment-list li .comment-body .reply {
                  padding: 3px 10px;
                  background: #f2f2f2;
                  color: #000;
                  font-size: 13px; }
                  .comment-list li .comment-body .reply:hover {
                    color: #000;
                    background: #e3e3e3; }
          
          .post-entry-sidebar .post-meta, .post-entry-footer .post-meta {
            font-size: 14px;
            color: #b3b3b3; }
          
          .post-entry-sidebar ul, .post-entry-footer ul {
            padding: 0;
            margin: 0; }
            .post-entry-sidebar ul li, .post-entry-footer ul li {
              list-style: none;
              padding: 0 0 20px 0;
              margin: 0 0 20px 0; }
              .post-entry-sidebar ul li a, .post-entry-footer ul li a {
                display: table;
                color: #4D4C7D; }
                .post-entry-sidebar ul li a img, .post-entry-footer ul li a img {
                  width: 90px; }
                .post-entry-sidebar ul li a img, .post-entry-sidebar ul li a .text, .post-entry-footer ul li a img, .post-entry-footer ul li a .text {
                  display: table-cell;
                  vertical-align: middle; }
                .post-entry-sidebar ul li a .text h4, .post-entry-sidebar ul li a .text .h4, .post-entry-footer ul li a .text h4, .post-entry-footer ul li a .text .h4 {
                  font-size: 18px; }
          
          .post-entry-footer ul li {
            margin-bottom: 0; }
            .post-entry-footer ul li a {
              color: #fff; }

              .site-cover {
                background-size: cover;
                background-position: top center;
                position: relative; }
                .site-cover > .container {
                  position: relative;
                  z-index: 2; }
                .site-cover.overlay:before {
                  background: rgba(0, 0, 0, 0.6);
                  position: absolute;
                  content: "";
                  top: 0;
                  left: 0;
                  right: 0;
                  bottom: 0;
                  z-index: 1; }
                .site-cover .post-meta {
                  color: #fff; }
                .site-cover, .site-cover .same-height {
                  padding: 3em 0; }
                .site-cover.single-page h1, .site-cover.single-page .h1 {
                  color: #fff;
                  font-size: clamp(2rem, 3vw, 5rem); }
                  .sidebar {
                    padding-left: 5em; }
                    @media (max-width: 767.98px) {
                      .sidebar {
                        padding-left: 15px; } }
                  
                  .sidebar-box {
                    margin-bottom: 4em;
                    font-size: 15px;
                    width: 100%;
                    float: left;
                    background: #fff9ef; }
                    .sidebar-box *:last-child {
                      margin-bottom: 0; }
                    .sidebar-box .heading {
                      font-size: 18px;
                      color: #000;
                      font-weight: 400;
                      margin-bottom: 30px;
                      padding-bottom: 20px;
                      border-bottom: 1px solid #e6e6e6; }

                      .tags {
                        padding: 0;
                        margin: 0;
                        font-weight: 400; }
                        .tags li {
                          padding: 0;
                          margin: 0 4px 4px 0;
                          float: left;
                          display: inline-block; }
                          .tags li a {
                            float: left;
                            display: block;
                            border-radius: 4px;
                            padding: 2px 6px;
                            color: #0d1355;
                            background: #9a7d2b; }
                            .tags li a:hover {
                              color: #fff;
                              background: #214252; }

                              .categories, .sidelink {
                                padding: 0;
                                margin: 0;
                                font-weight: 400; }
                                .categories li, .sidelink li {
                                  padding: 0;
                                  margin: 0;
                                  position: relative;
                                  margin-bottom: 10px;
                                  padding-bottom: 10px;
                                  border-bottom: 1px dotted gray("300");
                                  list-style: none; }
                                  .categories li:last-child, .sidelink li:last-child {
                                    margin-bottom: 0;
                                    border-bottom: none;
                                    padding-bottom: 0; }
                                  .categories li a, .sidelink li a {
                                    display: block;
                                    font-size: 16px; }
                                    .categories li a span, .sidelink li a span {
                                      position: absolute;
                                      right: 0;
                                      top: 0;
                                      color: #ccc;
                                      -webkit-transition: .3s all ease;
                                      -o-transition: .3s all ease;
                                      transition: .3s all ease; }
                                    .categories li a:hover span, .sidelink li a:hover span {
                                      color: #000; }
                                  .categories li.active a, .sidelink li.active a {
                                    color: #000;
                                    font-style: italic; }


                                    .call-us-button {
                                      position: fixed; /* Keep it fixed on the page */
                                  
                                      display: block;
                                      right:1px;
                                      bottom: 65px;
                                      z-index: 99;
                                      transform: translateY(-50%); /* Center it perfectly */
                                      background-color: #25D366; /* Green background */
                                      color: white; /* White text */
                                      width: 48px; /* Set width */
                                      height: 48px; /* Set height to be equal to width for a round shape */
                                      border-radius: 50%; /* Make it a perfect circle */
                                      text-align: center; /* Center the text/icon inside */
                                      line-height: 50px; /* Center icon vertically */
                                      text-decoration: none; /* Remove underline from text */
                                      font-family: Arial, sans-serif; /* Font styling */
                                      font-size: 18px; /* Font size for the icon */
                                      z-index: 1000; /* Appear on top of other elements */
                                      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Add a slight shadow */
                                      margin-right: 32px; /* Right margin to keep some space from the edge */
                                      }
                                      
                                      .call-us-button i {
                                      text-align: center; /* Center icon vertically */
                                      }
                                      
                                      