

.hamburger-cutsom{
    position: relative !important;
    bottom: 35px;
}

.mobile-view-logo{
    display: none !important;
}

@media only screen and (max-width: 768px) {
    .top-one{
        display: none;
    }
    .mobile-view-logo{
        display: block !important;
        margin-top: 12px !important;
    }
}

footer{
    background-color: transparent !important;
    padding: 10px 0;
}

.footer-logo-container{
    margin-bottom: 10px;
}

.footer-logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img{
    max-width: 70px;
    border-radius: 50%;
}

.footer-logo span{
    margin: 0 20px;
}


.footer-logo ul{
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-logo a{
    color: #2c3e50;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .footer-logo{
        flex-direction: column;
        align-items: center
    }

    .footer-logo img{
       margin-bottom: 10px;
    }
  }


.footer-copyright{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    color: #2d3436;
}

.footer-copyright a{
    color: #7D1F53;
}

@media only screen and (max-width: 768px) {
    .footer-copyright{
        flex-direction: column;
        align-items: center
    }
  }



  /* ====================services-box-custom-border================ */
  .services-box-custom-border{
    border-color: #fff !important;
    background-image: none !important;
  }

  .featured-imagebox-services-cutsom{
    box-shadow: 0px 0px 10px #95a5a6;
  }


  /* ===============service-details-container======================= */
.site-main{
    min-height: 75vh;
}

.service-details-container p{
    text-align: justify;
}

  .service-details-container img{
    float: right;
    margin-left: 25px;
    margin-bottom: 20px;
    border: 20px solid #bdc3c7;
    max-width: 480px;
    width: 100%;
  }

  @media only screen and (max-width: 768px) {
    .service-details-container img{
        border: none;
      }
  }



  /* =====================about-key-features==================== */
  .about-key-features{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
  }

  .about-key-features-card{
    background-color: #f1f2f6;
    padding: 30px;
    text-align: center !important;
  }

  .about-key-features-card h4{
    font-size: 22px;
  }

  .about-key-features-card i{
    color: #7D1F53;
    font-size: 35px;
    border-radius: 60px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.5s;
  }

  .about-key-features-card:hover i{
    color: #00427C;
  }

  @media only screen and (max-width: 992px) {
    .about-key-features{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
      }
  }

  @media only screen and (max-width: 768px) {
    .about-key-features{
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        margin-top: 20px;
      }

      .about-key-features-card{
        padding: 20px;
      }

      .about-key-features-card h4{
        font-size: 20px;
      }
  }


  /* =======================our-team-container========================== */
  .our-team-container{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .our-team-card img{
    width: 100%;
  }

  .our-team-card-text{
    padding: 20px 0;
    border-left: 1px solid #a4b0be;
    border-bottom: 1px solid #a4b0be;
    border-right: 1px solid #a4b0be;
    background-color: #f1f2f6;
    text-align: center;
  }

  .our-team-card-text h5{
    color: #7D1F53;
    font-size: 18px;
    font-weight: 600;
  }

  .our-team-card-text p{
    color: #00427C;
    margin-bottom: 0;
  }

  .our-team-card-text p:nth-of-type(2){
    color: #000;
    font-size: 15px;
  }

  @media only screen and (max-width: 768px){
    .our-team-container{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
      }
  }

  /* =============================testimonials-container============================== */
  .testimonials-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .testimonial-card{
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px #bdc3c7;
  }

  .testimonial-card a:hover{
    color: #2d3436 !important;
  }

  .testimonial-card .google-review{
    width: 30%;
  }

  .testimonial-card p{
    text-align: justify;
  }

  .testimonial-name{
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .testimonial-name img{
    width: 45px;
    border-radius: 50%;
  }

  .testimonial-name i{
    background-color: #ecf0f1;
    padding: 12px;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
  }

  .testimonial-name h5{
    margin-bottom: 0;
    color: #7D1F53;
    font-weight: 600;
  }

  .review-more-btn{
    display: block;
    width: max-content;
    margin: auto;
    margin-top: 30px;
    background-color: #7D1F53;
  }

  .review-more-btn a{
    color: #fff;
  }

  @media only screen and (max-width: 768px){
    .testimonials-container{
      grid-template-columns: repeat(1, 1fr);
      margin-top: 40px;
    }
  }


  /* =====================gallery-container====================== */
  .gallery-container{
    min-height: 70vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .gallery-card{
    box-shadow: 0 5px 15px #bdc3c7;
    border-radius: 10px;
  }

  .gallery-card img{
    width: 100%;
    border-radius: 10px;
  }

  @media only screen and (max-width: 768px){
    .gallery-container{
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }

  /* ======================sidebar-call-btn======================= */
  .sidebar-call-btn{
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    /* background-color: rgb(52,152,219, 0.5); */
    cursor: pointer;
  }

  /* .sidebar-call-btn p{
    margin-bottom: 0;
    padding: 5px 10px;
    border: 2px solid #3498db;
    border-left: none;
  } */

  .sidebar-call-btn-mobile{
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
  }

  .sidebar-call-btn-mobile a{
    padding: 12px;
    background-color: rgb(52,152,219, 0.8);
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
  }

  @media only screen and (max-width: 768px){
    .sidebar-call-btn{
     display: none;
    }

    .sidebar-call-btn-mobile{
      display: block;
    }

  }


  /* =============page form start============== */
  .page-form{
    display: none;
    position: fixed;
    background-color: rgb(47,54,64, 0.6);
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 20;
  }
  .page-form-container{
    width: 90%;
    max-width: 370px;
    background-color: #fff;
    padding: 20px;
    margin: auto;
    margin-top: 20px;
    position: relative;
  }

  .page-form-container label{
    margin-bottom: 0;
  }

  .page-form-container input{
    padding: 4px;
    margin-bottom: 5px;
  }

  .page-form-container input:focus{
    border-color: #7D1F53;
  }

  .page-form-container textarea{
    margin-bottom: 15px;
  }

  .page-form-container textarea:focus{
    border-color: #7D1F53;
  }

  .page-form-container button{
    margin: 0 15px;
    width: 100%;
    border: none;
    background-color: #7D1F53;
    border-radius: 2px;
  }

  .page-form-container i{
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 5px;
    font-size: 25px;
    cursor: pointer;
    color: #7D1F53;
  }

  .page-form-container i:hover{
    color: #8f2c62;
  }

  .page-form #mail-status{
    font-size: 12px;
  }

  .page-form .error{
     color: red;
  }

  .page-form .success{
    color: green;
 }

 .page-form .g-recaptcha{
  margin-left: 13px;
 }

  @media only screen and (max-width: 768px){
    .page-form{
      display: none;
    }
    .page-form-container{
      margin-top: 30px;
    }
    .page-form-container input{
      padding: 5px;
      margin-bottom: 8px;
    }
  }

  /* =============page form end============== */


  /* ==============email submission validation model start================ */
  .email-submission-validation-model{
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
  }

  .email-submission-validation-model-container{
    width: 90%;
    max-width: 420px;
    margin: auto;
    margin-top: 20vh;
    background-color: #fff;
    padding: 25px 15px;
    text-align: center;
    position: relative;
  }

  .email-submission-validation-model-container h5{
    color: #7D1F53;
    font-size: 22px;
  }

  .email-submission-validation-model-container p{
    color: #2d3436;
    font-size: 16px;
  }

  .email-submission-validation-model-container img{
    width: 40%;
  }

  .email-submission-validation-model-container .fa-xmark{
    position: absolute;
    padding: 5px;
    font-size: 20px;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #2d3436;
  }

  .email-submission-validation-model-container .fa-xmark:hover{
    color: red;
  }
  /* ==============email submission validation model end================ */
