*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --arialFont: "Arial Regular";
  --yellowColor: #f6882e;
  --greencolor: #40a748;
  --bluecolor: #3a55a5;
}

/* fonts */
/* #### Generated By: http://font.download #### */

@font-face {
  font-family: "Arial Regular";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ARIAL.woff") format("woff");
}

@font-face {
  font-family: "Arial Narrow";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ARIALN.woff") format("woff");
}

@font-face {
  font-family: "Arial Medium";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ArialMdm.woff") format("woff");
}

@font-face {
  font-family: "Arial Bold";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ARIALBD 1.woff") format("woff");
}

@font-face {
  font-family: "Arial Bold";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ARIALBD.woff") format("woff");
}

@font-face {
  font-family: "Arial Narrow Bold";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ARIALNB.woff") format("woff");
}

@font-face {
  font-family: "Arial Black";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ARIBLK.woff") format("woff");
}

@font-face {
  font-family: "Arial Light Regular";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ARIALLGT.woff") format("woff");
}

@font-face {
  font-family: "Arial CE Regular";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ArialCE.woff") format("woff");
}

@font-face {
  font-family: "Arial CE MT Black Regular";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ArialCEMTBlack.woff") format("woff");
}

@font-face {
  font-family: "Arial CE Bold";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/arialceb.woff") format("woff");
}

/* fonts */

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--robotoFont);
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

section {
  padding: 120px 0;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 100%;
  padding: 0px 60px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 44px;
  right: 15px;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: var(--yellowColor);
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #000;
}

.mm-navbar__title > span {
  color: var(--yellowColor);
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}

.mm-listitem.active {
  background: #878787;
}

/* ==================== mobile menu section end =================== */

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}

.header_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.site-header.sticky {
  background-color: #fff;
}

/*=========================== header end ===========================*/

/*========================== banner start ==========================*/
.banner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hdr_top {
  display: flex;
  align-items: center;
  padding: 3px 0;
  background: var(--bluecolor);
  gap: 50px;
  justify-content: flex-end;
  position: relative;
  padding-right: 125px;
}

h3 {
  font-weight: 600;
  font-size: 25px;
}

.logo {
  width: 270px;
}

.logo img {
  width: 100%;
}

.header_cont {
  width: calc(100% - 270px);
}

.toll_free {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.toll-free-box {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}

.toll-free-box p {
  margin: 0;
}

.toll-free-box p strong {
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #fff;
}

.toll-free-box a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5px;
}

.toll-free-box a:hover {
  text-decoration: underline;
}

.timing {
  color: #ccc;
  font-size: 14px;
}
.search_link {
  width: 300px;
}
.search_link form {
  display: flex;
}
.search_link .form-control {
  background: rgba(255, 255, 255, 0.5);
  border: transparent;
  border-radius: 20px;
  font-size: 12px;
  height: 34px;
  color: #fff;
}

.search_link button {
  background: transparent;
  border: transparent;
  position: relative;
  right: 29px;
  top: -1px;
}

.search_link img {
  width: 20px;
}
.toll-free-box p {
  margin: 0;
}
.timing {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding-top: 6px;
}
.serch-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 80px;
  /* background: #fff; */
  /* padding: 15px; */
  z-index: 9;
  transform: translateY(-200px);
  /* box-shadow: 0px 0px 10px rgb(0 0 0 / 6%); */
}

.serch-wrapper form {
  position: relative;
  width: calc(100% - 50px);
  display: inline-block;
  align-items: center;
}

.serch-wrapper form input {
  height: 45px;
  width: 100%;
  padding: 0 20px;
  box-shadow: none !important;
  border-radius: 4px 0 0 4px;
}

.serch-wrapper.show-search,
.serch-wrapper {
  transition: all 0.3s;
}

.serch-wrapper.show-search {
  transform: translateY(0);
}

.serch-wrapper .d-flex {
  position: absolute;
  right: 352px;
  width: 500px;
}

a.search-close {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  text-decoration: none;
  background: var(--yellowColor);
  color: var(--yellowColor);
  font-size: 20px;
  border-radius: 0 4px 4px 0;
  position: relative;
  right: 37px;
}

/* .srch_bx {
  position: relative;
  width: 300px;
}

.srch_bx input {
  width: 100%;
  padding: 10px 15px;
  border: 0;
  border-radius: 40px;
  color: #000;
  background: #fff;
}

.srch_bx button {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  border: 0;
  background: transparent;
} */

.main_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 53px;
}

.hdr_btm {
  padding: 19px 0;
  /* padding-right: 125px; */
}

.main_menu li a {
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #313131;
  text-transform: uppercase;
}

.best_place {
  position: absolute;
  top: -10px;
  right: -130px;
  margin: 0;
}

.hdr_left {
  position: relative;
  /* height: 121px; */
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  background: #fff;
}

.hdr_left:after {
  position: absolute;
  content: "";
  left: 100%;
  top: 0;
  width: 73px;
  height: 65px;
  background: url(../images/hdr_design.png) no-repeat left top / cover;
}

.hdr_left:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100vw;
  right: 100%;
  top: 0;
  background: #fff;
}

.hdr_top::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  left: 100%;
  top: 0;
  background: var(--bluecolor);
}

.banner {
  position: relative;
  z-index: 1;
}

.site-main {
  padding-top: 65px;
}
.banner_txt {
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  max-width: 561px;
  color: #fff;
  z-index: 9;
}
.banner_txt h1 {
  font-family: Arial;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.sectionTitle h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px;
  color: var(--yellowColor);
}

.sectionTitle {
  margin-bottom: 30px;
}

.sectionTitle h2 span {
  color: var(--bluecolor);
}

.about_product {
  padding-top: 70px;
}

.gray_box {
  background: #f1f1f1;
  padding: 20px;
  font-family: Arial;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.gray_box figure img {
  transition: all 0.5s ease-in-out;
}

.gray_box:hover figure img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.02);
}

.product_logo {
  display: block;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.gray_box figure {
  margin-bottom: 52px;
  position: relative;
}

.get-touch {
  background: url(../images/alliede-images/form-bg.jpg) no-repeat center/cover;
}

.touch_form {
  background: rgba(255, 255, 255, 0.3);
  padding: 30px;
  border: 1px solid #fff;
  border-radius: 30px;
  position: relative;
}

.touch_form .wpcf7-spinner {
  position: absolute;
  right: -21px;
}

.touch_form h3 {
  font-family: Arial;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 25px;
  color: #fff;
}

.touch_form .form-control {
  min-height: 55px;
  border: 0;
  font-size: 13px;
}

.touch_form input::placeholder,
.touch_form .form-select {
  font-size: 13px;
  color: #707275;
}

.touch_form .form-select {
  height: 55px;
}

.touch_form textarea {
  height: 179px;
}

.touch_form label.form-check-label {
  color: #fff;
}

.touch_form .wpcf7-submit {
  background: var(--bluecolor);
  color: #fff;
  border-radius: 44px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 5px 25px;
  transition: 0.5s;
  border: transparent;
  margin-top: 15px;
  line-height: 30px;
  transition: all 0.5s;
}

.touch_form .wpcf7-submit:hover {
  background: var(--greencolor);
  transition: all 0.5s;
}

.touch_form button:hover i {
  color: #fff;
  transform: rotate(0);
  transition: all 0.5s;
}

.touch_form button i {
  font-size: 25px;
  color: var(--yellowColor);
  transform: rotate(-45deg);
}

#button {
  display: inline-block;
  background-color: #ff9800;
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  font-size: 25px;
  line-height: 40px;
  color: #fff;
  cursor: pointer;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* ====footer start====== */
.site-footer {
  background: #3956a6;
  padding: 86px 0 0;
  border-top: 5px solid var(--yellowColor);
}

.footerlogo figure {
  margin-bottom: 0px;
}

.footerlogo {
  display: inline-block;
  margin-bottom: 55px;
}

.qrWrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qrImg {
  padding: 7.5px;
  background: #fff;
  border-radius: 5px;
}

.qrContent {
  flex: 1;
  max-width: 123px;
}

.qrContent p {
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0%;
  color: #fff;
}

.playstore {
  margin: 15px 0 53px;
}

.missedCallWrapper {
  /* border-left: 2px solid var(--yellowColor);
  padding-left: 10px; */
  display: none;
  margin-bottom: 30px;
}

.missedCallWrapper p {
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  color: #fff;
  margin-bottom: 8px;
}

.missedCallWrapper h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0%;
  color: #ffffff;
  display: inline-block;
  transition: 0.5s;
}

.missedCallWrapper h5 span {
  margin-right: 2px;
  background: #243769;
  width: 38px;
  display: inline-grid;
  height: 38px;
  place-content: center;
  border-radius: 4px;
  color: var(--yellowColor);
  overflow: hidden;
  position: relative;
}

h5 span .digit-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 1s ease-out;
}

h5 span .digit-inner div {
  height: 38px;
  /* Match the span height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.missedCallWrapper a:hover {
  letter-spacing: 1px;
  transition: 0.5s;
}

.subcribeform {
  position: relative;
}

.subcribeform input {
  background: #ffffff33;
  min-height: 35px;
  padding: 7px 18px;
  border-radius: 44px;
  border: none !important;
  box-shadow: none !important;
  width: 100%;
  color: #fff;
}

.subscribe {
  background: var(--bluecolor);
  color: #fff;
  border-radius: 44px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  height: 43px;
  padding: 7px 20px 7px 25px;
  transition: 0.5s;
  margin-top: 20px;
}

.subscribe:hover {
  background: var(--greencolor);
  color: #fff;
  transition: 0.5s;
}

.subscribe i {
  transition: 0.5s;
  font-size: 29px;
  transform: rotate(-45deg);
  color: var(--yellowColor);
  line-height: 26px;
}

.subscribe:hover i {
  transform: rotate(0);
  transition: 0.5s;
  color: #fff;
}

.subscribe span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.subscribe:active i {
  color: #000;
}

.footerContent h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--yellowColor);
  margin-bottom: 20px;
}

.footernav {
  display: grid;
}

.footernav li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-left: 15px;
  transition: 0.5s;
}

.footernav li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #b9babc;
  position: absolute;
  top: 12px;
  left: 0;
  border-radius: 50%;
  transition: 0.5s;
}

.footernav li a:hover {
  color: var(--yellowColor);
  transition: 0.5s;
}

.footernav li a:hover::before {
  background: var(--yellowColor);
  transition: 0.5s;
}

.footerContact {
  display: flex;
}

.footerContactItem {
  display: flex;
  align-items: center;
  gap: 15px;
  /* border-right: 3px solid #000; */
  width: 33.33%;
  background: var(--yellowColor);
  padding: 14px 18px;
}

.footerContact .footerContactItem:nth-child(2) {
  /* background: #FFD326; */
  background: #243769;
}

.footerContact .footerContactItem:nth-child(3) {
  background: #40a748;
  border: none;
}

.fcIcon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #00000066;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 18px;
}

.fcContent {
  flex: 1;
}

.fcContent h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #fff;
}

.fcContent a {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.footerContact {
  margin-top: 45px;
  margin-bottom: -50px;
}

.fcContent p {
  font-size: 13.5px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

.bottomnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.bottomnav li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #fff;
  display: block;
  position: relative;
}

.bottomnav li:not(:last-child) a::before {
  content: "";
  height: 100%;
  width: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  right: -15px;
}

.copyrightbar {
  padding: 77px 0 27px;
  background: #9caad2;
}

.copyrightbar p {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0;
}

.copyrightbar p a {
  font-weight: 700;
  color: #fff;
}

.pl-30 {
  padding-left: 60px;
}

.aw_text .subscribe {
  position: relative;
}

section.awards {
  border-radius: 0 !important;
  z-index: 5;
  position: relative;
  background: #fff;
}

.fcIcon {
  transition: all 0.5s ease-in-out;
}

.footerContactItem:hover .fcIcon {
  background: #000;
}

.touch_form br {
  display: none;
}

.touch_form .form-check-label a {
  color: #fff;
}

/* ====footer close====== */

/* ====RESPONSIVE====== */

@media (max-width: 767px) {
  .footerContact {
    flex-flow: wrap;
    margin-top: 30px;
  }

  .footerContactItem {
    width: 100%;
    border-right: none;
  }

  .pl-30 {
    padding-left: 0px;
  }

  .footerContent {
    margin-bottom: 30px;
  }

  .footerContent h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footerlogo {
    display: inline-block;
    margin-bottom: 35px;
  }

  .playstore {
    margin: 15px 0 20px;
  }

  .eventsslideWrap .slick-next.slick-arrow,
  .eventsslideWrap .slick-prev.slick-arrow {
    width: 36px;
    height: 36px;
    left: inherit;
    right: 0;
    bottom: inherit;
    top: -40px;
  }

  .eventsslideWrap .slick-prev.slick-arrow {
    left: inherit;
    right: 46px;
  }

  .eventsslideWrap .slick-dots {
    flex-direction: row;
    width: 100%;
    height: 10px;
    gap: 10px;
    top: inherit;
    right: inherit;
    left: 0;
    bottom: -30px;
  }

  .copyrightbar p {
    text-align: center;
    margin-bottom: 8px;
  }

  .bottomnav {
    justify-content: center;
  }

  .pressItem {
    margin-bottom: 30px;
  }

  h3 {
    font-size: 23px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .eventsslideWrap .slick-next.slick-arrow,
  .eventsslideWrap .slick-prev.slick-arrow {
    left: -254px;
    bottom: 20px;
  }

  .eventsslideWrap .slick-next.slick-arrow {
    left: -213px;
  }

  .pl-30 {
    padding-left: 30px;
  }

  .footernav li a {
    font-size: 12px;
    line-height: 25px;
    padding-left: 10px;
  }

  .footernav li a::before {
    width: 5px;
    height: 5px;
    top: 9px;
  }

  .fcContent a {
    font-size: 15px;
    line-height: 17px;
    word-break: break-all;
  }

  .fcContent p {
    font-size: 11.5px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #000;
  }

  .learningdevelopmentContent .row {
    flex-flow: wrap-reverse;
  }

  .learningdevelopmentContent .inner_head {
    margin-top: 30px;
  }

  .learningtesitem {
    padding: 50px 15px 30px;
  }

  .learningtesitem p {
    font-size: 16px;
    line-height: 28px;
    min-height: 196px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .eventsslideWrap .slick-next.slick-arrow,
  .eventsslideWrap .slick-prev.slick-arrow {
    left: -329px;
  }

  .eventsslideWrap .slick-next.slick-arrow {
    left: -286px;
  }
}

@media (max-width: 1023px) {
  .core_values {
    padding-bottom: 130px;
  }
}

@media (max-width: 1366px) {
  .core_values {
    padding-bottom: 170px;
  }
}

/* ========================== responsive ========================== */
@media (max-width: 1440px) {
  .site-main {
    padding-top: 65px;
  }

  .serch-wrapper {
    top: 70px;
  }

  .hdr_top {
    gap: 25px;
  }

  .main_menu {
    gap: 30px;
  }

  .hdr_top {
    padding-right: 100px;
  }
  .banner_txt h1 {
    font-size: 24px;
    line-height: 43px;
  }
}

@media (max-width: 1366px) {
  section {
    padding: 100px 0;
  }

  .val_txt p {
    /* min-width: 295px; */
  }

  .core_values {
    padding-bottom: 170px;
  }
}

@media (max-width: 1365px) {
  .container-fluid {
    padding: 0 15px;
  }

  .logo {
    width: 255px;
  }

  .hdr_top {
    padding-right: 70px;
  }

  .banner,
  .banner_slider,
  .banner_slide figure {
    height: 430px;
  }

  .banner_text h1 {
    font-size: 35px;
  }

  .banner_text p {
    font-size: 22px;
  }

  .main_menu {
    gap: 25px;
  }

  .main_menu li a {
    font-size: 16px;
  }

  .srch_bx {
    width: 254px;
  }

  .hdr_top {
    gap: 25px;
  }

  .val_txt p {
    /* min-width: 250px; */
  }

  .main_hd h2 {
    font-size: 45px;
    line-height: 50px;
  }

  .sub_hd h2 {
    font-size: 30px;
  }

  .testi_cont:after {
    left: 0;
  }

  .insider_left {
    padding-left: 15px !important;
  }

  .inside_text {
    width: 100%;
  }

  /* .ins_cont img {
    height: 397px;
  } */

  /* .ins_cont img {
    height: 353px;
  } */
}

@media (max-width: 1200px) {
  .val_txt p {
    min-width: 295px;
  }
}

@media (max-width: 1023px) {
  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
  }

  /* mmenu end */
  .hdr_btm {
    display: none;
  }

  .hdr_top {
    flex-wrap: wrap;
    gap: 15px;
  }

  .logo {
    width: 170px;
  }

  .hdr_left,
  .hdr_left:after {
    height: 105px;
  }

  .header_cont {
    width: 65%;
  }

  .hdr_top {
    padding: 9px 0;
    justify-content: flex-start;
  }

  .toll_free,
  .srch_bx {
    width: 100%;
  }

  .site-header,
  .site-header.sticky {
    background: #000;
  }

  .hdr_top form {
    width: 60%;
  }

  .best_place {
    right: 42px;
  }

  .best_place img {
    object-fit: contain;
    width: 60px;
    height: auto;
  }

  nav#menu {
    z-index: 99;
  }

  .site-main {
    padding-top: 102px;
  }

  .banner_text {
    width: 70%;
  }

  section {
    padding: 60px 0;
  }

  .main_hd h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .val_txt {
    padding: 20px;
    z-index: 2;
  }

  .val_cont_hldr::after {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
  }

  .core_values_hldr {
    margin-top: 50px;
  }

  .counter_slider_hldr {
    width: 260px;
  }

  .counter_cont {
    padding: 30px 15px;
  }

  .core_values {
    padding-bottom: 130px;
  }

  .sub_hd {
    margin-bottom: 25px;
  }

  .sub_hd h2 {
    font-size: 25px;
  }

  .insider_left {
    padding: 68px 0 48px 0;
  }

  .inside_slider .slick-list {
    height: 357px;
  }

  .aw_left {
    margin-bottom: 20px;
  }

  .site-main {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .serch-wrapper .d-flex {
    position: static;
    right: 0;
    width: 100%;
  }

  .serch-wrapper {
    top: 58px;
  }

  .eventUpdates {
    padding: 60px 0;
  }

  .toll-free-box {
    display: none;
  }

  .hdr_left,
  .hdr_left:after {
    height: 51px;
  }

  .header_cont {
    width: 100%;
  }

  /* .best_place {
    top: -58px;
  } */

  .best_place img {
    width: 33px;
  }

  .hdr_top form {
    width: 100%;
  }

  .hdr_top {
    padding-bottom: 14px;
    flex-wrap: inherit;
    padding-left: 50px;
    gap: 9px;
  }

  .site-main {
    padding-top: 51px;
  }

  .banner figure {
    height: 100%;
  }
  .touch_form {
    margin-top: 50px;
  }
  .banner_txt {
    max-width: 100%;
  }
  .banner figure img {
    height: 100%;
  }
  .banner_txt h1 {
    font-size: 25px;
    line-height: 37px;
  }
  .sectionTitle {
    text-align: left !important;
  }
  .about_product {
    padding-top: 50px;
  }
  .search_link {
    z-index: 9;
  }

  .banner_text {
    width: 100%;
  }

  .banner_text h1 {
    font-size: 27px;
    margin-bottom: 25px;
  }

  .banner_text p {
    font-size: 18px;
  }

  .banner,
  .banner_slider,
  .banner_slide figure {
    height: 266px;
  }

  .mobileMenuButton {
    top: 20px;
  }

  /* element.style {} */

  /* .core_values {
    position: relative;
    background: linear-gradient(0deg, #F1F1F1 45.91%, #FFFFFF 100%);
    padding-bottom: 200px;
  } */

  .main_hd h2 {
    font-size: 28px;
    line-height: 30px;
  }

  .val_cont_hldr {
    opacity: 1;
  }

  .val_cont_hldr.active {
    opacity: 1;
    width: 100%;
  }

  .abt_main_hldr figure img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .core_val_cont {
    flex-wrap: wrap;
    gap: 10px;
  }

  .val_cont_hldr figure {
    height: auto;
  }

  .val_cont_hldr {
    width: 100%;
  }

  .short_hd {
    position: absolute !important;
    bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 10px;
    /* padding-left: 14px; */
    transition: all 1s ease-in-out;
    min-width: auto;
    z-index: 2;
    writing-mode: initial;
    transform: none;
    right: auto;
    top: 0;
    left: 15px;
  }

  .val_cont_hldr figure {
    height: 40px;
  }

  .val_cont_hldr.active figure {
    height: 370px;
  }

  .abt_sml {
    width: 100%;
  }

  .core_values {
    padding: 87px 0;
  }

  .our_business {
    border-radius: 30px 30px 0 0;
  }

  .our_business_hldr .main_hd {
    width: 100%;
    margin: 0 auto 30px auto;
    gap: 40px;
  }

  .our_business_hldr .main_hd h2::after {
    right: -21.5px;
  }

  .our_business {
    padding-bottom: 78px;
  }

  .testi_cont:after {
    width: 59px;
  }

  .testi_cont {
    padding: 60px 30px 60px 30px;
  }

  .testi_slider .slick-prev,
  .testi_slider .slick-next {
    position: absolute;
    bottom: -30px;
  }

  .social_cont {
    flex-wrap: wrap;
  }

  .social_cont img,
  .social_txt {
    width: 100%;
  }

  .social_txt p {
    min-height: 150px;
  }

  .insider_view {
    flex-wrap: wrap;
    gap: 15px;
  }

  .insider_left,
  .insider_right {
    width: 100%;
  }

  .inside_slider .slick-slide.slick-current.slick-active {
    width: 360px !important;
  }

  .insider_right {
    padding: 0 15px;
  }

  .ins_txt {
    min-width: 100%;
    justify-content: space-between;
  }

  .ins_txt p {
    width: 70%;
  }

  section.awards {
    border-radius: 0 0 30px 30px;
  }

  .ourpartners {
    padding: 70px 0;
  }

  .eventtitleWrap {
    padding-bottom: 20px;
  }

  .site-footer {
    padding: 40px 0 0;
  }

  .counter_cont h5 {
    font-size: 30px;
  }

  .banner {
    overflow: hidden;
  }

  .banner_slide figure {
    position: relative;
  }

  .banner_slide figure::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  .banner_slider .slick-dots {
    bottom: 25px;
  }

  .banner_text h1,
  .banner_text p {
    color: #fff;
  }

  .abt_quot {
    min-height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1200.98px) {
  .missedCallWrapper h5 span {
    width: 30px;
    height: 30px;
  }

  .fcContent a {
    word-break: break-all;
  }
}

@media (max-width: 576px) {
  .fcContent a {
    word-break: break-all;
  }

  .bottomnav {
    gap: 15px;
  }

  .bottomnav li:not(:last-child) a::before {
    right: -8px;
  }
}

@media (max-width: 479px) {
}
