/** insurance-section **/

.insurance-section{
  position: relative;
}

.insurance-section .sec-title{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insurance-section .inner-container{
  position: relative;
}

.insurance-section .insurance-block{
  margin-bottom: 30px;
}

.insurance-section .insurance-block-one{
  position: relative;
  display: block;
}

.insurance-section .insurance-block-one .inner-box{
  position: relative;
  display: block;
  text-align: center;
  transition: all 500ms ease;
}

.insurance-section .insurance-block-one .inner-box:hover{
  transform: translateY(-5px);
}

.insurance-section .insurance-block-one .inner-box .image{
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  margin-bottom: 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(237, 240, 230, 1);
  transition: all 500ms ease;
}

.insurance-section .insurance-block-one .inner-box:hover .image{
  border-color: #ff6b00;
}

.insurance-section .insurance-block-one .inner-box .image img{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insurance-section .insurance-block-one .inner-box span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  text-transform: capitalize;
  transition: all 500ms ease;
}

.insurance-section .insurance-block-one .inner-box:hover span{
  color: #ff6b00;
}



/** Responsive CSS **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .insurance-section .insurance-block-one .inner-box .image{
    width: 100px;
    height: 100px;
  }

  .insurance-section .insurance-block-one .inner-box span{
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px){
  .insurance-section .insurance-block{
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 599px){
  .insurance-section .insurance-block-one .inner-box .image{
    width: 80px;
    height: 80px;
  }

  .insurance-section .insurance-block-one .inner-box span{
    font-size: 13px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 499px){
  .insurance-section .sec-title{
    display: block;
  }
}

/** Interactive Insurance Cards **/

.insurance-block-one{
  cursor: pointer;
  transition: all 300ms ease;
}

.insurance-block-one:hover{
  transform: translateY(-5px);
}

.insurance-card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 2px solid rgba(237, 240, 230, 1);
  border-radius: 10px;
  padding: 25px 20px;
  transition: all 300ms ease;
  height: 280px;
  width: 100%;
  min-height: 280px;
}

.insurance-block-one:hover .insurance-card{
  border-color: #ff6b00;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

.insurance-card .image{
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  margin-bottom: 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(237, 240, 230, 1);
  transition: all 300ms ease;
}

.insurance-block-one:hover .insurance-card .image{
  border-color: #ff6b00;
}

.insurance-card .image img{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insurance-card span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: capitalize;
  transition: all 300ms ease;
}

.insurance-block-one:hover .insurance-card span{
  color: #ff6b00;
}

/** Insurance Forms Section **/

.insurance-forms-section{
  position: relative;
  margin-top: 50px;
}

.insurance-form{
  position: relative;
  margin-bottom: 50px;
}

.form-container{
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.form-container h3{
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 30px;
  text-align: center;
}

.subtitle{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #777;
  margin-top: 10px;
}

.form-section{
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(237, 240, 230, 1);
}

.form-section:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6b00;
}

.form-group{
  position: relative;
  margin-bottom: 25px;
}

.form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 8px;
}

.form-group label span{
  color: #ff6b00;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 2px solid rgba(237, 240, 230, 1);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  color: var(--title-color);
  background: #fff;
  transition: all 300ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

.form-group textarea{
  height: 120px;
  resize: vertical;
}

.checkbox-label{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--title-color);
  cursor: pointer;
  margin-bottom: 15px;
}

.checkbox-label input[type="checkbox"]{
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked{
  accent-color: #ff6b00;
}

/** Form Buttons **/

.form-section.text-center{
  text-align: center;
  padding-top: 20px;
}



.btn-secondary{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 12px 30px;
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
}

.btn-secondary:hover{
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
  color: #fff;
}

/** Responsive Design **/

@media only screen and (max-width: 1200px){
  .form-container{
    padding: 30px 25px;
  }

  .form-container h3{
    font-size: 24px;
  }
}

@media only screen and (max-width: 991px){
  .insurance-card{
    height: 240px;
    min-height: 240px;
    padding: 20px 15px;
  }

  .insurance-card .image{
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .insurance-card span{
    font-size: 13px;
    line-height: 16px;
  }

  .form-container{
    padding: 25px 20px;
  }

  .form-container h3{
    font-size: 22px;
    line-height: 30px;
  }

  .form-section h4{
    font-size: 18px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px){
  .insurance-forms-section{
    margin-top: 30px;
  }

  .form-container{
    padding: 20px 15px;
    margin: 0 15px;
  }

  .form-container h3{
    font-size: 20px;
    line-height: 26px;
  }

  .form-section{
    margin-bottom: 30px;
  }

  .form-section h4{
    font-size: 16px;
    line-height: 22px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea{
    height: 45px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .theme-btn,
  .btn-secondary{
    height: 45px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 599px){
  .insurance-card{
    height: 160px;
    min-height: 160px;
    padding: 15px 8px;
  }

  .insurance-card .image{
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .insurance-card span{
    font-size: 12px;
    line-height: 14px;
  }

  .form-container{
    margin: 0 10px;
    padding: 15px 10px;
  }

  .form-container h3{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .form-section h4{
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .form-group{
    margin-bottom: 20px;
  }

  .form-group label{
    font-size: 14px;
  }

  .theme-btn,
  .btn-secondary{
    height: 40px;
    padding: 8px 15px;
    font-size: 13px;
    margin: 5px;
  }
}

@media only screen and (max-width: 499px){
  .subtitle{
    font-size: 14px;
    line-height: 22px;
  }

  .form-container h3{
    font-size: 16px;
    line-height: 22px;
  }

  .form-section h4{
    font-size: 14px;
    line-height: 18px;
  }

  .checkbox-label{
    font-size: 14px;
  }
}

/** checkout-section **/

.checkout-section{
  position: relative;
}

.checkout-section h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 33px;
}

.checkout-section .billing-content{
  position: relative;
  display: block;
}

.checkout-section .billing-content .form-inner{
  position: relative;
  display: block;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  padding: 29px 30px 32px 30px;
  border-top: solid;
  border-width: 3px;
  border-color: #ff6b00 !important;
}

.checkout-section .billing-content .form-inner .field-column{
  padding: 0px 5px;
}

.checkout-section .billing-content .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.checkout-section .billing-content .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 4px;
}

.checkout-section .billing-content .form-inner .form-group label span{
  color: rgba(233, 37, 48, 1);
}

.checkout-section .billing-content .form-inner .form-group input[type='text'],
.checkout-section .billing-content .form-inner .form-group input[type='email'],
.checkout-section .billing-content .form-inner .form-group input[type='date']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(237, 240, 230, 1);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.checkout-section .billing-content .form-inner .form-group input:focus{

}

.checkout-section .billing-content .form-inner .form-group .select-box{
  min-height: 50px;
}

.checkout-section .billing-content .form-inner .form-group .select-box select{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(237, 240, 230, 1);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--title-color);
  background: #fff;
  transition: all 500ms ease;
  cursor: pointer;
}

.checkout-section .billing-content .form-inner .form-group .theme-btn{
  width: 100%;
  color: #fff;
  margin-top: 8px;
}

.checkout-section .billing-content .form-inner .form-group .theme-btn span{
  background: var(--title-color);
}

.checkout-section .order-info{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 24px 50px 0px rgba(0, 0, 0, 0.05);
  padding: 21px 30px 40px 30px;
}

.checkout-section .order-info .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  margin-bottom: 30px;
}

.checkout-section .order-info .title-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title-color);
}

.checkout-section .order-info .order-product .single-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.checkout-section .order-info h4{
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: rgba(233, 37, 48, 1);
}

.checkout-section .order-info h4 span{
  color: var(--title-color);
}

.checkout-section .order-info .order-product .single-item .product-box{
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-section .order-info .order-product .single-item .product-box .image-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  border: 1px solid rgba(229, 229, 229, 1);
  margin-right: 15px;
}

.checkout-section .order-info .order-product .single-item h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.checkout-section .order-info .order-product .single-item h6 span{
  color: rgba(124, 124, 124, 1);
}

.checkout-section .order-info .cost-box{
  position: relative;
  display: block;
  padding-top: 22px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(232, 232, 232, 1);
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  margin-bottom: 18px;
}

.checkout-section .order-info .cost-box li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}

.checkout-section .order-info .cost-box li:last-child{
  margin-bottom: 0px;
}

.checkout-section .order-info .total-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.checkout-section .order-info .payment-option .bank-payment{
  position: relative;
  display: block;
  background: rgba(247, 247, 247, 1);
  padding: 22px 30px;
  margin-bottom: 30px;
}

.checkout-section .order-info .payment-option .bank-payment p{
  font-size: 15px;
  line-height: 24px;
  margin-left: 24px;
}

.checkout-section .order-info .payment-option .check-box label{
  font-size: 16px;
  line-height: 24px;
}

.checkout-section .order-info .payment-option .check-box label:before{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 5px;
  background: transparent !important;
}

.checkout-section .order-info .payment-option .check-box label:after{
  background-image: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 3px;
  top: 8px;
}

.checkout-section .order-info .btn-box .theme-btn{
  width: 100%;
  color: #fff;
}

.checkout-section .order-info .btn-box .theme-btn span{
  background: var(--title-color);
}

/* Alert Messages */
.checkout-section .alert{
  position: relative;
  display: block;
  padding: 15px 20px;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 24px;
}

.checkout-section .alert-danger{
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.checkout-section .alert-success{
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.checkout-section .text-danger{
  color: #e92530;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}



/** Responsive CSS **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .checkout-section .billing-content{
    margin-bottom: 40px;
  }

  .checkout-section .billing-content .form-inner{
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px){

}

@media only screen and (max-width: 599px){
  .checkout-section .billing-content .form-inner .field-column{
    padding: 0px;
  }

  .checkout-section .order-info .order-product .single-item{
    display: block;
    margin-bottom: 10px;
  }

  .checkout-section .order-info .order-product .single-item h6 br{
    display: none;
  }

  .checkout-section .order-info .order-product .single-item .product-box{
    display: block;
  }

  .checkout-section .order-info .order-product .single-item .product-box .image-box{
    margin: 0px 0px 10px 0px !important;
  }
}

@media only screen and (max-width: 499px){

}
