/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  width: 100%;
}

/* body,
input,
button {
  font-size: 0.938rem;
} */

/* body {
  background-color: hsl(230, 100%, 98%);
  color: hsl(230, 12%, 40%);
} */

input,
button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 15px;
}

.search,
.login {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: hsla(230, 75%, 15%, 0.1);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 2rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

@media screen and (max-width: 575px) {
  .search,
  .login {
    padding: 0 !important;
  }
  .search__close,
  .login__close {
    position: fixed;
    right: 14%;
    top: 10%;
    font-size: 1.5rem;
    color: hsl(230, 75%, 15%);
    cursor: pointer;
    z-index: 999999999;
  }
}

.search__close,
.login__close {
  position: fixed;
  right: 4%;
  top: 2%;
  font-size: 1.5rem;
  color: hsl(230, 75%, 15%);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: hsl(230, 100%, 98%);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, 0.15);
  z-index: 100;
}

.nav {
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  color: hsl(230, 75%, 15%);
  font-weight: 600;
  transition: color 0.2s;
  font-size: 2rem;
  display: flex;
}
.nav__logo img {
  width: 400px;
}
@media screen and (max-width: 1050px) {
  .nav__logo img {
    width: 300px;
  }
}
@media screen and (max-width: 575px) {
  .nav__logo img {
    width: 260px;
    padding-top: 5px;
  }
}
@media screen and (max-width: 410px) {
  .nav__logo img {
    width: 200px;
  }
}
@media screen and (max-width: 375px) {
  .nav__logo img {
    width: 180px;
  }
}
.nav__menu {
  transform: translateX(0%);
}

@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: 7.5%;
    left: 0;
    background-color: hsl(230, 100%, 98%);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, 0.15);
    width: 100%;
    padding-block: 0.5rem 2rem;
    transition: all 0.2s;
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 991px) {
  .nav__menu {
    top: 11.5%;
  }
}
@media screen and (max-width: 675px) {
  .nav__menu {
    width: 30%;
  }
}
@media screen and (max-width: 575px) {
  .nav__menu {
    width: 100%;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
  margin-bottom: 0;
}
.nav__link {
  color: hsl(230, 75%, 15%);
  font-weight: 600;
  transition: color 0.2s;
  text-transform: uppercase;
}

/* .nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
} */
.nav__actions {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.nav__login,
.nav__toggle,
.nav__close {
  font-size: 1rem;
  color: hsl(230, 75%, 15%);
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 600;
}

:is(.nav__logo, .nav__login, .nav__toggle, .nav__link):hover {
  color: #287db9;
}

/* Show menu */
.show-menu {
  top: 0;
}

.profile-login {
  position: relative;
  display: flex;
  gap: 10px;
}
.profile-login .profile-div {
  position: absolute;
  left: -50%;
  top: 125%;
  background-color: hsl(230, 100%, 98%);
  padding: 10px 20px;
  width: 150px;
  display: none;
  animation: slideDown 0.5s forwards;
}
@media screen and (max-width: 1023px) {
  .profile-login .profile-div {
    position: absolute;
    left: -67%;
    top: 105%;
    background-color: hsl(230, 100%, 98%);
    padding: 10px 20px;
    width: 150px;
    display: none;
    animation: slideDown 0.5s forwards;
  }
}
.profile-login .profile-div ul {
  padding-left: 0;
  margin-bottom: 0;
}
.profile-login .profile-div ul li {
  margin: 10px 0;
  transition: all 0.3s;
}
.profile-login .profile-div ul li a {
  color: black;
  transition: all 0.3s;
}
.profile-login .profile-div ul li a:hover,
.profile-login .profile-div ul li:hover {
  color: #287db9;
  cursor: pointer;
}

.profile-login .image {
  overflow: hidden;
  width: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.profile-login .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-div2 {
  display: block !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*=============== LOGIN ===============*/
.login__form {
  display: grid;
  background-color: hsl(230, 100%, 97%);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);
  border-radius: 1rem;
  row-gap: 0.5rem;
  text-align: center;
  transform: translateY(-1rem);
  transition: transform 0.2s;
}
.login__title {
  font-size: 1.25rem;
  color: hsl(230, 75%, 15%);
}
.login__group {
  display: grid;
  row-gap: 1rem;
}
.login__label {
  display: block;
  text-align: initial;
  color: hsl(230, 75%, 15%);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.login__input {
  width: 100%;
  background-color: hsl(230, 100%, 97%);
  border: 2px solid hsl(230, 25%, 80%);
  padding: 0.8rem;
  border-radius: 0.5rem;
  color: hsl(230, 12%, 40%);
}
.login__input::-moz-placeholder {
  color: hsl(230, 12%, 40%);
}
.login__input::placeholder {
  color: hsl(230, 12%, 40%);
}
.login__signup {
  margin-bottom: 0.5rem;
}
.login__signup a {
  color: #287db9;
}
.login__forgot {
  display: inline-block;
  color: #287db9;
  margin-bottom: 1.25rem;
}
.login__button {
  display: inline-block;
  background-color: #287db9;
  width: 100%;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}
.login__button:hover {
  background-color: #1e5c89;
  box-shadow: 0 4px 24px hsla(193, 75%, 40%, 0.4);
}
/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.show-login .login__form {
  transform: translateY(0);
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .login__form {
    max-width: 400px;
    margin-inline: auto;
  }
}
/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(3.5rem + 2rem);
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
  .nav__close,
  .nav__toggle {
    display: none;
  }
  /* .nav__menu {
    margin-left: auto;
  } */
  .nav__list {
    flex-direction: row;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
  /* .login__form {
    padding: 3rem 2rem 3.5rem;
  } */
}
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
}

/*=============== LOGIN ===============*/
.modal {
  overflow: hidden !important;
  backdrop-filter: blur(8px);
}
.signup__form {
  /* display: grid; */
  background-color: hsl(230, 100%, 97%);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);
  border-radius: 1rem;
  row-gap: 1.25rem;
  text-align: center;
  /* transform: translateY(-1rem); */
  transition: transform 0.2s;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 575px) {
  .signup__form {
    transform: translateY(-2rem);
  }
}
.signup__title {
  font-size: 1.25rem;
  color: hsl(230, 75%, 15%);
}
.signup__group {
  display: grid;
  row-gap: 1rem;
}
.signup__label {
  display: block;
  text-align: initial;
  color: hsl(230, 75%, 15%);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

@media screen and (max-width: 575px) {
  .signup__label {
    font-size: 0.8rem !important;
  }
  .signup__input {
    padding: 0.6rem 0.8rem !important;
  }
  #signup__close {
    z-index: 9999999;
    top: 7% !important;
    right: 7% !important;
  }
}
.signup__input {
  width: 100%;
  background-color: hsl(230, 100%, 97%);
  border: 2px solid hsl(230, 25%, 80%);
  padding: 0.8rem;
  border-radius: 0.5rem;
  color: hsl(230, 12%, 40%);
}
.signup__input::-moz-placeholder {
  color: hsl(230, 12%, 40%);
}
.signup__input::placeholder {
  color: hsl(230, 12%, 40%);
}
.signup__signup {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.signup__signup a {
  color: #287db9;
}
.signup__forgot {
  display: inline-block;
  color: #287db9;
  margin-bottom: 1.25rem;
}
.signup__button {
  display: inline-block;
  background-color: #287db9;
  width: 100%;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: box-shadow 0.4s;
}
.signup__button:hover {
  box-shadow: 0 4px 24px hsla(230, 75%, 40%, 0.4);
}
/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.show-login .signup__form {
  transform: translateY(0);
}

.modal-content {
  background-color: transparent !important ;
  box-shadow: none !important;
  border: none !important;
}
.modal-header {
  border-bottom: none !important;
}
#signup__close {
  position: absolute;
  right: 4%;
  top: 2%;
  font-size: 1.5rem;
  color: hsl(230, 75%, 15%);
  cursor: pointer;
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .signup__form {
    max-width: 500px;
    margin-inline: auto;
  }
}

.section-1 {
  height: 100vh;
  background: url(images/home_banner_bg.jpg) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position-y: 70px;
  /* padding-left: 3rem; */
}
@media screen and (max-width:991px) {
  .section-1 {
    background-position-y: 50px;
  }
  .section-1 .form {
    top: 0;
  padding: 50px 10px !important;

}
}
.section-1 .form {
  background-color: #fff !important;
  padding: 30px;
  /* width: 100%; */
  text-align: center;
  position: relative;
  border-radius: 10px;
  top: 15%;
  /* margin: auto; */
}
.section-1 .form h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.section-1 .form h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 380;
}
.section-1 .error {
  text-align: center;
}
.section-1 .form button {
  background-color: #287db9;
  border-color: #287db9;
  color: white;
  width: max-content;
  padding: 10px 20px;
}
.section-1 .modal-content {
  background-color: white !important;
}
.section-1 form .input-box input {
  width: 80%;
  border-radius: 10px;
  margin: auto;
  border: none;
  /* border-radius: 0; */
  border: 1px solid #acabab;
  padding: 10px;
}
.section-1 form .input-box input::placeholder {
  text-align: center;
}
.section-1 form .input-box input[type="submit"] {
  background-color: #287db9;
  border-color: #287db9;
  color: white;
  width: max-content;
  padding: 10px 25px;
}

.section-2 .icon-div {
  display: flex;
  gap: 10px;
}
.section-2 .icon-div .icon i {
  color: #287db9;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.section-2 .icon-div .icon {
  border: 2px solid;
  padding: 10px;
  color: #287db9;
  background-color: #ffffff;
  border-color: #e6f1f4;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  width: 47px;
  height: 47px;
}
.section-2 h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 26px;
  text-transform: uppercase;
  color: #00242c;
  font-size: 25px;
  font-weight: 600;
}
.section-2 p {
  font-style: normal;
  font-weight: 380;
  font-size: 16px;
  line-height: 1.625;
  /* font-family: Poppins, sans-serif; */
  letter-spacing: 0.04em;
  text-align: left;
  color: #4e5355;
  text-align: justify;
}

.section-3 {
  min-height: 80vh;
}
.section-3 .container-fluid {
  padding: 0 !important;
}
.section-3 .row {
  margin: 0 !important;
}
.section-3 .col-lg-6 {
  padding: 0 !important;
}
.section-3 .content-left {
  background: url(images/all-services-bg.jpg);
  min-height: 80vh;
  width: 100%;
  padding-top: 91px;
  padding-right: 98px;
  padding-bottom: 104px;
  padding-left: 98px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.section-3 .content-left h1 {
  font-size: 4rem;
  color: white;
}
.section-3 .content-left .button {
  border: 2px solid white;
  padding: 15px 40px;
  transition: all 0.3s;
}
.section-3 .content-left .button:hover {
  background-color: white;
}
.section-3 .content-left .button:hover a {
  color: black;
}
.section-3 .content-left .button a {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}
.section-3 .content-right .box {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.section-3 .content-right .box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #163d57;
  opacity: 0.7;
}
.section-3 .content-right .box .content {
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  transition: all 0.3s;
}
.section-3 .content-right .box .content h2 {
  color: white;
  transition: all 0.3s;
}

.section-3 .content-right .box .content .button {
  display: none;
  animation: up 0.3s;
  transition: all 0.3s;
}

.section-3 .content-right .box .content .button a {
  background-color: #287db9;
  color: white;
  transition: all 0.3s;
  padding: 0;
  opacity: 0;
}
.section-3 .content-right .box .content .button a:hover {
  cursor: pointer;
  background: transparent;
  background-color: #1f5d89;
}
@keyframes up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-3 .content-right .box:hover .content .button {
  display: block;
}
.section-3 .content-right .box:hover .content .button a {
  padding: 10px 20px;
  opacity: 1;
}
.section-3 .content-right .box:hover::before {
  background: linear-gradient(
    to top,
    #163d57 0%,
    #163d57 10%,
    transparent 100%
  );
}
.section-3 .content-right .box:hover .content h2 {
  transform: translateY(-30px);
}

.section-3 .content-right .box1 {
  background: url(images/service-1.jpg);
}

.section-3 .content-right .box2 {
  background: url(images/service-2.jpg);
}

.section-3 .content-right .box3 {
  background: url(images/service-3.jpg) no-repeat right / cover;
}

.section-3 .content-right .box4 {
  background: url(images/service-4.jpg) no-repeat right / cover;
}

.section-4 h1 {
  background-color: #e9f1f6;
  padding: 40px 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  /* font-family: Poppins, sans-serif; */
  letter-spacing: 0em;
  text-align: inherit;
  color: #424242;
}
.section-4 .box {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}
.section-4 .box span {
  text-transform: uppercase;
  font-weight: 500;
  color: rgb(107, 107, 107);
}
.section-4 .box p {
  font-size: 1rem;
  text-align: justify;
  letter-spacing: 0.04em;
}
.section-4 .image {
  overflow: hidden;
  width: 580px;
  height: 160px;
}
.section-4 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.section-4 .content .social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section-4 .content .social-icons .fa-facebook-f {
  color: #287db9;
  font-size: 1.5rem;
  width: 45px;
  border: 1px solid #287db9;
  height: 45px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  object-fit: contain;
  cursor: pointer;
}
.section-4 .content .social-icons .fa-facebook-f:hover {
  background-color: #a2d8ff;
}
.section-4 .content .social-icons img {
  width: 45px;
  border: 1px solid #287db9;
  height: 45px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  object-fit: contain;
  cursor: pointer;
}
.section-4 .content .social-icons img:hover {
  background-color: #a2d8ff;
}

.section-5 {
  background-color: #e6f1f4;
}
.section-5 .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-5 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-5 .upper-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.section-5 .button-top {
  border: 2px solid #287db9;
  padding: 10px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.section-5 .button-top:hover {
  background-color: #287db9;
}
.section-5 .button-top:hover a {
  color: white;
}
.section-5 .button-top a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #287db9;
  transition: all 0.3s;
}

.section-5 h1 {
  font-size: 80px;
  color: #424242;
}
.section-5 h3 {
  font-size: 50px;
  color: #424242;
}
.section-5 h2 {
  font-size: 30px;
}
.section-5 .blog-box {
  box-shadow: 0 0 5px 5px rgba(170, 170, 170, 0.486);
  min-height: 500px;
  height: auto;
  position: relative;
  background-color: white;
  padding-bottom: 60px;
  margin-bottom: 1rem;
}
.section-5 .comments {
  display: flex;
  gap: 30px;
  margin: 5px 0;
}
.section-5 .comments a {
  color: rgb(126, 126, 126);
  text-decoration: none;
}
.section-5 .content {
  padding: 10px 15px;
}
.section-5 .content p {
  text-align: justify;
}
.section-5 .button {
  text-align: center;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
}

.section-5 .button a {
  background-color: #287db9;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}
.section-5 .button a:hover {
  background-color: #235c82;
  box-shadow: #163d57 0px 5px 5px -5px;
  transform: translateY(-7px);
}

.section-6 .boxes {
  display: flex;
  justify-content: space-between;
}
.section-6 h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  /* font-family: Poppins, sans-serif; */
  letter-spacing: 0em;
  text-align: inherit;
  color: #424242;
}
.section-6 .boxes .box {
  width: 300px !important;
}

.section-7 {
  background: url(images/testimonial-bg.jpg) no-repeat center top / cover;
}
.section-7 h1 {
  color: white;
  font-size: 80px;
  font-weight: 600;
}
.section-7 h3 {
  color: white;
  font-size: 50px;
  font-weight: 500;
}

.section-7 .testimonial-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 50px;
  text-align: center;
}
.section-7 .col-lg-4 {
  padding: 0;
  margin: 0;
  position: relative;
}
.section-7 .col-lg-4::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #424242;
  position: absolute;
  top: 0;
  left: 0;
}
.section-7 .col-lg-4:first-child:before {
  display: none;
}
.section-7 .testimonial-box .content {
  height: 250px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 1rem;
}
.section-7 .testimonial-box .content h2 {
  font-size: 1.5rem;
}
.section-7 .testimonial-box .content span {
  font-size: 1.1rem;
  font-weight: 500;
}
.section-7 .testimonial-box .content p {
  font-size: 1rem;
  line-height: 1.5;
}

.section-7 .testimonial-box .image {
  overflow: hidden;
  border-radius: 50%;
}
.section-7 .testimonial-box .image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  filter: grayscale(100%);
}

footer {
  background: url(images/footer_bg.jpg);
  color: white;
}
footer .address-div a {
  text-decoration: none;
  color: white;
  transition: all 0.3s;
  cursor: pointer;
}
footer .address-div a:hover {
  color: white;
}

footer .links a,
footer .other-links a {
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  color: white;
}
footer .links a:hover,
footer .other-links a:hover {
  color: #788ea4;
}
footer p {
  margin-top: 0.5rem;
}
footer ul {
  padding-left: 0;
  margin-top: 2rem;
}
footer ul li {
  margin: 10px 0;
}
footer .address-div div {
  margin: 10px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  color: white;
}
footer .address-div div i {
  color: #287db9;
}

footer .copyright {
  display: flex;
  justify-content: center;
  padding: 0 10px 10px 10px;
  align-items: center;
}
footer .copyright .social-icons {
  display: flex;
  gap: 20px;
  color: white;
}
footer .copyright a {
  color: white;
  cursor: pointer;
}
footer .copyright a:hover {
  color: #287db9;
}

footer .logo-content h2 img {
  width: 400px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .nav__close,
  .nav__toggle {
    display: block;
  }
  .section-1 .form {
    background-color: #fff;
    padding: 50px;
    width: 72%;
    text-align: center;
    position: relative;
    margin: auto;
  }

  h1 {
    font-size: 35px !important;
  }
  h4 {
    font-size: 20px !important;
  }
  h3 {
    font-size: 25px !important;
  }
  .section-1 .form .input-box input {
    width: 83%;
  }
  .section-2 .box {
    margin-bottom: 30px;
  }
  .section-2 .box .icon-div {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 575px) {
  .section-1 .form {
    background-color: #fff;
    padding: 30px;
    width: 90%;
    text-align: center;
    position: relative;
    margin: auto;
  }

  h1 {
    font-size: 28px !important;
  }
  h4 {
    font-size: 18px !important;
  }
  .section-1 .form .input-box input {
    width: 80%;
  }
}
