@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&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");

/***** General CSS *****/

:root {
  --ct1: #ff8400;
  --wt: #fff;
  --bk: #000;
  --mbk: #6b7280;
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 50px 0;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 40px;
  border-radius: 100px;
  overflow: hidden;
  background-color: var(--ct1);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  background-color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--wt);
  font-weight: 500;
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.theme2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 40px;
  border-radius: 100px;
  overflow: hidden;
  background-color: var(--bk);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  background-color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--wt);
  font-weight: 500;
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
  color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: 75px;
  line-height: 80px;
  color: var(--wt);
  font-weight: 500;
  margin: 0;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: var(--bk);
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: var(--bk);
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  line-height: 25px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

p {
  color: var(--bk);
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  opacity: 0.7;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*Header Css Starts */

header {
  padding: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
  gap: 20px;
}

.topSec {
  padding: 20px 80px;
  background-color: var(--ct1);
  width: 100%;
}

.top-bar-left .top-bar-link {
  display: flex;
  align-items: center;
  justify-content: start;
}

.top-bar-right .top-bar-link {
  display: flex;
  align-items: center;
  justify-content: end;
}

.top-bar-link a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-link a p,
.top-bar-link a i {
  position: relative;
  color: var(--wt);
  opacity: 1;
  font-size: 17px;
  line-height: 25px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.top-bar-link a p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid var(--wt);
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.top-bar-link a:hover p::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menuSec {
  padding: 0 80px;
  width: 100%;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 25px;
  font-family: "Poppins";
  color: var(--bk);
  font-weight: 400;
  transition: ease-in;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li a:hover {
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 0;
  background-color: var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  height: 100%;
  transition: ease-out;
  transition-delay: 0.5s;
  transition-duration: 0.5s;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0;
  position: absolute;
  z-index: 1000;
  background-color: var(--ct1);
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 !important;
  width: 100%;
  padding: 0 20px !important;
  /* border-bottom: 1px solid #ffffff; */
}

.menu-box li > ul > li > a {
  border-bottom: 1px solid #ffffff;
}

.menu-box li > ul > li:last-child > a {
  border: none;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  width: 100%;
  padding: 0 !important;
}

.menu-box li ul li a:hover {
  background-color: var(--bk);
  color: var(--wt) !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

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

/*Header Css Ends */

/*Banner Sec Css Starts */

section.banner-sec {
  height: 100vh;
  background-image: url("../images/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

section.banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #17273ac9;
}

section.banner-sec .container,
section.banner-sec .row {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 9;
}

.banner-txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 50px;
}

.banner-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-txt p {
  color: var(--wt);
  opacity: 1;
}

.banner-btn-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.banner-brand-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.banner-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.banner-brand a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 150px;
}

.banner-brand img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner-img-wrap {
  position: relative;
}

.banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 535px;
  width: 90%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 0 20px 0 #00000045;
}

.banner-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
}

.banner-img-con-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 20px;
  background-color: var(--wt);
  border-radius: 15px;
  overflow: hidden;
  gap: 10px;
}

.banner-img-con-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  padding: 5px;
}

.banner-img-con-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner1 {
  top: 30%;
  left: 0;
}

.banner2 {
  bottom: 10%;
  left: 15%;
}

.banner3 {
  bottom: 18%;
  right: 0;
}

.banner-img-con-txt h6 {
  font-weight: 600;
}

/*Banner Sec Css Ends */

/*Schedule Sec Css Starts */

section.schedule-sec {
  padding: 40px 0;
  background-color: #f3f4f5;
}

.schedule-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100px;
}

.schedule-card-icon {
  position: relative;
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-card-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background-image: url("../images/schedule-border1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule-card-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 9;
}

.schedule-card-icon a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: var(--ct1);
  font-size: 25px;
}

.schedule-card-txt {
  width: 40%;
}

.schedule-card-txt h6 {
  font-size: 16px;
  line-height: 20px;
  font-family: "Montserrat";
  font-weight: 600;
}

.schedule-card-txt a p {
  font-size: 22px;
  line-height: 30px;
  font-family: "Oswald";
  opacity: 1;
  font-weight: 600;
  font-style: italic;
}

/*Schedule Sec Css Ends */

/*Services Sec Css Starts */

.services-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 20px;
  border-radius: 30px;
  background-color: var(--wt);
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 0 20px 0 #00000029;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover {
  background-color: var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.services-card-heading a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 100%;
  background-color: var(--ct1);
  border-radius: 10px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover .services-card-heading a {
  background-color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-heading a h6 {
  font-size: 25px;
  line-height: 1;
  color: var(--wt);
  text-transform: capitalize;
}

.services-card-heading p {
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover .services-card-heading p {
  color: var(--wt);
  opacity: 1;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.services-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.services-card-img a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*Services Sec Css Ends */

/* Info Sec Css Starts */

section.info-sec {
  position: relative;
}

section.info-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 73%;
  background-color: #f3f4f5;
}

section.info-sec .container {
  position: relative;
  z-index: 999;
}

.info-form {
  padding: 50px 50px 50px 50px;
  margin: 0 auto;
  width: 80%;
  background-color: var(--wt);
  border-radius: 30px;
  overflow: hidden;
}

.info-input {
  width: 100%;
  height: 54px;
  border-radius: 12px;
  border: 1px solid #00000036;
  background: #fff;
  padding: 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--bk);
  outline: none;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.25s ease;
}

.info-input::placeholder {
  color: #9aa0a6;
}

.info-input:focus {
  border-color: #d7dbe0;
  box-shadow: 0 10px 18px -14px rgba(0, 0, 0, 0.25);
}

.info-textarea {
  height: auto;
  padding: 20px;
  resize: none;
  border-radius: 14px;
}

.info-select-wrap {
  position: relative;
}

.info-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px; /* space for icon */
  cursor: pointer;
}

.info-select-wrap i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #9aa0a6;
  pointer-events: none;
}

.info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.info-btn .theme1 {
  border: none;
  cursor: pointer;
  padding: 0 52px;
  border-radius: 100px;
}

/* Info Sec Css Ends */

/* About Sec Css Starts */

section.about-sec {
  background-color: var(--wt);
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  width: 100%;
  border-radius: 35px;
  overflow: hidden;
  background: #f3f4f5;
  border: 10px solid #fff;
}

.about-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 18px;
  padding-left: 15px;
}

.about-feature-main {
  margin-top: 10px;
  width: 100%;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 6px;
  background: rgba(255, 132, 0, 0.12); /* uses your theme color feel */
  flex: 0 0 28px;
  margin-top: 2px;
}

.about-feature-icon i {
  color: var(--ct1);
  font-size: 14px;
}

.about-feature-txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-feature-txt h6 {
  font-family: "Montserrat";
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  margin: 0;
}

/* About Sec Css Ends */

/* Choose Sec Css Starts */

section.choose-sec {
  position: relative;
  background-color: #f3f4f5;
}

section.choose-sec .container {
  position: relative;
  z-index: 2;
}

.choose-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 18px;
  width: 90%;
}

.choose-txt p {
  opacity: 1;
}

.choose-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 540px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 #0000001f;
  border: 10px solid #fff;
}

.choose-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Choose Sec Css Ends */

/* Current Specials Sec Css Starts */

section.specials-sec {
  background: var(--wt);
}

.special-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 85%;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f4f5;
  box-shadow: 0 0 20px 0 #0000001a;
  transition: 0.25s ease;
}

.special-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.special-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 132, 0, 0.92);
  color: var(--wt);
  font-family: "Oswald";
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  text-align: center;
  padding: 0 15px;
  text-transform: capitalize;
}

.special-card:hover {
  transform: translateY(-3px);
}

.special-card:hover img {
  transform: scale(1.03);
}

/* Current Specials Sec Css Ends */

/* Blog Sec Css Starts */

section.blog-sec {
  background: var(--wt);
}

.blog-card {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.blog-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #f3f4f5;
  box-shadow: 0 0 25px 0 #00000014;
  border: 10px solid var(--wt);
}

.blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.blog-img:hover img {
  transform: scale(1.03);
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--mbk);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.blog-meta-item i {
  color: var(--ct1);
  font-size: 14px;
}

.blog-txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-txt a h3 {
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  line-height: 35px;
  color: var(--bk);
  font-weight: 600;
  text-transform: capitalize;
}

/* Blog Sec Css Ends */

/* Area Sec Css Starts */

section.area-sec {
  padding: 0 0 80px 0;
}

section.area-sec .container-fluid {
  width: 90%;
  margin: 0 0 0 auto;
}

.area-heading {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 0 20px 0;
}

.area-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  background-color: #f3f4f5;
  padding: 40px;
  border-radius: 30px;
  overflow: hidden;
  border: 10px solid #fff;
}

/* Area Sec Css Ends */

/* How It Work Start  */

.play-card-warp {
  text-align: center;
}

.steps {
  width: 140px;
  height: 140px;
  background: #202020;
  border-radius: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin: 0px auto;
  outline: 1px dashed #202020;
  outline-offset: 5px;
}

.steps h2.m-0 {
  font-style: normal;
  color: #fff;
}

.steps p.subhead {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  opacity: 1;
}

.step-txt {
  margin-top: 22px;
}

.step-txt h3 {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 10px;
}

.step-txt p {
  font-weight: 500;
  line-height: 22px;
  opacity: 1;
}

.play-card-warp.bg-yellow {
  padding-top: 120px;
}

.play-card-warp.bg-yellow .steps {
  background: #ff8400;
  outline: 1px dashed #ff8400;
}

.play-card-warp.step1 {
  padding-top: 40px;
}

img.how-layer-img {
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
}

.play-wrap {
  margin-top: 30px;
}

/* How It Work End */

/* Testimonial start  */

section.happy {
  position: relative;
  padding: 80px 0;
  background: #f3f4f5;
}

ul.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 0px;
  gap: 4px;
}

ul.rating span i {
  color: #ff8400;
  font-size: 12px;
}

section.happy .box {
  box-sizing: border-box;
  border-radius: 24px;
  position: relative;
  padding: 50px 20px 40px;
  text-align: center;
  transition: 0.4s;
  background: transparent;
}

section.happy .item {
  opacity: 1;
  transform: scale(1.07);
  padding: 20px 0;
}

.client-box .quotess {
  margin-left: 20px;
  position: relative;
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #ff8400;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

section.happy .box .quote-i i {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #ff8400;
  color: #fff;
  font-size: 20px;
  outline: 13px solid #f7d2ab;
}

section.happy .box .quote-i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

section.happy .box .title {
  margin-bottom: 16px;
}

section.happy .box .title h5 {
  margin: 0px;
  color: #ff8400;
  font-family: "Montserrat";
}

section.happy .box .title h6 {
  font-size: 15px;
  opacity: 60%;
  font-weight: 400;
}

.item.slick-slide.slick-current.slick-active.slick-center .box {
  border: 1px solid #ff8400;
  background: #fafbfb;
}

/* PREV & NEXT BTN START  */
section.happy .slick-prev:before {
  content: "\f104";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  height: 50px;
  width: 50px;
  color: #ff8400;
  background-color: #fff;
  opacity: 3 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  border: 2px solid #ff8400;
  transition: 0.2s;
}

section.happy .slick-next:before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  height: 50px;
  width: 50px;
  color: #ff8400;
  background-color: #fff;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  content: "\f105";
  border: 2px solid #ff8400;
  transition: 0.4s;
}

section.happy button.slick-prev.slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 32%;
  z-index: 12;
  top: 51%;
}

section.happy button.slick-prev.slick-arrow:hover:before {
  background: #ff8400;
  color: #fff;
}

section.happy button.slick-next.slick-arrow:hover:before {
  background: #ff8400;
  color: #fff;
}

section.happy button.slick-next.slick-arrow {
  position: absolute;
  right: 34%;
  z-index: 1;
  top: 45%;
}

section.happy .box p {
  font-weight: 500;
  font-size: 11px;
  line-height: 23px;
}

/* Footer Css Starts */

a.top-navigator {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 89px;
  font-size: 18px;
  color: white;
  font-family: "FontAwesome";
  background: #ff8400;
}

a.top-navigator:hover {
  background: #000;
}

a.top-navigator i {
  transition: 0.3s all ease-in-out;
}

footer {
  padding: 60px 0 0 0;
  position: relative;
  z-index: 0;
  background: #f1f1f1;
}

footer:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  right: 100px;
  background-color: #00000021;
}

.foot-bottom {
  background: #101010;
  margin-top: 60px;
  padding: 24px 0px;
}

footer h5 {
  position: relative;
  font-size: 24px;
  color: #000000;
  padding-left: 18px;
  text-transform: capitalize;
  line-height: 40px;
  margin-bottom: 20px;
  font-family: "Oswald";
}

footer h5:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 80%;
  top: 6px;
  left: 0;
  background: #ff8400;
}

footer p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  opacity: 1;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: transparent;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 10px;
  box-shadow: 0 5px 15px 0px rgb(0 0 0 / 60%);
  transform: translatey(0px);
  transition: 0.3s all ease-in-out;
  overflow: hidden;
  opacity: 50%;
}

.social-links a:hover {
  background: #ff8400;
  color: #fff;
  border-color: transparent;
  opacity: 1;
}

.quick-links a {
  font-size: 14px;
  color: #000;
  line-height: 30px;
  font-weight: 500;
}

.quick-links a:hover {
  color: #ff8400;
  text-decoration: underline;
}

.foot-number {
  font-size: 30px;
  font-family: "Roboto";
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

a.req-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 20px;
  border: 1px solid white;
  padding: 20px 40px;
  font-size: 16px;
  font-family: "Roboto";
  color: white;
  transition: 0.3s all ease-in-out;
  margin-top: 20px;
}

.foot-bottom p {
  text-align: end;
  color: #fff;
}

footer .visa {
  position: relative;
  display: flex;
  gap: 10px;
  width: 30%;
}

footer ul.quick-links {
  margin-left: 4px;
}

footer ul.ft-connect {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 38px 0px 0px;
}

footer ul.ft-connect li a {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer ul.ft-connect li a span {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

footer ul.ft-connect li a img {
  width: 18px;
}

footer ul.ft-connect li a:hover span {
  color: #ff8400;
  opacity: 1;
}

footer .visa img {
  width: 100%;
  object-fit: fill;
  height: 45px;
  flex-shrink: 0;
}

.ftlinks2 {
  padding-left: 50px;
}

.footer-about p {
  width: 85%;
  margin: 0 0 020px 0;
}

/* Footer Css Ends */

/* Quote Sec Css Starts */

section.quote-sec {
  background-color: var(--ct1);
}

.quote-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.quote-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  margin: 0 auto;
}

.quote-txt * {
  color: var(--wt);
  opacity: 1;
}

/* Quote Sec Css Ends */

/* Float Button Sec Css Ends */

.floatbutton.active {
  right: 0;
  z-index: 9;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.floatbutton {
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: fixed;
  right: -370px;
  top: 18%;
  font-size: 0;
  width: 420px;
  z-index: 999;
}
.floatbutton .clickbutton {
  width: 50px;
  z-index: 999;
  height: 200px;
  cursor: pointer;
  box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, 0.09);
  border-radius: 3px 0px 0px 3px;
  border-radius: 30px 0px 0px 30px;
  display: inline-block;
  padding-top: 0;
  vertical-align: top;
  margin-top: 60px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  background-color: var(--ct1);
  box-shadow: 0px 0px 40px #00000026;
  -webkit-box-shadow: 0px 0px 40px #00000026;
  -ms-box-shadow: 0px 0px 40px #00000026;
  -o-box-shadow: 0px 0px 40px #00000026;
}
.floatbutton .clickbutton .crossplus:before {
  content: "";
  display: none;
  position: absolute;
  width: 20px;
  height: 2px;
  right: 0;
  background: #fbb334;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.floatbutton .clickbutton .crossplus:after {
  content: "";
  display: none;
  position: absolute;
  width: 2px;
  height: 20px;
  right: 0;
  background: #fab334;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.floatbutton .clickbutton .crossplus {
  position: absolute;
  display: block;
  transform: rotate(-90deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  left: -60px;
  white-space: pre;
  bottom: 87px;
}
.floatbutton .clickbutton .crossplus.rotate {
  transform: rotate(90deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.floatbutton .clickbutton .crossplus i {
  font-size: 18px;
  color: #ffffff;
  margin: 17px 0 0 15px;
}
.banner-form {
  background: #fff;
  padding: 30px;
  position: relative;
  z-index: 99999 !important;
  border-radius: 5px;
  margin: 0;
  width: 370px;
  display: inline-block;
  box-shadow: 0px 0px 30px #0000001f;
}
.ban-form input {
  width: 100%;
  margin: 0 0 0 0;
  border: 1px solid #e5e5e5;
  background: white;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  height: 50px;
  font-weight: 400;
  outline: none !important;
  margin: 0 0 15px 0;
}
.banner-form .intl-tel-input {
  width: 100%;
}
.banner-form h3 {
  color: #141315;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 700;
}
.banner-form h3 strong {
  font:
    24px/24px "Poppins",
    sans-serif;
  font-weight: 600;
}
.ban-form input[type="submit"] {
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  text-align: center;
  padding: 10px 15px;
  margin: 20px 0 0;
  border: transparent;
  cursor: pointer;
  background-color: var(--ct1);
}
.ban-form textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: white;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 400;
  height: 120px;
  outline: none !important;
  margin: 15px 0 0px 0;
  resize: none;
}
.btns_wrap {
  position: fixed;
  right: -6px;
}
.btns_wrap a:hover {
  text-decoration: none !important;
  right: 0px;
}
.btns_wrap .call_wrap {
  width: 280px;
  background-color: var(--ct1);
  position: absolute;
  right: -225px;
  top: 63px;
  border-radius: 3px 0px 0px 3px;
  overflow: hidden;
  box-shadow: 0px 0px 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9999;
  border-radius: 30px 0px 0px 30px;
}
.btns_wrap .call_wrap span {
  color: #fff;
  font-size: 20px;
  vertical-align: middle;
  padding: 15px 20px 15px 15px;
}
.btns_wrap .chat_wrap {
  display: block;
  position: absolute;
  right: -225px;
  width: 280px;
  background-color: var(--ct1);
  top: 0;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0px 0px 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 30px 0px 0px 30px;
  z-index: 9999;
}
.btns_wrap .chat_wrap span.icoo,
.btns_wrap .call_wrap span.icoo {
  color: #fff;
  font-size: 18px;
  padding: 15px 20px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 10px 0px 0px 10px;
}
.btns_wrap .chat_wrap span {
  color: #fff;
  font-size: 15px;
  vertical-align: middle;
  padding: 15px 30px 15px 15px;
}
.ban-form .fldset.inpchecbx label {
  display: inline-block;
  margin: 0;
  line-height: 1.4;
  color: #676767;
  font-size: 13px;
}
.ban-form .fldset.inpchecbx input {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
}

/* Float Button Sec Css Ends */
