 @font-face {
    font-family: 'poppinsregular';
    src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'), url('../fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  @font-face {
    font-family: 'archergagedemo';
    src: url('../fonts/Archer\ Gage\ Demo.woff2') format('woff2'), url('../fonts/Archer\ Gage\ Demo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  
  @font-face {
    font-family: 'poppinsbold';
    src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'), url('../fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  @font-face {
    font-family: 'poppinsmedium';
    src: url('../fonts/poppins-medium-webfont.woff2') format('woff2'), url('../fonts/poppins-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  @font-face {
    font-family: 'poppinssemibold';
    src: url('../fonts/poppins-semibold-webfont.woff2') format('woff2'), url('../fonts/poppins-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  
  * {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    outline: none;
    resize: none;
    box-sizing: border-box;
    font-weight: normal;
  }
  img{
      width:100%;
      display: block;
      height: auto;
  }
  a,
  a:hover,
  a:focus {
    text-decoration: none;
    outline: none;
    display: inline-block;
    -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);
  }
  body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #000;
    scroll-behavior: smooth;
    font-family: 'poppinsregular';
  }
  ::-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;
  }
  h3 {
    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;
  }
  h3 span {
    font-family: 'latobold';
    display: block;
    font-size:30px;
  }
  h3.line {
    padding-left: 0px;
    text-align: center;
  }
  h3.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 {
    background: linear-gradient(90deg, #9b13c7 0%, #6c0dc5 100%);
    color: white;
    padding: 6px 24px;
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    font-family: sans-serif;
    display: inline-flex;
    align-items: center;    
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    position: relative;
    margin-top: 25px;
    font-family: 'poppinsregular';
    font-size: 16px;    
  }
  .btn::first-letter{
    text-transform:uppercase !important ;
  }
  .btn:hover {    
    background: linear-gradient(90deg, #6c0dc5 0%, #9b13c7 100%);
  }
  .btn::after {
    content: '\2192';
    font-size: 26px;
    padding-left: 8px;
    line-height: normal;
}
  .btn.blue{
    background-color: #aed1f4;
  }
  .btn:hover {
    
    display: inline-flex;
  }
  .btn.blue:hover {
    background-color: #fff;   
    border: 2px solid #aed1f4;
    display: inline-flex;
  }
 
  .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.transparent {
    color: #282828;
    background: transparent;
    border: 1px solid #000;
  }
  .btn.transparent:hover{
      background: #d00b11;
      color: #fff;
      border: 1px solid #d00b11;
  }
  .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: #434853;    
    line-height: 28px;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    font-family: 'montserratlight';
    font-size: 17px;
    line-height: 26px;
    padding: 10px 0;
  }
  .inline {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    
  }
  .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: 86%;
  }
  .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: 20px 0px 0px 0px;
   
}
.social li {
    display: inline-block;
    margin: 0 12px 0px 0px;
    text-align: center;
}
.social li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
    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{
    -webkit-text-fill-color: #8b11c6;
  }
  .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;
        right: 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: #8b11c6 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEX///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8GYpHzAAAAH3RSTlMAASorLDA7PD9ARlJXbm92eHl8fX5/gISFhoeIvfv8ZEvyMgAAAHpJREFUeAHt0UkOgzAMhWG789B0bjqU4PvfEiElT0YYS6zhbZD1/axCk9z2vHf9LiJvHvaHtPuw607xlLIvO47CcbN4Zany98e2R7qZRYQTij9b/5Mu4DvlujiUIHQdxaXci6QdRb3GfUzZsatIOql72XvlTVjRmM1rANIYFT25t9OXAAAAAElFTkSuQmCC) no-repeat;
        background-position: center;
        border-color: #8b11c6;
        z-index: 10;
        transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
    }
 
  .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: 18px 0px;
    display: flex;
    position: fixed;
    top: 0;
    background: transparent;
    align-items: center;
    z-index: 1000; 
    background: #000; 
    
  }
  header .container{
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }
  .logo {
    display: inline-block;   
    width:106px ;     
    z-index: 20;
  }
  
  .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;
}
 
  /******************************************menu*********************************************/
  .header_menu{
    display: block;
    width: 100%;
    vertical-align: middle;
    transition: 0.3s;
    margin: 0px 0 0;
  }
  .header_menu .menu-list {
    font-size: 0px;
    text-align: left;
    padding-top: 0px;
    list-style: none;
  }
  .header_menu .menu-list li {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
  }
  .header_menu .menu-list li a {
    color: #fff;
    font-family: 'poppinsregular';   
    padding: 0 20px;  
    text-transform: uppercase;
    display: block;
    transition: 0.01s;    
  }
  .header_menu .menu-list li.current-menu-item a {
    color: #8b11c6;
}
.header_menu .menu-list li:hover a {
    color: #8b11c6;
}
  .header_menu .menu-list li:last-child a{
    padding-right: 0;
  }
  
  .menu-btn {
    display: none;
    vertical-align: middle;   
    border: none;
    width: 38px;
    height: auto;
    padding:0px;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;    
    z-index: 16002;    
    top: 0;   
    background: none;
    border-radius: 0;
    margin-top:0px
  }
  .menu-btn{
    transition: 0.3s;
    
  }
  .menu-btn .icon {
    display: flex;    
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: right;
    align-items: flex-end;
    
  }
  .menu-btn .icon .bar {
    width: 100%;
    height: 3px;
    display: inline-flex;
    background: #8b11c6;
    border-radius: 30px;
    justify-content: flex-end;
    text-align: right;
  }
  .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: 4px;
      margin-bottom: -5px;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      width:65%;
  }
  .menu-btn .icon .bar-3 {
    transition: 0.3s;
    margin-bottom: 4px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    width:65%;
  }
  .menu-btn .icon .bar-4 {
    transition: 0.3s;
    transform: scale(1);
    -webkit-transform: scale(1);
    width:100%;
  }
  .menu-btn.open .icon .bar{
    background: #8b11c6;
  }
  .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);
    margin-top: 4px;
    margin-bottom: -4px;
    width:100%;
}
  .menu-btn.open .icon .bar-3 {
    transition: 0.3s;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-bottom: 5px;
    width:100%;
}
  .menu-btn.open .icon .bar-4 {
    transition: 0.3s;
    transform: scale(0);
    -webkit-transform: scale(0);
    width:100%;
  }
  
  header.fix {
    top: 0px !important;
    box-shadow: 0px 0px 5px #8b11c6 !important;  
    transition: all 0.8s cubic-bezier(0.32, 0.1, 0.3, 1)
}
header.fix .logo{
    
    transition: all 0.8s cubic-bezier(0.32, 0.1, 0.3, 1);  
}
  /******************************************menu*********************************************/
  .banner{
    width:100%;
    position: relative;  
    margin-top: 70px; 
    height: 100svh;
  }
  .banner::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100svh;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  .banner video {
    width: 100%;
    height: 100svh;
    object-fit: cover;
}
  .banner-item {
    height: 100%;
}
.banner-item img{
  height: 100%;
}
  .banner .container{
    position: relative;
  }
  .banner_content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
  } 
.banner_content h3{
    font-family: 'poppinsmedium';
    font-size: clamp(18px, 7vw, 26px);
    color: #8b11c6;
    line-height: 1;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    position: relative;
    filter: drop-shadow(0px 0px 10px #000);   
    text-wrap: unset;
    -webkit-text-stroke: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: #8b11c6;
}
.banner_content h1{
  color: #fff;
    font-family: 'archergagedemo';
    font-size: clamp(20px, 7vw, 38px);
    line-height: 1.5;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0 0;
}
.banner_content h2{
  color: #fff;
    font-family: 'archergagedemo';
    font-size: clamp(20px, 7vw, 36px);
    line-height: 1.5;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0 0;
}
.banner_content p{
    font-family:'poppinsregular';
    font-size: 16px;
    color:#fff;
    line-height: 25px;    
    text-transform: none;   
    padding-top: 10px;
}
.banner .button_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    
}
.banner .button_wrapper .btn{
    margin-right: 5px;
}
.explore-btn {
    position: absolute;
    bottom: 13%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-decoration: none;
    font-size: 16px;    
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'poppinsregular';
    text-transform: lowercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; 
    z-index: 2;  
}
.explore-btn span{
    display: block;
    width:16px;
    height: 8px;
    padding-top: 10px;
    margin: 0 auto;
    animation: bouncedown 1s ease infinite;
}
.explore-btn img{
  height: auto;
}
@keyframes bouncedown {
    50% {
      transform: translateY(40%);
    }
  }
.homeservice_container{
    width:100%;
    display: block;
    margin: 50px 0 0;
    position: relative;
}
.homeservice_container .container{
  width:95%;
}
.homeservice_wrapper{
    width:auto;
    display: flex;
    margin: 0 -10px 0;
    flex-wrap: wrap;
}
.homeservice_wrapper .block{
    width:25%;
    display: inline-block;
    padding: 10px;
}
.homeservice_wrapper .block .block_inner{
    position: relative;
    transition: .5s;
    overflow: hidden;
}
.homeservice_wrapper .block .block_inner img{
    filter: opacity(0.7);
    width:100%;    
    transform: scale(1);
    transition: all 0.4s;
}
.homeservice_wrapper .block .block_inner:hover img {
    transform: scale(1.07);    
}
.homeservice_wrapper .block .block_inner .content{
    position: absolute;
    left:50%;
    top:50%;
    text-align: center;
    transform: translate(-50%, -50%);
    width:88%;
}
.homeservice_wrapper .block .block_inner .content h6{
    font-family: 'poppinsregular';
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 30px;
    width:100%;
    text-align: center;
}
h2 {
    font-family: 'poppinsregular';
    font-size: 24px;
    text-transform: capitalize;
    color: #fff;
    line-height: 25px;
    padding: 20px 0;
}
h3{
    font-family: 'poppinsregular';
    font-size: 23px;
    text-transform: capitalize;
    color: #fff;
    line-height: 25px;
}
.homeclients_container{
    width:100%;
    text-align: center;
    display: block;
    margin: 0px 0 0;
    background: url(../images/clients_bg.png) no-repeat;
    background-position: center top;
    background-size: 100%;
    padding: 60px 0;
}
.homeclients_wrapper{
    display: block;
    margin: 40px 0 0;
}
.homeclients_wrapper .item{
    padding: 10px 50px;
}
.homeclients_wrapper .owl-stage{
    display: flex;
    align-items: center;
    width:100%;
}
.homework_container{
    width:100%;
    text-align: center;
    display: block;
    margin: 40px 0 0;
}
.homework_container .container{
    width:96%;
}
.homework_wrapper{
    display: block;
    margin: 40px 0 0;
    position: relative;
}
.homework_wrapper .item{
    padding: 0px 10px;
}
.homework_wrapper .item .block{
    border: 3px solid transparent;
    margin: 20px 0;
    position: relative;
    --borderWidth: 3px;
}
.homework_wrapper .item .block::before{
background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.95)) no-repeat bottom;
    background-size: 100% 70%;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition: all ease-in-out 0.5s;    
    content: "";
    left:0;
}

  .homework_wrapper .item .block:hover {
	--angle: 0deg;	
	border: 3px solid;
	border-image: linear-gradient(var(--angle), #682ce2, #fff) 1;
	transition: all ease-in-out 0.5s;   
	animation: 10s rotate linear infinite;
}
.owl-dots {
    display: block ;
    width: 100%;
    margin-top:25px;
    text-align: center;
    position: relative;
    
}
.owl-dots .owl-dot{
    width: 10px ;
    height: 10px ;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    background: transparent;
    margin: 0px 3px;
    border: 2px solid #fff;    
    padding: 0;
}
.owl-dots .owl-dot.active {
    
    background: #fff ;
}
@keyframes rotate {
	to {
		--angle: 360deg;
	}
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.homework_wrapper .item .block:hover::before{
    opacity: 1;
}
.homework_wrapper .item .block .content{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom:4%;
   left:6%;
   text-align: left;
   width:92%;
   z-index: 2;
}
.homework_wrapper .item .block:hover .content{
    opacity: 1;
    visibility: visible;    
}
h5{
    font-family: 'poppinsregular';
    color: #fff;
    font-size: 19px;
    text-transform: capitalize;
    line-height: 25px;
    padding: 15px 0;
}
p{
    font-family: 'poppinsregular';
    color: #fff;
    font-size: 16px;
    text-transform: none;
    line-height: 25px;
    padding: 12px 0;
}
ul {
    padding: 10px 0 0 17px;
    text-align: left;
}

ul li {
    font-family: 'poppinsregular';
    color: #fff;
    font-size: 16px;
    text-transform: none;
    line-height: 25px;
    padding: 8px 0;
    display: list-item;
    list-style: square;
}
footer{
    background: url(../images/footer_bg.png) no-repeat;
    background-position: center top;
    background-size:100%;
    padding: 12% 0 100px;
    margin: -5% 0 0;
}
.contactform_wrapper {
  width: 100%;
  margin:0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 2px solid #fff;
  border-bottom-right-radius: 15px;
}
.contactform_form{
  display: block;
  width: 100%;
  margin: 20px auto 0;
  border-top: 2px solid #bbbbbd;
  border-right: 2px solid #bbbbbd;
  padding: 20px 40px 120px 0 ;
  border-radius: 15px;
  border-top-left-radius: 0;
}
.contactaddress_area {
  width: 32%;
  display: inline-block;
  padding: 0;
  text-align: left;
}
.contactaddress_area h2{
  color: #fff;
  font-family: 'archergagedemo';
  font-size: clamp(20px, 7vw, 38px);
  line-height: 1.5;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contactaddress_area h2 span{
  display: inline-block;
  padding: 0 5px;
  vertical-align: middle;
}
.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{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;    
}  
.contactform_form  form p {
  margin: 0;
  width:auto;
  padding: 0;
}
.contactform_form  form .full {
  grid-column: 1 / 3;
}
p.full:nth-last-of-type(1) {
    text-align: right;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}
span.wpcf7-spinner {
    position: absolute;
}
.arrow{
  position: relative;
  display: inline-flex;
  align-items: center;
}
.arrow::after{
  content: '\2192';
    font-size: 26px;
    padding-left: 8px;
    line-height: normal;
    position: absolute;
    right: 24px;
}
.contactform_form form .half {  
 padding-right: 25px;
}
.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: 0px;
    background: transparent;
    border: none;
    border-bottom: none;
    padding: 10px 0;
    font-family: 'poppinsregular';
    font-size: 15px;
    text-transform: none;
    color: #fff;
    border-radius: 0;
    height: auto;
    border-bottom: 2px solid #fff;
}

.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: 15px;
  text-transform: none;
  color: #fff;
  text-transform: capitalize;
}

.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;
}
.contactform_form .wpcf7-submit {
  
  background: linear-gradient(90deg, #9b13c7 0%, #6c0dc5 100%);
    color: white;
    padding: 6px 60px 6px 24px;
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    font-family: sans-serif;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    position: relative;
    margin-top: 25px;
    font-family: 'poppinsregular';
    font-size: 16px;
    text-transform: capitalize;
}
.contactform_form .wpcf7-submit:hover {
  background: linear-gradient(90deg, #6c0dc5 0%, #9b13c7 100%);
}
.contactform_form  form button:hover,
.contactform_form  form button:focus {
  background: linear-gradient(90deg, #6c0dc5 0%, #9b13c7 100%);
  transition: background-color 2s ease-out;
}
.contactform_form form .full:last-child{
  margin-bottom:0;
  text-align: right;
}
.contactform_area{
  width: 57%;
  display: inline-block;  
}
.contactform_area h5{
  color: #fff;
  text-align: right;
  font-family: 'poppinsregular';
  font-size: 18px;
  text-transform: lowercase;
}
.contactpage .contactform_form form {
  margin-top:80px;
  margin-left: -3%;
}
.contactpage .contactform_form form .btn {
    height: 45px;
    display: flex;
    margin: 0 0 0 auto;
    width: auto;
}
.contact_info {
  padding: 0;
  width: 100%;
  margin-top: 20px;  
}
.contact_info p {
  font-family: 'poppinsregular';
  color: #fff;
  padding: 8px 0 0;
  font-size: 15px;
  line-height: 23px;
  text-transform: capitalize;
}
.contact_info p a {
  color: #fff;
  cursor: pointer;  
  padding: 0 0 0 0;
  text-transform: none;
}
footer .button_wrapper{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .button_wrapper a{
  margin-right: 20px;
}
.copyright{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 0 0;
}
.copyright p{
    font-family: 'poppinsregular';
    color: #cbcbcb;
    padding: 0;
    font-size: 15px;
    line-height: 23px;
    text-transform: none;
}
.copyright p a{
    color: #fff;
}
footer ul.links {
  display: flex;
  flex-wrap: wrap;  
  padding: 0;
}
footer ul.links li{
  color: #cbcbcb;
  font-size: 15px;
  padding: 0px 0px;
  font-family: 'poppinsregular';
  text-transform: uppercase;
  display: inline-block;
}
footer ul.links li a{
  
  color:#cbcbcb;
  padding-right: 25px;
}
footer ul.links li:last-child a{
  padding-right: 0;
}
footer ul.links li a:hover{
  color: #8b11c6;
}
img.mobile_banner{
    display: none;
}
img.desktop_banner{
    display: block;
}
/******************************************works page*****************************************/
.inner_banner{
  width:100%;
  position: relative;
  height: auto;
}
.inner_banner .banner-item img {
  height: auto;
}
.inner_footer{
  background: url(../images/innerfooter_bg.png) no-repeat;
    background-position: center top;
    background-size: 100%;
    padding: 12% 0 80px;
    margin: -4% 0 0;
}
.inner_footer .contactaddress_area {
  width: 100%;
  display: block;
  padding: 0;
  text-align: left;
}
.inner_footer .contactform_wrapper {  
  border-bottom-right-radius: 0px;
  padding-bottom: 40px;
}
.workdetailtop_container{
  width: 100%;
  display: block;  
  margin: 70px 0 0;
  padding-bottom: 70px;
  position: relative;
  text-align: center;
}
.workdetailtop_container::before{
  background: url(../images/workdetail_topbg.png) no-repeat;
  background-position: left bottom;
  background-size: 100%;
  content: "";
  width: 100%;
  left: 0;
  bottom: 10%;
  height: 100%;
  display: block;
  position: absolute;
}
.workdetailimg_wrapper{
  width:100%; 
  position: relative;
  display: block;
}
.workdetailimg_wrapper::before{
  background: url(../images/workdetailtopimg_bg.png) no-repeat;
  background-position: left bottom;
  background-size: 100%;
  content: "";
  width: 30%;
  left: -8%;
  bottom: -10%;
  height: 100%;
  display: block;
  position: absolute;
}
.workdetailimg_wrapper .image{
  width:100%;
  position: relative;
}
.workdetailicon_wrapper{
  width:100%;
  margin:60px 0 0;
  position: relative;
}
.workdetailicon_wrapper ul, .workvideo_container ul{
    width: fit-content;
    margin: 0 auto;
    display: block;
}
.workdetailicon_wrapper .icon_bg{
  background: url(../images/workdetailicon_bg.png) no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 30px 8%;
  width:65%;
  margin: 20px auto 20px;
}
.workdetailicon_wrapper .icon_bg .image{
  width:80%;
  margin: 0 auto;
}
p.bold{
  font-family: 'poppinsbold';
}
.workvideo_container{
  margin: 0px 0 0;
  display: block;
  width:100%;
  text-align: center;
}
.workvideo_wrapper{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 50px 0;
}
.workvideo_wrapper .left{
  width:62%;
  display: inline-block;
  position: relative;
}
.workvideo_wrapper .left .play_button{
  display: inline-block;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
}
.workvideo_wrapper .left::before{
  background: url(../images/workdetailvideo_bg.png) no-repeat;
    background-position: left bottom;
    background-size: 100%;
    content: "";
    width: 68%;
    right: -12%;
    bottom: -23%;
    height: 100%;
    display: block;
    position: absolute;
}
.workvideo_wrapper .left img{
  position: relative;
}
.workvideo_wrapper .right{
  width:33%;
  display: inline-block;
  position: relative;
  text-align: left;
}
.workvideo_wrapper .right p{
  font-size: 16px;
    line-height: 25px;
    font-family: 'poppinsregular';
}

.workdetailbottom_container{
  width: 100%;
  display: block;  
  margin: -2% 0 70px;
  padding: 7% 0 0;
  position: relative;
  text-align: center;
}
.workdetailbottom_container::before{
  background: url(../images/workdetailbottom_bg.png) no-repeat;
  background-position: left top;
  background-size: 100%;
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  display: block;
  position: absolute;
}  
.workdetailbottom_wrapper{
  width:100%;
  position: relative;
  padding-bottom: 80px;
  border-bottom: 2px solid #fff;
  text-align: center;
  
}
.workdetailbottom_wrapper .image{
  width:100%;
}
.workdetailbottom_wrapper .gallery_wrapper{
  display: flex;  
  margin: 0px 0px 0;
  width:auto;
  justify-content: space-between;
}
.workdetailbottom_wrapper .gallery_wrapper img{
  height:unset;
}
.workdetailbottom_wrapper .gallery_wrapper .block{
  
  display: inline-block;
  padding: 15px 0px;  
}
.explore {  
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 50px 0px 0;
  border-radius: 0;
  font-family: 'poppinsregular';
  text-transform: lowercase;
  text-align: center;  
}
/******************************************works page*****************************************/
/******************************************service page*****************************************/
.service_container{
  margin: 50px 0;
}
/******************************************service page*****************************************/
/***********************************************blog page*****************************************/
.blog_container{
  margin: 0px 0 60px;
  display: block;
  width:100%;
  position: relative;
}
.blog_container::before{
  background: url(../images/blogpage_topbg.png) no-repeat;
    background-position: left top;
    background-size: 100%;
    content: "";
    width: 100%;
    left: 0;
    top: 3%;
    height: 100%;
    display: block;
    position: absolute;
}
.blog_wrapper{
  width: 100%;
  position: relative;
}
.blog_wrapper .block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 100px 0;
}
.blog_wrapper .block:nth-child(even){
  flex-direction: row-reverse;
}
.blog_wrapper .block .image{
  width:47%;
  display: inline-block;
  position: relative;
}
.blog_wrapper .block .image::before {
  background: url(../images/blog_bg.png) no-repeat;
    background-position: right bottom;
    background-size: cover;
    content: "";
    width: 80%;
    right: -18%;
    bottom: -14%;
    height: 100%;
    display: block;
    position: absolute;
    -webkit-mask-image: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 1) 40%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 1) 40%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.blog_wrapper .block:nth-child(even) .image::before {
  background: url(../images/blogeven_bg.png) no-repeat;
    background-position: left bottom;
    background-size: 100%;
    content: "";
    width: 80%;
    left: -18%;
    bottom: -14%;
    height: 100%;
    display: block;
    position: absolute;
    right: auto;
}
.blog_wrapper .block .image img{
  position: relative;
}
.blog_wrapper .block .content{
  width:47%;
  display: inline-block;
  text-align: right;
}
.blog_wrapper .block:nth-child(even) .content{
  text-align: left;
}
.blog_wrapper .block .content h3{  
    font-family: 'poppinsbold';
    font-size: clamp(20px, 7vw, 28px);
    color: #fff;
    line-height: 1.4;
    text-transform: capitalize;
    padding: 20px 0 0;
    margin: 0;
    position: relative;
}
.blog_wrapper .block:hover .content h3{
  color: #8b11c6;
}
.blog_wrapper .block .content:hover h3{
  color: #8b11c6;
}
.blog_wrapper .block .content .date{  
  font-family: 'poppinsmedium';
  font-size: 17px;
  color: #a0a2a5;
  line-height: 25px;
  text-transform: capitalize;
  padding: 0;
  margin: 0;
  position: relative;
}

/***********************************************blog page*****************************************/
/***********************************************industry page*****************************************/
.industry_container .homework_wrapper .item .block .content {
  opacity: 1;
  visibility: visible;
  position: absolute;
  bottom: 12%;
  left: 6%;
  text-align: left;
  width: 92%;
  z-index: 2;
}
/***********************************************industry page*****************************************/
/***********************************************about us page*****************************************/
.abouttop_container{
  padding: 60px 0;
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
}
.abouttop_container::before {
  background: url(../images/abouttop_bg.png) no-repeat;
    background-position: center top;
    background-size: 100%;
    content: "";
    width: 100%;
    left: 0;
    bottom: -25%;
    height: 100%;
    display: block;
    position: absolute;
}
.abouttop_wrapper{
  width:100%;
  display: block;
  position: relative;
}
.abouttop_wrapper h4{
  font-family: 'poppinsmedium';
    font-size: clamp(20px, 7vw, 34px);
    color: #fff;
    line-height: 1.8;
    text-transform: capitalize;
    padding: 20px 0 0;
    margin: 0;
    position: relative;
}
.abouttop_wrapper h4 span{ 
  font-family: 'archergagedemo';
  font-size: clamp(20px, 7vw, 34px); 
  letter-spacing: 1px;  
}
.value_wrapper{
  width:100%;
  display: flex;
  margin: 60px 0 0;
  text-align: center;
  position: relative; 
  flex-wrap: wrap;
}
.value_wrapper h3{
  font-size: 18px;
  width:100%;
}
.value_wrapper .block{
  display: inline-block;
  width:20%;
  padding: 70px 15px 0;
}
.value_wrapper .block .block_inner{
  background: #0f0f0f;
  padding: 40px 30px;
  transition: all 0.4s;
  height: 100%;
}
.value_wrapper .block:hover .block_inner{
  transform: translateY(-30px);
    transition: all 0.4s;
}
.value_wrapper .block .block_inner .icon{
  width:35%;
  margin: 0 auto;
  display: block;
}
.value_wrapper .block .block_inner h4{
  font-family: 'poppinsregular';
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  line-height: 25px;
  padding: 20px 0 0;
}
.aboutbottom_container{
  padding: 60px 0;
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
  }
.aboutbottom_wrapper{
  width:100%;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aboutbottom_wrapper .left {
  width: 66%;
  display: inline-flex;
  text-align: left;
  flex-wrap: wrap;
}
.aboutbottom_wrapper .left .blocktop{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.aboutbottom_wrapper .right{
  width:28%;
  display: inline-block;
}
.aboutbottom_wrapper .image_wrapper{
  width: 45%;
    display: inline-block;
    position: relative;
}
.aboutbottom_wrapper .image_wrapper::before {
  background: url(../images/blog_bg.png) no-repeat;
  background-position: right bottom;
  background-size: cover;
  content: "";
  width: 100%;
  right: -30%;
  bottom: -42%;
  height: 100%;
  display: block;
  position: absolute;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.aboutbottom_wrapper .image_wrapper .image{
  width:73%;
  display: block;
  position: relative;
}
.aboutbottom_wrapper .content_wrapper{
  width: 52%;
    display: inline-block;
    position: relative;
    margin-top: -10px;
}
.aboutbottom_wrapper .content_wrapper p{
  line-height: 27px;
}
.aboutbottom_wrapper .content_wrapper p.bold{
  font-family: 'poppinsbold';
}
.corecounter_wrapper {
  margin: 100px 0 0;
  position: relative;
  z-index: 1;
  width:100%;
}
.core_rating {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.core_rating .block {
  width: 45%;
  display: inline-flex; 
  align-items: center;
  border-bottom: 2px solid #fff;
  padding-bottom: 12px;
  justify-content: space-between;
}
.core_rating .block .number {
  font-family: 'poppinssemibold';
  font-size: clamp(30px, 7vw, 70px);
  color: #fff;
}
.core_rating .block .number::after {
  content: "+";
  display: inline-block;
}
.core_rating .block .content {
  padding-left: 8px;
}
.core_rating .block .content .tittle {
  position: relative;
  font-family: 'poppinsmedium';
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;  
  line-height: 28px;
}
/***********************************************about us page*****************************************/
/***********************************************contact us page*****************************************/
.contact_container{
  padding: 60px 0;
    display: none;
    width: 100%;
    position: relative;
    text-align: center;
}
.contact_footer .contactaddress_area h2 {
  color: #fff;
  font-family: 'archergagedemo';
  font-size: clamp(20px, 7vw, 32px);
  line-height: 1.7;
  vertical-align: middle;
  text-transform: capitalize;
  letter-spacing: 1px;
  width: 225%;
}
.contactaddress_area h4 {
  color: #fff;  
  font-family: 'poppinsbold';
  font-size: 20px;
  text-transform: capitalize;
  line-height: 32px;
}
.contact_footer {  
  padding: 10% 0 80px;
  margin: -4% 0 0;
}
.contact_footer .contact_info{  
  margin-top: 30px;  
}
.contact_footer .social { 
  display: block;
  margin: 30px 0px 0px 0px;
}
.contact_footer .button_wrapper{
  margin: 30px 0 0;
}
.contact_footer .contactform_form form textarea {
  resize: none;
  height: 100px;
}

/***********************************************contact us page*****************************************/
/***********************************************blogdetail page*****************************************/
.banner_content h5.date{
  font-family: 'poppinsmedium';
    font-size: 17px;
    color: #fff;
    line-height: 1;
    text-transform: capitalize;
    padding: 10px 0 0;
    margin: 0;
    position: relative;
    opacity: 0.8;
}
.blogdetailtop_container{  
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
    margin: 60px 0 0;
}
.blogdetailtop_wrapper{
  width:100%;
  display: block;
  position: relative;
}
.blogdetailtop_block_container{
  width:100%;
  display: block;
  position: relative;
  margin:60px 0 0
}
.blogdetailtop_block_container::before {
  background: url(../images/abouttop_bg.png) no-repeat;
  background-position: center top;
  background-size: 100%;
  content: "";
  width: 100%;
  left: 0;
  top: -35%;
  height: 100%;
  display: block;
  position: absolute;
}
.blogdetailtop_block_wrapper{
  width:100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blogdetailtop_block_wrapper .image{
  width:22%;
  display: inline-block;
}
.blogdetailtop_block_wrapper .content{
  width:75%;
  display: inline-block;
}
.bloggradient_container{
  width:100%;
  display: block;
  position: relative;
  margin: 60px 0 0;
}
.bloggradient_wrapper{
  background: linear-gradient(90deg, #6e0e8f, #4d0a8d);  
  padding: 30px 6%;
  margin: 0 0 0;
  width:100%;
  display: block;
}
.blogdetailbottom_container{
  width: 100%;
  display: block;
  margin: 60px 0 0;
  padding: 0 0 0;
  position: relative;

}
.blogdetailbottom_wrapper {
    width: 100%;
    display: block;
    position: relative;
}
.blogdetailbottom_wrapper h5{
  color: #fff;
    font-family: 'poppinsbold';
    font-size: 19px;
    text-transform: capitalize;
    line-height: 26px;    
  }
  .blogdetailbottom_wrapper ul{
    padding: 20px 0 20px 17px;
  }
.blogdetailbottom_wrapper ul li{
  display: inline-block;
    padding:6px 0;
    font-family: 'poppinsregular';
    font-size: 16px;
    color: #fff;
    text-transform: none;
    line-height: 26px;
    display: list-item;
    list-style-type: square;
}
.tags {
    margin-top: 60px;
    width:100%;
    text-align: left;
    border-bottom: 2px solid #fff;
    padding-bottom: 30px;
}
.tags h4 {    
    color: #fff;
    font-family: 'poppinssemibold';
    font-size: 16px;
    line-height: 1;
    margin: 10px 0px 10px 0px;    
    text-transform: capitalize;
}
.tags ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;    
    padding: 20px 0;
}
.tags ul li {
    padding: 10px 6px;
    display: inline-block;
    width: auto;
}
.tags ul li a {
    color: #fff;
    font-family: 'poppinsregular';
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    background: none;
    padding: 4px 25px;
    line-height: 26px;
    width: fit-content;
    text-transform: capitalize;
    border: 1px solid #fff;
    width: 100%;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.32, 0.1, 0.3, 1);
}
.tags ul li a:hover{
    color: #000003;
    background: #fff;
}
.blogbottomslider_wrapper{
  width:100%;
  display: block;
  position: relative;
  margin: 60px 0 0;
}
.blogbottomslider_wrapper .item{
  padding: 10px 0;
}
.blogbottomslider_wrapper .block .content{
  margin: 10px 0 0;
}
.blogbottomslider_wrapper .block .content .date {
    font-family: 'poppinsmedium';
    font-size: 16px;
    color: #a0a2a5;
    line-height: 25px;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    position: relative;
}
.blogbottomslider_wrapper .block .content h3 {
    font-family: 'poppinsmedium';
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
    text-transform: none;
    padding: 5px 0 0;
    margin: 0;
    position: relative;
}
.blogbottomslider_wrapper .block:hover .content h3 {
    color: #8b11c6;
}
/***********************************************blogdetail page*****************************************/
/***********************************************industrydetail page*****************************************/
.industrydetailtop_container {
    width: 100%;
    display: block;
    position: relative;
    margin: 70px 0 0;
}
.industrydetailtop_container::before {
    background: url(../images/abouttop_bg.png) no-repeat;
    background-position: center;
    background-size: 100%;
    content: "";
    width: 100%;
    left: 0;
    top: 5%;
    height: 100%;
    display: block;
    position: absolute;
}
.industrydetailtop_wrapper {
    width: 100%;
    display: flex;
    position: relative;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.industrydetailtop_wrapper .image {
    width: 40%;
    display: inline-block;
    position: relative;
}
.industrydetailtop_wrapper .image::before {
    background: url(../images/blog_bg.png) no-repeat;
    background-position: right bottom;
    background-size: cover;
    content: "";
    width: 80%;
    right: -24%;
    bottom: -21%;
    height: 100%;
    display: block;
    position: absolute;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.industrydetailtop_wrapper .image img {
    position: relative;
}
.industrydetailtop_wrapper .content {
    width: 55%;
    display: inline-block;    
    margin-top: -12px;
}
.industrygradient_wrapper {
    background: linear-gradient(90deg, #6e0e8f 70%, #4d0a8d);
    padding: 30px 50px;
    margin: 0 0 30px;
    width: 100%;
    display: block;
    color: #fff;
    line-height: 25px;
}
.industry_slider{
  background: transparent;
}
.industry_slider .homeclients_wrapper{
  border-bottom: 2px solid #fff;
  padding-bottom: 60px;
  margin-top: 60px;
}
.faq_wrapper{
  width:100%;
  margin:0px 0 0;
  text-align: center;
}

.faq_wrapper .question_wrapper{
  margin-top:40px;
  width:100%;
  text-align: left;
}
.collapsible {  
  padding: 30px 20px 0;
  position: relative;
 
}
/* line 2916, ../sass/_styles.scss */
.collapsible .collapse-head {
  display: flex; 
  font-family: 'poppinsmedium';  
  font-size: 20px;
  color: #fff;
  position: relative;
  text-transform: none;
  align-items: center;
  border: 1px solid #fff;
  padding: 15px 30px;
  border-radius: 50px;
}
.collapsible .collapse-head.open{
  color:#8b11c6;
}

.collapsible .collapse-head::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right:0px;
  margin-right: 15px;
}
.collapsible .collapse-head.open::before{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-top:0px;
}

.collapsible .collapse-content {
  display: none;
  padding: 20px 30px 0;
}
.collapsible .collapse-content .tittle{
  font-size: 18px;
    color: #fff;
    font-family: 'poppinsmedium';
    line-height: 1.2;
    margin: 0px 0px 0px 0;
    text-transform: none;
    display: block;
}
.collapsible .collapse-content ul{
  padding:10px 0 0 17px;
}
.collapsible .collapse-content ul li{
  color: #fff;
    line-height: 28px;
    margin: 0px 0px 0px 0px;
    padding:5px 0;
    font-family: 'poppinsmedium';
    display: list-item;
    list-style-type: disc;
}
/* line 2946, ../sass/_styles.scss */
.collapsible:last-child {
  position: relative;
}

/* line 2948, ../sass/_styles.scss */
.collapsible:last-child .collapse-content {
  border-bottom: none;
}
.industrybottom_container{
  width:100%;
  display: block;
  position: relative;
  padding: 30px 0 60px;
  background: #17171a;
  margin: 60px 0 0;
}
.industrybottom_wrapper{
  width:100%;
  display: block;
}
.industrybottom_wrapper h4{
  font-family: 'poppinsmedium';  
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  padding: 40px 0 10px;
}
/*.faq_container{
  padding: 0;
}*/
.servicedetailtop_container {
    width: 100%;
    display: block;
    position: relative;
    margin: 70px 0 0;
}
.servicedetailtop_container::before {
    background: url(../images/abouttop_bg.png) no-repeat;
    background-position: center;
    background-size: 100%;
    content: "";
    width: 100%;
    left: 0;
    top: 5%;
    height: 100%;
    display: block;
    position: absolute;
}
.servicedetailtop_container .industrydetailtop_wrapper .image {
    width: 25%;
    display: inline-block;
    position: relative;
}
.servicedetailtop_container .industrydetailtop_wrapper .content {
    width: 66%;
    display: inline-block;
    margin-top: -12px;
}
.servicedetailtop_container .industrydetailtop_wrapper .image::before {
    background: url(../images/blog_bg.png) no-repeat;
    background-position: right bottom;
    background-size: cover;
    content: "";
    width: 80%;
    right: -60%;
    bottom: -15%;
    height: 100%;
    display: block;
    position: absolute;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.industrydetailtop_wrapper .icon_bg{
  background: url(../images/workdetailicon_bg.png) no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 40px 8%;
  width:100%;
  margin: 20px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industrydetailtop_wrapper .icon_bg .image{
  width:80%;
  margin: 0 auto;
}
.industrydetailtop_wrapper .icon_bg .image::before{
  display: none;
}
.servicebg_wrapper{
  background: url(../images/servicedetailbg.png) no-repeat;
  background-position: center top;
  background-size: cover; 
  display: block;
  margin: 60px 0 0;  
  padding: 60px;
}
.servicebg_wrapper .content{
  width:50%;
  display: block;
}
.servicedetailbottom_wrapper{
  border-bottom: 2px solid #fff;
    padding-bottom: 60px;
    margin: 70px 0;
    width:100%;
    display: block;
    text-align: center;
}
.servicedetailbottom_wrapper h3{
  color: #8b11c6;
  line-height: 1.5;
  padding-bottom: 30px;
}
/***********************************************industrydetail page*****************************************/
.workdetailbottom_wrapper{
  text-align: left;
}
.workdetailbottom_wrapper h2 {
    font-family: 'poppinsbold';
    color: #fff;
    font-size: 24px;
    text-transform: capitalize;
    line-height: 30px;
    width: 100%;
    text-align: left;
}
.workdetailbottom_wrapper ul{
  padding: 10px 0 15px 17px;
}
.workdetailbottom_wrapper ul li{
  font-family: 'poppinsregular';
    color: #fff;
    font-size: 16px;
    text-transform: none;
    line-height: 25px;
    padding: 12px 0 12px 10px;
    display: list-item;
    list-style-type: disc;
}
.workdetailbottom_wrapper h3 {    
    font-size: 20px;
  padding: 20px 0 10px;
}
.workdetailbottom_wrapper ol{
  padding: 10px 0 15px 17px;
}
.workdetailbottom_wrapper ol li{
  font-family: 'poppinsregular';
    color: #fff;
    font-size: 16px;
    text-transform: none;
    line-height: 25px;
    padding: 12px 0 12px 10px;
    display: list-item;
    list-style-type:decimal;
}
video.mobile_banner {
    display: none;
}
@media only screen and (min-width: 1900px) {
  .header_menu .menu-list li {    
    font-size: 19px;
  }
  .explore-btn {
    
    font-size: 20px;
  }
  .homeservice_wrapper .block .block_inner .content h6 {    
    font-size: 20px;
  }
  .main_tittle {
    line-height: 30px;
    font-size: 26px;
  }
  .homework_wrapper .item .block .content .tittle {    
    font-size: 20px;    
    line-height: 24px;
  }
  p {    
    font-size: 18px;    
    line-height: 24px;
  }
  .contactaddress_area .tittle {    
    font-size: clamp(20px, 7vw, 45px);
  }
  .contact_info p {
    
    font-size: 18px;
    line-height: 25px;
  }
  .social li a {
   
    font-size: 25px;
  }
  .btn {
  
    font-size: 19px;
  }
  .contactform_area h5 {
    
    font-size: 20px;
  }
  .contactform_form form input, .contactform_form form textarea, .contactform_form form select {
    
    padding: 17px 0;   
    font-size: 19px;    
  }
  .contactform_form {  
    padding: 20px 40px 80px 0;  
  }
  .banner_content h3 {    
    font-size: clamp(18px, 7vw, 30px);
  }
  .banner_content h1 {
    
    font-size: clamp(20px, 7vw, 52px);
  }
  .banner_content p {   
    font-size: 20px;    
    line-height: 33px;    
    padding-top: 10px;
}
.explore { 
  font-size: 18px;
}
}
@media only screen and (max-width: 1450px) {
  .workdetailbottom_wrapper .gallery_wrapper { 
    margin: 0px -5px 0;
    width: auto;    
}
  .workdetailbottom_wrapper .gallery_wrapper .block{
    padding: 10px 5px;  
  }
  }
@media only screen and (max-width: 1380px) {
footer {  
  background-size: cover;
  padding: 12% 0 80px; 
}
}
  @media only screen and (max-width: 1280px) {
    header {        
        align-items: center; 
    }
    .menu-btn {
      display: inline-block;     
  }
    header .btn:active {
        border-bottom: none;
    }
    header .btn:hover {
        background-color: transparent;
        border-color: transparent
    }
    .menu-btn .icon {
        
    }
    .menu-btn .icon .bar {        
        height: 5px;    
    }
    .menu-btn .icon .bar-2 {
        top: 8px;
        
    }
    .menu-btn .icon .bar-4 {
        bottom: 0.5px;    
    }
    .header_menu{
      width: 100%;
      height: 100vh;
      display: flex;
      /* flex-wrap: wrap; */
      align-items: center;
      transition: 0.3s;
      justify-content: center;
      position: fixed;
      flex-direction: column;
      left: 0px;
      top: 0px;
      z-index: 10;
      background: #000;
      background-size: cover;
      background-position: center center;
      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;
      overflow: auto;
      padding: 12% 2% 10%;
      }
    .header_menu.open{
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    .header_menu .menu-list{
        text-align: center;
    }
      .header_menu .menu-list li{
        display: block;
        padding: 35px 0 0;
      }
    .header_menu .menu-list li a,
      .header_wrapper .menu .menu-list li a{
        color: #fff;
        line-height: 30px;
        font-size: 20px;
        
      } 
    .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;
    }    
 
  .search-div{
    display: none;
  }
  .header_menu h4 {
    
    display: block;
}

.header_menu .social{
  display: block;
  margin: 30px 0 0;
}
.header_menu .social li {
  display: inline-block;
  margin: 0px;
  text-align: center;
  padding: 0 6px;
}
.header_menu .social li a {
  display: block;
  font-size: 15px;
  color: #0b374a;  
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  display: flex;
  background: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0;
  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);
  }
  .header_menu .social li a::after{
    display: none;
  }
  .header_menu .social li a:hover{
  background: #d37948 !important;
  border: 1px solid #d37948;
  color: #fff !important;
  }
  .header_menu .menu-list li a {
    padding: 0;
  }
  .contactaddress_area {
    width: 40%;    
  }
  .contactaddress_area {
  width: 40%;  
  }
  .inner_footer {   
    background-size: cover;   
}
.value_wrapper .block .block_inner .icon {
  width: 40%;  
}
}
@media only screen and (max-width: 1150px) {
  .homeservice_wrapper .block .block_inner .content h6 {   
    font-size: 16px;    
    line-height: 27px;
  }
  .homework_wrapper .item .block .content .tittle {    
    font-size: 16px;
  }
  p {   
    font-size: 14px;    
    line-height: 21px;
    padding: 10px 0;
  }
  .contactaddress_area .tittle {    
    font-size: clamp(20px, 4vw, 36px);
    line-height: 1.6;
  }
  .inner_footer {   
    padding: 6% 0 80px;  
}
.aboutbottom_wrapper .left {
  width: 100%;  
}
.aboutbottom_wrapper .right {
  width: 100%;  
  margin-top: 30px;
}
.aboutbottom_wrapper .image_wrapper .image {
  width: 90%;
}
}
@media only screen and (max-width: 1050px) {
  .contactaddress_area {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .contactform_area {
    width: 100%;
    display: block;
  }
  .contactform_area h5 {
    display: none;
  }
  .contactform_form {  
    padding: 20px 0;
    border-radius: 0;
    border-top-left-radius: 0;
    border: none;
  }
  .contactform_area h5 {
    color: #fff;
    text-align: right;
    font-family: 'poppinsregular';
    font-size: 18px;
    display: none;
  }
  footer .button_wrapper{
    order: 2;
  }
  .contact_info{
    order: 3;
  } 
  .social{
    order: 4;
  }
  .contactpage .contactform_form form {
    margin-top: 30px;
    margin-left: 0;
  }
  .contactform_form form .full:last-child {
    margin-bottom: 0;
    text-align: left;
  }
  .contactform_wrapper{
    border: none;
    border-radius: 0;
  }
  footer {
    background-size: cover;
    padding: 8% 0 80px;
    margin: 0;
  }
  .workdetailicon_wrapper .icon_bg {    
    width: 80%;
  }
  .inner_footer {
    padding: 16% 0 80px;
    margin: -7% 0 0;
}
.value_wrapper{
  justify-content: center;
}
.value_wrapper .block {
  display: inline-block;
  width: 33.333%;
  padding: 40px 15px 0;
}
.contact_footer .contactaddress_area h2 {  
  width: 100%;
}
}
@media only screen and (max-width: 950px) {
  .homeservice_wrapper .block {
    width: 33.333%;  
    padding: 10px;
  }
  .homeclients_wrapper .item {
    padding: 10px 40px;
  }
  .inner_banner .banner_content p {
   
    display: none;
  }
  .blog_wrapper .block { 
    margin: 60px 0;
  }
  .blog_wrapper .block .image {
    width: 100%;
    display: block;
    position: relative;
}
.blog_wrapper .block .content {
  width: 100%;
  display: block;
  margin: 30px 0 0;
  text-align: left;
}
.blogdetailtop_block_wrapper {   
    justify-content: center;  
}
.blogdetailtop_block_wrapper .image{
  width:100%;
  display: block;
}
.blogdetailtop_block_wrapper .content{
  width:100%;
  display: block;
  margin: 25px 0 0;
}
.bloggradient_wrapper {   
    padding: 25px 25px;
}
.industrydetailtop_wrapper{
  justify-content: center;
}
.industrydetailtop_wrapper .image{
  width:100%;
  display: block;
}
.industrydetailtop_wrapper .content{
  width:100%;
  display: block;
  padding-top: 30px;
}
.collapsible {
    padding: 30px 0px 0;    
}
.industrydetailtop_wrapper .image::before {
  
    right: 0%;
}
.servicedetailtop_container .industrydetailtop_wrapper .image {
    width: 100%;
    display: block;
}
.servicedetailtop_container .industrydetailtop_wrapper .content {
    width: 100%;
    display: block;
    margin: 20px 0 0;
}
.servicedetailtop_container .industrydetailtop_wrapper .image::before {    
    right: 0;
}
}
@media only screen and (max-width: 850px){
  .workvideo_wrapper {
    flex-wrap: wrap;
  }
  .workvideo_wrapper .left{
    width:100%;
    display: block;
  }
  .workvideo_wrapper .right{
    width:100%;
    display: block;
    margin: 30px 0 0;
    text-align: center;
  }
  .workvideo_wrapper .right p {
    font-size: 17px;
    line-height: 26px;
  }
  .banner_content h1 {    
    font-size: clamp(20px, 5vw, 38px);    
}
.servicebg_wrapper .content {
    width: 100%;
    display: block;
}
.servicebg_wrapper {
    
    padding: 30px;
}
}
@media only screen and (max-width: 750px){
  img.desktop_banner {
    display: none;
  }
  img.mobile_banner {
    display: block;
}
video.mobile_banner {
    display: block;
}
video.dektop_banner {
    display: none;
}
footer ul.links {
   
    width: 100%;
}
.copyright p{
  width:100%;
  padding: 10px 0 0;
}
.workdetailicon_wrapper .icon_bg {
 
  padding: 15px 6%;
}
.workvideo_wrapper .left::before { 
  right: -3%;
}
.blog_wrapper .block .image::before {
  background: url(../images/blog_bg.png) no-repeat;
  background-position: right bottom;
  background-size: 100%;
  content: "";
  width: 80%;
  right: -2%;
  bottom: -14%;
  height: 100%;
  display: block;
  position: absolute;
}
.blog_wrapper .block:nth-child(even) .image::before {
 
  width: 80%;
  left: -2%;
  right: auto;
}
.value_wrapper .block {
  display: inline-block;
  width: 50%;
  padding: 30px 15px 0;
}
.aboutbottom_wrapper .image_wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
}
.aboutbottom_wrapper .image_wrapper::before {
 
  right: 0%;
}
.aboutbottom_wrapper .image_wrapper .image{
  width:100%;
}
.aboutbottom_wrapper .content_wrapper {
  width:100%;
  margin: 30px 0 0;
}
.corecounter_wrapper {
  margin: 30px 0 0;
}
.industrygradient_wrapper {    
    padding: 20px 20px;
}
.collapsible .collapse-head { 
    font-size: 17px;   
    align-items: flex-start;
    border: 1px solid #fff;   
    line-height: 23px;
    padding: 10px 20px;
}
.collapsible .collapse-head::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
    border-right: 0px;
    margin-right: 12px;
}
.collapsible .collapse-head.open::before{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-top:0px;
}
.industrybottom_container {   
    margin: 30px 0 0;
}
}
@media only screen and (max-width: 600px){

    .homeservice_wrapper .block {
        width: 50%;
        padding: 10px;
    }
    .logo {      
      width: 80px;     
  }
  .core_rating .block {   
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .core_rating .block .number {
    
    width: 100%;
    text-align: center;
}
.core_rating .block .content {
  padding-left: 0;
  padding-top: 15px;
}

}
@media only screen and (max-width: 450px){
  .homeservice_wrapper .block{
    width:100%;
    padding: 10px 10px;
  }
  .homeclients_wrapper .item{
    padding: 5px 20px;
  }
  .homework_wrapper .item{
    padding: 0 5px;
  }
  .banner_content h3 {    
    font-size: clamp(13px, 4vw, 25px);
  }
  .banner_content h1 {
    font-size: clamp(14px, 4vw, 38px);
    line-height: 1.5;
    letter-spacing: 1px;
    padding: 8px 0 0;
}
.workdetailtop_container {  
  margin: 40px 0 0;
  padding-bottom: 40px;
}
.workdetailicon_wrapper {
   margin: 40px 0 0; 
}
.workdetailicon_wrapper .icon_bg {
  padding: 10px 2%;
  width: 100%;
}
.workvideo_wrapper {
 
  margin: 0 0 30px 0;
}
.workdetailbottom_wrapper {  
  padding-bottom: 40px; 
}
.workdetailbottom_container {
  width: 100%;
  display: block;
  margin: -2% 0 40px;
}
.inner_footer {
  padding: 30% 0 80px;
  margin: -20% 0 0;
}
.value_wrapper .block {
  display: block;
  width: 100%;
}
.core_rating .block {  
  width: 100%;
  margin: 30px;
  border: none;
}

}