@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
* {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif !important;
  box-sizing: border-box;
}
.ar *  {
  font-family: "Cairo", sans-serif !important;
}
.highlited {
  color: var(--main-color);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
:root {
  --main-color: rgba(255, 115, 0, 1) ;
}

body {
  background-color: rgba(238, 238, 238, 0.4196078431);
}

header {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: rgba(217, 217, 217, 0.5019607843);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: clamp(0.625rem, 0.4868rem + 0.6316vw, 1rem) clamp(0.625rem, 0.3947rem + 1.0526vw, 1.25rem);
}
header .container > a {
  text-decoration: none;
  color: #000;
}
header .container > a h2 {
  font-size: clamp(1.125rem, 0.9868rem + 0.6316vw, 1.5rem);
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}
.ar header .container > a h2 {
  font-size: clamp(1.125rem, 0.9868rem + 0.6316vw, 1.5rem);
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: right;
}
header .container > *:not(.centered_logo) {
  z-index: 9;
}
header .container .centered_logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  max-height: 100%;
  padding: clamp(0.625rem, 0.4868rem + 0.6316vw, 1rem) 0;
  gap: 20px;
}
header .container .centered_logo > img {
  opacity: 0.3;
  max-height: 100%;
}
@media (max-width: 1199.98px) {
  header .container .centered_logo > img {
    max-width: 210px;
  }
}
@media (max-width: 992.98px) {
  header .container .centered_logo > img {
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  header .container .centered_logo > img {
    display: none;
  }
}
header .container .centered_logo .logo {
  border-radius: 50%;
  background-color: #f7f7f7;
  height: fit-content;
  width: fit-content;
  padding: 10px;
  position: relative;
}
header .container .centered_logo .logo img {
  width: clamp(5rem, 4.0789rem + 4.2105vw, 7.5rem);
  height: clamp(5rem, 4.0789rem + 4.2105vw, 7.5rem);
  box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(217, 217, 217, 0.5019607843);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  object-fit: contain;
}
header .container .centered_logo .logo .links {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
  bottom: 20px;
}
header .container .centered_logo .logo .links a {
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #D9D9D9;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  padding: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}
@media (max-width: 575px) {
  header .container .centered_logo .logo .links a {
    height: 30px;
    width: 30px;
  }
}
header .container .centered_logo .logo .links a:hover .hint {
  display: block !important;
}
header .container .centered_logo .logo .links a .hint {
  position: absolute;
  top: calc(100% + 20px);
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(128, 128, 128, 0.2392156863);
  color: #fff;
  border-radius: 6px;
  border: 1px solid #d5d3d3;
  color: #000;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  left: 50%;
  transform: translate(-50%);
  display: none;
}
header .container .centered_logo .logo .links a:last-child svg {
  transform: scale(0.9);
}
header .container .centered_logo .logo .links a svg {
  width: 100%;
  height: 100%;
  color: var(--main-color);
}
header .container .more {
  display: flex;
  gap: 15px;
  align-items: center;
}
header .container .more .button {
  padding: 10px;
  background: var(--main-color);
  border-radius: 10px;
  color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.3s ease-in;
}
header .container .more .button:hover {
  background-color: rgb(254, 129, 26);
}
header .container .more .button svg {
  width: 30px;
  height: 30px;
}
header .container .more .button img {
  width: 20px;
}
header .container .more a {
  display: flex;
}
header .container .more a img {
  max-width: 50px;
}
@media (max-width: 575.98px) {
  header .container .more a img {
    max-width: 30px;
  }
}
header .container .more .lang-slider {
  display: flex;
  border: 2px solid var(--main-color);
  border-radius: 10px;
}
header .container .more .lang-slider input {
  display: none;
}
header .container .more .lang-slider input:checked + label {
  border: 2px solid var(--main-color);
  border-radius: 10px;
  scale: 1.05;
  color: var(--main-color);
}
header .container .more .lang-slider label {
  padding: 10px 15px;
  display: flex;
  font-family: Outfit;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 40px;
}
.ar header .container .more .lang-slider label {
  padding: 10px 15px;
  display: flex;
  font-family: Outfit;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: right;
  justify-content: center;
  align-items: center;
  width: 40px;
}
header .container .more-mobile a {
  font-size: clamp(1.25rem, 0.9868rem + 0.6316vw, 1.5rem);
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--main-color);
  text-decoration: none;
  display: none;
}
.ar header .container .more-mobile a {
  font-size: clamp(1.25rem, 0.9868rem + 0.6316vw, 1.5rem);
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: right;
  color: var(--main-color);
  text-decoration: none;
  display: none;
}
@media (max-width: 575px) {
  header .container .more-mobile a {
    display: block;
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  margin-top: clamp(4.5rem, 3.5789rem + 4.2105vw, 7rem);
}
@media (max-width: 767px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
}
.hero .container .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .hero .container .text {
    gap: 1rem;
  }
}
.hero .container .text h2 {
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 3.875rem;
  color: #000;
  text-align: left;
  width: 100%;
}
.ar .hero .container .text h2 {
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 3.875rem;
  color: #000;
  text-align: right ;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .hero .container .text h2 {
    font-size: 31px;
    font-weight: 600;
    line-height: 54px;
  }
}
@media (max-width: 992.98px) {
  .hero .container .text h2 {
    font-size: 23px;
    font-weight: 600;
    line-height: 41px;
  }
}
@media (max-width: 767px) {
  .hero .container .text h2 {
    text-align: center;
  }
}
.hero .container .text .btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero .container .text .btns {
    width: 100%;
    justify-content: center;
  }
}
.hero .container .text .btns a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .container .text .btns a:hover img {
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  scale: 1.05;
}
.hero .container .text .btns a img {
  transition: all 0.3s ease-in;
  max-width: 170px;
}
@media (max-width: 992.98px) {
  .hero .container .text .btns a img {
    max-width: 130px;
  }
}
@media (max-width: 767px) {
  .hero .container .text .btns a img {
    max-width: 140px;
  }
}
.hero .container .img {
  width: 100%;
}
@media (max-width: 767px) {
  .hero .container .img {
    grid-row: 1;
    width: 80%;
    margin: auto;
  }
}
.hero .container .img img {
  width: 100%;
}

.slider, .slider-mobile {
  margin: 3rem 0;
}
@media (max-width: 992.98px) {
  .slider, .slider-mobile {
    margin: 2rem 0;
  }
}
@media (max-width: 575.98px) {
  .slider, .slider-mobile {
    margin: 0rem 0;
  }
}
.slider .container, .slider-mobile .container {
  position: relative;
}
.slider .container .mySwiper, .slider-mobile .container .mySwiper {
  padding: 11rem 1rem;
  margin: 0 3rem;
  position: static !important;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .slider .container .mySwiper, .slider-mobile .container .mySwiper {
    padding: 9rem 1rem;
    margin: 0 2rem;
  }
}
@media (max-width: 992.98px) {
  .slider .container .mySwiper, .slider-mobile .container .mySwiper {
    padding: 8rem 1rem;
    margin: 0 2rem;
  }
}
.slider .container .swiper-slide, .slider-mobile .container .swiper-slide {
  transform: scale(1.1);
  transition: all 0.4s ease-in;
}
.slider .container .swiper-slide img, .slider-mobile .container .swiper-slide img {
  width: 100%;
  border: 3px solid #FF7300;
  box-shadow: 0px 5px 2px 0px rgba(0, 0, 0, 0.5019607843);
  border-radius: 20px;
}
.slider .container .swiper-slide.secondary, .slider-mobile .container .swiper-slide.secondary {
  transform: scale(1.3);
  z-index: 9;
  transition: all 0.4s ease-in;
}
.slider .container .swiper-slide.secondary img, .slider-mobile .container .swiper-slide.secondary img {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5019607843);
}
@media (max-width: 1199.98px) {
  .slider .container .swiper-slide.secondary, .slider-mobile .container .swiper-slide.secondary {
    transform: scale(1.4);
  }
}
.slider .container .swiper-slide.main, .slider-mobile .container .swiper-slide.main {
  transform: scale(1.5);
  margin-right: 20px;
  z-index: 99;
  transition: all 0.3s ease-in;
}
.slider .container .swiper-slide.main img, .slider-mobile .container .swiper-slide.main img {
  box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1199.98px) {
  .slider .container .swiper-slide.main, .slider-mobile .container .swiper-slide.main {
    transform: scale(1.55);
  }
}

@media (max-width: 767.98px) {
  .slider {
    display: none;
  }
}

.slider-mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .slider-mobile {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .slider-mobile .swiper-slide {
    transform: scale(1.2) !important;
  }
  .slider-mobile .swiper-slide img {
    border-width: 2px !important;
    border-radius: 10px !important;
  }
  .slider-mobile .swiper-slide.main {
    transform: scale(2) !important;
  }
  .slider-mobile .swiper-slide.main img {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
  }
}

.vedio h2 {
  color: #000;
  font-size: clamp(1.4375rem, 1.2763rem + 0.7368vw, 1.875rem);
  font-weight: 600;
  line-height: clamp(1.25rem, 0.5592rem + 3.1579vw, 3.125rem);
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.vedio iframe {
  height: clamp(12.5rem, 5.5921rem + 31.5789vw, 31.25rem);
  width: 100%;
  border: 2px solid var(--main-color);
  border-radius: 20px;
}

.cumming_sonn h2 {
  color: #000;
  font-size: clamp(1.4375rem, 1.2763rem + 0.7368vw, 1.875rem);
  font-weight: 600;
  line-height: clamp(1.25rem, 0.5592rem + 3.1579vw, 3.125rem);
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 0.5rem;
}
.cumming_sonn p {
  color: #000;
  margin-bottom: 1rem;
}
.cumming_sonn img {
  width: 100%;
  max-width: 600px;
}

.swiper-button-next, .swiper-button-prev {
  background: var(--main-color);
  color: white !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  font-size: 10px !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 15px !important;
}

.join_us {
  margin-top: 5rem;
}
.join_us h2 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.join_us .container {
  gap: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .join_us .container {
    gap: 1rem;
  }
}
.join_us .container > div {
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
}
.join_us .container > div button {
  border: 5px solid #FF7300;
  border-radius: 20px;
  font-family: Outfit;
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 0em;
  text-align: center;
  padding: 7px 1rem;
  background-color: transparent;
  border: 3px solid var(var(--main-color));
  color: #FF7300;
}
@media (max-width: 575.98px) {
  .join_us .container > div button {
    border: 3px solid #FF7300;
    border-radius: 10px;
    font-family: Outfit;
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: center;
    padding: 5px 1rem;
    background-color: transparent;
    border: 3px solid var(var(--main-color));
    color: #FF7300;
  }
}
@media (max-width: 575.98px) {
  .join_us .container > div img {
    width: 60px;
  }
}

section.social {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section.social h1 {
  color: #000;
  font-size: clamp(1.4375rem, 1.2763rem + 0.7368vw, 1.875rem);
  font-weight: 600;
  line-height: clamp(1.25rem, 0.5592rem + 3.1579vw, 3.125rem);
}
section.social .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 575.98px) {
  section.social .links {
    gap: 1rem;
  }
}
section.social .links svg {
  stroke: var(--main-color);
  width: 55px;
  height: 60px;
}
@media (max-width: 575.98px) {
  section.social .links svg {
    width: 45px;
    height: 60px;
  }
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #371712;
  margin-top: 5rem;
  overflow: hidden;
  max-height: 320px;
}
@media (max-width: 575.98px) {
  footer {
    padding: 0;
    grid-template-columns: 1fr;
    max-height: fit-content;
  }
}
footer .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 330px;
  width: 100%;
  gap: 20px;
  font-size: 22px;
}
footer .content a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 19px;
}
footer .content svg {
  stroke: var(--main-color);
}
footer .content .btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  footer .content .btns {
    width: 100%;
    justify-content: center;
  }
}
footer .content .btns a {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .content .btns a:hover img {
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  scale: 1.05;
}
footer .content .btns a img {
  transition: all 0.3s ease-in;
  max-width: 170px;
}
@media (max-width: 992.98px) {
  footer .content .btns a img {
    max-width: 130px;
  }
}
@media (max-width: 767px) {
  footer .content .btns a img {
    max-width: 140px;
  }
}
footer .img {
  position: relative;
  height: 100%;
  width: 100%;
}
@media (max-width: 575.98px) {
  footer .img {
    display: none;
  }
}
footer .img p {
  position: absolute;
  top: 200px;
  z-index: 268;
  color: white;
  right: 30px;
  font-size: 30px;
}
footer .img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: left;
}

.mobile-footer-paragraoh {
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-footer-paragraoh {
    display: block;
  }
}

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: auto;
  top: 50%;
  transform: translatey(-50%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  z-index: 9999999999999;
  position: relative;
  max-width: 97%;
}

.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.ar .custom-model-wrap {
  text-align: right;
}

.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}

.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.43);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
  z-index: 88;
  opacity: 100;
  display: flex;
}

.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

@media screen and (min-width: 800px) {
  .custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: 0px;
    height: 100%;
  }
}
@media screen and (max-width: 799px) {
  .custom-model-inner {
    margin-top: 45px;
  }
}
@media (max-width: 575.98px) {
  .hero .container .text h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
  }
}
.hide-content {
  background-color: rgba(0, 0, 0, 0.3882352941);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0%;
  left: 0%;
  z-index: 999;
}

.more-pop-up {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 16px 40px;
  background: white;
  width: 100%;
  max-width: 600px;
  max-height: 100vh;
  overflow: auto;
  z-index: 9999;
  border-radius: 16px;
}
.more-pop-up > svg {
  position: absolute;
  top: 16px;
  right: 16px;
}
.more-pop-up .content {
  font-size: 16px;
  font-weight: 500;
  line-height: 23.28px;
  text-align: center;
}
@media (max-width: 575.98px) {
  .more-pop-up .content {
    font-size: 14px;
    font-weight: 500;
    line-height: 22.28px;
    text-align: center;
  }
}
.more-pop-up .content-2 {
  font-size: 25px;
  font-weight: 500;
  color: #ff6f01;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .more-pop-up .content-2 {
    font-size: 20px;
  }
}
.more-pop-up .message {
  width: 60%;
}
@media (max-width: 575.98px) {
  .more-pop-up .message {
    width: 70%;
  }
}
.more-pop-up .popup-img {
  width: 100%;
  max-width: 460px;
}
.more-pop-up .btns {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.more-pop-up .btns img {
  width: 150px;
}

/*# sourceMappingURL=main.css.map */


/* Reservation Floating Button */
.reservation-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--main-color);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 115, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.reservation-btn:hover {
  background: #e66500;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 115, 0, 0.5);
}

.reservation-btn svg {
  width: 24px;
  height: 24px;
}

.ar .reservation-btn {
  right: auto;
  left: 30px;
}

@media (max-width: 575.98px) {
  .reservation-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .reservation-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .ar .reservation-btn {
    right: auto;
    left: 20px;
  }
}


/* Reservation Link in Join Us Section */
.join_us .container .reservation-link {
  display: contents;
}

.join_us .container .reservation-link img {
  width: auto;
  height: auto;
  max-width: 100px;
}

@media (max-width: 575.98px) {
  .join_us .container .reservation-link img {
    width: 60px;
  }
}


/* Hover effect for Join Us buttons */
.join_us .container > div button {
  transition: all 0.3s ease;
  cursor: pointer;
}

.join_us .container > div button:hover {
  background-color: #FF7300;
  color: #fff;
}
