@font-face {
    font-family: 'poppinsmedium';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  @font-face {
    font-family: 'poppinsbold';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  @font-face {
    font-family: 'poppinsregular';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
   @font-face {
    font-family: 'poppinssemibold';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
html{
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-decoration: none;
  outline: none;
  resize: none;
  box-sizing: border-box;
  font-weight: normal;
}
img{
    width:100%;      
    height: auto;
    display: block;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  display: inline-flex;
  -webkit-transition: all 0.15s cubic-bezier(0.32, 0.1, 0.3, 1);
  transition: all 0.15s cubic-bezier(0.32, 0.1, 0.3, 1);
  color: #202020;
}
body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  scroll-behavior: smooth; 
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  cursor: auto;
  user-select: none !important;
  font-weight: normal;
}
select::-ms-expand {
  display: none !important;
}
select:focus {
  outline: none !important;
}
label {
  font-weight: normal;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 15px;
  vertical-align: top;
}
label em {
  color: #ff0000;
}
strong {
  font-weight: bold;
}
.clearfix {
  display: table;
  clear: both;
}
.main-title {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  font-family: 'latobold';
  font-size: clamp(30px, 5vw, 45px);
  color: #002e93;
  line-height: 50px;
  text-transform: uppercase;
}
.main-title span {
  font-family: 'latobold';
  display: block;
  font-size:30px;
}
.main-title.line {
  padding-left: 0px;
  text-align: center;
}
.main-title.line::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #004f94;
  margin: 20px auto 0px auto;
}
.main-title.bar {
  text-align: center;
  display: inline-block;
  padding-left: 55px;
  position: relative;
  font-size: 35px;
  line-height: 30px;
}
.main-title.bar::before {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  background: #004f94;
  position: absolute;
  left: 12px;
  top: -3px;
  transform: skew(-35deg);
}
.btn {
    display: inline-flex    ;
        align-items: center;
        justify-content: space-between;
        padding: 1px 24px 1px 24px;
        background: rgb(133, 57, 26);
        color: #fff;
        font-family: 'poppinsregular';
        font-size: 16px;
        line-height: normal;
        text-transform: capitalize;
        border-radius: 0;
        border: none;
        margin-top: 20px;
        position: relative;
        z-index: 2;
        border: 2px solid rgb(133, 57, 26);
        width: max-content;
        height: 38px;
        transition: 0.4s all ease-in-out;
}
.btn span{
    display: flex;
    background: #fff;
    width: 27px;
    height: 27px;
    justify-content: center;
    align-items: center;
    padding: 0px;
    color: #009998;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 500;
    font-family: 'calibriregular';    
    margin-left: 15px;
}
.btn:hover{
  color: rgb(133, 57, 26);
    position: relative;
    display: inline-flex;
    background: #fff;
    border: 2px solid rgb(133, 57, 26);;
}
.btn:hover span{    
    background: #009998;   
    color: #fff;
}
.btn.transparent{
  border-color: #fff;
  color: #fff;
  background: none;
}
.btn.white {
  background-color: #fff;
  border-color: #e67818;
  color: #e67818;
}
.btn.white:hover {
  background-color: #e67818;
  border-color: #e67818;
  color: #fff;
}
.btn:active {
  box-shadow: none;
}
.btn.is-loading {
  font-size: 0px;
  color: transparent !important;
  pointer-events: none;
  position: relative;
}
.btn.is-loading::after {
  -webkit-animation: spinAround 500ms infinite linear;
  animation: spinAround 500ms infinite linear;
  border: 2px solid #ffffff;
  border-radius: 10px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 14px;
  width: 14px;
  position: absolute;
  left: calc(50% - 7px);
  top: calc(50% - 7px);
  box-sizing: border-box;
}
.btn.blue-btn {
  border: 1px solid #0a4197;
  color: #fff;
  background-color: #0a4197;
}
.btn.blue-btn:hover {
  border: 1px solid #093883;
  color: #fff;
  background-color: #093883;
}
.btn.yellow-btn {
  border: 1px solid #fcc600;
  color: #fff;
  background-color: #fcc600;
}
.btn.yellow-btn:hover {
  border: 1px solid #D2AB0D;
  color: #fff;
  background-color: #D2AB0D;
}
.btn.green-btn {
  border: 1px solid #00ae93;
  color: #fff;
  background-color: #00ae93;
}
.btn.green-btn:hover {
  border: 1px solid #00937C;
  color: #fff;
  background-color: #00937C;
}
.btn.large {
  height: 46px;
  line-height: 46px;
}

.btn.small {
  height: 34px;
  line-height: 34px;
  font-size: 13px;
}
.input-text {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  background-color: transparent;    
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  -moz-appearance: none;
  color: #797979;
  font-size: 13px;    
  line-height: 45px;
  padding: 2px 20px 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-bottom: 0px;
  -webkit-transition: all 0.15s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  transition: all 0.15s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  font-family: 'poppinssemibold';
  text-transform: uppercase;
}
.input-text::placeholder{
 
  color: #797979;
  font-size: 13px;   
  font-family: 'poppinssemibold';
  text-transform: uppercase;
}
select.input-text::placeholder{
 
  color: #797979;
  font-size: 13px;   
  font-family: 'poppinssemibold';
  text-transform: uppercase;
}
.input-text.large {
  height: 45px;
  line-height: 45px;
}
.input-text.small {
  height: 34px;
  line-height: 34px;
}
/*.input-text::placeholder {
  color: #d2d2d2;
}
.input-text:focus {
  color: #0a4197;
  border: 1px solid #0a4197;
}
.input-text:focus::placeholder {
  color: #0a4197;
}*/
.input-text.validation-failed {
  border-color: #df280a;
  color: #df280a;
}
.input-text.validation-failed::placeholder {
  color: #df280a;
}
.input-text.validation-failed:focus {
  outline-color: #ef9384;
  border-color: #df280a;
  color: #df280a;
}
.input-text.validation-failed:focus::placeholder {
  color: #df280a;
}
.input-div {
  width: 100%;
  position: relative;
}
.input-checkbox {
  width: 0px;
  height: 0px;
  opacity: 0;
  position: absolute;
}
.input-checkbox + .checkbox-label {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #d7d7d7;
  border-radius: 0px;
  margin: 0px 10px 0px 0px;
  background-color: #fff;
  position: relative;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
.input-checkbox + .checkbox-label::after {
  content: '';
  background: #fff;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  width: 9px;
  height: 9px;
}
.input-checkbox:checked + .checkbox-label::after {
  background: #fff url("../images/checkbox_tick.png") center no-repeat;
}
.input-radio {
  width: 0px;
  height: 0px;
  opacity: 0;
  position: absolute;
}
.input-radio + .radio-label {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #8b8b8b;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  margin: 0px 3px 0px 0px;
  background-color: #fff;
  position: relative;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  line-height: 14px;
  margin: 12px 0px !important;
}
.input-radio + .radio-label::after {
  content: '';
  background: #fff;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  width: 9px;
  height: 9px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.input-radio:checked + .radio-label::after {
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
}
.input-text:-webkit-autofill {
  background-color: #ffffff !important;
}
textarea.input-text {
  height: 120px !important;
}
select.input-text {
  background: #FFFFFF url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAGNJREFUSIntzbENgDAMRNFfkR42YUxYBlLDSlkBGhcWSlJYToP869M9iKKo1wJswNTZJGAHZgtwAw9wNJAEZNlcFmAFSgPR50W2pjRyCuJ2XkOy93kNcT//IkPONTLsPIr+2gsEwx4NLAopngAAAABJRU5ErkJggg==) no-repeat calc(100% - 10px) center;
  padding-right: 40px;
}
select.input-text:focus {
  background: #FFFFFF url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAALVBMVEX/////dyr/dyr/dyr/dyr/dyr/dyr/dyr/dyr/dyr/dyr/dyr/dyr/dyr/dyoo+I6tAAAADnRSTlMABgcSEzKKi7Cxsry97lYwfJQAAABASURBVHja3cnJEQAgCARB8RaP/MOVQj5IBuxrazr4Wq7wTmxJwToduOOZCsom4b5L+GWAdCMo3Yp0K9KtUHe3Cy3fAc23y6RHAAAAAElFTkSuQmCC) no-repeat calc(100% - 10px) center;
  padding-right: 40px;
}
.input-text.date {
  background: #efefef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAbCAMAAABY1h8eAAABsFBMVEWDg4P///+Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4MixLq9AAAAj3RSTlMAAAECAwQFBgcICQoLDA8QExQVFhcZJCUmKCkqKywvMDEyMzQ1Njc4OT4/RUlLTU5PUFFSU1RVV1laW1xdXl9hZGVoaWtsbW50eXt9gYKFhoeIiYqNjo+RlJWWl5qcnZ+jqaqrrK2wsba6wcPExsfIycvMzdTW19jd3uHi4+Tl5ufo6evu8PL19vf4+fr7/T4gR6EAAAG0SURBVHgBdZH5U9NAGIa/LxVtUpVWvKVSaBEPLQFRUcFDSREVrNZDgo2Sooj3LXgfBjGhvP+yuyFHZeT54ZnMPJN3d2bJZ/30y120DDOnHr7pYAn5tAGX47gTuLkcN09M2Vf2LOF0/5Q9aU/WbLvS7mKor3bf2kYvAPza66HnHgIWuubRPwFgluaFn3YBJ8fC+LqwhHOXAPymD8LvW4DcjTB+3OKg8yKAb37ESOfhAz8RMtpxZMdcHPGgigZm7tbhxzmsymdycFTv0XW9V0h8FItFX3p3t+NSHfQPHPEF9AdaQ8pWrepuvmNZZ5l/rIyDAAZZ6Dnz9//FUzI+C2KqcfZauZLl8tXK8SCqtDVfyFGmkM+voXQ608TN6YwWxAS9AkAjQs1ZoT4Wmg4upNBbGUdlbBc6JuNM9OdjYIEuyNgq1CtjLb6tpjZJJYmSqqbwWjWVCOI6MkzzOu0zx8eTm26bZivfMs2B6Ez5MjQmZ9uETrDQoyh+krEstDEXxif+rAuiQ8OlM7S9ZAxRwjBKLXzeGN7P/BUEbCCJEr+KwhI566Duet7iordSLkAH32EVZgf+AvNd6EZMAhVcAAAAAElFTkSuQmCC) no-repeat;
  background-position: calc(100% - 10px) center;
}
.input-text.date:focus {
  background: #efefef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAbCAMAAABY1h8eAAABsFBMVEXiJSv////iJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSt47rg9AAAAj3RSTlMAAAECAwQFBgcICQoLDA8QExQVFhcZJCUmKCkqKywvMDEyMzQ1Njc4OT4/RUlLTU5PUFFSU1RVV1laW1xdXl9hZGVoaWtsbW50eXt9gYKFhoeIiYqNjo+RlJWWl5qcnZ+jqaqrrK2wsba6wcPExsfIycvMzdTW19jd3uHi4+Tl5ufo6evu8PL19vf4+fr7/T4gR6EAAAG0SURBVHgBdZH5U9NAGIa/LxVtUpVWvKVSaBEPLQFRUcFDSREVrNZDgo2Sooj3LXgfBjGhvP+yuyFHZeT54ZnMPJN3d2bJZ/30y120DDOnHr7pYAn5tAGX47gTuLkcN09M2Vf2LOF0/5Q9aU/WbLvS7mKor3bf2kYvAPza66HnHgIWuubRPwFgluaFn3YBJ8fC+LqwhHOXAPymD8LvW4DcjTB+3OKg8yKAb37ESOfhAz8RMtpxZMdcHPGgigZm7tbhxzmsymdycFTv0XW9V0h8FItFX3p3t+NSHfQPHPEF9AdaQ8pWrepuvmNZZ5l/rIyDAAZZ6Dnz9//FUzI+C2KqcfZauZLl8tXK8SCqtDVfyFGmkM+voXQ608TN6YwWxAS9AkAjQs1ZoT4Wmg4upNBbGUdlbBc6JuNM9OdjYIEuyNgq1CtjLb6tpjZJJYmSqqbwWjWVCOI6MkzzOu0zx8eTm26bZivfMs2B6Ez5MjQmZ9uETrDQoyh+krEstDEXxif+rAuiQ8OlM7S9ZAxRwjBKLXzeGN7P/BUEbCCJEr+KwhI566Duet7iordSLkAH32EVZgf+AvNd6EZMAhVcAAAAAElFTkSuQmCC) no-repeat;
  background-position: calc(100% - 10px) center;
}
.input-text.time {
  background: #efefef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAMAAAAM7l6QAAAA0lBMVEWDg4P///+Dg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4PodARtAAAARXRSTlMAAAIEBQcJCxAXGiMkJzM2OTo8P0FCRUdIS0xNUFFYW11gY2RmcHJzd32DhIaKjI6UoLa4ub3EytDR2drd3+nq6+z19/328NIqAAABL0lEQVR4AYWTa0/yQBBGdwu8vIggFFSkCooW5CLlruWO5fz/vySl6cgmJj1fT7LZmecZJaQq3tQ/HPypV0npmFim3TXC2k2burHEYNm41H2AYNKpl8v1ziQA6P/qMXAc5lWI1jo/PALjWPeAVVGdsAYDS58oroBepB1gkVUhNajpkOwCcEJtbWGTUWda0NJnMhvYWifdBgoqoglNHVEA2lpZOxgpQ0eMYGcpG4LcXzoXgK08mClDx8zAU3NwRT/Bo2gX5soHR/QrvIl2wFd7KMX2egeH7nvIg9Yl2Bv6A4H7SF8+3kX4vokev/za/y/4vKtUq7e1q+hr5mD/Xp4zxmDxWgRtrEWWKtpYqkQi2oxEAhVtBip1EC11MMokWsqUXEWzyLYtRU48g+QjSjjBHyzoWwmMs5SfAAAAAElFTkSuQmCC) no-repeat;
  background-position: calc(100% - 10px) center;
}
.input-text.time:focus {
  background: #efefef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAMAAAAM7l6QAAAA0lBMVEXiJSv////iJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSviJSu3AigyAAAARXRSTlMAAAIEBQcJCxAXGiMkJzM2OTo8P0FCRUdIS0xNUFFYW11gY2RmcHJzd32DhIaKjI6UoLa4ub3EytDR2drd3+nq6+z19/328NIqAAABL0lEQVR4AYWTa0/yQBBGdwu8vIggFFSkCooW5CLlruWO5fz/vySl6cgmJj1fT7LZmecZJaQq3tQ/HPypV0npmFim3TXC2k2burHEYNm41H2AYNKpl8v1ziQA6P/qMXAc5lWI1jo/PALjWPeAVVGdsAYDS58oroBepB1gkVUhNajpkOwCcEJtbWGTUWda0NJnMhvYWifdBgoqoglNHVEA2lpZOxgpQ0eMYGcpG4LcXzoXgK08mClDx8zAU3NwRT/Bo2gX5soHR/QrvIl2wFd7KMX2egeH7nvIg9Yl2Bv6A4H7SF8+3kX4vokev/za/y/4vKtUq7e1q+hr5mD/Xp4zxmDxWgRtrEWWKtpYqkQi2oxEAhVtBip1EC11MMokWsqUXEWzyLYtRU48g+QjSjjBHyzoWwmMs5SfAAAAAElFTkSuQmCC) no-repeat;
  background-position: calc(100% - 10px) center;
}
.loader {
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  margin: 0px;
  text-align: center;
  z-index: 1000;
  font-family: 'latoregular';
  text-transform: uppercase;
  z-index: 16009;
}
.loader::before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 500rem;
  border: 3px solid rgba(69, 89, 93, 0.52);
  box-sizing: border-box;
}
.loader::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-animation: loader 0.6s linear;
  animation: loader 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #252525 transparent transparent;
  border-style: solid;
  border-width: 3px;
  -webkit-box-shadow: 0px 0px 0px 1px transparent;
  box-shadow: 0px 0px 0px 1px transparent;
  box-sizing: border-box;
}
.loader span {
  position: absolute;
  top: 40px;
  left: calc(50% - 45px);
  font-size: 12px;
  width: 90px;
  line-height: 15px;
  letter-spacing: 2px;
  text-shadow: 0px 0px 10px #000000;
  font-family: 'orkneymedium';
  color: #3a3a3a;
  text-align: center;
}
.loader span::before {
  content: '';
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: rgba(191, 191, 191, 0.9);
}
/*p {
  color: #3a3a3a;
  
  line-height: 28px;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  font-family: 'orkneyregular';
}*/
.inline {
  display: inline-block;
  vertical-align: top;
  
  
}
.col-1 {
  width: 100%;
  padding: 0px 15px;
}
.col-2 {
  width: 50%;
  padding: 0px 15px;
}
.col-3 {
  width: 33.3333%;
  padding: 0px 15px;
}
.col-4 {
  width: 25%;
  padding: 0px 15px;
}
.col-5 {
  width: 20%;
  padding: 0px 15px;
}
.col-container {
  font-size: 0px;
}
.row {
  margin: 0px -15px;
}
.container {
  margin: 0 auto;
  max-width: 100%;
  width: 80%;
  padding: 0;
}
.column {
  display: flex;
  flex-wrap: wrap;
  margin: -15px -15px 0px -15px;
}
.columns {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 15px;
}
.margin-top {
  margin-top: 140px;
}
.ui-datepicker .ui-datepicker-prev {
  top: 3px;
  background: #f42f2f url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAQAAABuQZ3IAAAAmElEQVQYGQXBQSqEAQCA0e//XWBSUspRKKJGoWZh4TxWVjZWNu7BxgXULJSFsuAMmBmj570kSZJzkyRJcunPQ5IkF9a+7CVJZn79OFCSnFpZOJaSTC0tnUhKjiysnElS9n1bm0mS8ognG5KkTDzj3ihJyaY57oySkmx5wa1BSpJtr7gxKEmy4w3XhiRJdr3jaqyqqj477CP/0qmsbV1NXLMAAAAASUVORK5CYII=) no-repeat center;
  font-size: 12px;
}
.ui-datepicker .ui-datepicker-next {
  top: 3px;
  background: #f42f2f url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAQAAABuQZ3IAAAAmElEQVQY01XQTQpBYRTG8YMN3JSUUjZCKeoqlIGB7TAyMjEysQ8mNnDLQBkoZRG+Lvp73onz6sx+p57zYUy50MC8jBlwph5TgbnwRM0p4EJ4pOoUcCk8UHEyiqyEe8pOAdfCjCQaTomdcBvTiDc3Wg4Dch50PKvHU5X6xK76OX3fq82dl5J+2ze5KnYc37jhw+T/EwnDGLAv7KSz3xS1KTsAAAAASUVORK5CYII=) no-repeat center;
}
.ui-datepicker table {
  font-size: 12px !important;
}
.ui-widget {
  font-size: 12px !important;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-size: 12px !important;
}
.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  transform: scale(1);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 50000;
  text-align: center;
  overflow-y: auto;
}
.popup .popup-content {
  display: inline-block;
  text-align: left;
  margin-top: 100px;
  margin-bottom: 100px;
  width: 560px;
  max-width: calc(100% - 30px);
  min-height: 300px;
  height: auto;
  background: #fff;
  border-radius: 0px;
  box-shadow: 0px 0px 20px #000000;
  padding: 40px 30px;
  position: relative;
  transform: translateY(-300px);
  -webkit-transform: translateY(-300px);
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
}
.popup .popup-content .popup-close {
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
  width: 29px !important;
  height: 29px !important;
  line-height: 27px !important;
  padding: 0px 0px 0px 2px  !important;
  text-align: center;
  border-radius: 30px !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7) !important;
  background: #004f94 !important;
  border-color: #004f94 !important;
  color: #FFFFFF !important;
  letter-spacing: 1px !important;
  margin: 0px !important;
}
.popup .popup-content.open {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
.popup .popup-content .header {
  padding: 0px 0px 10px 0px;
  border-bottom: 2px solid #9c9c9c;
  margin-bottom: 20px;
}
.popup .popup-content .header h2 {
  font-size: 17px;
  margin: 0px 0px 0px 0px;
  color: #3a3a3a;
  text-transform: uppercase;
}
.popup .popup-content .content {
  border-bottom: 2px solid #9c9c9c;
}
.popup .popup-content .content .job-title {
  font-size: 25px;
  line-height: 30px;
  color: #3a3a3a;
  margin: 0px 0px 10px 0px;
}
.popup .popup-content .content .experience {
  font-size: 12px;
  line-height: 12px;
  color: #3a3a3a;
  margin: 0px 0px 10px 0px;
}
.popup .popup-content .content .sections {
  margin-bottom: 20px;
}
.popup .popup-content .content .sections p {
  font-size: 14px;
  line-height: 20px;
  color: #3a3a3a;
}
.popup .popup-content .content .sections p strong {
  font-weight: normal;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 2px;
}
.popup .popup-content .content .sections .apply {
  float: right;
  padding: 0px 30px;
  line-height: 38px;
  height: 40px;
  text-transform: uppercase;
  font-size: 15px;
  width: auto !important;
  background: #004f94 !important;
  border-color: #004f94 !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
  margin: 0px !important;
}
.popup .popup-content .content .sections .apply:hover {
  background: #004988 !important;
  border-color: #004988 !important;
  color: #3a3a3a !important;
}
.popup .popup-content .content .form .col-container {
  margin: 0px -5px;
}
.popup .popup-content .content .form .col-container .inline {
  padding: 0px 5px;
}
.popup .popup-content .content .form .col-container .inline .input-div {
  margin-bottom: 15px;
  position: relative;
}
.popup .popup-content .content .form .col-container .inline .input-div .input-text {
  width: 100%;
  height: 40px;
  line-height: 41px;
}
.popup .popup-content .content .form .col-container .inline .input-div textarea.input-text {
  height: 120px;
}
.popup .popup-content .content .form .col-container .inline .input-file-div #resume {
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 0px;
  cursor: pointer;
}
.popup .popup-content .content .form .col-container .inline .input-file-div #resume:hover + .input-text {
  color: #004f94;
  border-color: #004f94;
  box-shadow: inset 0px 0px 10px rgba(249, 104, 58, 0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(249, 104, 58, 0.5);
}
.popup .popup-content .content .form .col-container .inline .input-file-div #resume:hover + .input-text .btn {
  background: #004988;
  border-color: #004988;
  color: #FFFFFF;
}
.popup .popup-content .content .form .col-container .inline .input-file-div .input-text {
  position: relative;
}
.popup .popup-content .content .form .col-container .inline .input-file-div .input-text .btn {
  position: absolute;
  padding: 0px 15px;
  right: -1px;
  top: -1px;
  height: 40px;
  line-height: 39px;
  margin: 0px;
  width: auto;
  box-shadow: none;
  font-size: 12px;
  text-transform: uppercase;
  background: #004f94;
  border-color: #004f94;
  color: #FFFFFF;
}
.popup .popup-content .content .form .col-container .inline .input-file-div .input-text .input-file-name {
  line-height: 39px;
  position: absolute;
  width: calc(100% - 108px);
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #323232;
  font-size: 13px;
  padding: 0px 15px;
}
.popup .popup-content .content .form .col-container .inline .apply {
  height: 45px;
  line-height: 44px;
  width: auto;
  padding: 0px 50px;
  float: right;
  margin: 6px 0px 25px 0px;
  box-shadow: none;
  background: #004f94;
  border-color: #004f94;
  color: #FFFFFF;
}
.popup .popup-content .content .form .col-container .inline .apply:hover {
  background: #004988;
  border-color: #004988;
}
.social {
  font-size: 0px;
  display: block;
  margin: 0px 0px 0px 0px;
 
}
.social li {
  display: inline-block;
  margin: 0px 10px 0px 0px;
  text-align: center;
}
.social li a {
display: flex;
justify-content: center;
align-items: center;
font-size: 23px;
color: #fff;
cursor: pointer;
-webkit-transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);   
}

.social li a:hover{
  
}
/*.social li a.facebook:hover {
  color: #3b5998;
}
.social li a.instagram:hover {
  color: #d82c7d;
}
.social li a.twitter:hover {
  color: #1da1f2;
}
.social li a.linkedin:hover {
  color: #0077b5;
}
.social li a.youtube:hover
{
 
  color: #ff0000;
}*/
.social li a:hover {
  -webkit-transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
}
.social li a:hover i {
  -webkit-transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
}
/*.social li a.facebook:hover,
.social li a.facebook:active,
.social li a.facebook:focus {
  color: #3b5998;
}
.social li a.g-plus:hover,
.social li a.g-plus:active,
.social li a.g-plus:focus {
  transition: 0.1s;
  color: #e53935;
}
.social li a.instagram:hover,
.social li a.instagram:active,
.social li a.instagram:focus {
  transition: 0.1s;
  color: #d82c7d;
}
.social li a.twitter:hover,
.social li a.twitter:active,
.social li a.twitter:focus {
  transition: 0.1s;
  color: #1da1f2;
}
.social li a.linkedin:hover,
.social li a.linkedin:active,
.social li a.linkedin:focus {
  transition: 0.1s;
  color: #0077b5;
  background-color: transparent;
}
.social li a.youtube:hover,
.social li a.youtube:active,
.social li a.youtube:focus {
  transition: 0.1s;
  color: #ff0000;
}*/

  .goto-top {
      position: fixed;
      left: 20px;
      bottom: 20px;
      border-radius: 0;
      border-radius: 3px;
      padding: 0px 20px;
      height: 40px;
      font-size: 40px;
      z-index: 100;
      box-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
      background: #ebed22 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEX///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8GYpHzAAAAH3RSTlMAASorLDA7PD9ARlJXbm92eHl8fX5/gISFhoeIvfv8ZEvyMgAAAHpJREFUeAHt0UkOgzAMhWG789B0bjqU4PvfEiElT0YYS6zhbZD1/axCk9z2vHf9LiJvHvaHtPuw607xlLIvO47CcbN4Zany98e2R7qZRYQTij9b/5Mu4DvlujiUIHQdxaXci6QdRb3GfUzZsatIOql72XvlTVjRmM1rANIYFT25t9OXAAAAAElFTkSuQmCC) no-repeat;
      background-position: center;
      border-color: #fff;
      z-index: 10;
      transition: opacity 0.3s ease;
  }

.goto-top.open {
  opacity: 1;
  visibility: visible;
}

.home-wrapper {
  padding: 0px 0px 0px 145px;
}
.close-div {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
}

.close-div.open {
  opacity: 1;
  visibility: visible;
}
.desc {
  color: #3a3a3a;
  font-size: 20px;
  line-height: 25px;
  display: block;
  margin: 0px 0px 0px 0px;
}
.box {
  padding: 70px 0px;
}
.read-more {
  color: #004f94;
  display: inline-block;
  vertical-align: baseline;
  font-size: 15px;
  line-height: 24px;
  text-transform: capitalize;
}
.read-more:hover {
  color: #fcc600;
}
/**********************************************************home page*****************************************************************/
header{
  width: 100%;   
  padding: 15px 0px 0;
  display: flex;
  position: fixed;
  top: 0;
  background: #fff;
  align-items: center;
  z-index: 1000;    
}
header .container{
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  width:85%;
  max-width: 100%;
}
.logo {
  display: inline-block;   
  width:140px;     
}

.logo a {
  display: block;
  width:100%;
}

.logo a img {
  display: block;
  max-width: 100%;
  width: 100%;     
}
.header_right{
  display: inline-flex;  
  align-items: center; 
  justify-content: space-between;
}
.header_right .btn{
  margin: 0;
}
/******************************************menu*********************************************/
.header_menu{
  display: block;  
  vertical-align: middle;
  transition: 0.3s;
}
.header_menu .menu-list {
  font-size: 0px;
  text-align: right;
  padding-top: 0px;
  list-style: none;
}
.header_menu .menu-list li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  padding: 0 10px;
  line-height: 20px;
}
.header_menu .menu-list li a {
  color: #282828;
  font-family: 'poppinsmedium';
  padding: 0 10px;  
  text-transform: capitalize;
  display: block;
  transition: 0.01s; 
  position: relative;  
  line-height: 20px;
}

.header_menu .menu-list li.current-menu-item a, .header_menu .menu-list li:hover a {
   color: #85381a;
    transition: color .3s;
}
.appointment .phone_number{
color: #fff;
  font-family: 'poppinsbold';
  padding: 0 0 0 10px;  
  text-transform: capitalize;
  font-size: 16px;
  background: #85381a;
  padding: 8px 12px;
  border-radius: 0;
  border: 2px solid #85381a;
  transition: 0.3s; 
}
.appointment .phone_number:hover{
    background: #fff;
    color: #85381a;
}
.menu-btn {
  display: none;
  vertical-align: middle;
  border: none;    
  padding: 0px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 16002 !important;
  top: 0;
  right: 0;
  background: none;
  border-radius: 0;
  margin-top: 0;
}
.menu-btn{
  transition: 0.3s;
  
}
.menu-btn .icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;    
  position: relative;
  
}
.menu-btn .icon .bar {
  width:100%;
  height: 3px;
  display: inline-flex;   
  border-radius: 0;
}
.menu-btn .icon .bar-1 {
  transition: 0.3s;
  top: 0px;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.menu-btn .icon .bar-2 {
  transition: 0.3s;
    margin-top: 2px;
    margin-bottom: -3px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}
.menu-btn .icon .bar-3 {
  transition: 0.3s;
  margin-bottom: 2px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.menu-btn .icon .bar-4 {
  transition: 0.3s;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.menu-btn.open .icon .bar-1 {
  transition: 0.3s;
  transform: scale(0);
  -webkit-transform: scale(0);
}
.menu-btn.open .icon .bar-2 {
  transition: 0.3s;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
 .menu-btn.open .icon .bar-3 {
  transition: 0.3s;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.menu-btn.open .icon .bar-4 {
  transition: 0.3s;
  transform: scale(0);
  -webkit-transform: scale(0);
}

header.fix {
  top: 0px;
  box-shadow: 0px 0px 5px #fff!important;
  padding: 10px 0 10px;  
}
header.fix .logo{
  
  transition: all 0.8s cubic-bezier(0.32, 0.1, 0.3, 1);  
}
/******************************************menu*********************************************/
.banner {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;  
  text-align: left;
}
.banner-item {
    width: 90%;
    margin: 0 auto;
}
.banner .banner-item img {
width: 100%; 
}
.banner .container{
  position: relative;
}
.banner .content {
    position: absolute;
    left: 9%;
    bottom: 22%;
    width: 82%;
    margin: 0;
    display: block;
    z-index: 10;
}

.banner_content {
  display: flex;
  justify-content: flex-start;   
  flex-wrap: wrap;
  flex-direction: column;
}
.banner_content h2 {
  font-family: 'poppinsmedium';
  font-size: clamp(20px, 8vw, 28px);
  color: #fff;
  text-transform: capitalize;
  padding: 0px 0 0;
  margin: 0 0 0 0;    
  line-height: 1.2;
  letter-spacing: 0px;
}

.header_menu .menu-list li:last-child{
  display: none;
}

 
    .banner .owl-dots {
    display: block;
    width: 100%;
    margin-top: 0;
    text-align: center;
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
}
.banner .owl-dots .owl-dot{
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 12px;
    background: #fff;
    margin: 0px 3px;
    border: none;
    opacity: 0.6;
}
.banner .owl-dots .owl-dot.active {    
    opacity: 1;   
    width: 12px;
    height: 12px;
    background: #fff;
}
.homeabout_container{
  width:100%;
  margin: 60px 0 20px;
  padding: 0;
  display: block;
}
.homeabout_wrapper{
  display: flex;
  justify-content: space-between; 
  flex-wrap: wrap;
}
.homeabout_wrapper .image1{
  width:25%;
  display: inline-block;
}
.homeabout_wrapper .image1 img{
  border-radius: 0 20px 20px 0;
}
.homeabout_wrapper .image2{
  width:25%;
  display: inline-block;
  margin: 6% 0 0;
}
.homeabout_wrapper .image2 img{
  border-radius: 20px 0px 0px 20px;
}
.homeabout_wrapper .content{
  width:40%;
  display: inline-block;
  vertical-align: top;
  padding: 0 0 0 0;
  text-align: center;
  margin: 4% 0 0;
}
.homeabout_wrapper .content p a{
  color: #202020;
}
.homeabout_wrapper .content p{
  margin: 0;
  padding: 10px 0 0;
}
.homeabout_wrapper .content h4{
  font-family: 'poppinsmedium';
    font-size: clamp(20px, 8vw, 28px);
    color: #2f2f2f;
    text-transform: capitalize;
    padding: 0px 0 0;
    margin: 0 0 0 0;
    line-height: 1.2;
    letter-spacing: 0px;
}
.about_logo{
  display: inline-block;
  width:10%;
}
.bg-light-gray {
    background-color: #f7f7f7;
    text-align: center;
}
.bg-light-gray p{
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

.contactform_area {
    width: 80%;
    display: block;
    margin: 0 auto 60px;
}
.contactform_form {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.contactform_form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.contactform_form form label {
  display: block;
  color: #282828;
  font-family: "latobold";  
  font-size: 16px;
  padding-bottom: 15px;
  text-align: left;
  line-height: 5px;    
  text-transform: capitalize;
}
.required {
  color: #ec2124;
}
 
.contactform_form  form p {
margin: 0;
width:auto;
padding: 0;
}

.contactform_form  form .full {
grid-column: 1 / 3;

}

.contactform_form form .half:nth-of-type(even){  
  padding-right: 0;
 }
.contactform_form form input, .contactform_form form textarea, .contactform_form form select {
  width: 100%;
  border: none;
  border-radius: 5px;
  background: #eeeeee;
  border: none;  
  padding: 10px 20px;
  font-family: "poppinsregular";
  font-size: 14px;  
  color: #333333; 
  text-transform: none;
  border-radius: 10px;
  height: 50px;
}

.contactform_form form button{
 
  height: 45px;
  display: block;
  margin: 0 auto;
  
}
.wpcf7-list-item {
  display: flex;
  padding-top: 42px;
  position: relative;
  padding-right: 50px;
  flex-direction: row-reverse;
}

.contactform_form form input::placeholder,  .contactform_form form textarea::placeholder {
  
  display: block;
  font-family: "poppinsregular";
  font-size: 14px;  
  color: #333333; 
  text-align: left;
  line-height: 22px;    
  text-transform: capitalize;
  opacity: 0.4;
}
.contactform_form form select.big {
  appearance: none;
  position: relative;
  background-image: url(../images/select_arrow.png);
  background-repeat: no-repeat;
  background-position: 80% 25%;
  
}
.contactform_form  form input.wpcf7-not-valid,
.contactform_form  form textarea.wpcf7-not-valid {
width: 100%;  
border: none;
border-bottom: solid 1px red;
border-radius: 0px;
}
.wpcf7-not-valid-tip {
    color: #dc3232; /* Red */
    font-size: 0;
    font-weight: normal;
    display: none;
}
.contactform_form  form textarea {
resize: none;
height: 120px;
color: #333333; 
}
.contactform_form .wpcf7-submit {
  
 display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 24px 1px 24px;
    background: rgb(133, 57, 26);
    color: #fff;
    font-family: 'poppinsregular';
    font-size: 16px;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 0;
    border: none;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    border: 2px solid rgb(133, 57, 26);
    width: max-content;
    height: 38px;
    transition: 0.4s all ease-in-out;
}
.contactform_form .wpcf7-submit:hover {
  color: rgb(133, 57, 26);
    position: relative;
    display: inline-flex;
    background: #fff;
    border: 2px solid rgb(133, 57, 26);
}
.contactform_form  form button:hover,
.contactform_form  form button:focus {
  
transition: background-color 2s ease-out;
}
.contactform_form form .full:last-child{
  margin-bottom:0;
}


.contactpage .contactform_form form .btn {
  height: 40px;
  display: inline-flex;
  margin: 0 auto;
  padding: 10px 30px;
  border: 2px solid #d49e59;
  border-radius: 10px;
  font-family: 'montserratregular';
  font-size: 16px;
  background: #d49e59;
  align-items: center;
  /* padding: 0 35px; */
  align-items: center;
  vertical-align: middle;
  text-align: center;
  /* font-size: 20px; */
  line-height: 36px;
  color: #fff;  
  transition: all 0.5s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  user-select: none;
  padding: 0px 30px;
  cursor: pointer;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.contactpage .contactform_form form .btn:hover{
  background-color: transparent;   
    border: 2px solid #e5a07a;
    display: inline-flex;
    color: #d49e59;
}
.contactform_form .btn{
  margin: 0;
}
.works_home{
  text-align: center;
}
.homeblog_wrapper {
    width: auto;
    display: flex;
    position: relative;
    margin: 30px -5px 60px;
    text-align: left;
    flex-wrap: wrap;
}
.homeblog_wrapper .item{
  padding: 0px 5px;
  width:33.333%;
  display: inline-block;
  margin: 30px 0 0;
}
.homeblog_wrapper .item .block{
  padding: 15px 15px 20px;
  background: transparent;
  border-radius: 15px;
  position: relative;
}
.homeblog_wrapper .item .block:hover{
  background: #f2f2f2;
}
.homeblog_wrapper .item .block .image{
  border-radius: 15px;
  width:100%;
  display: block;
}
.homeblog_wrapper .item .block .image img{
  border-radius: 15px;
}
.homeblog_wrapper .item .block .content{
  width:100%;
  padding: 25px 0 0;
}

.homeblog_wrapper .item .block .content .date {
    font-size: clamp(15px, 5vw, 16px);
    color: #9d0c10;
    font-family: 'poppinsregular';
    line-height: 0.7;
    margin: 0;
    text-transform: capitalize;
}
.homeblog_wrapper .item .block .content p{ 
  color: #202020;
  font-family: 'poppinssemibold';
  font-size: 17px;
  line-height: 24px;
}

.homeblog_wrapper .item .block .content .readmore{
  font-family: 'poppinsregular';
  font-size: 17px;
  color: #202020;
  text-transform:capitalize;
  display: inline-block;
  border-bottom: 1px solid #9d0c10;
  align-items: center;
  padding: 10px 0 0px;
  line-height: 22px;
  vertical-align: middle;
  position: absolute;
  right:15px;
  bottom: 15px;
  opacity: 0;
  visibility: hidden;
}
.homeblog_wrapper .item .block .content .readmore::first-letter{
  text-transform: uppercase;
}
.homeblog_wrapper .item .block:hover .content .readmore{
 text-transform: capitalize;
  opacity: 1;
  visibility: visible;
}
nav.navigation.pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px
}

.nav-links {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center
}

.page-numbers.current {
  background: #85381a;
  color: #fff
}

.page-numbers {
  margin: 0 4px;
  text-decoration: none;
  padding: 0;
  font-size: 16px;
  padding: 0;
  min-width: 1em;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #282828;
  background: 0 0;
  border: 2px solid #85381a;
  font-family: 'poppinsregular';
  justify-content: center;
}

a.next.page-numbers {
  background: 0 0;
  color: #282828
}
.blogdetail_wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 70px auto 0;
    justify-content: space-between;
}
.blogdetail_wrapper .left {
    width: 73%;
    display: inline-block;
}
.blogdetail_wrapper p{
  color: #202020;
  font-size: 17px;
  padding: 10px 0 0;
  margin: 0;
}

.blogdetail_wrapper .left .date {
    font-size: clamp(16px, 5vw, 18px);
    color: #9d0c10;
    font-family: 'poppinsregular';
    line-height: 0.7;
    margin: 0;
    text-transform: capitalize;
}
.maintittle {
    font-size: clamp(20px, 5vw, 25px);
    color: #111;
    font-family: 'poppinssemibold';
    line-height: 1;
    margin: 20px 0 10px;
    text-transform: none;
}
.blogdetail_wrapper .right {
    width: 22%;
    display: inline-block;
    text-align: left;
}
.news_list_wrapper {
    width: 100%;
    display: block;
    padding: 0px 0px;
}
.related_container{
  text-align: center;
  margin: 60px 0;
  display: block;
}
.related_container .homeblog_wrapper.blog_wrapper{
  margin: 40px 0 0;
}
.related_container .homeblog_wrapper.blog_wrapper .item{
  width:100%;
  margin: 0;
}
.related_container .homeblog_wrapper .item .block .content .date {
    font-size: clamp(15px, 5vw, 16px);
    color: #9d0c10;
    font-family: 'poppinsregular';
    line-height: 0.7;
    margin: 0;
    text-transform: capitalize;
    text-align: right;
    padding: 0 0 10px 0;
}

.popular_post {
  margin-top: 0%;
}
.news_list_wrapper .tittle {
  color: #9d0c10;
  font-family: 'poppinsregular';
  font-size: clamp(17px, 7vw, 20px);
  line-height: 25px;
  text-transform: uppercase;
  padding: 0 0 0px 0px;    
  display: block;
  position: relative;  
}

.news_list {
  display: flex;
  align-items: center;
  margin: 30px 0 0;
  justify-content: space-between;
  flex-wrap: wrap;   
}
.news_list:hover{
  display: flex;
}
.news_list .image {
  width: 34%;
  display: inline-block;
}
.news_list .image img{
  border-radius: 5px;
}
.news_list .content {
  width: 62%;
  display: inline-block;
}
.news_list .content .tittle {
  color: #111111;
  font-family: 'zainbold';
  font-size: clamp(18px, 7vw, 20px); 
  line-height: 20px;
  text-align: left;
  text-transform: none;
  padding:0px 0 0px;
  border: none;
  margin: 0;
}

.categories {
  margin-top: 0px;
}
.categories ul {
  display: block;
  padding-top: 10px;
}
.categories ul li {
  color: #111;
  font-family: 'poppinsregular';
  font-size: clamp(14px, 7vw, 15px);
    line-height: 20px;
  text-transform: capitalize;
  padding: 5px 0;
  margin: 0px 0 0;  
  width: 100%; 
  display: block;  
}
.categories ul li:hover, .categories ul li:hover a{

  color: #9d0c10;
}
.categories ul li a {
  color: #111;
  cursor: pointer;
}


.tags {
  margin-top: 40px;
}
.tags ul {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  margin: 10px -5px 0;
}
.tags ul li {
  padding: 10px 5px;
  display: inline-block;
}
.tags ul li a {
  color: #111;
  font-family: 'poppinsregular';
  font-size: clamp(14px, 7vw, 15px);
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  text-transform: capitalize;
  background: transparent;
  padding: 3px 15px;
  width: fit-content;
  border-radius: 50px;
  border: 2px solid #9d0c10;
}
.tags ul li a:hover {
 
 color: #fff !important;
 background: #9d0c10;
}

.news_content {
    width: 100%;
    display: block;
    text-align: left;
    padding: 0px 0 0px;
}
.news_content a{
  color: #000;
}
.news_content .image img{
  border-radius: 10px;
}
.blogdetail_wrapper .left .image {
    width: 100%;
    border-radius: 25px;
    margin: 0px 0 20px;
}
.blogdetail_wrapper .left .image img{
  border-radius: 25px;
}
.blogdetail_wrapper .left .content_area {
    margin: 30px 0 0;
}
.productdetail_container{
  margin:70px 0;
  display: block;
  text-align: center;
  padding: 0;
}
.productdetail_container .image_wrapper{
  width:100%;
  display: block;
  margin: 40px auto;
}
.productdetail_wrapper{
  display:block;
  width:75%;
  margin: 0 auto;
}
.productdetail_wrapper .image{
  width:80%;
  display: block;
margin: 30px auto;
}
.productdetail_wrapper .image img{
  border-radius: 20px;
}
.productdetail_wrapper h4{
    font-size: clamp(20px, 5vw, 28px);
    color: #111;
    font-family: 'poppinssemibold';
    line-height: 1;
    margin: 0px 0 20px;
    text-transform: capitalize;
}
.abouttop_container{
  margin: 80px 0 0;
  width:100%;
  display: block;
  text-align: center;
}
.abouttop_wrapper{
  width: 100%;
  display: block;
}
.abouttop_wrapper p{
  color: #202020;   
    font-size: 17px;
    line-height: 24px;
}
.abouttop_wrapper .content_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}
.abouttop_wrapper .content_wrapper .left{
  width:47%;
  display: inline-block;
}
.abouttop_wrapper .content_wrapper .left .maintittle{
  font-size: clamp(20px, 5vw, 30px);
    color: #111;
    font-family: 'poppinssemibold';
    line-height: 1.1;
    margin: 0px 0 0px;
    text-transform: none;
}
.abouttop_wrapper .content_wrapper .right{
  width:47%;
  display: inline-block;
}
.abouttop_wrapper .image_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
}
.abouttop_wrapper .image_wrapper .image{
  width:49.6%;
  display: inline-block;
}
.vision_container{
  margin: 0px 0 0;
  display: block;
  width:100%;
  background: #f7f7f7;
  padding: 70px 0;
}
.vision_container p{
  color: #202020;   
    font-size: 17px;
    line-height: 24px;
}
.vision_wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.vision_wrapper .left{
  width:18%;
  display: inline-block;
}
.vision_wrapper .right{
  width:78%;
  display: flex;
  flex-wrap: wrap;
}
.vision_wrapper .right .block{
  padding: 10px;
  display: inline-block;
  width: 33.333%;
}
.vision_wrapper .right .block .image{
  opacity: 0;
  visibility: hidden;
  position: relative;
  transition: all 0.15s 
cubic-bezier(0.32, 0.1, 0.3, 1);
}
.vision_wrapper .right .block:hover .image{
  opacity: 1;
  visibility: visible;
}
.vision_wrapper .right .block:hover .image img{  
  opacity: 28%;
}
.vision_wrapper .right .block .image::before{
  background: rgba(19, 19, 19, 1);
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  content: "";
      mix-blend-mode: multiply;
      transition: all 0.15s 
cubic-bezier(0.32, 0.1, 0.3, 1);
}
.vision_wrapper .right .block:hover .image::before{
 content: "";
  opacity: 1;
  visibility: visible;
}
.vision_wrapper .right .block .block_inner{
  background: #fff;
  padding: 0;  
  position: relative;
}
.vision_wrapper .right .block h5{
  font-size: clamp(19px, 5vw, 22px);
    color: #111;
    font-family: 'poppinssemibold';
    line-height: 1.1;
    margin: 10px 0 10px;
    text-transform: capitalize;
   
}
.vision_wrapper .right .block .number {
    position: relative;
    font-family: 'poppinsbold';
    font-size: clamp(40px, 6vw, 68px);
    color: #094A6E;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
    line-height: 1;
    transform: scale(1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s 
  cubic-bezier(0.32, 0.1, 0.3, 1);
}
.vision_wrapper .right .block:hover h5, .vision_wrapper .right .block:hover p{
  color: #fff;
}
.vision_wrapper .right .block:hover .number {
    
    opacity: 1;
    visibility: visible;
}
.vision_wrapper .right .block .content{
  padding: 6% 20px 3%;  
    position: absolute;
    top: 8%;
    left: 5%;
    width:90%;
  transition: all 0.15s cubic-bezier(0.32, 0.1, 0.3, 1);
}
.vision_wrapper .right .block:hover .content{  
    position: absolute;
    top: 8%;
    left: 5%;   
}
.aboutbottom_container{
  width:100%;
  display: block;
  margin: 50px 0 70px;
  padding: 0;
}
.aboutbottom_container p{
  color: #202020;   
    font-size: 17px;
    line-height: 24px;
}
.aboutbottom_wrapper{
  width:90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.aboutbottom_wrapper .image{
  width:47%;
  display: inline-block;
}
.aboutbottom_wrapper .content{
  width:47%;
  display: inline-block;
}
.aboutbottom_wrapper .content h5 {
    font-size: clamp(20px, 5vw, 32px);
    color: #111;
    font-family: 'poppinssemibold';
    line-height: 1.1;
    margin: 10px 0 10px;
    text-transform: capitalize;
}
.whats-app-chat {
  position: fixed;
     right: 32px;
    bottom: 60px;
  z-index: 1; 
  z-index: 99999;
  display: flex;
    align-items: center;
    justify-content: center;
}
.whats-app-chat a {
  display: block;
}
.whats-app-chat a .smallWhatsapp {
  width: 60px;
  height: 60px;
  display: block;
  background:url(../images/whatsapp.png) no-repeat center;
  background-size: contain;
}
.smallWhatsapp .fa {
  display: none;
}
.homeclients_container .container{
  width:100%;
}
.homeclients_container{
    width:100%;
    text-align: center;
    display: block;
    margin: 0px 0 0px;
    background: #fff;    
    padding: 20px 0;
    border-top: 3px solid #f7f7f7;
    border-bottom: 3px solid #f7f7f7;
}
.homeclients_wrapper{
    display: block;
    margin: 0px 0 0;
}
.homeclients_wrapper .item{
    padding: 10px 35px;
}
.homeclients_wrapper .owl-stage{
    display: flex;
    align-items: center;
    width:100%;
}
ul {
    margin: 0;
    padding: 0 0 0 18px;
}
li {
    display: list-item;
    list-style-type: disc;
}
a.product1 {
    position: relative;
}
a.product1::before{
  content: "";
  position: absolute;
  width:100%;
  height: 100%;
  left:0;
  top:0;
  background-image: linear-gradient(30deg, rgba(133, 57, 26, 1) 0%, rgba(239, 160, 31, 1) 100%);
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: multiply;
}
a.product1:hover::before{
  opacity: 1;
  visibility: visible;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    
    grid-column: 1 / 3;
}
span.wpcf7-spinner {
    position: absolute;
}
@media only screen and (min-width: 1900px) {
  .menu-list li a {
    font-size: 22px;
  }
  .appointment .phone_number {    
    font-size: 22px;
  }
  .banner_content h2 {   
    font-size: clamp(20px, 8vw, 33px);
  }
  .homeabout_wrapper .content h4 {   
    font-size: clamp(20px, 8vw, 32px);
  }
  

p {
    line-height: 27px !important;
    margin: 0 0 15px;
    font-size: 19px !important;
}
.btn{
  font-size: 19px;
  height: 45px;
}
footer span.alt-font, .footer-bottom p {
    color: #828282;
    text-transform: capitalize;
    font-size: 20px;
}
.footer-dark, .footer-dark a {
    color: #8890A4;
    font-size: 18px;
}
}
@media only screen and (max-width: 1250px) {
  header {        
      align-items: center; 
  }
  .menu-btn {
      display: inline-block;      
      height: auto;
  }
  .menu-btn.open{
    width: 40px;
    height: auto !important;
  }
  .menu-btn::before,.menu-btn::after {
    content: none;
    
}
  header .btn:active {
      border-bottom: none;
  }
  
  .menu-btn .icon {
    
    border-radius: 50%;
   width: 40px;
        height: 40px;
        padding: 10px;
        background: #85391a;
  }
  .menu-btn .icon .bar {        
      height: 3px;  
      background: #fff;  
  }
  .menu-btn .icon .bar-2 {
      top: 8px;
      
  }
  .menu-btn .icon .bar-1{
    position: relative;
    width:100%;
  }
  
  .menu-btn .icon .bar-4 {      
    width:100%;
      position: relative;      
  }
  
  .header_menu{
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      transition: 0.3s;
      justify-content: center;
      position: fixed;
      left: 0px;
      top: 0px;
      z-index: 16000;
      background: #202254 ;
      background-position: center top;
      background-size: cover;
      opacity: 0;
      visibility: hidden;
      transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -webkit-transition: all 0.3s cubic-bezier(.39, 0, .39, 1);
      -moz-transition: all 0.3s cubic-bezier(.39, 0, .39, 1);
      transition: all 0.3s cubic-bezier(.39, 0, .39, 1);
      margin-top:0;
    }
    .header_menu.open {
      opacity: 0.98;
      visibility: visible;
      transform: scale(1);
      -webkit-transform: scale(1);
  }
  
.menu-btn.open .icon .bar-1 {
  position: relative;
  background: transparent;
  width: 100%;
}
.menu-btn.open .icon .bar {
  width: 100%;
  height: 4px;
  display: inline-flex;
  border-radius: 0;  
}
.menu-btn.open .icon .bar-2 {  
  margin-top: 6px;
  margin-bottom: -3px; 
  transition: 0.3s;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.menu-btn.open .icon .bar-3 {
  transition: 0.3s;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-bottom: 6px;
}
.menu-btn.open .icon .bar-4 {
  transition: 0.3s;
  transform: scale(0);
  -webkit-transform: scale(0);
  width: 100%;
    position: relative;
    background: transparent;

}
  .header_menu .menu-list{
      text-align: center;
  }
    .header_menu .menu-list li{
      display: block;
    }
  .header_menu .menu-list li a,
    .header_wrapper .menu .menu-list li a{
     
      color: #fff;
        line-height: 52px;
        font-size: 23px;
        opacity: 1;
    } 
  .header_contact .fa-envelope-o:before {
      
      font-size: 28px;    
  } 
  .header_contact .fa-phone:before {
      
      font-size: 30px;    
  }
  .header_right {
      display: inline-flex;
      flex-direction: row;
      height: 100%;
      align-items: center;
  }
    .header_wrapper .menu-btn{
      display: inline-block;
    }
    .header_menu .menu-list li.menu-item-has-children .sub-menu{
      display: none !important;
    }
    .header_contact p{
      display: none;
    }
.header_contact p a {
      transition: 0.1s;
      color: #25b061;
      padding-left: 5px;
      font-family: "Lato", sans-serif;
      font-weight: 700;
      font-size: 0;
}
.banner {
    width: 100%;
    position: relative;    
}
.appointment {
  display: none;
}
.header_menu .menu-list li:last-child{
  display: block;
}
.header_menu .menu-list li.current-menu-item a::after, .header_menu .menu-list li:hover a::after {
  display: none;
}
.header_menu .menu-list li.current-menu-item a, .header_menu .menu-list li:hover a {
   color: #ffcc2e;
    transition: color .3s;
}

}
@media only screen and (max-width: 1150px) {
.text-small {
    font-size: 11px;
    line-height: 22px;
}
.container {
    margin: 0 auto;
    max-width: 100%;
    width: 88%;
}
}
@media only screen and (max-width: 1050px) {
.vision_wrapper .left {
    width: 100%;
    display: block;
    text-align: center;
}
.vision_wrapper .right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
}
@media only screen and (max-width: 950px) {
  .homeabout_wrapper .image1{
  width: 49%;
  display: inline-block;
  order: 1;
  margin: 0px 0 0;
}
.homeabout_wrapper .image2{
  width: 49%;
  display: block;
  margin: 0px 0 0;
  order: 2;
}
.homeabout_wrapper .content{
  width: 85%;
  display: block;
  vertical-align: top;
  padding: 0 0 0 0;
  text-align: center;
  margin: 30px auto 0;
  order: 3;
}
.logo {
    display: inline-block;
    width: 100px;
}
    .banner {
        
        margin: 70px 0 0;
    }
  .footer-bottom p {
    
    font-size: 13px;
}
.homeblog_wrapper .item {
    padding: 0px 5px;
    width: 50%;
}
}
@media only screen and (max-width: 850px) {
   footer .inline {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 10px 0;
}
  footer .inline p{
    width:100%;
  }
  footer .inline:nth-child(1), footer .inline:nth-child(2){
    display: none;
  }
 
  footer span.alt-font{
    display: none !important;
  }
  footer .last-paragraph-no-margin{
    text-align: center !important;
            flex: auto;
        max-width: 100%;
  }
  .copyright .col-12.col-md-6.col-sm-12.text-center.text-md-left.sm-margin-20px-bottom {
    width: 100%;
    max-width: 100%;
    text-align: center !important;
    flex: auto;
}
.contactform_area {
    width: 100%;
    display: block;
    margin: 0 auto 60px;
}
.blogdetail_wrapper .left {
    width: 100%;
    display: block;
}
.blogdetail_wrapper .right {
    width: 100%;
    display: block;
    margin: 20px 0 0;
}
.productdetail_wrapper {
    display: block;
    width: 85%;
    margin: 0 auto;
}
.productdetail_wrapper .image {
    width: 100%;
    display: block;
}
.vision_wrapper .right .block {
    padding: 5px;
}
.vision_wrapper .right .block h5 {
    font-size: clamp(19px, 2vw, 22px);
}
.vision_container p {
    color: #202020;
    font-size: 14px;
    line-height: 20px;
    padding: 0;
    margin: 0;
}
.aboutbottom_wrapper .image {
    width: 100%;
    display: block;
}
.aboutbottom_wrapper .content {
    width: 100%;
    display: block;
    margin: 20px 0 0;
}
.abouttop_wrapper .content_wrapper {  
    justify-content: center;   
    text-align: center;
}
.abouttop_wrapper .content_wrapper .left {
    width: 100%;
    display: block;
}
.abouttop_wrapper .content_wrapper .right {
    width: 100%;
    display: block;
    margin: 20px 0 0;
}
}
@media only screen and (max-width: 750px) {
.banner_content h2 br {
    display: none;
}
}
@media only screen and (max-width: 650px) {
.banner_content h2{
  font-size: clamp(20px, 4vw, 28px);
  }
  .homeblog_wrapper .item {
        padding: 0px 2px;
        width: 100%;
        margin: 20px 0 0;
    }
        .vision_wrapper .right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin: 30px 0 0;
        justify-content: center;
    }
    .vision_wrapper .right .block {
    padding: 10px;
    display: block;
    width: 50%;
}
}
@media only screen and (max-width: 550px) {
  p.half {
    grid-column: 1 / 3;
}
}
@media only screen and (max-width: 500px) {
  .vision_wrapper .right .block {
    padding: 10px;
    display: block;
    width: 100%;
}
.abouttop_wrapper .image_wrapper .image {
    width: 100%;
    display: block;
    margin: 5px 0;
}
}
@media only screen and (max-width: 450px) {
  .banner_content h2 {
    font-size: clamp(13px, 4vw, 28px);
}
    .logo {
        display: inline-block;
        width: 85px;
    }
}