.popupForm1_class {
  background-size: cover;
  /* This will make sure the image covers the entire element */
  background-position: center;
  /* This centers the image in the element */
  background-repeat: no-repeat;
}

@media only screen and (max-width: 600px) {
  #popupForm1 {
    width: 92%;
    box-shadow: black;
    border-radius: 12px;
  }
}
.blog .entry-title {
  color: black;
}
#popupForm1 {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  background-color: #111919;
  padding: 20px;
  z-index: 1000;
}

#closePopup1 {
  /* Style for your close button */
}

p#otp_field153 {
  margin-top: -40px;
}

.form-group {
  margin-top: 8px;
}

#closePopup1 {
  float: right;
}

#myButton {
  color: #fff;
}

button.open-popup_multi {
  color: #fff;
}

button#closePopup1 {
  color: #fff;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form-control {
  border-radius: 3px;
}

input#miniorange_otp_token_submit_d707e48 {
  color: #fff;
}

.main_imag {
  margin-right: 15px;
}

#user-registration-form {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.form-control {
  border: none;
  padding: 10px;
  flex-grow: 1;
  font-size: 16px;
}

.input-group-text {
  background: #eee;
  border: none;
  padding: 20px 10px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.btn-primary {
  background-color: #354050;
  border: none;
  padding: 15px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-primary .fas {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  display: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

@media (max-width: 576px) {
  #user-registration-form {
    margin: 30px 10px;
    /* Reduced side margins for smaller screens */
    padding: 20px 10px;
    /* Reduced padding for smaller screens */
  }

  .input-group {
  }

  .input-group-text,
  .form-control {
    width: 25%;
    /* Full width on smaller screens */
    box-sizing: border-box;
    /* Include padding and border in the element's total width and height */
  }

  .btn-primary {
    padding: 15px 10px;
    /* Reduced padding for smaller screens */
  }

  .click-here {
    width: 150px !important;
  }

  #popupForm1 {
    padding: 10px !important;
  }
}

/* Styles for the international telephone input */
.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding-left: 8px !important;
  border: none;

  width: 100%;
}
.input-group {
  position: relative;

  border: 1px solid #ccc; /* Border for the input group */
}

.input-group input {
  font-size: 16px; /* Adjust as needed */
  padding: 15px;
  border: none; /* Remove input field border */
  outline: none; /* Remove focus outline */
  width: 100%; /* Make input fill its container */
  background: transparent; /* Transparent background */
}

.input-group label {
  z-index: 9999999 !important;
  position: absolute;
  top: 0px;
  left: 10px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  color: #969696; /* Default label color */
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -6px; /* Adjust top position to move label above the input */
  left: 10px; /* Adjust left position to align with input text */
  font-size: 12px; /* Smaller font size */
  color: green; /* Color change on focus */
  /* background-color: white; Background to cover the border */
  padding: 0 5px; /* Padding around the label text */
}
/* Additional styles for the flag container */
#flag-container {
  padding: 20px 10px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
}

button[type="submit"] {
  background-color: #354050;
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
  z-index: 999;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  transform: scale(0.9);
  animation: scaleUp 0.3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

#closePopup {
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.2s;
}

#closePopup:hover {
  background-color: #2980b9;
}

.first_div {
  text-align: center;
}

@media (max-width: 767px) {
  #form1 .position-best {
    z-index: 200021;
    position: absolute;
    background-color: white;
    padding: 23px;
    margin-top: -400px;
    margin-left: 0px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 10px;
  }

  .close-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px; /* Adjust the size as needed */
    color: #333; /* Adjust the color as needed */
  }

  .ddhe {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .ddhe h2 {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .input-group {
    width: 100% !important;
  }
  .tp-revslider-mainul {
    height: 420px !important;
  }

  .tp-leftarrow {
    top: 100% !important;
    display: none;
  }
  .tp-rightarrow {
    top: 100% !important;
    display: none;
  }
  .slid1h4 {
    margin-top: 448px !important;
    text-align: left !important;
    margin-left: -10px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    text-shadow: 1px 2px 9px #000;
  }

  .forcefullwidth_wrapper_tp_banner {
    background: rgba(0, 0, 0, 0.5);
  }

  #slider1.tp-caption.tp-resizeme.rev-text-2 {
    font-size: 24px !important;
    margin-top: 100px !important;
    text-align: left !important;
    margin-left: 0px !important;
  }
  .about-btn2 {
    z-index: 999990;
    position: absolute;
    background: #f6911f;
    margin-top: 106px;
    /* margin-left: 0px; */
    margin: -82px auto !important;
    width: 80%;
    text-align: center;
    left: 9%;
    top: 3.8%;
    border-radius: 10px;
    font-size: 25px;
    color: white;
  }

  .about-bt3 {
    text-align: center;
    color: white;
    background: #f6911f;
    font-size: 20px;
  }

  /* .slid1h2{
    margin-top: 177px!important;
    font-size: 26px!important;
    text-align: left!important;
    margin-left: -5px!important;
} */
  .tp-mask-wrap {
    margin-top: -180px;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 400px) {
  .tp-caption.tp-resizeme.rev-text-2 {
    font-size: 21px !important;
    line-height: 1.5 !important;
    margin-top: 60px;
    text-shadow: 1px 2px 3px #000;
    text-align: left !important;
    margin: 0px !important;
    padding: 0px !important;
  }
}
@media (min-width: 767px) {
  #newr .container1 {
    max-width: 100%;
    margin: auto;
    padding: 60px 150px 360px 150px !important;
    background-color: #f5f5f5;
  }
  #newr {
    height: 650px;
  }
  #newr .map iframe {
    width: 100%;
    height: 450px;
  }
  #main-top .col-md-6.leftbar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  .about-btn2 {
    display: none;
  }
  #slider1 .tp-parallax-wrap {
    position: absolute;
    left: 145px !important;
    top: 100px !important;
    text-align: left !important;
  }
  .about-bt3 {
    display: none;
  }
  #closePopup12 {
    position: absolute;
    top: -26px;
    right: 10px;
    font-size: 12px;
    font-weight: 900 !important;
  }
  #slider1 h2 {
    text-align: left !important;
    font-size: 40px !important;
  }

  #slider1 h4 {
    text-align: left !important;
    margin-top: 60px !important;
  }

  #slider .h4class {
    font-weight: 300 !important;
    font-size: 30px !important;
    white-space: nowrap !important;
    min-height: 0px !important;
    min-width: 0px !important;
    max-height: none !important;
    max-width: none !important;
    color: rgb(235, 235, 235);
  }

  #form1 .position-best {
    width: 343px;
    position: absolute;
    right: 120px;
    top: 50px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
  }
  .ddhe {
    display: flex !important;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    overflow: hidden;
    font-size: 17px !important;
  }
}

@media only screen and (min-device-width: 445px) and (max-device-width: 754px) {
  .forcefullwidth_wrapper_tp_banner {
    height: 400px !important;
  }

  #form1 .position-best {
    z-index: 99999999999 !important;
    position: absolute !important;
    background-color: white !important;
    padding: 23px !important;
    margin: -112px auto !important;
    border: 1px solid #000 !important;
    border-radius: 10px !important;
    /* margin-left: 76px!important; */

    margin-left: 147px !important;
  }
}

@media only screen and (min-device-width: 380px) and (max-device-width: 540px) {
  .slid1h2 {
    margin-top: 86px !important;
    font-size: 28px !important;
    text-align: center !important;
    margin-left: -5px !important;
  }

  .slid1h4 {
    margin-top: 608px !important;
    text-align: center !important;
    /* margin-left: -10px!important; */
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    text-shadow: 1px 2px 9px #000;
  }
}

.row.section-row--p-sm .col-md-3:nth-last-child(-n + 4) {
  display: none;
}

.flex-container {
  display: flex;
  flex-wrap: nowrap;
  /* overflow: hidden; */
  flex-direction: row;
  justify-content: space-evenly;
  align-content: center;
  align-items: flex-start;
  padding: 0px 65px 0px 59px;
}

.input-group-text > .form-control {
  flex: 1 1 auto;
  width: 5%;
  margin-bottom: 0;
  height: 60px;
}
@media (max-width: 756px) {
  .faq-question {
    cursor: pointer;
    padding: 10px;
    /* background-color: #F6911F; */
    color: black;
    border: 1px solid #000;
    width: 100%;
    text-align: left;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    position: relative;
    padding-left: 35px;
    line-height: 01;
  }

  .faq-answer > p {
    text-align: justify;
  }
  .left-content > p {
    text-align: justify;
  }

  .flex-container {
    display: flex;
    flex-wrap: nowrap;

    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 0px 0px;
  }
}

.right-content {
  /* overflow: hidden; */
}

@media (max-width: 756px) {
  .left-content {
    text-align: left;
    padding: 0px 10px 0px 10px !important;
  }
  .swiper {
    width: 100%;
    height: 300px;
    display: none;
  }
  .container1 h2 {
    margin: 0px 10px 20px 0px;
  }
}

.left-content,
.right-content {
  flex: 1;
  /* Adjust the ratio as needed */
  padding: 20px 70px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.left-content {
  text-align: justify;
  padding: 0px 0px 0px 118px;
}

.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Minimum Width END Minimum Width ENDMinimum Width ENDMinimum Width ENDMinimum Width ENDMinimum Width ENDMinimum Width ENDMinimum Width ENDMinimum Width END */

@media (max-width: 768px) {
  .left-content,
  .right-content {
    flex: 100%;
  }
  .container1 {
    max-width: 80%;
    margin: auto;
    padding: 20px;
  }
}

.imawe {
  width: 80%;
  height: auto;
  margin-bottom: 18px;
}
.amin_cont {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.services-list {
  list-style: none; /* Removes default list styling */
  padding: 0;
}

.services-list li {
  margin-bottom: 10px;
  color: #000; /* Space between items */
}
.achievements-list li {
  position: relative; /* Needed for absolute positioning of the icon */
  padding-left: 25px; /* Add space for the icon */
}

.achievements-list li .fa-check-to-slot {
  position: absolute;
  left: 0; /* Position the icon to the left of the list item */
  top: 14px; /* Align the icon with the top of the list item */
  color: green; /* Color of the icon */
}
/* .services-list li::before {
        content: '🗹'; /* Check mark symbol 
        color : green; /* Color of the check mark 
        font-weight: bold; /* Makes the check mark bold
        display: inline-block; 
        width: 1.5em; /* Space for the check mark
        margin-left: -1.5em; /* Aligns check mark with the text
    } */
.achievements-list {
  list-style: none; /* Removes default list styling */
  padding: 0;
}

.achievements-list li {
  margin-bottom: 0px;
  color: #000; /* Space between items */
}

/* .achievements-list li::before {
        content: '🗹'; /* Check mark symbol 
        color: green; /* Color of the check mark 
        font-weight: bold; /* Makes the check mark bold 
        display: inline-block; 
        width: 1.5em; /* Space for the check mark 
        margin-left: -1.5em; /* Aligns check mark with the text 
    } */
.swip_pagei {
  margin-top: 20px !important;
}
.newee {
  color: #d9433c;
  font-weight: bolder;
}
.container1 {
  max-width: 100%;
  margin: auto;
  padding: 40px 150px 40px 150px;
  background-color: #f5f5f5;
}

.container1 h2 {
  text-align: center !important;
  margin-bottom: 20px;
  color: #414141;
}

.flex-container2 {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  flex-direction: row;
  align-content: stretch;
  justify-content: center;

  align-items: flex-start;
}

.flex-container2 > div {
  flex: 1;
  min-width: 300px; /* Adjust min-width for responsiveness */
}

.button-container2 {
  text-align: left;
  margin-top: 0px;
}

.button2 {
  padding: 0px 30px 0px 30px;
  background-color: #f6911f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button2:hover {
  background-color: #f6911f;
}
@media (max-width: 600px) {
  .flex-container2 {
    flex-direction: column;
    align-items: center;
  }
  .flex-container2 > div {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
}

@media (max-width: 756px) {
  .button-container2 {
    text-align: center;
    margin-top: 20px;
  }
}

.footer-section {
  width: 100%;
  margin-bottom: 20px;
}

.footer-section img {
  max-width: 100%;
  height: auto;
  /* border-radius: 50%; */
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .footer-section {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .container1 {
    max-width: 100%;
    margin: auto;
    padding: 41px 0px 40px 0px;
    background-color: #f5f5f5;
  }
}
.footer-menu li {
  text-align: left;
  color: rgb(225, 225, 225);
}
.footer-menu li > a {
  text-align: left;
  color: rgb(225, 225, 225);
  text-decoration: none;
}
.footer-section > div > p > span > a {
  text-align: left;
  color: rgb(225, 225, 225);
  text-decoration: none;
}
.addds {
  /* padding-right: 50px !important; */
}
.footer-section:first-child {
  /* text-align: left; */
  gap: 40px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  /* align-items: flex-start; */
}

.footer-section:first-child img {
  margin-right: 0px; /* Adjust the margin as needed */
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.social-icons a {
  margin-right: 10px; /* Adjust the margin between social icons */
}

/* Optionally, you can adjust the alignment of other elements in the first section */
.footer-section:first-child div {
  text-align: left;
}

.social-icons > a > img {
  width: 30px !important;
}

.tp-mask-wrap {
  overflow: visible !important;
}

@media (max-width: 400px) {
  .tp-fullwidth-forcer {
    height: 420px !important;
  }
}
@media only screen and (min-device-width: 401px) and (max-device-width: 444px) {
  .tp-fullwidth-forcer {
    height: 420px !important;
  }
}

@media only screen and (min-device-width: 400px) and (max-device-width: 555px) {
  .tp-caption.tp-resizeme.rev-text-2 {
    font-size: 17px;
    line-height: 1.5 !important;
    margin-top: -111px !important;
    text-shadow: 1px 2px 3px #000;
  }
  .slid1h2 {
    margin-top: 86px !important;
    font-size: 25px !important;
    text-align: center !important;
    margin-left: -5px !important;
  }
  #slider1 .tp-mask-wrap {
    margin-top: -270px !important;
    margin-left: 0px;
  }

  .slid1h4 {
    margin-top: 608px !important;
    text-align: center !important;
    /* margin-left: -10px!important; */
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    text-shadow: 1px 2px 9px #000;
  }
}

@media only screen and (min-device-width: 555px) and (max-device-width: 768px) {
  #tp-mask-wrap-0 .tp-caption.tp-resizeme.rev-text-2 {
    font-size: 12px;
    line-height: 1.5 !important;
    top: -120px;
    text-shadow: 1px 2px 3px #000;
    z-index: 10000;
  }
  #tp-mask-wrap-2 .tp-caption.tp-resizeme.rev-text-2 {
    font-size: 12px;
    line-height: 1.5 !important;
    top: -120px;
    text-shadow: 1px 2px 3px #000;
    z-index: 10000;
  }

  #tp-mask-wrap-0 .tp-caption.tp-resizeme.rev-text-2 {
    font-size: 17px;
    line-height: 1.5 !important;
    margin-top: -287px !important;
    text-shadow: 1px 2px 3px #000;
  }

  #tp-mask-wrap-2 .tp-caption.tp-resizeme.rev-text-2 {
    font-size: 17px;
    line-height: 1.5 !important;
    margin-top: -287px !important;
    text-shadow: 1px 2px 3px #000;
  }
  .slid1h2 {
    margin-top: 86px !important;
    font-size: 28px !important;
    text-align: center !important;
    margin-left: -5px !important;
  }

  #tp-mask-wrap-1 .slid1h4 {
    margin-top: 642px !important;
    text-align: center !important;
    /* margin-left: -10px!important; */
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    text-shadow: 1px 2px 9px #000;
    top: -58px;
  }

  #tp-mask-wrap-3 .slid1h4 {
    margin-top: 642px !important;
    text-align: center !important;
    /* margin-left: -10px!important; */
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    text-shadow: 1px 2px 9px #000;
    top: -58px;
  }
}

.my-btn {
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 640px) {
  .slick-slide img {
    height: auto !important;
  }
}

@media (max-width: 400px) {
  .slid1h4 {
    text-align: left !important;
  }
}
