@font-face {
  font-family: AvenirLTStd-800;
  src: url(../fonts/AvenirLTStd-Black.otf);
}
@font-face {
  font-family: AvenirLTStd-700;
  src: url(../fonts/AvenirLTStd-Book.otf);
}
@font-face {
  font-family: AvenirLTStd-900;
  src: url(../fonts/AvenirLTStd-Heavy.otf);
}
@font-face {
  font-family: AvenirLTStd-300;
  src: url(../fonts/AvenirLTStd-Light.otf);
}
@font-face {
  font-family: AvenirLTStd-500;
  src: url(../fonts/AvenirLTStd-Medium.otf);
}
@font-face {
  font-family: AvenirLTStd-Roman;
  src: url(../fonts/AvenirLTStd-Roman.otf);
}

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --button-color: #f07a56;
  --bg-color: #f5f5dc;
  --heading-color: #a28573;
  --prime-color: #EF3E23;
  --text-font: AvenirLTStd-Roman;
  --theme-font: AvenirLTStd-500;
  --AvenirLTStd-300: AvenirLTStd-300;
  --AvenirLTStd-500: AvenirLTStd-500;
  --AvenirLTStd-700: AvenirLTStd-700;
  --AvenirLTStd-800: AvenirLTStd-800;
  --AvenirLTStd-900: AvenirLTStd-900;
}

html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 500;
  font-style: normal;
  color: #000;
  font-size: 20px;
  line-height: 1.5;
  background-color: #ffffff;
	font-family:  var(--text-font);
  overflow-x: hidden;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 12px 0;
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

/* Start Form Input */

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
  background-color: #ffffff;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  color: #000;
  border: 1px solid #000000;
  padding: 10px;
  outline: none !important;
  font-size: 16px;
  font-weight: 500;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/download.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  transition: all 0.5s;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #000000;
  color: #ffffff;
  border: 1px solid #fbfef9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-left: 40px;
  padding-right: 40px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Oswald";
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.08em;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: #2d2d2d;
  border: 1px solid #ff539c;
  color: #ff539c;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

::-moz-placeholder {
  opacity: 1;
  color: #000;
}

:-moz-placeholder {
  opacity: 1;
  color: #000;
}
/* End Form Input */

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
ul li,
ol li {
  list-style-type: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s;
}
/*common css*/

h1 {
  font-family: var(--AvenirLTStd-900);
  font-size: 50px;
  line-height: 60px;
}
h2 {
  font-family: var(--AvenirLTStd-900);
  font-size: 52px;
  line-height: 64px;
}
.hsm__heading h2{
	text-transform: uppercase;
}
p {
  font-family: var(--AvenirLTStd-700);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
 section .container, header .container, footer .container{
    padding: 0 20px;
  }
.hsm__padding {
  padding: 75px 0;
}
.hsm__padding.bg-color{
  background-color: var(--black-color);
}
.hsm__heading{
  margin-bottom: 20px;
}
.hsm__button {
  padding: 15px 40px;
  background-color: var(--prime-color);
  color: var(--white-color);
  font-family: var(--text-font);
  font-size: 18px;
  font-family: var(--AvenirLTStd-900);
  line-height: 100%;
  text-transform: capitalize;
  transition: all 0.5s;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 35px;
}
.hsm__button:hover {
  color: var(--prime-color);
  background: transparent;
  border-color: var(--prime-color);
}
.hsm__padding.bg-color .hsm__heading{
  color: var(--white-color);
}
.hsm__site_header{
  padding: 20px 0;
  background-color: var(--black-color);
}
.hsm__logo_wrapper .hsm__logo{
  max-width: 340px;
}
.whatsapp_icon{
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  transition: bottom 0.3s ease;
}
.whatsapp_icon.active{
	top: 50%;
    transform: translateY(-50%);
	  display: flex;
  transform: translateY(-50%);
  align-items: start;
}
.whatsapp_icon img{
  max-width: 75px;
  height: 75px;
}

.hsm__bannner{
  position: relative;
  height: 95vh;
}
.hsm__banner_image{
  height: 100%;
}
.hsm__bannner .hsm__banner_image img{
    height: 95vh;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.hsm__bannner .hsm__banner_container{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: right;
  transform: translate(-50%, -50%);
}
.hsm__banner_content h1{
  text-align: center;
  color: var(--white-color);
  text-shadow: 1px 3px 5px #00000040;
	text-transform: uppercase;
}
.hsm__banner_content p{
  color: var(--black-color);
  font-family: var(--AvenirLTStd-700);
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
  max-width: 78%;
  margin: 0 auto;
  opacity: 0.75;
}
.hsm__lets_start_form{
  padding: 35px 50px;
  border-radius: 20px;
  background: #EF3E23;
}
.hsm__lets_start_form h2{
  font-size: 44px;
  line-height: 50px;
  color: var(--white-color);
}
.hsm__lets_start_form .form-group{
  margin-bottom: 12px;
}
.hsm__lets_start_form .form-group input:not([type=submit]),
.hsm__lets_start_form .form-group select,
.hsm__lets_start_form .form-group textarea{
  padding: 10px;
  border-radius: 10px;
  border-color: #ffffff;
  box-shadow: none;
  color: #5D5D5D;

}
.hsm__lets_start_form .form-group select option{
	font-family:  var(--text-font);
}
.hsm__lets_start_form .form-group select{
  padding-right: 35px;
}
.hsm__lets_start_form .form-group textarea{
  height: 110px;
}
.hsm__lets_start_form .form-group input:not([type=submit]):focus,
.hsm__lets_start_form .form-group select:focus,
.hsm__lets_start_form .form-group textarea:focus{
  box-shadow: none;
  border-color: #5D5D5D;
}
.hsm__lets_start_form .form-button{
  margin-top: 10px;
  text-align: center;
}
.hsm__lets_start_form .form-button input[type=submit]{
  background: var(--white-color);
  color: var(--black-color);
  font-family: var(--AvenirLTStd-800);
  font-size: 18px;
  line-height: 100%;
  padding: 15px 50px;
  text-transform: capitalize;
  border-radius: 50px;
  border: 1px solid transparent;
}
.hsm__lets_start_form .form-button input[type=submit]:hover{
  color: var(--white-color);
  background: var(--black-color);
}
.hsm__lets_start_form .hsm__heading{
  margin-bottom: 25px;
  text-align: center;
}
.hsm__cta_content {
  padding-right: 85px;
}
.bolded_text_wrapper{
  margin-top: 20px;
  max-width: 55%;
}
.bolded_text_wrapper span{
  color: #FFDE59;
  font-family: var(--AvenirLTStd-700);
	font-size: 40px;
	line-height: 48px;
}
.hsm___core_expertise .hsm__heading{
  margin-bottom: 50px;
}
.hsm__expertise_pointers{
  padding: 30px;
  border: 3px solid #000000;
  border-radius: 20px;
	
}
.hsm__container{
	  max-width: 90%;
  margin: 0 auto;	
}
.icon_speciality img {
    max-width: 75px;
}
.hsm__expertise_box{
  text-align: center;
  padding: 15px;
  margin: 15px 0;
}
.hsm__expertise_box h4{
  color: var(--black-color);
  font-family: var(--AvenirLTStd-800);
  font-size: 24px;
  line-height: 28px;
  margin-top: 15px;
}
.hsm__expertise_icon img{
  width: 60px;
}
.hsm___core_expertise .hsm__heading h2{
  color: #EF3E23;
}

.hsm__speciality .hsm__heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hsm__speciality .how_works_arrow{
  margin-top: 35px;
}
.hsm_specialisty_wrapper{
  margin-top: 50px;
}
.hsm__speciality_box{
  border: 3px solid #EF3E23;
  border-radius: 15px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  gap: 20px;
  padding: 25px;
  margin-bottom: 24px;
}
.hsm__speciality_box h5{
  font-family: var(--AvenirLTStd-700);
  font-size: 20px;
  line-height: 28px;
}
.hsm__produce_result .result_slider{
	padding-bottom: 50px;
}
.hsm__produce_result .result_slider .swiper-pagination{
	    bottom: 10px;
}
.fii_in_wrapper{
  margin: 100px 0 0 0;
}
.fii_in_wrapper .hsm__heading h2{
  color: var(--white-color);
  max-width: 75%;
}
.hsm__speciality_image{
  padding: 50px 30px;
  background: #FFFFFF;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trusted_partner_box{
  width: calc(100% / 3 - 27px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trusted_partner_box img{
  max-height: 80px;
}
.hsm__produce_result .hsm__heading{
  color: var(--white-color);
  margin-bottom: 45px;
}
.hsm__produce_result .hsm__heading p{
  font-family: var(--text-font);
  font-size: 30px;
  line-height: 36px;
  color: #FFDE59;
}
.hsm__past_works .hsm__heading{
  margin-bottom: 45px;
}
.past_works_loop{
  border: 1px solid var(--white-color);

}
.common_wrapper{
  position: relative;
  padding: 75px 50px 20px 50px;
  border-radius: 20px;  
  margin-top: 70px;
}
.common_wrapper .hsm_inner_heading{
  color: var(--white-color);
  margin-bottom: 45px;
}
.common_wrapper .hsm_inner_heading h2{
  text-transform: capitalize;
  font-family: var(--AvenirLTStd-500);
}
.common_wrapper .hsm_inner_heading h2 span{
  font-size: 30px;
  line-height: 100%;
  font-weight: 400;
  font-style: italic;
}
.common_wrapper::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-color: var(--white-color);
  border-radius: 0 0 20px 20px;  
}
.common_wrapper .hsm__result_box img{
  box-shadow: 1px 1px 5px 2px #00000020;
}
.hsm__result_box img{
  width: 100%;
}
.common_wrapper.hsm_past_slider_top .hsm__result_box img{
  border-radius: 35px;
}
.common_wrapper .swiper-wrapper{
  padding-bottom: 50px;
  align-items: center;
}
.hsm__award_wining .hsm__heading{
  margin-bottom: 75px;
}
.hsm__award_wining .hsm__heading h2{
  color: var(--prime-color);
}
.hsm__award_wining .hsm__award_box img{
	max-width: 175px;
    margin: 0 auto;
}
.hsm__award_wining .hsm__award_box{
  text-align: center;
  margin-bottom: 25px; 
}
.hsm__specialist_content p{
  color: var(--white-color);
  font-size: 24px;
  line-height: 28px;
}
.hsm__specialist_content .hsm__btn_wrapper{
  margin-top: 25px;
}
.hsm_heading_too_wrapper .hsm_inner_heading  h2{
      font-family: var(--AvenirLTStd-500);
  font-size: 36px;
  line-height: 40px;
}
.hsm_theme_modal{
  padding: 0 12px !important;
}
.hsm_theme_modal .modal-content{
  background-color: var(--prime-color);
  padding: 25px;
  border-radius: 15px;
}
.hsm_theme_modal .modal-dialog{
  max-width: 700px;
  padding: 0;
  margin: 0 auto;
}
.hsm_theme_modal .modal-dialog .btn-close{
  filter: invert(1) brightness(100%);
  margin-left: auto;
  opacity: 1;
}
.hsm_theme_modal .hsm__lets_start_form{
  padding: 20px 30px;
  background-color: transparent;
}
.hsm_theme_modal .hsm__lets_start_form .hsm__heading {
  margin-bottom: 35px;
}
.hsm__footer{
  padding: 100px 0 25px 0;
}
.social_content_box{
  display: flex;
  gap: 15px;
  align-items: center;
}
.social_content_box .hsm__heading{
	margin-bottom: 0;
}
.social_content_box .social_media_list{
  display: flex;
  align-items: center;
  gap: 10px;
}
.social_content_box .social_media_list li a{
  width: 40px;
  height: 40px;
  background-color: #EF3E23;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: all 0.5s;
}
.social_content_box .social_media_list li a:hover{
  transform: scale(1.05) translateY(-5px);
}
.hsm_footer_box{
  margin-bottom: 25px;
}
.hsm_footer_box .hsm__heading h5{
  font-family: var(--AvenirLTStd-900);
  font-size: 28px;
  line-height: 36px;
  color: var(--black-color);
  text-transform: uppercase;
}
.hsm_footer_box  ul:not(.social_media_list){
  margin-top: 25px;
}
.hsm_footer_box  ul:not(.social_media_list) li span,
.hsm_footer_box  ul:not(.social_media_list) li a{
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
	font-size: 18px;
  line-height: 26px;
  color: var(--black-color);
  font-family: var(--AvenirLTStd-900);
  word-break: break-all;
}
.hsm_footer_box  ul:not(.social_media_list) li span i{
	    margin-top: 5px;
}
.hsm_footer_box .contact_box ul li a i{
  font-size: 24px;
  color: var(--prime-color);
}
/* .hsm_footer_box .contact_box ul li:last-child{
	    pointer-events: none;
} */
.hsm_footer_box  ul:not(.social_media_list) li a:hover{
  color: var(--prime-color);
}
.partners_logo{
  display: flex;
  align-items: center;
  gap: 40px;
}
.hsm__lets_start_form .form-group .wpcf7-not-valid-tip{
	font-size: 15px;
    line-height: 100%;
    color: #FFFFFF;
    margin: 8px;
}
.hsm__lets_start_form .wpcf7-response-output{
    margin: 20px 0 0 0 !important;
    border: none !important;
    color: #ffb900;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
}
.hsm__lets_start_form .wpcf7-spinner{
	position: absolute;
}
.swiper-pagination .swiper-pagination-bullet{
	    width: 12px;
    height: 12px;
    background: #EF3E23;
}
.hsm_past_works_slider .swiper-pagination{
	bottom: -5px;
}
.common_banner_wrapper {
    border-top: 2px solid #FFFF;
    color: red;
    padding-bottom: 0 !important;
}
.common_wrapper.hsm_past_slider_top{
	margin-top: 0 !important;
}
.theme_defaul_template ul{
	margin-bottom: 20px;
}
.theme_defaul_template ul li{
    list-style-type: disc;
    margin-left: 45px;
}
.theme_defaul_template h3,
.theme_defaul_template h4{
	margin-top: 40px;
}
.theme_defaul_template h2{
	font-size: 36px;
	line-height: 40px;
}