* {
  margin: 0;
  padding: 0;
}

:root {
  --maincolor: #086666;
  --white: #ffffff;
  --mainhover: #0c8c8c;
  --black: #333;
  --backgroundcolor: #e5eef6;
}

body {
  font-family: "Montserrat", sans-serif;
  max-width: 1920px;
  margin: 0 auto;
  overflow: overlay;
  scroll-behavior: smooth;
}

.container {
  padding: 0px 80px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--mainhover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.heading__main {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  padding: 16px 0px;
}

.section__intropara {
  font-size: 12px;
  margin-bottom: 7px;
  letter-spacing: 1px;
  /* opacity: 0.7; */
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.para__main {
  line-height: 20px;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 14px;
  text-align:justify;
}

/* Main Button CSS */
.button__main {
  background: var(--maincolor);
  color: var(--white);
  font-size: 12px;
  padding: 12px 16px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s linear;
}

.button__main:hover {
  background: var(--mainhover);
}

@media (max-width: 576px) {
  .container {
    padding: 0px 16px;
  }
}

.card {
  padding: 20px 30px;
  background: var(--white);
  box-shadow: 0 0 3px rgb(0 0 0 / 10%);
  transition: all 0.3s linear;
  max-width: 180px;
}

.card__image img {
  width: 40px;
}

.card__title {
  padding: 10px 0px;
}

.card__title h3 {
  font-size: 22px;
  font-weight: 800;
}

.card__desc p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.card:hover {
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}

@media (max-width: 576px) {
  .card {
    max-width: 280px;
  }
}

.cards__bg {
  padding: 20px 30px;
  background: var(--white);
  box-shadow: 0 0 3px rgb(0 0 0 / 10%);
  transition: all 0.3s linear;
  max-width: 300px;
 height: 285px;
}

.cards__bg:hover {
  background: var(--maincolor);
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
  color: var(--white);
}

.read__more {
  display: inline-block;
  padding: 25px 0px;
}

.card__red {
  border-bottom: 2px solid #f8b29c;
  transition: all 0.3s linear;

  cursor: pointer;
}
.read__more a {
  text-decoration: none;
  color: inherit;
}

.read__more:hover {
  transform: scale(1.05);
}

input::placeholder,
textarea::placeholder {
  font-family: "Montserrat", sans-serif;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  position: relative;
  max-width: 650px;
}

/* The Close Button */
.close {
  position: absolute;
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  left: 95%;
  top: 5%;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modalform {
  padding: 40px;
}

.modalform input {
  display: block;
  margin: 0 auto;
  padding: 15px 20px;
  margin-bottom: 20px;
  outline: var(--maincolor);
  width: 80%;
}

.modalform__createaccount {
  padding: 10px;
  color: var(--maincolor);
  cursor: pointer;
}

.modalform__createaccount:hover {
  color: var(--mainhover);
}
