
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #009cea;
  --color-secondary: #ffffff;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  /* background-color: #E0E1E4; */
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg1 {
  /* background: linear-gradient(90deg, hsla(197, 100%, 64%, 1) 0%, hsla(339, 100%, 55%, 1) 100%); */
/* background-color: #000; */
/* background: linear-gradient(90deg, hsla(213, 77%, 14%, 1) 0%, hsla(202, 27%, 45%, 1) 100%); */

}
.section-bg2{
  /* background: linear-gradient(90deg, hsla(270, 94%, 25%, 1) 0%, hsla(158, 94%, 49%, 1) 100%); */
 
 
  /* background-color: #000; */
}

.section-bg3 {
  /* background-color: #000; */
 
/* background: white; */
}

  

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title2 {
  text-align: center;
  padding-bottom: 30px;
}
.section-title p{
  color: rgb(0, 0, 0);
}
.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 10px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #49c5b6;
}
.section-title2 h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 50px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #49c5b6;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
  width: 140px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: black;
  background: #47e6d3;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 650;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: black;
  background: #E0E1E4;
  font-weight: 650;
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #fee135;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height:90vh;
  /* background: url("../img/Home\ \(1\).png") center center; */
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 0;
  margin-bottom: 10px;
}
 
#hero:before {
  content: "";
  /* background: rgba(197, 5, 5, 0.4); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} 

#hero .container {
  z-index: 5;
}

#hero h1 {
  margin: 0 0 5px 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: black;
}

#hero h2 {
  color: #dbdada;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .get-started-icon {
  font-size: 24px;
  background: #5c65e4;
  padding: 14px;
  color: #fff;
  border-radius: 50px;
  position: relative;
  z-index: 5;
  box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}


#hero .btn-get-started:hover {
  background: #f9fd00;
}
#hero p span {
  color: #0563bb;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1024px),
(max-height: 768px) {
  #hero {
    margin-bottom: -150px;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 80vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-height: 640px) {
  #hero {
    height: 120vh;
  }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
#whyclass{
 width: 100%;
 height: 32rem;
 background:white;
}
.why-us {
  /* background-color:white; */
  /* margin-top: 100px; */
  padding: 0 0 90px 0;
  position: relative;
  z-index: 3;
}

.why-us .content {
  padding: 30px;
  background:#E0E1E4;
  border-radius: 10px;
  color: #000000;
  margin-top: 35px;
  
}

.why-us .content h3 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 10px;
  color:  #49c5b6;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #000000;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: black;
  background: #49c5b6;
}

.why-us .icon-boxes .icon-box1 {
  text-align: center;
  border-radius: 10px;
  background:#E0E1E4;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}
.why-us .icon-boxes .icon-box2 {
  text-align: center;
  border-radius: 10px;
  background:#E0E1E4;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}
.why-us .icon-boxes .icon-box3 {
  text-align: center;
  border-radius: 10px;
  background:#E0E1E4;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.why-us .icon-boxes i {
  font-size: 40px;
  color: #49c5b6;
  margin-bottom: 30px;
}

.why-us .icon-boxes h4 {
  font-size: 20px;
  font-weight: 600;
  color: #49c5b6;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes p {
  font-size: 15px;
  color: #000000;
}








/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-bottom: 40px;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #364146;
  transition: 0.3s ease-in-out;
  border-radius: 0;
  border-left: 4px solid #fafbfb;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: #000000;
}

.features .nav-link p {
  font-size: 15px;
  margin-bottom: 0;
  color: rgb(0, 0, 0);
}
/* 
.features .nav-link:hover {
  background: #ffffff;
} */

.features .nav-link:hover h4 {
  color: #000000;
  
}

.features .nav-link.active {
  border-radius: 0;
  border: 0;
  background: #E0E1E4;
  border-left: 4px solid #49c5b6;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  /* border-top:4px solid #009cea ; */
  /* border-bottom:4px solid #009cea ; */
  /* border-right:4px solid #009cea ; */
  
}

.features .nav-link.active h4 {
  color: #49c5b6;
}

.features .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.features .tab-content {
  text-align: right;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom:2rem;
  background: #ffffff;
  /* background: linear-gradient(90deg, hsla(339, 100%, 55%, 1) 0%, hsla(197, 100%, 64%, 1) 100%);  */
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #a0e0e9;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
} 


.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 2rem;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-pink:hover {
  border-color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-cyan:hover {
  border-color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #439ac2;
}

.services .icon-box-green:hover {
  border-color: #c518e7;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-blue:hover {
  border-color: #f1fdad;
}








/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.section-bg8{
  margin-top: 150px;

}

.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #49c5b6;
}

.contact .contact-info address,
.contact .contact-info p {
  margin-bottom: 0;
  color: #000000;
}

.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #49c5b6;
}

.contact .contact-info a {
  color: #000000;
}

.contact .contact-info a:hover {
  color: #1165d3;
}

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
  margin-bottom: 20px;
  
}


.contact .php-email-form .error-message {
  display: none;
  color: #000000;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #000000;
  background: #1888d2;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #1888d2;
  border-top-color: #000000;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
border: 1px solid rgb(0, 0, 0);
  box-shadow:gray;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #49c5b6;
}

.contact .php-email-form button[type=submit] {
  background: #49c5b6;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #49c5b6;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  .contact .contact-address,
  .contact .contact-phone,
  .contact .contact-email {
    padding: 20px 0;
  }
}



/*--------------------------------------------------------------
# Our project Section
--------------------------------------------------------------*/

.row h3{
  color: #49c5b6;
}
.bk_pra{
  color: rgb(0, 0, 0);
  font-size: 16px;
}
.row h4{
  color: rgb(0, 0, 0);
}

.card2{
  position: relative;
  height: 15rem;
  width: 100%;
  overflow: hidden;
  margin-bottom:1rem;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 50px ;
  border-bottom-right-radius: 50px ;
  align-items: center;
  z-index: 1;
}
.content-body h4{
  color: #49c5b6;
}


button,input,select,textarea {
  background: 0 0;
  border: 1px solid #eee;
  -webkit-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
  color: #ffffff
}

button:active,button:focus,input:active,input:focus,select:active,select:focus,textarea:active,textarea:focus {
  outline: 0;
  border-color: #e25b74
}

input,select,textarea {
  width: 100%;
  font-size: 14px
}

input,select {
  height: 40px;
  padding: 0 15px
}

@-webkit-keyframes moveVertical {
  to {
      opacity: 1;
      -webkit-transform: translateY(0)
  }
}

@keyframes moveVertical {
  to {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }
}

@-webkit-keyframes moveHorizontal {
  to {
      -webkit-transform: translateX(0);
      opacity: 1
  }
}

@keyframes moveHorizontal {
  to {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1
  }
}

.move-up {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.move-up.animate {
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-animation: moveVertical .65s ease forwards;
  animation: moveVertical .65s ease forwards
}

.move-up-x {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0)
}

.move-up-x.animate {
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-animation: moveHorizontal .65s ease forwards;
  animation: moveHorizontal .65s ease forwards
}




/*--------------------------------------------------------------
# Our Tech expertise Section
--------------------------------------------------------------*/
/* .why-us {
  padding:4rem;
  
} */

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin: -1px;
}


.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  color: #49c5b6;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #2e2e2e;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 20px 20px;
  }
}


















/*--------------------------------------------------------------
# request for service 
--------------------------------------------------------------*/
.requestbg {
  background-size: cover;
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  margin-bottom: -120px;
}

.requestbg form {
  height: 530px;
  width: 900px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  margin-top: -50px;
  padding: 35px 35px;
}

.requestbg form h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
}

.requestbg::placeholder {
  color: #000000;
}

.requestbg form * {
  font-family: 'Poppins', sans-serif;
  color: #49c5b6;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}

.divi {
  display: flex;
  margin-top: 0px;
}

.divi div {
  width: 100%; /* Adjust this to your preference */
  margin-right: 8px;
  text-align: left;
}

.requestbg button {
  margin-top: 40px;
  width: 100%; /* Adjust this to your preference */
  background-color: rgba(0, 0, 0, 0.07);
  padding: 5px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
}

.requestbg label {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.requestbg input {
  display: block;
  height: 40px;
  width: 100%; /* Adjust this to your preference */
  background-color: rgba(49, 45, 45, 0.07);
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 300;
}
.requestbg select {
  display: block;
  height: 40px;
  width: 100%; /* Adjust this to your preference */
  background-color: rgba(49, 45, 45, 0.07);
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 300;
}

/* Media Query for Tablets (landscape) */
@media (max-width: 1024px) {
  .requestbg form {
    width: 80%; /* Adjust this to your preference */
  }

  .divi div {
    width: 100%; /* Adjust this to your preference */
  }

  .requestbg button {
    width: 80%; /* Adjust this to your preference */
  }
}

/* Media Query for Mobile Devices */
@media (max-width: 575px) {
  .requestbg form {
    width: 90%; /* Adjust this to your preference */
    padding: 20px; /* Adjust this to your preference */
  }

  .divi div {
    width: 100%; /* Adjust this to your preference */
  }

  .requestbg button {
    width: 90%; /* Adjust this to your preference */
  }
}










/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f7f8f9;
  padding: 0 0 30px 0;
  color: #364146;
  font-size: 14px;
}

#footer .footer-top {
  background: #fff;
  padding: 60px 0 30px 0;
  border-top: 2px solid #e9ecee;
  border-bottom: 2px solid #e9ecee;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #576971;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e9ecee;
  color: #8a9ca5;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #49c5b6;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #49c5b6;
  font-size: 18px;
  line-height: 1;
  margin-left: -5px;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #576971;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #009cea;
}
#footer .footer-top .footer-links h4{
  color: #49c5b6;
}
#footer .footer-top .footer-newsletter h4{
  color: #49c5b6;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e3e7e9;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #49c5b6;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #49c5b6;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #364146;
}


