/*

Lava Landing Page

https://templatemo.com/tm-540-lava-landing-page

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. welcome
06. features
07. testimonials
08. contact
09. footer
10. preloader

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

::selection {
  background: #f1556a;
  color: #fff;
}

::-moz-selection {
  background: #f1556a;
  color: #fff;
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  background-color: #fff;
  height: 100px !important;
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e !important;
}

.background-header .main-nav .nav li:hover a {
  color: #fba70b !important;
}

.background-header .nav li a.active {
  color: #fba70b !important;
}

.header-area {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 18rem;
}

.header-area .main-nav .nav {
  float: left;
  margin-top: 27px;
  margin-left: 15%;
  margin-right: 0px;
  background-color: #fff;
  padding: 0px 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #7a7a7a;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a {
  color: #fba70b;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 35px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #7a7a7a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transform: translateY(-2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s,
    z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  display: block;
  background: #fff;
  color: #7a7a7a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}

.header-area .main-nav .nav li.submenu ul li a:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 40px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #fba70b;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #fba70b !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area.header-sticky .nav {
  margin-top: 20px !important;
}

.header-area.header-sticky .nav li a.active {
  color: #fba70b;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .logo {
    text-align: center;
    float: none !important;
  }

  .header-area {
    background-color: #f7f7f7;
    height: 100px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
    width: 100%;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    margin-top: 0px !important;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #fba70b !important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3b566e;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* ***** Banner Area Start ***** */

/* .ocean { 
  width:100%;
  position:absolute;
  bottom:0;
  left:0;
}


.wave {
  background: url(../images/banner-img/banner-wave.svg) repeat-x; 
  position: absolute;
  bottom:0;
  left:0;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {
  0%, 100% {
    transform: translate3d(0,-25px,0);
  }
  50% {
    transform: translate3d(0,5px,0);
  }
} */

#banner-section {
  background-image: linear-gradient(to right, #f2b64a54, #e82533);
  height: 100vh;
  width: 100%;
  background-position: top right;
  background-size: auto;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.banner-wave {
  position: absolute;
  bottom: -10px;
  right: 0;
  left: 0;
  overflow: hidden; /* Ensure the wave stays within the banner */
}

.banner-wave img {
  width: 250%; /* Make the image wider than the screen for continuous movement */
  animation: wave 10s infinite linear;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      -50%
    ); /* Move only half the image's width for smoother looping */
  }
}
.banner-phone {
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-phone img {
  width: 100%;
}

.banner-section .content {
  margin-top: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.banner-section .content h1 {
  font-size: 50px;
  font-weight: 700;
}
.banner-section .content p {
  font-size: 27px;
  line-height: 32px;
  color: #464545;
}
.google-play-button {
  background-color: #000;
  border: none;
  outline: none;
  display: inline-flex;
  border-radius: 10px;
  padding: 0.2rem 0rem;
  align-items: center;
  cursor: pointer;
  width: 220px;
  display: flex;
  justify-content: center;
}
.google-play-button img {
  width: 40px;
  /* height: 40px; */
}

.google-play-button p {
  color: #fff !important;
  font-size: 16px !important;
  margin-left: 10px;
}
.google-play-button p span {
  font-size: 24px;
}

@media(max-width:600px){
  
  #banner-section .app-link-btn{
    flex-direction: column;
  }
 
}

@media (max-width: 768px) {
  #banner-section {
    height: 70vh;
    
  }
  #banner-section .content{
    display: flex;
    gap: 20px;
    padding: 10px;
    align-items: center;
  }
  
.banner-wave{
  display: none;
}
  .banner-section .content {
    gap: 20px;
    text-align: center;
  }
  .banner-section .content h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
  }

  .banner-section .content p {
    font-size: 14px;
    line-height: 20px;
    color: #464545;
  }
  .banner-phone {
    right: -100px;
    display: none;
  }


  .google-play-button {
    margin-top: 10px;
    width: 140px;

  }
  .google-play-button p {
    color: #fff !important;
    font-size: 8px !important;
  }
  .google-play-button p span {
    font-size: 14px;
  }
  .google-play-button img {
    width: 30px;
  }
  .logo {
    max-width: 16rem !important;
    margin-left: 0px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  #banner-section {
    height: 100vh;
  }
  .banner-phone {
    right: 0px;
  }
  .banner-phone img {
    width: 600px;
  }
  .banner-section .content {
    margin-top: 30%;
  }
  .banner-wave {
    bottom: -100px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  #banner-section {
    height: 90vh;
  }
  .banner-section .content {
    padding-right: 0px;
    gap: 20px;
  }
  .banner-section .content h1 {
    font-size: 45px;
    font-weight: 700;
  }

  .banner-section .content p {
    font-size: 16px;
    line-height: 26px;
  }
  .banner-phone {
    right: -20px;
  }
  .banner-phone img {
    width: 600px;
  }

  .google-play-button {
    width: 170px;
    margin-top: 70px;
  }
  .google-play-button p {
    color: #fff !important;
    font-size: 12px !important;
  }
  .google-play-button p span {
    font-size: 16px;
  }
  .google-play-button img {
    width: 35px;
  }
  .logo {
    max-width: 16rem !important;
    margin-left: 0px !important;
  }
}
/* ***** Banner Area End ***** */

/* How EasyMeet Works Area Start */

#easyMeet-works {
  margin: 3rem 0rem;
}

#easyMeet-works .row .last-col {
  flex: 1;
  margin-top: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}
.section-title h2 {
  font-size: 44px;
  font-weight: 700;
  color: #000000;
}

.section-title p {
  font-size: 14px;
  font-weight: 400;
  color: #464545;
  margin-top: 23px;
}

.works-container {
  background-color: #ffeeef;
  border-radius: 10px;
  padding: 2rem 1rem;
}

.works-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.works-title .fa {
  color: #e82533;
  font-size: 26px;
}
.works-title h3 {
  font-size: 22px;
  font-weight: 500;
}
.works-description {
  font-size: 20px;
  color: #464545;
  font-weight: 300;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 26px;
  }
  .section-title p {
    font-size: 12px;
    margin-top: 20px;
    padding: 0px 20px;
  }

  .works-container {
    padding: 2rem 0rem;
    margin-bottom: 2rem;
  }

  .works-title {
    gap: 15px;
    margin-bottom: 10px;
    justify-content: center;
  }
  .works-title h3 {
    font-size: 16px;
  }
  .works-description {
    font-size: 12px;

    text-align: center;
    padding: 0rem 1rem;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .works-title .fa {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (max-width: 1400px) {
  .section-title h2 {
    font-size: 30px;
  }
  .section-title p {
    font-size: 14px;
    margin-top: 20px;
    padding: 0px 20px;
  }

  .works-container {
    padding: 2rem 0rem;
    margin-bottom: 2rem;
  }

  .works-title {
    gap: 15px;
    margin-bottom: 10px;
    justify-content: center;
  }
  .works-title h3 {
    font-size: 22px;
  }
  .works-description {
    font-size: 14px;
    font-weight: 400;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .works-title .fa {
    font-size: 22px;
  }
}

/* How EasyMeet Works Area End */

/* safety-section Area Start */

#safety-section {
  margin: 8rem 0rem 5rem;
}

#safety-section img {
  width: 100%;
}

.safety-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

#safety-section .safety-content img {
  width: 400px;
}
#safety-section .safety-content p {
  margin-top: 3rem;
  padding: 0rem 2rem;
  line-height: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  #safety-section {
    margin: 2rem 0rem 1rem;
  }
  .row {
    flex-direction: column-reverse;
  }

  #safety-section .safety-content img {
    width: 300px;
    margin: 1rem 0rem;
  }

  #safety-section img {
    width: 100%;
  }
  #safety-section .safety-content p {
    margin-top: 1rem;
    padding: 0rem 0.5rem;
    line-height: 26px;
    text-align: center;
  }
  #safety-section .safety-content {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1400px) {
  #safety-section {
    margin: 2rem 0rem 1rem;
  }

  #safety-section .safety-content img {
    width: 300px;
    margin: 1rem 0rem;
  }

  #safety-section img {
    width: 100%;
  }
  #safety-section .safety-content p {
    margin-top: 1rem;
    padding: 0rem 1rem;
    line-height: 30px;
    text-align: left;
  }
  #safety-section .safety-content h1 {
    font-size: 30px;
  }
}
/* safety-section Area End */

/* upcoming-events-section Area Start */

#upcoming-events-section {
  margin: 10rem 0rem 5rem;
}

.swiper {
  width: 100% !important;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.swiper-slide .card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
  border: none !important;
  outline: none;
  margin: 20px;
  cursor: pointer;
  overflow: hidden;
  height: 500px;
}
.swiper-slide .card img {
  border-radius: 20px;
  padding: 10px;
}
.swiper-slide .card .card-body h3 {
  font-size: 24px;
}
.swiper-slide .card .card-body p {
  font-size: 13px;
  margin: 15px 0px;
}

.icon {
  background-color: #e82533;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
}

.details-container .details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.icon i {
  color: #fff;
  font-size: 16px;
}

.details-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  #upcoming-events-section {
    margin: 5rem 0rem 5rem;
  }

  .swiper-slide .card .card-body h3 {
    font-size: 20px;
  }
  .swiper-slide .card .card-body p {
    font-size: 12px;
    margin: 10px 0px;
  }

  .icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    padding: 1px;
  }
  .details-container .details {
    gap: 5px;
    margin-right: 15px;
  }
  .icon i {
    font-size: 10px;
  }
  .swiper-slide .card {
    height: 450px;
  }
}

@media (min-width: 768px) and (max-width: 1400px) {
  #upcoming-events-section {
    margin: 3rem 0rem 3rem;
  }

  .swiper-slide .card .card-body h3 {
    font-size: 20px;
  }
  .swiper-slide .card .card-body p {
    font-size: 12px;
    margin: 5px 0px;
  }

  .icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    padding: 1px;
  }
  .details-container .details {
    gap: 5px;
    margin-right: 15px;
  }
  .icon i {
    font-size: 10px;
  }
  .details-container {
    margin-top: 20px;
  }
  .swiper-slide .card {
    height: 450px;
  }
}

/* upcoming-events-section Area End */

#reason-section {
  margin-bottom: 10rem;
}



#reason-section .card {
  border: none;
  outline: none;
  text-align: center;
}

#reason-section img {
  width: 100%;
}

#reason-section .card-body {
  text-align: center;
}

#reason-section .card-body p {
  margin: 10px 0px;
  font-size: 12px;
  padding: 0rem 1rem;
}

#reason-section h3 {
  font-size: 20px;
}


@media (max-width: 768px) {
  #reason-section {
    margin-bottom: 2rem;
  }
  #reason-section .card {
    width: 100% !important;
    align-items: center;
  }
  #reason-section img {
    width: 300px;
  }
  #reason-section .card-body p {
    margin: 8px 0px;
    font-size: 12px;
    padding: 0rem 2rem;
  }
}

/* 
---------------------------------------------
faq
--------------------------------------------- 
*/

#faq {
  margin: 2rem 0rem;
}

.faq-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  margin-bottom: 110px;
}

#faq .accordion-item {
  border: none;
  text-align: center;
  margin-bottom: 20px;
}

.accordion-button {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 300;
  font-size: 23px;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: none;
}

.accordion-button .title {
  width: 100%;
  font-weight: 500;
  font-size: 23px;
}

.accordion-button:after {
  display: none; /* Disables the default Bootstrap accordion icon */
}

.accordion-button .accordion-icon {
  font-size: 50px;
  color: red;
}

.accordion-body {
  padding-left: 35px;
  color: gray;
}

#faq .accordion-body {
  padding: 3rem 8rem;
  border-bottom: 2px solid lightgray;
}
.accordion-button:not(.collapsed) {
  background-color: transparent; /* Removes active background color */
  color: inherit; /* Keeps the text color the same */
  box-shadow: none; /* Removes the default box shadow */
}

.accordion-button .title {
  text-align: center;
}

@media (max-width: 768px) {
  #faq {
    margin: 5rem 0rem;
  }
  .faq-title-container {
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
  }
  .accordion-button .title {
    width: 100%;
    font-weight: 500;
    font-size: 22px;
  }
  .accordion-button .accordion-icon {
    font-size: 40px;
  }
  #faq .accordion-body {
    padding: 1rem 1rem;
    border-bottom: 2px solid lightgray;
    font-size: 14px;
    line-height: 22px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  #faq {
    margin: 5rem 0rem;
  }
  .faq-title-container {
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
  }
  .accordion-button .title {
    width: 100%;
    font-weight: 500;
    font-size: 22px;
  }
  .accordion-button .accordion-icon {
    font-size: 40px;
  }
  #faq .accordion-body {
    padding: 1rem 1rem;
    border-bottom: 2px solid lightgray;
    font-size: 14px;
    line-height: 22px;
  }
}

/* 
---------------------------------------------
faq
--------------------------------------------- 
*/

/* Footer */

.footer-section {
  background-image: linear-gradient(to right, #f2b64a, #fa4754);
  width: 100%;
}

.footer-content {
  margin: 10rem 0px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-content .logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-content .logo-container img {
  width: 61px;
}

.footer-content .logo-container h2 {
  font-weight: 600;
  font-size: 40px;
}
.footer-content .footer-description {
  width: 70%;
  padding: 10px;
}

.footer-content .social-media-icons li {
  list-style: none;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  border: none;
  background-color: #e82533;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease-in-out;
}

.footer-content .social-media-icons ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-content .social-media-icons i {
  color: #fff;
  font-size: 20px;
}

.footer-content .social-media-icons li:hover .fa-facebook {
  color: #1877f2;
}

.footer-content .social-media-icons li:hover .fa-whatsapp {
  color: #25d366;
}

.footer-content .social-media-icons li:hover .fa-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s ease-in-out;
}

.footer-content .social-media-icons li:hover .fa-x-twitter {
  color: #000;
}

.footer-content .social-media-icons li:hover {
  background-color: #fff;
}

.footer-content .quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-content .quick-links ul li {
  list-style: none;
}

.footer-content .quick-links ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.footer-content .contact-details-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-content .contact-details-container .details {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-content .contact-details-container .details i {
  font-size: 30px;
}

.footer-content .contact-details-container .details h4 {
  font-weight: 400;
  font-size: 16px !important;
}

#footer-section .copy-right {
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .row {
    flex-direction: row-reverse;
  }
  .footer-content {
    margin: 2rem 0px;
    gap: 2rem;
    text-align: center;
  }
  .footer-content .footer-description {
    width: 100%;
  }
  .footer-content .logo-container {
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
  }

  .footer-content .logo-container img {
    width: 50px;
  }

  .footer-content .logo-container h2 {
    font-weight: 600;
    font-size: 35px;
  }
  .footer-content .social-media-icons ul {
    justify-content: center;
  }
  .footer-content .quick-links ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .footer-content .contact-details-container {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-content .contact-details-container .details i {
    font-size: 15px;
  }

  .footer-content .contact-details-container .details h4 {
    font-weight: 400;
    font-size: 18px;
  }

  #footer-section .copy-right {
    font-size: 12px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .row {
    flex-direction: row;
  }
  .footer-content {
    margin: 2rem 0px;
    gap: 2rem;
  }
  .footer-content .footer-description {
    width: 90%;
    font-size: 14px;
    text-align: left;
  }
  .footer-content .logo-container {
    gap: 10px;
  }

  .footer-content .logo-container img {
    width: 50px;
  }

  .footer-content .logo-container h2 {
    font-weight: 600;
    font-size: 30px;
  }

  .footer-content .title h2 {
    font-size: 22px;
  }

  .footer-content .quick-links ul {
    display: flex;
    gap: 10px;
  }

  .footer-content .quick-links ul li a {
    font-size: 16px;
  }
  .footer-content .contact-details-container {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 20px;
  }

  .footer-content .contact-details-container .details i {
    font-size: 15px;
  }

  .footer-content .contact-details-container .details h4 {
    font-weight: 400;
    font-size: 18px;
  }

  #footer-section .copy-right {
    font-size: 12px;
    padding-bottom: 20px;
  }
}
/* Footer */
#element {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

/* #companyName{
  text-decoration: solid !important;
} */

.no-underline {
  color: #fff;
  &:hover{
     text-decoration: underline;
     color:#762181fa;
  }
}

@media (max-width: 768px) {
  #element {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #element {
    font-size: 1.2rem;
  }}

  @media (max-width: 480px) {
   
    .banner-phone img {
      width: 350px;
    } 
    }