/*=============== Common Css start from here ==================*/
:root{
  --color-white:#ffffff;
  --black:#000000;
  --light-black:#333;
  --gray:#777777;
  --blue:#1e20ba;
  --dark-blue:#0000ee;
}



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

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

a {
  text-decoration: none;
  cursor: pointer;
}


.common-btn {
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px;
  line-height: 40px;
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 24px;
  border: transparent;
  background-color: var(--black);
  display: inline-block;
  transition: .5s ease-in-out;

}
.common-btn-hover:hover{
  background-color: var(--light-black);
}

/*=============== Common css End here =========================*/



/*=============== Index Page css Start here ====================*/
.index-page section{
  padding: 35px 0;
}
.signup-sec strong{
  font-size: 24px;
  font-weight: 700;
}
.signup-sec h1{
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0;
}
.signup-sec p, .signup-sec ul li{
  font-size: 24px;
}
.signup-sec .common-btn{
  margin-bottom: 30px;
}
.signup-sec .try-free{
  font-size: 24px;
  color: var(--blue);
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 20px;
}
.signup-sec .info-text{
  font-size: 16px;
}
/*=============== Index Page css End here ======================*/





/* Subscribe Modal ==============================================*/
.subscribe-modal.modal{
  --bs-modal-border-radius: 0;
}
.subscribe-modal .modal-dialog{
  max-width: 700px;
}
.subscribe-modal .modal-body{
  padding: 20px 40px 40px 40px;
}
.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-weight: 700;
  font-size: 24px;
  font-style: normal;
  margin-bottom: 20px;
}
.subscribe-modal .info-text{
  font-size: 14px;
  color: var(--gray);
  margin-top: 25px;
}
.subscribe-modal  form  .form-control {
  margin: 8px auto 25px auto;
  width: 400px;
  border-color: var(--black);
}
/* Subscribe Modal =================================================*/





/*=============== Thankyou Page css Start here ======================*/
.thankyou-page{
  padding: 35px 0;
}
.thank-you-content{
  background-color: var(--black);
  color: var(--color-white);
  padding: 25px 55px;
}
.thank-you-content h4{
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
}
.thank-you-content h2{
  font-size: 80px;
  font-weight: 700;
  margin: 30px 0;
}
.thank-you-content .step3{
  font-size: 72px;
}
.thank-you-content h3{
  font-size: 48px;
  font-weight: 700;
}
.thank-you-content p{
  font-size: 24px;
  line-height: 22px;
}
.thank-you-content p.step2-text{
  font-size: 24px;
  line-height: 35px;
}
.thank-you-content .click-here-link{
  font-style: italic;
  text-decoration: underline;
  color: var(--dark-blue);
}
.thank-you-content .secret-mail-link{
  font-size: 64px;
  font-weight: 700;
  color: var(--dark-blue);
  text-decoration: underline;
}
/*=============== Thankyou Page css End here ========================*/




/* responsive css here =============================================*/
@media (min-width:1400px){
  .index-page .container-md{
    max-width: 1080px;
  }  
  .container{
    max-width: 1080px;
  }
}
@media (max-width:1200px){

}
@media (max-width:991.8px){
  .thankyou-page .thank-you-content h2{
    font-size: 65px;
  }
}

@media (max-width:767.8px){
  .container-md{
    padding: 0 20px;
  }
  .signup-sec h1 {
    font-size: 40px;
  }
  .common-btn {
    font-size: 32px;
  }


  .thankyou-page .thank-you-content h2{
    font-size: 50px;
  }
  .thankyou-page .thank-you-content {
    padding: 25px 30px;
  }
}


@media (max-width:540px){
  .common-btn {
    font-size: 20px;
  }
}

