:root{
  --primary: #0c4b45;
  --secondary: #c89b3c;
  --light: #f8f4ec;
  --dark: #222;
}

body{
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  padding-top: 90px;

  overflow-x: hidden;
  touch-action: auto;
  background-color: #222;


}



/* =========================
   NAVBAR
========================= */

.custom-navbar{
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  padding: 5px 0;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05);

  transition: 0.4s;
}



/* =========================
   PREMIUM RESPONSIVE NAVBAR
========================= */

#mainNavbar{

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 99999;

  background: rgba(15,15,15,0.96);

  backdrop-filter: blur(12px);

  transition: 0.4s;

  padding: 5px 0;
}


.navbar-brand{

    font-size: 26px;

    max-width: 80%;
  }

/* NAVBAR CONTAINER */

#mainNavbar .container{

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* LOGO */

.navbar-brand img{
  height: 45px;
  width: auto;
}

/* =========================
   NAVIGATION LINKS
========================= */

.navbar-nav .nav-link{

  color: #ccc7b0;

  font-size: 17px;
  margin: 0 12px;
  font-weight: 500;
  margin: 0 12px;
  

  position: relative;

  transition: 0.3s;
}

/* HOVER EFFECT */

.navbar-nav .nav-link:hover{
  color: #c89b3c;
}

/* UNDERLINE ANIMATION */

.navbar-nav .nav-link::after{

  content: '';

  position: absolute;

  width: 0%;

  height: 2px;

  left: 0;

  bottom: -5px;

  transition: 0.4s;
}

.navbar-nav .nav-link:hover::after{
  width: 100%;
}

/* ACTIVE LINK */

.navbar-nav .nav-link.active{
  color: #c89b3c;
}

/* DROPDOWN */

.dropdown-menu{

  border: none;

  border-radius: 15px;

  padding: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dropdown-item{

  padding: 10px 15px;

  border-radius: 10px;

  transition: 0.3s;
}

.dropdown-item:hover{

  background: #0c4b45;

  color: white;
}

/* CONTACT BUTTON */

.contact-btn{

  background: #0c4b45;

  color: white !important;

  padding: 12px 28px !important;

  border-radius: 40px;
}

.contact-btn:hover{

  background: #c89b3c;

  color: white !important;
}


/* =========================
   MOBILE TOGGLE BUTTON
========================= */

.navbar-toggler{

  border: none;

  padding: 4px 8px;
}

.navbar-toggler:focus{

  box-shadow: none;
}

/* TOGGLE ICON */

.navbar-toggler-icon{

  filter: brightness(0) invert(1);
}

/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu{

  border: none;

  border-radius: 12px;

  padding: 8px;

  background: #1f1f1f;
}

.dropdown-item{

  color: white;

  padding: 10px 15px;

  border-radius: 10px;

  transition: 0.3s;
}

.dropdown-item:hover{

  background: rgba(255,255,255,0.08);

  color: #d4a373;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:991px){

  #mainNavbar{

    padding: 5px 0;
  }

  /* SMALLER LOGO */

  .navbar-brand{

    font-size: 22px;

    max-width: 75%;
  }

  .navbar-brand img{
  height: 40px;
  width: auto;
}

  /* MOBILE MENU */

  .navbar-collapse{

    background: #111111;

    padding: 20px;

    margin-top: 15px;

    border-radius: 20px;
  }

  /* MOBILE LINKS */

  .navbar-nav{

    align-items: center;
  }

  .navbar-nav .nav-link{

    margin-left: 0;

    margin-bottom: 12px;

    font-size: 15px;

    width: 100%;
  }

  /* DROPDOWN */

  .dropdown-menu{

    width: 100%;

    background: #1f1f1f;

    margin-top: 10px;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:576px){

  #mainNavbar{

    padding: 5px 0;
  }

  /* EXTRA SMALL LOGO */

  .navbar-brand{

    font-size: 18px;

    max-width: 70%;
  }

  .navbar-brand img{
  height: 35px;
  width: auto;
}

  /* SMALLER LINKS */

  .navbar-nav .nav-link{

    font-size: 14px;

    margin-bottom: 10px;
  }

  /* COMPACT MENU */

  .navbar-collapse{

    padding: 15px;
  }

  /* SMALL TOGGLE */

  .navbar-toggler{

    font-size: 14px;
  }

}

/* =========================
   BODY FIX
========================= */

body{

  padding-top: 65px;

  overflow-x: hidden;
}

/* MOBILE BODY */

@media(max-width:576px){

  body{

    padding-top: 50px;
  }

}




/* =========================
   HERO SLIDER
========================= */

.hero-slider{
  position: relative;
  background-color: #111111;
}

/* SLIDE IMAGE */

.slide-image{

  position: relative;

  width: 100%;

  height: 50vh;

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;
}

/* BLACK OVERLAY */

.overlay{

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0,0,0,0.6);
}

/* HERO CONTENT */

.hero-content{

  position: relative;

  z-index: 2;

  color: white;

  max-width: 850px;

  margin: auto;
}

/* HEADING */

.hero-content h1{

  font-size: 55px;

  font-weight: 550;

  margin-bottom: 25px;

  animation: slideDown 1s ease;
}

/* PARAGRAPH */

.hero-content  p{

  font-size: 20px;

  line-height: 1.8;

  margin-bottom: 10px;

  animation: fadeIn 1.5s ease;
}

/* BUTTON */

.hero-btn{

  margin-top: 25px;

  background: #0c4b45;

  color: white;

  padding: 10px 25px;

  border-radius: 40px;

  font-size: 16px;

  font-weight: 450;

  transition: 0.4s;

  animation: fadeIn 2s ease;
}

.hero-btn:hover{

  background: #c89b3c;

  color: white;
}

/* ARROWS */

.carousel-control-prev,
.carousel-control-next{
  width: 8%;
}

/* ARROW ICONS */

.carousel-control-prev-icon,
.carousel-control-next-icon{

  width: 3rem;

  height: 3rem;
}

/* INDICATORS */

.carousel-indicators button{

  width: 14px;

  height: 14px;

  border-radius: 50%;
}

/* ANIMATIONS */

@keyframes slideDown{

  from{
    transform: translateY(-40px);
    opacity: 0;
  }

  to{
    transform: translateY(0);
    opacity: 1;
  }

}

@keyframes fadeIn{

  from{
    opacity: 0;
  }

  to{
    opacity: 1;
  }

}

/* RESPONSIVE */

@media(max-width:992px){

  .hero-content h1{
    font-size: 48px;
  }

  .hero-content p{
    font-size: 18px;
  }

}

@media(max-width:768px){

  .slide-image{
    height: 50vh;
  }

  .hero-content h1{
    font-size: 28px;
  }

  .hero-content p{
    font-size: 16px;
  }

  .hero-btn{

    padding: 5px 14px;

    font-size: 16px;
  }

}



/* =========================
   ABOUT SECTION
========================= */

.about-section{

  padding: 120px 0;

  background: #f8f4ec;
}

/* IMAGE */

.about-image{

  position: relative;
}

.about-image img{

  width: 100%;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* CONTENT */

.about-content{

  padding-left: 30px;
}

/* SUBTITLE */

.section-subtitle{

  color: #c89b3c;

  font-size: 18px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;
}

/* HEADING */

.about-content h2{

  font-size: 52px;

  font-weight: 700;

  color: #0c4b45;

  margin-top: 15px;

  margin-bottom: 25px;

  line-height: 1.3;
}

/* PARAGRAPH */

.about-content p{

  font-size: 17px;

  color: #555;

  line-height: 1.9;

  margin-bottom: 20px;
}

/* FEATURES */

.about-features{

  margin-top: 30px;

  margin-bottom: 35px;
}

.feature-item{

  font-size: 17px;

  margin-bottom: 15px;

  color: #222;

  font-weight: 500;
}

/* BUTTON */

.about-btn{

  background: #0c4b45;

  color: white;

  padding: 14px 36px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.4s;
}

.about-btn:hover{

  background: #c89b3c;

  color: white;
}

/* RESPONSIVE */

@media(max-width:992px){

  .about-content{

    padding-left: 0;

    margin-top: 40px;
  }

  .about-content h2{

    font-size: 40px;
  }

}

@media(max-width:768px){

  .about-section{

    padding: 80px 0;
  }

  .about-content h2{

    font-size: 32px;
  }

  .about-content p{

    font-size: 16px;
  }

}



/* =========================
   SERVICES SECTION
========================= */

.services-section{

  padding: 120px 0;

  background: rgb(241, 240, 224);
}

/* SECTION TITLE */

.section-title{

  max-width: 750px;

  margin: auto;

  margin-bottom: 70px;
}

.section-title h2{

  font-size: 52px;

  font-weight: 700;

  color: #0c4b45;

  margin-top: 15px;

  margin-bottom: 20px;
}

.section-title p{

  font-size: 18px;

  color: #666;

  line-height: 1.8;
}

/* SERVICE CARD */

.service-card{

  background: #f8f4ec;

  padding: 45px 35px;

  border-radius: 25px;

  text-align: center;

  height: 100%;

  transition: 0.4s;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */

.service-card:hover{

  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ICON */

.service-icon{

  font-size: 55px;

  margin-bottom: 25px;
}

/* TITLE */

.service-card h3{

  font-size: 28px;

  font-weight: 700;

  color: #0c4b45;

  margin-bottom: 20px;
}

/* TEXT */

.service-card p{

  font-size: 16px;

  color: #555;

  line-height: 1.9;

  margin-bottom: 30px;
}

/* BUTTON */

.service-btn{

  display: inline-block;

  background: #0c4b45;

  color: white;

  padding: 12px 30px;

  border-radius: 40px;

  text-decoration: none;

  transition: 0.4s;
}

.service-btn:hover{

  background: #c89b3c;

  color: white;
}

/* RESPONSIVE */

@media(max-width:992px){

  .section-title h2{

    font-size: 42px;
  }

}

@media(max-width:768px){

  .services-section{

    padding: 80px 0;
  }

  .section-title h2{

    font-size: 32px;
  }

  .section-title p{

    font-size: 16px;
  }

}


/* =========================
   COUNTER SECTION
========================= */

.counter-section{

  padding: 100px 0;

  background: #0c4b45;
}

/* COUNTER BOX */

.counter-box{

  color: white;
}

/* NUMBER */

.counter-box h2{

  font-size: 60px;

  font-weight: 700;

  color: #c89b3c;

  margin-bottom: 15px;
}

/* TEXT */

.counter-box p{

  font-size: 18px;

  letter-spacing: 1px;
}

/* RESPONSIVE */

@media(max-width:768px){

  .counter-box h2{

    font-size: 42px;
  }

}



/* =========================
   PROCESS SECTION
========================= */

.process-section{

  padding: 120px 0;

  background: #f8f4ec;
}

/* PROCESS BOX */

.process-box{

  background: white;

  padding: 40px 30px;

  text-align: center;

  border-radius: 25px;

  transition: 0.4s;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-box:hover{

  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ICON */

.process-icon{

  font-size: 55px;

  margin-bottom: 25px;
}

/* TITLE */

.process-box h3{

  font-size: 28px;

  font-weight: 700;

  color: #0c4b45;

  margin-bottom: 20px;
}

/* TEXT */

.process-box p{

  color: #555;

  line-height: 1.8;
}

/* RESPONSIVE */

@media(max-width:768px){

  .process-section{

    padding: 80px 0;
  }

}



/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{

  padding: 120px 0;

  background: white;
}

/* TESTIMONIAL CARD */

.testimonial-card{

  max-width: 850px;

  margin: auto;

  background: rgba(255,255,255,0.7);

  backdrop-filter: blur(12px);

  border-radius: 30px;

  padding: 60px 40px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CLIENT IMAGE */

.testimonial-image img{

  width: 100px;

  height: 100px;

  border-radius: 50%;

  object-fit: cover;

  margin-bottom: 25px;

  border: 4px solid #c89b3c;
}

/* STARS */

.stars{

  font-size: 24px;

  margin-bottom: 25px;
}

/* TEXT */

.testimonial-text{

  font-size: 20px;

  color: #555;

  line-height: 1.9;

  margin-bottom: 30px;

  font-style: italic;
}

/* NAME */

.testimonial-card h4{

  font-size: 24px;

  color: #0c4b45;

  font-weight: 700;
}

/* ARROWS */

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next{

  width: 5%;
}

/* RESPONSIVE */

@media(max-width:768px){

  .testimonial-section{

    padding: 80px 0;
  }

  .testimonial-card{

    padding: 40px 25px;
  }

  .testimonial-text{

    font-size: 17px;
  }

}



/* =========================
   YOUTUBE SECTION
========================= */

.youtube-section{

  padding: 120px 0;

  background: #f8f4ec;
}

/* VIDEO CARD */

.video-card{

  background: white;

  border-radius: 25px;

  overflow: hidden;

  transition: 0.4s;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.video-card:hover{

  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* VIDEO WRAPPER */

.video-wrapper{

  position: relative;
  width: 100%;
/* This makes videos responsive automatically */
  padding-bottom: 56.25%;

  height: 0;

  overflow: hidden;
}

.video-wrapper iframe{

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
}

/* CONTENT */

.video-content{

  padding: 30px;
}

/* TITLE */

.video-content h3{

  font-size: 24px;

  font-weight: 700;

  color: #0c4b45;

  margin-bottom: 15px;
}

/* TEXT */

.video-content p{

  color: #555;

  line-height: 1.8;
}

/* BUTTON */

.youtube-btn{

  display: inline-block;

  background: #0c4b45;

  color: white;

  padding: 14px 38px;

  border-radius: 40px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.4s;
}

.youtube-btn:hover{

  background: #c89b3c;

  color: white;
}

/* RESPONSIVE */



@media(max-width:768px){

  .youtube-section{

    padding: 80px 0;
  }

}



/* =========================
   CONTACT SECTION
========================= */

.contact-section{

  padding: 120px 0;

  background: white;
}

/* CONTACT INFO */

.contact-info{

  background: #f8f4ec;

  padding: 45px;

  border-radius: 30px;

  height: 100%;
}

/* CONTACT ITEM */

.contact-item{

  display: flex;

  align-items: flex-start;

  margin-bottom: 35px;
}

/* ICON */

.contact-icon{

  width: 65px;

  height: 65px;

  background: #0c4b45;

  color: white;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  margin-right: 20px;

  flex-shrink: 0;
}

/* TEXT */

.contact-item h4{

  font-size: 22px;

  color: #0c4b45;

  margin-bottom: 8px;
}

.contact-item p{

  color: #555;

  line-height: 1.7;
}

/* FORM */

.contact-form{

  background: #f8f4ec;

  padding: 45px;

  border-radius: 30px;
}

/* INPUT */

.form-control{

  border: none;

  border-radius: 15px;

  padding: 16px 20px;

  font-size: 16px;

  box-shadow: none;
}

.form-control:focus{

  box-shadow: 0 0 0 2px rgba(12,75,69,0.2);
}

/* BUTTON */

.contact-btn-main{

  background: #0c4b45;

  color: white;

  border: none;

  padding: 15px 40px;

  border-radius: 40px;

  font-size: 17px;

  font-weight: 600;

  transition: 0.4s;
}

.contact-btn-main:hover{

  background: #c89b3c;
}


/* RESPONSIVE */

@media(max-width:768px){

  .contact-section{

    padding: 80px 0;
  }

  .contact-info,
  .contact-form{

    padding: 30px;
  }

}


/* =========================
   MAP SECTION
========================= */

.map-section iframe{

  width: 100%;

  display: block;
}



/* =========================
   FOOTER SECTION
========================= */

.footer-section{

  background: #0c4b45;

  color: white;

  padding-top: 100px;
}

/* LOGO */

.footer-logo{

  height: 80px;

  margin-bottom: 25px;
}

/* ABOUT TEXT */

.footer-about p{

  line-height: 1.9;

  color: rgba(255,255,255,0.8);
}

/* TITLES */

.footer-links h4,
.footer-contact h4{

  font-size: 24px;

  margin-bottom: 30px;

  color: #c89b3c;
}

/* LINKS */

.footer-links ul{

  padding: 0;

  margin: 0;

  list-style: none;
}

.footer-links ul li{

  margin-bottom: 15px;
}

.footer-links ul li a{

  color: rgba(255,255,255,0.8);

  text-decoration: none;

  transition: 0.3s;
}

.footer-links ul li a:hover{

  color: #c89b3c;

  padding-left: 5px;
}

/* CONTACT */

.footer-contact p{

  margin-bottom: 18px;

  color: rgba(255,255,255,0.8);
}

/* =========================
   FORM SUCCESS MESSAGE
========================= */

.form-message{

  margin-top: 20px;

  padding: 15px;

  border-radius: 12px;

  background: #1b4332;

  color: white;

  text-align: center;

  font-size: 16px;

  display: none;
}


/* =========================
   PHONE FIELD
========================= */

.phone-wrapper{

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;
}

/* COUNTRY SELECT */

.country-select{

  max-width: 140px;

  border-radius: 15px;

  border: none;

  padding: 12px;

  background: #1b4332;

  color: white;

  font-size: 15px;

  box-shadow: none !important;
}

/* PHONE INPUT */

.phone-input{

  border-radius: 15px;

  padding: 12px;

  border: none;

  box-shadow: none !important;
}

/* MOBILE */

@media(max-width:576px){

  .phone-wrapper{

    flex-direction: column;
  }

  .country-select{

    max-width: 100%;

    width: 100%;
  }

}


/* =========================
   FORM VALIDATION
========================= */

.form-control:invalid{

  border: 2px solid #ff4d4d;
}

.form-control:valid{

  border: 2px solid #1b4332;
}

/* ERROR MESSAGE */

.error-text{

  color: #ff4d4d;

  font-size: 14px;

  margin-top: 5px;

  display: none;
}




/* BOTTOM */

.footer-bottom{

  border-top: 1px solid rgba(255,255,255,0.1);

  margin-top: 50px;

  padding: 30px 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;
}

/* SOCIAL */

.footer-social a{

  color: white;

  margin-right: 20px;

  text-decoration: none;

  transition: 0.3s;
}

.footer-social a:hover{

  color: #c89b3c;
}

/* COPYRIGHT */

.footer-bottom p{

  margin: 0;

  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */

@media(max-width:768px){

  .footer-section{

    padding-top: 70px;
  }

  .footer-bottom{

    text-align: center;

    justify-content: center;
  }

  .footer-social{

    margin-bottom: 20px;
  }

}



/* =========================
   SCROLL TOP BUTTON
========================= */

#scrollTopBtn{

  position: fixed;

  bottom: 30px;

  right: 30px;

  width: 55px;

  height: 55px;

  border: none;

  border-radius: 50%;

  background: #c89b3c;

  color: white;

  font-size: 22px;

  cursor: pointer;

  display: none;

  z-index: 999;

  transition: 0.4s;
}

#scrollTopBtn:hover{

  background: #0c4b45;
}

/* =========================
   Smooth Scrolling
========================= */
html{

  scroll-behavior: smooth;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{

  position: fixed;

  bottom: 100px;

  right: 30px;

  width: 65px;

  height: 65px;

  background: #25d366;

  color: white;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  text-decoration: none;

  z-index: 999;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  animation: pulse 2s infinite;
}

/* PULSE EFFECT */

@keyframes pulse{

  0%{
    transform: scale(1);
  }

  50%{
    transform: scale(1.1);
  }

  100%{
    transform: scale(1);
  }

}


/* =========================
   WEBSITE LOADER
========================= */

#loader{

  position: fixed;

  width: 100%;

  height: 100vh;

  background: white;

  z-index: 99999;

  display: flex;

  justify-content: center;

  align-items: center;
}

/* CIRCLE */

.loader-circle{

  width: 70px;

  height: 70px;

  border: 6px solid #ddd;

  border-top: 6px solid #0c4b45;

  border-radius: 50%;

  animation: spin 1s linear infinite;
}

/* SPIN */

@keyframes spin{

  100%{
    transform: rotate(360deg);
  }

}



body{
    padding-top: 68px;
}


@media(max-width:992px){

  body{

    padding-top: 65px;
  }

}

@media(max-width:768px){

  body{

    padding-top: 60px;
  }

}

@media(max-width:576px){

  body{

    padding-top: 56px;
  }

}

/* =========================
   TOP HEADER
========================= */

.top-header{

  width: 100%;

  background: #0c4b45;

  padding: 15px 0;
}

.header-content{

  display: flex;

  justify-content: space-between;

  align-items: center;
}

/* WEBSITE TITLE */

.site-title{

  color: white;

  font-size: 40px;

  font-weight: 500;

  letter-spacing: 1px;
}



.tuli-top-img img{
    height: 100px;
}

/* TOP IPHM LOGO */

.iphm-top-logo img{

  height: 80px;
}



/* =========================
   HERO PROFILE
========================= */

.hero-profile{

  position: relative;

  z-index: 2;

  color: white;

  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  padding: 35px 25px;

  border-radius: 30px;
}

/* IMAGE */

.hero-profile-img{

  width: 240px;

  height: 240px;

  object-fit: cover;

  border-radius: 50%;

  border: 5px solid #c89b3c;

  margin-bottom: 25px;
}

/* NAME */

.hero-profile h2{

  font-size: 34px;

  font-weight: 700;

  margin-bottom: 20px;
}

/* DESCRIPTION */

.hero-profile p{

  font-size: 18px;

  margin-bottom: 10px;

  line-height: 1.7;
}

/* IPHM BOX */

.iphm-box{

  margin-top: 30px;

  display: flex;

  align-items: center;

  gap: 15px;

  text-align: left;
}

.iphm-box img{

  width: 70px;
}

.iphm-box span{

  font-size: 14px;

  line-height: 1.6;
}

/* RESPONSIVE */

@media(max-width:992px){

  .top-header{

    position: relative;

    background: #0c4b45;
  }

  .site-title{

    font-size: 24px;
  }

  .hero-profile{

    margin-bottom: 40px;
  }

}

@media(max-width:768px){

  .header-content{

    flex-direction: column;

    gap: 15px;
  }

  .site-title{

    font-size: 22px;

    text-align: center;
  }

  .hero-profile-img{

    width: 180px;

    height: 180px;
  }

  .hero-profile h2{

    font-size: 28px;
  }

}


.form-message{
  display: none;
}



/* FIX MOBILE FREEZE */

html,
body{
  overflow-x: hidden;
  overflow-y: auto !important;
  position: static !important;
  height: auto !important;
}

















