@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sulphur+Point:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /*** theme colors ***/
  --theme-color: #14203b;
  --theme-color-2: #0078ae;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
}

body {
  font-family: "poppins", sans-serif;
  overflow-x: hidden;
}

.pd-80 {
  padding: 80px 0;
}

.pd-100 {
  padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue";
}

a:hover {
  color: #000;
}
a {
  color: #000;
  text-decoration: none;
}

.theme-btn {
  background-color: var(--theme-color);
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 7px 7px 7px 7px;
  padding: 14px 30px 14px 30px;
  box-shadow: 0 0 0 0 white;
  transition: 0.2s all;
  display: inline-block;
}

.theme-btn:hover {
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 0 0 white;
  color: #fff;
}

.theme-btn-2 {
  background-color: var(--theme-color-2);
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 7px 7px 7px 7px;
  padding: 14px 30px 14px 30px;
  box-shadow: 0 0 0 0 white;
  transition: 0.2s all;
  display: inline-block;
}

.theme-btn-2:hover {
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 0 0 white;
  color: #fff;
}

.top-bar {
  background-color: var(--theme-color-2);
  padding: 11px 10px;

  /* background: linear-gradient(to bottom, rgba(0, 120, 174, 0.85), rgba(0, 120, 174, 0.7));  */
  background: linear-gradient(to right, #14203b, #0f6fa7); 
  opacity: 1; /* Semi-transparent effect */
  backdrop-filter: blur(12px); /* Increase blur effect */
  backdrop-filter: blur(8px); /* Blurs background for smooth blend */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Light border for clean separation */
  padding: 15px 20px; /* Maintain spacing */
  transition: all 0.3s ease-in-out; /* Smooth transition effect */
}
.top-bar:hover {
  opacity: 0.9; /* Full opacity on hover */
  backdrop-filter: blur(12px); /* Increase blur effect */
}

.top-left {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.email-flex {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.email-flex a {
  font-family: "Poppins", Sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
  transition: 0.2s all;
}

.email-flex a:hover {
  color: var(--theme-color);
}

.email-flex i {
  color: #fff;
}

.email-flex:nth-child(2) i {
  transform: rotate(90deg);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: end;
}

.top-links a i {
  color: #fff;
}

.top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-header {
  background-color: var(--theme-color);
  background-image: url(../images/bg-pattern.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: 0 24px;
}

.navigation ul li a {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1px;
  transition: 0.2s all;
}

.navigation ul li a:hover {
  color: var(--theme-color-2);
}

.logo img {
  width: 220px;
  height: 140px;
  object-fit: contain;
}

.cv-btns {
  display: flex;
  align-items: center;
  gap: 0 30px;
}

/* Banner Start */

section.banner-section .carousel-item::before {
  content: "";
  background-color: #00000070;
  width: 100%;
  height: 100%;
  position: absolute;
}

section.banner-section .carousel-caption {
  left: 0;
  margin: 0;
  padding: 0;
  right: 0;
  text-align: left;
  top: 25%;
  height: 10px;
}

section.banner-section .carousel-item {
  height: 620px;
}

.banner-inner-section .carousel-item {
  height: 350px !important;
}

.banner-inner-section .carousel-item img {
  object-fit: cover;
  height: 350px;
}

.banner-inner-section .carousel-caption {
  top: 0 !important;
  height: 350px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.banner-inner-section .carousel-caption h1 {
  text-align: center;
  margin: 0 !important;
}

section.banner-section .carousel-caption h5 {
  color: #ffffff;
  font-family: "Times New Roman", Sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: capitalize;
}

section.banner-section .carousel-caption h1 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 65px;
  margin: 20px 0 15px;
}

section.banner-section .carousel-caption p {
  text-align: left;
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  width: 57%;
}

section.banner-section .carousel-caption a {
  font-family: "Times New Roman", Sans-serif;
  font-size: 17px;
}

/* Banner End */

/* About Section Start */

.about-left img {
  width: 92% !important;
  height: 550px;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px 15px 15px 15px;
}

.about-left img:hover {
  animation: aboutImg 1.8s linear infinite;
}

.about-right {
  margin-left: -30px;
}

@keyframes aboutImg {
  50% {
    transform: translateY(-10px);
  }
}

.about-right h5 {
  color: var(--theme-color-2);
  font-family: "Times New Roman", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
}

.about-right h3 {
  color: var(--theme-color);
  font-family: "Times New Roman", Sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 25px;
}

.about-right h4 {
  font-size: 19px;
  line-height: 28px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--theme-color);
}

.about-right p {
  color: #000000;
  font-size: 97%;
  line-height: 26px;
}

.about-right a {
  text-transform: unset;
}

.about-right a:hover {
  box-shadow: 2px 5px 0 0 black;
}

.about-section-2 .about-right p {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.about-section-2 .about-right ol li,
.about-section-2 .about-right ul li {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.about-section-2 .about-right ol {
  padding: 0;
  margin: 0;
}

.about-section-2 .about-right h4 {
  margin: 16px 0 20px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  font-size: 1.75rem;
}

.about-section-2 .about-right ol li strong,
.about-section-2 .about-right ul li strong {
  color: #000000;
}

.about-section-2 .about-right ul:last-child li {
  font-size: 15px;
}

.about-section-2 .about-left img {
  width: 100%;
}

/* About Section End */

/* Counter Section Start */

section.counter-section {
  background-image: url(../images/counter-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  background-attachment: fixed;
}

section.counter-section::before {
  content: "";
  background-color: #00000070;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

div#countdown {
  text-align: center;
}
div#countdown ul {
  list-style: none;
}

div#countdown ul li span {
  font-family: "Sulphur Point";
  font-size: 69px;
  font-weight: 600;
  color: var(--theme-color-2);
}

/* Counter Section End */

/* Expertise Section Start */

.expertise-head h2 {
  font-family: "Times New Roman", Sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
  margin-bottom: 80px;
}

.expertise-box {
  height: 380px;
  position: relative;
}

.expertise-overlay {
  background-image: url(../images/kitchen_1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 35px;
  color: #fff;
  border-radius: 15px;
  position: relative;
  z-index: 4;
}

.expertise-section .col-md-4:nth-child(2) .expertise-overlay,
.expertise-section .col-md-4:nth-child(2) .expertise-wrap {
  /* background-image: url(../images/interior_1.jpg); */
  background-image: url(../images/hotel_1.jpg);
}

.expertise-section .col-md-4:nth-child(3) .expertise-overlay,
.expertise-section .col-md-4:nth-child(3) .expertise-wrap {
  background-image: url(../images/staff_member_2.jpg);
  /* background-image: url(../images/staff_member_1.jpg); */
}

.expertise-overlay::before {
  content: "";
  background-color: #45434375;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.expertise-overlay-inner h6 {
  color: #ffffff;
  font-family: "Times New Roman", Sans-serif;
  font-size: 40px;
  font-weight: 500;
  text-transform: capitalize;
}

.expertise-wrap {
  background-image: url(../images/kitchen_1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 35px;
  color: #fff;
  border-radius: 15px;
  position: absolute;
  z-index: 4;
  transition: transform 0.7s, opacity 0.5s 0.2s;
  opacity: 0;
  transform: scale(0.7);
  top: 0;
}

.expertise-wrap::before {
  content: "";
  background-color: #45434375;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.expertise-wrap-inner h3 {
  color: #ffffff;
  font-family: "Times New Roman", Sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.expertise-wrap-inner a {
  font-family: "Playfair Display", Sans-serif;
  font-weight: 500;
  cursor: pointer;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #fff;
  background: transparent;
  font-size: 15px;
  padding: 12px 24px;
  color: #fff;
}

.expertise-box:hover .expertise-wrap {
  transition: transform 0.7s, opacity 0.5s;
  opacity: 1;
  transform: scale(1);
}

.expertise-btn {
  text-align: center;
  margin: 40px 0 0;
}

.expertise-btn a:hover {
  box-shadow: 2px 5px 0 0 black;
}

.modal-dialog {
  max-width: 60%;
}

.modal-left img {
  width: 287px;
  height: 287px;
  display: block;
  margin: 10px auto 0;
  position: relative;
}

.modal-left {
  position: relative;
  text-align: center;
}

.modal-left::before {
  content: "";
  position: absolute;
  background-color: #000;
  z-index: 0;
  top: -29px;
  left: -14px;
  width: 247px;
  height: 247px;
}

.modal-header {
  margin-bottom: 30px;
}

.modal-right h3 {
  font-size: 34px;
  font-family: "Abril Fatface";
  line-height: 1.7em;
  color: rgba(0, 0, 0, 1);
  font-weight: bold;
  margin-bottom: 0;
}

.modal-right h6 {
  font-size: 13px;
  line-height: 1.7em;
  color: rgba(138, 138, 138, 1);
  white-space: pre-wrap;
  font-family: Arial;
}

.modal-right p,
.modal-txt p {
  font-size: 12px;
  line-height: 1.7em;
  color: rgba(138, 138, 138, 1);
  font-family: Arial;
}

.linked-in_link {
  text-align: right;
  margin: 20px 0 0;
}

.linked-in_link i {
  font-size: 40px;
}

/* Expertise Section End */

/* Feature Section Start */

.feature-section {
  padding-bottom: 100px;
}

.feature-head h2 {
  font-family: "Times New Roman", Sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
  margin-bottom: 60px;
  text-transform: capitalize;
}

.feature-boxes {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 35px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.feature-boxes:last-child {
  margin-bottom: 0;
}

.feature-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-address {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 10px 0;
  width: 27%;
}

.feature-txt {
  width: 34%;
}

.feature-btn {
  width: 15%;
}

.feat-flex {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.feat-flex h5 {
  margin-bottom: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.feature-btn a:hover {
  box-shadow: 2px 5px 0 0 black;
}

.feature-txt h3 {
  font-family: "Times New Roman", Sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 55px;
}

.feat-flex i {
  color: var(--theme-color);
}

/* Feature Section End */

/* Testimonials Section Start */

section.testimonial-section {
  background-image: url(../images/testimonials-bg.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.testimonial-section::before {
  content: "";
  background-color: #000000;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.testi-head h2 {
  font-family: "Times New Roman", Sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
  width: 60%;
  margin: 0 auto 70px;
  position: relative;
  display: inline-block;
}

.testi-head h2::after {
  content: "";
  width: 120px;
  background-color: #000000;
  height: 3px;
  position: absolute;
  bottom: -30%;
  left: 42%;
}

.testi-head {
  text-align: center;
}

.testi-box {
  width: 60% !important;
  margin: 0 auto;
  text-align: center;
  display: block !important;
}

.testi-box h6 {
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5em;
}

.testi-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  margin-top: 20px;
}

.testi-wrap img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50px;
}

.testi-wrap p {
  color: #ffffff;
  font-family: "Times New Roman", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 0;
}

.testi-slider .slick-dots li button:before {
  background-color: #56575c;
  opacity: 1;
  height: 10px;
  width: 10px;
  content: "";
  border-radius: 50%;
}

.testi-slider .slick-dots li.slick-active button:before {
  background-color: #fff;
}

.testi-slider .slick-dots {
  bottom: -25%;
}

/* Testimonials Section End */

/* Sponsor Section Start */

.sponsor-section {
  padding: 40px 0 10px;
}

.sponsor-section .feature-head h2 {
  margin-bottom: 20px;
}

.sponsor-img {
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 160px !important;
  height: 160px;
  margin: 0 auto;
}

.sponsor-img img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

/* Sponsor Section End */

/* Job Section Start */

.job-section {
  background-image: url(../images/job-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
}

.job-section::before {
  content: "";
  background-color: #000000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.job-wrap {
  text-align: center;
}

.job-wrap h5 {
  font-family: "Times New Roman", Sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  color: #ffffff;
  font-size: 32px;
}

.job-wrap p {
  color: #ffffff;
  font-family: "Poppins";
  width: 77%;
  margin: 20px auto 20px;
}

.job-wrap a {
  text-transform: unset;
  font-size: 17px;
  font-weight: 500;
}

/* Job Section End */

/* Contact Section Start */

.contact-left h2 {
    font-family: "Times New Roman", Sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 39px;
    color: #000000;
    margin-bottom: 20px;
}

.contact-left input,
.contact-left textarea,
.contact-left select {
  background-color: #f0e3de;
  border-radius: 15px 15px 15px 15px;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #69727d;
  width: 100%;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  margin-bottom: 32px;
}

.contact-left input.inp-filer {
  background-color: transparent;
  border: 0;
}

.contact-left textarea {
  height: 123px;
}

.contact-left button {
  border: 0;
  font-size: 20px;
  text-transform: unset;
  font-weight: 600;
  padding: 14px 50px;
}

.contact-left button:hover {
  box-shadow: 2px 5px 0 0 black;
}

.keep {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 10px;
}

.keep input {
  width: 7%;
  margin-bottom: 0;
}

.keep p {
  margin-bottom: 0;
  font-size: 15px;
}

.login-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}

.login-signup a,
.login-signup button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 14px 30px;
  text-transform: uppercase;
  font-weight: 600;
}

.login-signup a:hover,
.login-signup button:hover {
  box-shadow: 2px 5px 0 0 black;
}

.contact-section .feature-head h2 {
  margin-bottom: 30px;
}

.contact-left form label {
  margin-bottom: 7px;
  font-weight: 400;
}

/* Contact Section End */

/* Blog Section Start */

.blog-section {
  padding-bottom: 50px;
}

.blog-section .feature-head h2 {
  margin-bottom: 40px;
}

.blog-box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: 0.2s all;
  border-radius: 20px 20px 0px 0px;
}

.blog-box img {
  height: 300px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px 20px 0px 0px;
  width: 100%;
  transition: 0.2s all;
}

.blog-box:hover img {
  opacity: 0.8;
}

.blog-box h3 {
  font-family: "Times New Roman", Sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: var(--theme-color);
}

.blog-box p {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-top: 20px;
}

.blog-wrap {
  background-image: url(../images/blog-wrap.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 15px 10px;
  height: 280px;
}

/* Blog Section End */

/* Newsletter Section Start */

.newsletter-section .job-wrap p {
  width: 52%;
  margin-bottom: 30px;
}

.newsletter-section .job-wrap form input {
  border-radius: 5px;
  font-size: 18px;
  min-height: 59px;
  padding: 7px 20px;
  background-color: #fff;
  border: 0;
  width: 50%;
  margin: 0 auto;
  display: inline-block;
}

.newsletter-section .job-wrap form button {
  border: 0;
  padding: 17px 25px;
  position: absolute;
  right: 23%;
  display: block;
  width: 10%;
  top: 0;
  font-size: 17px;
}

.newsletter-section .job-wrap form {
  position: relative;
}

/* Newsletter Section End */

/* Experience Section Start */

.experience-section {
  padding-bottom: 80px;
}

.experience-boxes {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  gap: 10px;
  justify-content: center;
}

section.experience-section .feature-head h2 {
  width: 53%;
  margin: 0 auto 60px;
  font-size: 41px;
}

.experience-box {
  border: 1px solid var(--theme-color);
  padding: 10px;
  width: 32.71%;
  text-align: center;
}

.experience-box img {
  border: 1px solid var(--theme-color);
  margin: 0px 10px 0px 0px;
  width: 227px;
  height: 227px;
}

.experience-box h4 {
  margin: 25px 0 5px;
  color: #14203b;
  font-family: "Sulphur Point", Sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.experience-box h6 {
  color: #14203b;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}

.experience-box a.linkedin-link {
  display: block;
  text-align: center;
}

.experience-box a i {
  font-size: 40px;
  color: var(--theme-color);
  margin-bottom: 20px;
}

.experience-box a.theme-btn {
  border-radius: unset;
  padding: 10px 30px;
  text-transform: capitalize;
}

.experience-box a.theme-btn:hover {
  box-shadow: 2px 5px 0 0 black;
}

/* Experience Section End */

/* Client List Section Start */

.brand-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand-box {
  width: 25%;
  text-align: center;
}

.brand-box img {
  width: 170px;
  height: 120px;
  object-fit: none;
}

.brand-section .feature-head h2 {
  margin-bottom: 30px;
}

/* Client List Section End */

/* Content Section Start */

.content-section {
  padding: 100px 0 50px;
}

.content-wrap h2 {
  font-family: "Times New Roman", Sans-serif;
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  color: #333333;
  margin-bottom: 20px;
}

.content-wrap h6 {
  font-family: "Times New Roman", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--theme-color-2);
}

.content-wrap h5 {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 18px;
}

.content-wrap h5 span {
  font-weight: 400;
}

.content-wrap ol {
  padding: 0;
  margin: 0;
}

.content-wrap ol li,
.content-wrap ul li {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 94%;
  font-weight: 400;
  margin-bottom: 3px;
}

.content-section-privacy ul {
  list-style: circle;
  padding-left: 20px;
  margin: 8px 0;
}

.text-wrapper p {
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.text-wrapper h4 {
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  font-size: 1.5rem;
  font-family: "Poppins";
  margin-bottom: 20px;
}

/* Content Section End */

/* Footer Start */

footer {
  background-image: url(../images/foot-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}

.col1 {
  width: 90%;
}

.col1 img {
  width: 50%;
  /* width: auto; */
  margin: 0 auto 20px 0;
  display: block;
}

.col1 p {
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
}

.col2 h4 {
  font-family: "Times New Roman", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.col2 ul {
  list-style: none;
}

.col2 ul li a {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  color: #fff;
  transition: 0.2s all;
}

.col2 ul li {
  margin-bottom: 10px;
}

.col2 ul li a:hover {
  color: var(--theme-color-2);
}

.col2 ul li {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.col2 ul li i {
  color: #fff;
  font-size: 19px;
}

.col2 ul li:nth-child(2) i {
  transform: rotate(90deg);
}

.foot-socials {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-top: 30px;
}

.foot-socials a {
  background-color: var(--theme-color-2);
  font-size: 20px;
  color: #fff;
  border-radius: 10%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}

.foot-socials a:hover {
  scale: 1.1;
  background-color: #fff;
}

.foot-socials a:hover i {
  color: var(--theme-color-2);
}

.bottom-bar p {
  text-align: center;
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

.bottom-bar {
  background-color: var(--theme-color-2);
  padding: 10px 0;
}

/* Footer End */

.onpageload-modal .modal-dialog {
  max-width: 400px;
  border-radius: 15px;
}

.onpageload-modal .modal-body {
  padding: 0 0 20px;
  border-radius: 0px;
}

.news-wrap {
  background-image: url(../images/modal-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 30px 20px;
  position: relative;
  z-index: 2;
  height: 220px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  margin-bottom: 0px;
  border-radius: 15px 15px 0 0;
}

.news-wrap::before {
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 15px 15px 0 0;
}

.news-wrap h5 {
  text-align: center;
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: -0.4px;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(211, 133, 40, 1);
  font-family: arial;
}

.news-wrap h3 {
  text-align: center;
  font-size: 34px;
  font-family: "Arial Black";
  line-height: 1.2em;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
}

.news-wrap p {
  text-align: center;
  font-size: 14px;
  font-family: "Roboto";
  line-height: 1.7em;
  color: rgba(208, 208, 208, 1);
  margin-bottom: 0;
}

.newsletter-wrap {
  padding: 20px 50px 30px;
}

.newsletter-wrap form label, .newsletter-wrap form input, .newsletter-wrap form button {
  width: 100%;
}

.newsletter-wrap form label {
  font-size: 12px;
  font-family: Roboto;
  color: rgba(68, 68, 68, 1);
  font-weight: bold;
  margin-bottom: 10px;
}

.newsletter-wrap form input {
  padding: 12px;
  background-color: rgba(255, 255, 255, 1);
  color: rgba(51, 51, 51, 1);
  font-size: 12px;
  border-width: 1px;
  border-color: rgba(221, 221, 221, 1);
  border-radius: 4px;
  font-family: Roboto;
  border-style: solid;
  margin-bottom: 15px;
}

.newsletter-wrap form button {
  width: 100%;
  border-radius: 4px;
  background-color: rgba(200, 120, 22, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  float: right;
  font-weight: bold;
  font-family: Roboto;
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  margin-top: 0px;
}

.onpageload-modal .modal-content {
  border-radius: 17px;
}

.kitchen-slide img {
    width: 100%;
    border-radius: 10px;
    height: 270px;
    object-fit: cover;
}

.kitchen-slide {
    padding: 0 10px;
}

.kitchen-section {
    padding-bottom: 50px;
}

.kitchen-slides button.slick-prev.slick-arrow::before, .kitchen-slides button.slick-next.slick-arrow::before {
    content: "\f060";
    font-family: 'FontAwesome';
    border-radius: 50px;
    color: #fff;
    opacity: 1;
    font-size: 13px;
}

.kitchen-slides button.slick-next.slick-arrow::before {
    content: "\f061";
}

.kitchen-slides button.slick-prev.slick-arrow, .kitchen-slides button.slick-next.slick-arrow {
    width: 30px;
    height: 30px;
    background-color: var(--theme-color-2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}