/*=============== Common Css start from here ==================*/
:root{
  --color-white:#ffffff;
  --black:#000000;
  --black2:#333;
  --light-black:#0f0c09;
  --green:#039f46;
  --dark-green:#026c30;
}



body {
  font-family: 'Alegreya Sans', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: var(--color-white);
}

.form-control:focus {
  border-color: var(--bg-gray);
  outline: 0;
  box-shadow: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}
p {
  color: var(--black);
  font-family: "Alegreya Sans",sans-serif;
  font-weight: normal;
  font-size: 20px;
}

.common-btn {
  font-size: 24px;
  line-height: 40px;
  color: var(--color-white);
  font-weight: 700;
  text-transform: capitalize;
  padding: 10px 20px;
  border: transparent;
  background-color: var(--green);
  display: inline-block;
  transition: .5s ease-in-out;

}
.common-btn-hover:hover{
  background-color: var(--dark-green);
}

/*=============== Common css End here =========================*/
.fat-sec{
  padding: 100px 0;
}
.fat-sec .container{
  padding: 0 150px 0 50px;
}

.fat-sec .fat-img img{
  margin-top: 100px;
  width: 270px;
}
.fat-content .heading-top{
  color: var(--light-black);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}
.fat-content .main-heading {
  color: var(--black);
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  margin: 30px 0;
}
.fat-content .feature-ul li{
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 18px;
}
.info-text{
  color: var(--black2);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 30px;

}

.subscribe-modal.modal{
  --bs-modal-border-radius: 0;
}
.subscribe-modal .modal-dialog{
  max-width: 765px;
}
.subscribe-modal .modal-body{
  padding: 40px 80px;
}
.subscribe-modal .modal-header {
  border-radius:0!important;
  border-bottom: 0;
}
.subscribe-modal .modal-header .btn-close {
  border-radius: 50%;
  background: #dde2eb;
  width: 26px;
  height: 26px;
  text-align: center;
  color: #999999;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscribe-modal .modal-header .btn-close span {
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
  background-color: #999;
  transition: .4s ease-in-out;
}
.subscribe-modal .modal-header .btn-close:hover span{
  background-color: var(--black);
}
.subscribe-modal .modal-header .btn-close span.btn-close1{
  transform: rotate(45deg);
}
.subscribe-modal .modal-header .btn-close span.btn-close2{
  transform: rotate(-45deg);
}
.modal-heading {
  color: var(--black);
  font-family: "Poppins",sans-serif;
  font-weight: 800;
  font-size: 45px;
  font-style: normal;
}
.modal-text{
  font-size: 22px;
  margin: 30px 0;
}
.subscribe-modal  form  .form-control {
  margin: 8px auto 25px auto;
  width: 400px;
  border-color: var(--black);
}


/* responsive css here */
@media (max-width:1200px){
  .fat-sec .container{
    padding: 0 100px 0 50px;
  }
}
@media (max-width:991.8px){
  .fat-sec .container{
    padding: 0;
  }
}

@media (max-width:767.8px){
  .fat-sec{
    padding: 60px 0;
  }
  .fat-sec .fat-img img{
    margin-top: 0;
    margin-bottom: 50px;
  }
  .subscribe-modal .modal-dialog{
    max-width: 96%;
  }
  .subscribe-modal .modal-body {
    padding: 40px 40px;
}
}
@media (max-width:575.8px){
  .fat-sec .container{
    padding: 0 20px;
  }
  .signup-btn.common-btn {
    font-size: 18px;
    padding: 10px 0px;
  }
  .subscribe-modal  form  .form-control {
    width: 100%;
  }
  .subscribe-modal .modal-body {
    padding: 40px 10px;
  }
  .modal-heading {
    font-size: 36px;
  }
}
