* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #61B4BB;
  text-decoration: none;
}

a:hover {
  color: #61B4BB;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#main {
  margin-top: 50px;
}

@media (max-width: 991px) {
  #main {
    margin-top: 30px;
  }
}

/* HEADER SECTION */
.navbar {
  transition: all 0.5s;
}

.navbar-scrolled {
  background-color:  #999999;
}

.navbar li {
  position: relative;
  padding: 10px
}

.navbar a {
  font-size: 15px;
  font-weight: 600;
  color: #e9e8e6; 
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px;
}

.offcanvas {
  background-color:  #999999;
}

.offcanvas-title {
  color: #e9e8e6;
}

.navbar a:hover {
  color: #61B4BB;
}

.header-social-links a {
  font-size: 18px;
}

.navbar .navbar-nav .nav-link {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  background-color: #61B4BB;
  height: 3px;
  width: 0%;
  bottom: -10;
  left: -10;
  transition: 0.3s;
}

.navbar .navbar-nav .nav-item:hover::after {
  width: 50%;
}

@media (max-width: 991px) {
  .offcanvas-body {
    font-size: 50px;
    padding: 0px 0px 0px 0px;
  }

  .offcanvas-body a {
    font-size: 16px;
  }

  .header-social-links a {
    font-size: 20px;
    padding: 14px 0px 0px 14px;
  }

  .navbar .navbar-nav .nav-item:hover::after {
    width: 0%;
  }
}

/* HERO SECTION */

#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(19, 16, 34, 0.58) 0%, rgba(19, 16, 34, 0.78) 100%), url("../img/IMG_20240719.jpg") top right;
  background-size: cover;
  background-attachment: fixed;
}

#hero .container {
  padding-top: 70px;
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
}

@media (max-width: 991px) {
  #hero .container {
    padding-top: 58px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  #hero {
    background: linear-gradient(180deg, rgba(19, 16, 34, 0.58) 0%, rgba(19, 16, 34, 0.78) 100%), url("../img/IMG_20240719.jpg") right;
    background-size: cover;
    background-position: 75%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}



/* # Solutions
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

@media (max-width: 991px) {
  .services .icon-box h4 a {
    align-items: center;
  }
}

/* Approach Section */

section {
  padding: 60px 0;
}

.section-bg {
  background-color: #e7f8f6;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #61B4BB;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .contact {
    text-align: center;
  }

  .contact .content p {
    margin-bottom: 30px;
  }
}

/* About Section */

.about .about-title {
  font-size: 26px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #222222;
}

.about .about-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #34b7a7;
  position: relative;
}

.about .about-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #1d685f;
  margin-bottom: 10px;
}

.about .about-item h5 {
  font-size: 16px;
  background: #effbf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #34b7a7;
}

.about .about-item ul {
  padding-left: 20px;
}

.about .about-item ul li {
  padding-bottom: 10px;
}

.about .about-item:last-child {
  padding-bottom: 0;
}

.about .about-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #34b7a7;
}

@media (max-width: 991px) {
  .about .about-item h4 {
    margin-top: 15px;
  }
}

/* FAQ Section */

.accordion {
  --bs-accordion-active-bg: none;
}

/* CONTACT SECTION */

.contact {
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(19, 16, 34, 0.58) 0%, rgba(19, 16, 34, 0.78) 100%), url("../img/edificio.jpg") top right;
  background-size: cover;
  background-attachment: fixed;
}

.contact h2 {
  color: #effbf9;
}

.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #61B4BB;
  float: left;
  width: 44px;
  height: 44px;
  background: #effbf9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #61B4BB;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #effbf9;
}

.contact .info .email,
.contact .info .phone,
.contact .info .instagram {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .instagram:hover i,
.contact .info .phone:hover i {
  background: #61B4BB;
  color: #fff;
}

@media (max-width: 991px) {

  .contact .info .email,
  .contact .info .address,
  .contact .info .phone,
  .contact .info .instagram,
  .contact .info h4,
  .contact .info p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .contact .info i {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {

  .contact {
    background: linear-gradient(180deg, rgba(19, 16, 34, 0.58) 0%, rgba(19, 16, 34, 0.78) 100%), url("../img/edificio.jpg") right;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

/* Footer Section */

.footer {
  background: #e9e8e6;
  padding: 30px 0;
  color: #222222;
  font-size: 14px;
  text-align: center;
}

/* Floating Button */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 6px 24px 0 rgba(7, 94, 84, .24);
  z-index: 100;
}

.my-float {
  display: flex;
  margin-top: 15px;
  margin-left: 15px;
}