:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc800;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #ffc800;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc800;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 255, 200, 0;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 200, 0;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Roboto Slab, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #ffc800;
  --bs-link-hover-color: #cca000;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff4cc;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  line-height: 1.2;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
/* Fixed menu styles */
/* Fixed menu styles */
.fixed-menu {
    position: fixed;          /* Fixes the menu in place */
    top: 0;                   /* Aligns the menu to the top */
    left: 0;                  /* Aligns the menu to the left */
    width: 100%;              /* Makes the menu span the full width */
    z-index: 1000;            /* Ensures the menu stays above other elements */
    padding: 10px 0;          /* Padding around the entire menu */
    background-color: transparent; /* Transparent background */
}

/* Center the logo */
.navbar-brand-wrapper {
    text-align: center;       /* Centers the logo horizontally */
    margin-bottom: 10px;      /* Adds space below the logo */
}
.navbar-brand{
    margin:0;
}
/* Adjust logo size */
.navbar-brand img {
    height: 150px;            /* Adjust logo size */
    width: auto;              /* Maintain aspect ratio */
}

/* Center the menu */
.navbar-nav {
    display: flex;            /* Flexbox for alignment */
    justify-content: center;  /* Centers the menu items */
    padding: 0;               /* Removes padding */
    margin: 0;                /* Removes margin */
}
.navbar .navbar-nav .nav-link, .navbar .navbar-nav .nav-link.active {
    color: black;             /* White color for links */
    font-weight: bold;        /* Bold text */
    padding: 10px 15px;       /* Padding for spacing */
    text-transform: uppercase; /* Capitalized text */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}
.navbar.scrolled .navbar-nav .nav-link, .navbar.scrolled .navbar-nav .nav-link.active {
    color: black;             /* White color for links */
    font-weight: bold;        /* Bold text */
    padding: 10px 15px;       /* Padding for spacing */
    text-transform: uppercase; /* Capitalized text */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}
/* Navbar link styles */
.fixed-menu .navbar-nav .nav-link, .fixed-menu .navbar-nav .nav-link.active {
    color: white;             /* White color for links */
    font-weight: bold;        /* Bold text */
    padding: 10px 15px;       /* Padding for spacing */
    text-transform: uppercase; /* Capitalized text */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}
/* Hover effect for links */
.navbar-nav .nav-link:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Navbar styles when scrolled */
.navbar.scrolled {
    background-color: white;  /* White background when scrolled */
    padding: 5px 0;           /* Reduce padding */
	position: fixed;          /* Fixes the menu in place */
    top: 0;                   /* Aligns the menu to the top */
    left: 0;                  /* Aligns the menu to the left */
    width: 100%;              /* Makes the menu span the full width */
    z-index: 1000;            /* Ensures the menu stays above other elements */
    padding: 10px 0;          /* Padding around the entire menu */
}
.navbar.scrolled .navbar-brand img {
    height: 100px;            /* Adjust logo size */
    width: auto;              /* Maintain aspect ratio */
}
/* Adjust links when scrolled */
.navbar.scrolled .nav-link {
    color: black;             /* Black links when scrolled */
}
/* Marquee link styling */
.marquee-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.marquee-link:hover {
    text-decoration: underline;
}
.marquee-text {
        position: absolute;
        bottom: 20px;
        left: 100%;
        white-space: nowrap;
        color: white;
        font-size: 24px;
        animation: scroll-left 10s linear infinite;
    }

    @keyframes scroll-left {
        0% {
            left: 100%;
        }
        100% {
            left: -100%;
        }
    }
/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 80px;         /* Smaller logo size on small screens */
    }

    .navbar-nav {
        flex-direction: column; /* Stack menu items vertically */
        margin-top: 10px;      /* Add spacing */
    }
}
@media (min-width: 992px) {
    .relative-nav-container{
        display: unset !important;
    }
    
}

.full-landing-image {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;  
    display: flex;        
    justify-content: center;
    align-items: center; 
}
.landing-text {
    position: absolute;       /* Positioned relative to the parent */
    text-align: center;       /* Center align text */
    color: white;             /* Text color */
    z-index: 2;    
    bottom: 100px;
    background: rgba(77, 77, 77, 0.5);
	padding: 15px 20px 20px 20px;
	border-radius: 15px;
}

/* Heading styles */
.landing-text h1 {
    font-size: 3rem;          /* Adjust heading size */
    font-weight: bold;        /* Bold text */
    margin-bottom: 0.5rem;    /* Spacing below the heading */
	text-transform: uppercase;
  background: linear-gradient(to bottom, #fb0164 20%, #ffe200 40%, #fb0164 70%, #ffeb00 90%);
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent;
}

/* Paragraph styles */
.landing-text p {
    font-size: 1.5rem;        /* Adjust paragraph size */
    margin: 0;                /* Remove default margin */
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .landing-text h1 {
        font-size: 2rem;      /* Smaller heading size on mobile */
    }
    .landing-text p {
        font-size: 1rem;      /* Smaller paragraph size on mobile */
    }
}
.page-section {
  padding: 6rem 0;
}
.page-section h2.section-heading, .page-section .section-heading.h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.page-section h3.section-subheading, .page-section .section-subheading.h3 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin-bottom: 4rem;
}
#portfolio .portfolio-item {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}
#portfolio .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 200, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity ease-in-out 0.25s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 1.25rem;
  color: white;
}
#portfolio .portfolio-item .portfolio-link:hover .portfolio-hover {
  opacity: 1;
}
#portfolio .portfolio-item .portfolio-caption {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-heading {
  font-size: 1.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  margin-bottom: 0;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-subheading {
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.portfolio-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}
.portfolio-modal .modal-content {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}
.portfolio-modal .modal-content h2, .portfolio-modal .modal-content .h2 {
  font-size: 3rem;
  line-height: 3rem;
}
.portfolio-modal .modal-content p.item-intro {
  font-style: italic;
  margin-bottom: 2rem;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.portfolio-modal .modal-content p {
  margin-bottom: 2rem;
}
.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 2rem;
}
.portfolio-modal .modal-content img {
  margin-bottom: 2rem;
}
.portfolio-modal .close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  background-color: transparent;
}
.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}

.home-blog-area .home-blog-single {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.home-blog-area .home-blog-single .blog-img-cap .blog-img {
  overflow: hidden;
  position: relative;
}
.home-blog-area .home-blog-single .blog-img-cap .blog-img img {
  width: 100%;
  -webkit-transform: scale 1;
  -ms-transform: scale 1;
  transform: scale 1;
  transition: all 0.5s ease-out 0s;
}
.home-blog-area .home-blog-single .blog-img-cap .blog-img ul {
  position: absolute;
  bottom: 0;
  width: 70%;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 575px) {
  .home-blog-area .home-blog-single .blog-img-cap .blog-img ul {
    width: 85%;
  }
}

.home-blog-area .home-blog-single .blog-img-cap .blog-img ul li {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #011548;
  padding: 15px 20px 15px 30px;
  background: #fff;
}
.home-blog-area .home-blog-single .blog-img-cap .blog-cap {
  background: #f7f7f7;
  padding: 15px 30px 36px 30px;
}
.home-blog-area .home-blog-single .blog-img-cap .blog-cap h3 a {
  color: #191d34;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}
.home-blog-area .home-blog-single .blog-img-cap .blog-cap h3 a:hover {
  color: #14435c;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-blog-area .home-blog-single .blog-img-cap .blog-cap h3 a {
    font-size: 23px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .home-blog-area .home-blog-single .blog-img-cap .blog-cap h3 a {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .home-blog-area .home-blog-single .blog-img-cap .blog-cap h3 a {
    font-size: 19px;
  }
}

.home-blog-area .home-blog-single .blog-img-cap .blog-cap p {
  color: #737980;
  font-size: 16px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-blog-area .home-blog-single .blog-img-cap .blog-cap p {
    font-size: 14px;
  }
}

.home-blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn {
  color: #ff2143;
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-left: 50px;
}

.home-blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff2143;
}
.blog_right_sidebar .single_sidebar_widget {
  background: #fbf9ff;
  padding: 30px;
  margin-bottom: 30px;
}
.blog_right_sidebar .popular_post_widget .post_item + .post_item {
  margin-top: 20px;
}
.blog_right_sidebar .widget_title {
  font-size: 20px;
  margin-bottom: 40px;
}
.blog_right_sidebar .widget_title::after {
  content: "";
  display: block;
  padding-top: 15px;
  border-bottom: 1px solid #f0e9ff;
}
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.blog_right_sidebar .media img{
	width:80px;
	height:80px;
}
.single-post-area .blog_details {
  box-shadow: none;
  padding: 0;
}
.blog_details h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.single-post-area .blog_details p {
  margin-bottom: 20px;
  font-size: 15px;
}
.single-post-area .navigation-top .social-icons li i, .single-post-area .navigation-top .social-icons li span {
  font-size: 14px;
  color: #999999;
}
@media (min-width: 768px) {
  .blog_details h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.single-post-area .navigation-top .social-icons li {
  display: inline-block;
  margin-right: 15px;
}
.blog_area a {
  color: "Roboto", sans-serif !important;
  text-decoration: none;
  transition: .4s;
}
.single-post-area .blog_details {
  padding-top: 26px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px;
}
.blog_area a {
  color: "Roboto", sans-serif !important;
  text-decoration: none;
  transition: .4s;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  transition: all 0.3s linear;
  color: #092c3f;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 0px;
}
.slider-area2 {
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-overly2 {
  position: relative;
  z-index: 1;
}
.slider-height2 {
  height: 350px;
  background-size: cover;
}
.hero-overly2::before {
  position: absolute;
  content: "";
  background-color: rgba(13, 45, 62, 0.8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
}
.slider-area2 .hero-cap h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
}
.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}
.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: #e9ecef;
}
.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}
.timeline > li:after, .timeline > li:before {
  display: table;
  content: " ";
}
.timeline > li:after {
  clear: both;
}
.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #ffc800;
}
.timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4, .timeline .timeline-heading .h4 {
  margin-top: 0;
  color: inherit;
}
.timeline .timeline-heading h4.subheading, .timeline .timeline-heading .subheading.h4 {
  text-transform: none;
}
.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1200px) {
  .timeline > li {
    min-height: 170px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px;
  }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px;
  }
}

section#contact {
  background-color: #212529;
  background-image: url("/images/map-image.png");
  background-repeat: no-repeat;
  background-position: center;
}
section#contact .section-heading {
  color: #fff;
}
section#contact form#contactForm .form-group {
  margin-bottom: 1.5rem;
}
section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
  padding: 1.25rem;
}
section#contact form#contactForm .form-group input.form-control {
  height: auto;
}
section#contact form#contactForm .form-group-textarea {
  height: 100%;
}
section#contact form#contactForm .form-group-textarea textarea {
  height: 100%;
  min-height: 10rem;
}
section#contact form#contactForm p.help-block {
  margin: 0;
}
section#contact form#contactForm .form-control:focus {
  border-color: #ffc800;
  box-shadow: none;
}
section#contact form#contactForm ::-webkit-input-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}
section#contact form#contactForm :-moz-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}
section#contact form#contactForm ::-moz-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}
section#contact form#contactForm :-ms-input-placeholder {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: #ced4da;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.125rem;
  font-weight: 700;
}
.btn {
  background: #ff2143;
  padding: 27px 44px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14 px;
  border-radius: 0px;
  -moz-user-select: none;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 0;
  margin-bottom: 0;
  margin: 10px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  border: 0;
  overflow: hidden;
  margin: 0;
}
.btn:hover {
  color: #000000 !important;
}
.btn:hover::before {
  transform: scaleX(1);
  color: #000000 !important;
  z-index: -1;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 101%;
  background: #eee;
  color: #000 !important;
  z-index: 1;
  transition: transform 0.5s;
    transition-timing-function: ease;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  border-radius: 0;
}
/*-------------service--------*/
/*-------------service--------*/

.categories-area {
  background: #f7f7f7;
}

.categories-area .single-cat {
  border: 9px solid transparent;
  padding: 30px 22px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  z-index: 1;
  background: #ffff;
}

@media (max-width: 575px) {
  .categories-area .single-cat {
    padding: 30px 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat {
    padding: 30px 18px;
  }
}

.categories-area .single-cat::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: #ff2143;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  bottom: 0;
  left: 0;
  z-index: -1;
  border: 9px solid #fff;
}

.categories-area .single-cat .cat-icon span {
  color: #eb566c;
  font-size: 65px;
  margin-bottom: 30px;
  display: block;
}

.categories-area .single-cat .cat-cap h5 > a {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 21px;
  display: block;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  font-family: "Sarabun", sans-serif;
}
.mb-70 {
  margin-bottom: 70px;
}
.section-tittle span {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 17px;
  text-transform: uppercase;
  color: #eb566c;
  display: inline-block;
  position: relative;
  padding-left: 68px;
}
.section-tittle span::before {
  position: absolute;
  content: "";
  width: 54px;
  height: 2px;
  background: #eb566c;
  top: 0;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.section-tittle h2 {
  font-size: 50px;
  display: block;
  color: #092c3f;
  font-weight: 900;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat .cat-cap h5 > a {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .categories-area .single-cat .cat-cap h5 > a {
    font-size: 23px;
  }
}

.categories-area .single-cat .cat-cap p {
  margin-bottom: 36px;
  color: #57667e;
  font-size: 16px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat .cat-cap p {
    font-size: 15px;
  }
}
.categories-area .single-cat .cat-cap a {
  color: #1c165c;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.categories-area .single-cat:hover {
  border: 1px solid transparent;
}
.categories-area .single-cat:hover::before {
  height: 100%;
}
.categories-area .single-cat:hover .cat-icon span {
  color: #fff;
}
.categories-area .single-cat:hover .cat-cap h5 {
  color: #fff;
}
.categories-area .single-cat:hover .cat-cap p {
  color: #fff;
}

.categories-area .single-cat:hover .cat-cap a {
  color: #fff;
}

.footer-top {
  border-bottom: 1px solid #233148;
}
.footer-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-top .single-footer-caption .footer-logo {
  margin-bottom: 30px;
}
.footer-top .single-footer-caption .footer-pera .info1 {
  line-height: 1.8;
  margin-bottom: 35px;
  color: #333;
}
.footer-top .single-footer-caption .footer-number p {
  color: #bdbdbd;
}
.footer-top .single-footer-caption .footer-tittle h4 {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 38px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-top .single-footer-caption .footer-tittle ul li {
  color: #bdbdbd;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.mb-50 {
  margin-bottom: 50px;
}


/*fog*/

.shooting-star {
    position: fixed;
    top: -10px;
    left: calc(100% * var(--pos, 0.5));
    width: 2px;
    height: 60px;
    background: white;
    opacity: 0.8;
    transform: rotate(130deg);
    animation: drop 1.5s linear;
}
@keyframes drop {
    0% { transform: translateY(0) rotate(130deg); opacity: 1; }
    100% { transform: translateY(600px) rotate(130deg); opacity: 0; }
}

