:root {
    --main-color: #a90504;
    --heading-color: #232331;
    --text-color: #1E1E1E;
    --white-color: #fff;
    --black-color: #000;
    --main-font: "Inter", sans-serif;
    --heading-font: "Outfit", sans-serif;
    --button-font: "Inter", sans-serif;
  }

  html,
  body {
    font-family: var(--main-font);
  }

  a {
    text-decoration: none;
  }

  .container-fluid {
    padding: 0 4%;
  }

  h1,
  h2,
  h3,
  h5,
  h6 {
    font-family: var(--heading-font);
  }

  p {
    font-family: var(--main-font);
  }

  .main_menu_hdr {
    background: #f7f7f7;
    z-index: 99;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
  }

  .left_top {
    display: flex;
    justify-content: flex-start;
  }

  .main_menu {
    display: block;
    position: relative;
    background: transparent;
    padding: 5px 0px;
    border-radius: 0px;
  }

  .main_menu .navigation.navbar {
    padding: 0;
  }

  .container-menu {
    width: 80%;
    margin: 0 auto;
  }

  .logo {
    display: block;
    padding: 0px;
  }

  .logo a {
    position: relative;
    z-index: 1;
    width: 200px;
    height: auto;
    display: block;
  }

  .logo a img {
    width: 100%;
  }

  .right_top {
    display: block;
  }

  .call a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 20px;
  }

  .banner_sec {
    width: 100%;
    background-size: cover;
    position: relative;
    padding-top: 40px;
    background: #f7f7f7;
  }

  .banner_img img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }

  .banner_big_text {
    font-size: 230px;
    text-align: center;
    font-weight: 800;
    color: rgb(0 0 0 / 50%);
    line-height: 1;
  }

  .banner_text {
    position: relative;
  }

  .login {
    position: relative;
  }

  .login a {
    color: var(--white-color);
    text-decoration: none;
    transition: all ease-in 0.3s;
    display: flex;
    align-items: center;
  }

  .login a i {
    color: var(--white-color);
    background: rgb(255 255 255 / 29%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 5px;
  }

  .banner_text h4 {
    color: var(--black-color);
    margin-bottom: 50px;
    font-size: 40px;
  }

  .banner_text h4 span{
      color: var(--main-color);
      font-size: 45px;
      font-weight: 800;
    }

  .banner_play_pause_btn{
    border-radius: 0;
    background: var(--main-color);
    color: var(--white-color);
    border: none;
    padding: 5px 20px;
    margin-top: 20px;
    margin-left: 30px;
    margin-bottom: 10px;
    text-transform: capitalize;
  }
  .blink{
      text-decoration: blink;
      -webkit-animation-name: blinker;
      -webkit-animation-duration: 1s;
      -webkit-animation-iteration-count:infinite;
      -webkit-animation-timing-function:ease-in-out;
      -webkit-animation-direction: alternate;
  }
  @-webkit-keyframes blinker {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
  }


  .broll_extra {
    color: var(--white-color);
  }

  .marquee_sec {
    background: #f7f7f7;
  }

  .marque_text h2 {
    color: #EEAA2B;
    font-size: 70px;
  }
  .marque_text{
    padding: 0 5px;
  }
  .marque_text button{
    padding: 20px;
      margin: 15px;
      background: #fff;
      box-shadow: 0 3px 15px rgba(0, 0, 0, .67);
      border: none;
  }

  .marque_text img {
    height: auto;
    width: 100%;
    max-width: 600px;
    max-height: 300px;
  }




  .popup_slid .marque_text img {
    width: 84%;
    object-fit: contain;
    max-width: fit-content;
    max-height: 60vh;
    margin: 0 auto;
  }

  .popup_slid .slick-nav {
  --active: #a90504;
  --border: rgb(169 5 4 / 22%);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
  }
  .popup_slid .slick-nav.prev-arrow {
  left: 0%;
  transform: scaleX(-1);
  z-index: 1;
  }
  .popup_slid .slick-nav.next-arrow {
  left: auto;
  right: 0%;
  }
  .popup_slid .slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  }
  .popup_slid .slick-nav i:before, .popup_slid .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
  }
  .popup_slid .slick-nav i:before {
  transform: rotate(-40deg);
  }
  .popup_slid .slick-nav i:after {
  transform: rotate(40deg);
  }
  .popup_slid .slick-nav:before, .popup_slid .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
  }
  .popup_slid .slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
  }







  .about_us {
    padding: 0px 0;
  }

  /*-------- button Effect-------*/
  .red_btn {
    display: inline-block;
    box-sizing: border-box;
    padding: 12px 35px;
    border-radius: 0px;
    position: relative;
    color: var(--white-color);
    background: var(--main-color);
    text-decoration: none;
    overflow: hidden;
  }

  .red_btn span {
    font-weight: 500;
    position: relative;
    font-family: var(--button-font);
    letter-spacing: 0px;
    color: var(--white-color);

  }
  .red_btn span.v_icon{
    font-size: 38px;
  }
  .red_btn span i {
    transition: all ease-in 0.3s;
  }

  .red_btn:before {
    content: "";
    height: 0;
    width: 100%;
    transform: translateX(0%);
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    border-radius: 0px;
    transition: all ease-in 0.3s;
  }

  .red_btn:hover span i {
    transform: rotate(0deg);
    transition: all ease-in 0.3s;
  }

  .red_btn:hover:before {
    bottom: 0;
    transition: all ease-in 0.3s;
    height: 100%;
  }

  .red_btn:hover span {
    color: var(--white-color);
  }

  .red_btn.white_bg {
    color: var(--black-color);
    background: var(--white-color);
  }

  .red_btn.white_bg:before {
    background: rgb(255 255 255 / 50%);
  }

  .red_btn.white_bg span {
    color: var(--black-color);
  }

  .red_btn.black_bg {
    color: var(--white-color);
    background: var(--black-color);
  }

  .red_btn.black_bg:before {
    background: rgb(0 0 0 / 50%);
  }

  .red_btn.black_bg span {
    color: var(--white-color);
  }

  /*-------- button Effect-------*/
  .heading_hp h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
    position: relative;
  }
  
  .heading_hp h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
    position: relative;
  }

  .heading_hp h6 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0px;
    text-transform: uppercase;
  }

  .heading_hp p {
    font-size: 15px;
    color: #1e1e1e;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 25px;
  }

  .heading_hp.text_white h2,
  .heading_hp.text_white p,
  .heading_hp.text_white h5,
  .heading_hp.text_white h6 {
    color: var(--white-color);
  }



  .our_works_text {
    color: var(--main-color);
    text-shadow: 0 0 2px #fff;
    font-size: 124px;
    line-height: 96px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: var(--heading-font);
    margin-bottom: 20px;
  }

  .services_sec{
    padding: 0px 0px 50px;
    position: relative;
  }
  .services_bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: var(--main-color);
  }
  .services_bg_relative{
    position: relative;
    z-index: 1;
  }
  .ser_big{
    position: relative;
  }
  .ser_big_img{
    width: 75%;
    height: 700px;
    display: block;
  }
  .ser_big_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ser_small_img{
    width: auto;
    height: auto;
    display: block;
    position: absolute;
    top: 22%;
    right: 0;
    transform: translate(0, 0);
    background: var(--white-color);
  }
  .ser_small_img img{
    width: auto;
    height: auto;
  }




  .spirit_sensing {
    position: relative;
    height: 800px;
    display: flex;
    align-items: end;
    width: 100%;
    justify-content: center;
    padding-bottom: 50px;
    background: #08090C;
  }

  .spirit_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .spirit_bg iframe, .spirit_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .our_spi {
    position: relative;
  }

  .view_details_btn {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: end;
    text-transform: uppercase;
    font-weight: 600;
  }

  .view_details_btn span {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    font-size: 20px;
  }

  .view_details_btn span i {
    position: relative;
  }

  .view_details_btn:hover {
    color: var(--white-color);
  }

  .view_details_btn span::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--main-color);
    transition: all ease-in 0.3s;
  }

  .view_details_btn:hover span::before {
    width: 100%;
    transition: all ease-in 0.3s;
  }

  .ftr_roll h2 {
    color: var(--white-color);
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 800;
  }

  .ftr_roll h3 {
    color: var(--white-color);
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
  }

  .ftr_red_btn .v_icon{
    margin-right: 10px;
  }
  .ftr_red_btn h5{
    margin-bottom: 0;
    font-size: 15px;
  }
  .ftr_red_btn:hover{
    color: var(--white-color);
  }

  .footer_sec {
    background: #15181B;
    padding: 50px 0 0px;
    position: relative;
    overflow: hidden;
  }

  .copyright {
    padding: 30px 0;
  }

  .read_more_ftr {
    color: var(--main-color);
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
  }

  .ftr_logo_sec .ftr_logo {
    width: 150px;
    display: block;
    margin-bottom: 20px;
  }

  .ftr_logo_sec a img {
    width: 100%;
  }

  .ftr_logo_sec p {
    color: var(--white-color);
    margin-bottom: 0;
  }

  .ftr_logo_sec ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .ftr_logo_sec ul li {
    padding-right: 5px;
  }

  .ftr_logo_sec ul li a {
    background: rgb(255 255 255 / 12%);
    width: 48px;
    height: 48px;
    display: flex;
    color: var(--white-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all ease-in 0.3s;
  }

  .ftr_logo_sec ul li a:hover {
    color: #19B2E5;
    transition: all ease-in 0.3s;
  }

  .heading_h4 h4 {
    color: var(--white-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
  }

  .add-icon span i {
    color: var(--main-color);
  }

  .add-text h4 {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 18px;
    color: var(--white-color);
    font-family: var(--text-font);
    margin-bottom: 5px;
  }
  .add-text span{
    width: 100%;
    display: block;
    color: rgb(255 255 255 / 45%);
    font-size: 14px;
  }

  .add-text p,
  .add-text a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--white-color);
    text-decoration: none;
    font-family: var(--text-font);
    margin-bottom: 0;
  }

  .add-icon {
    padding-right: 15px;
  }

  .add {
    padding-bottom: 15px;
  }

  .ftr-frm form .form-group .form-control {
    background: rgb(255 255 255 / 10%);
    border-radius: 30px;
    border: none;
    margin-bottom: 5px;
  }

  .ftr-frm form .form-group textarea.form-control {
    border-radius: 5px;
  }

  .ftr-frm .form-group .form-control::-webkit-input-placeholder {
    /* Edge */
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--text-font);
    color: rgb(255 255 255 / 50%);
  }

  .ftr-frm .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer */
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--text-font);
    color: rgb(255 255 255 / 50%);
  }

  .ftr-frm .form-group .form-control::placeholder {
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--text-font);
    color: rgb(255 255 255 / 50%);
  }

  .quick_links {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    margin-bottom: 15px;
    padding-bottom: 0;
  }

  .quick_links h5 {
    color: var(--white-color);
    margin-bottom: 0;
    padding-bottom: 15px;
  }

  .quick_links_ul ul {
    display: block;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    columns: 2;
  }

  .quick_links_ul ul li {
    margin-bottom: 5px;
    padding: 0 0px;
  }

  .quick_links_ul ul li a {
    color: var(--white-color);
    text-decoration: none;
  }

  .copy_1 {
    width: 100%;
    display: block;
    padding: 15px 0;
    text-align: center;
    background: #0F1114;
  }

  .copy_1 p {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 0;
  }

  .copy_1 p a {
    text-decoration: none;
    color: var(--white-color);
  }


  /*------------- Inner Page ----------------- */


  .inner_banner_sec {
    padding: 50px 0;
    position: relative;
    background: #f7f7f7;
  }

  /* .inner_banner_sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  } */

  .inner_banner_ontent {
    position: relative;
    z-index: 9
  }

  .inner_banner_ontent h2 {
    font-size: 50px;
    font-family: var(--heading-font);
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
  }

  .inner_banner_ontent h4 {
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-size: 60px;
    font-weight: 300
  }

  .inner_banner_ontent p {
    color: var(--white-color);
  }

  .inr_latest:before {
    content: none;
  }

  .inr_abt_img {
    width: 100%;
    height: 450px;
  }

  .inr_abt_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .inr_about_sec {
    padding: 50px 0;
  }



  .contact-us {
    position: relative;
  }

  .contact-wrap-main {
    margin: 50px 0px;
  }

  .contact-left h2 {
    font-size: 70px;
    font-weight: 600;
  }

  .contact-left p {
    font-size: 20px;
  }

  .contact-form {
    margin: 20px 0px;
    padding: 0px 60px 0px 0px;
  }

  .contact-us .form-group-wrap {
    margin: 0 0 14px 0px;
  }

  .contact-us .contact-form .form-control {
    padding: 9px 10px;
  }

  .contact-us .contact-form .send-msg .btn {
    background: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    box-shadow: none;
    outline: none;
    padding: 10px;
    width: 100%;
  }

  .contact-right {
    position: relative;
    padding: 27px 40px;
    box-shadow: 10px 25px 50px rgb(0 0 0 / 13%);
    border-radius: 10px;
    margin-top: 50px;
  }

  .contact-info {
    margin-bottom: 0px;
    padding: 12px 0px;
    border-bottom: 1px solid rgb(0 0 0 / 50%);
  }

  .contact-info:last-child {
    border: none;
    margin: 0px;
  }

  .contact-us .con-icon {
    width: 44px;
    height: 44px;
    background: var(--main-color);
    padding: 11px;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    text-align: center;
    margin-right: 20px;
  }

  .contact-us .con-text {
    margin-top: 10px;
  }

  .contact-us .con-text a {
    color: #161723;
    text-decoration: none;
    font-size: 17px;
  }

  .contact-us .con-text h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0px;
  }
  .map_sec {
    position: relative;
    padding: 0;
  }
  .map_sec iframe {
    filter: grayscale(1);
    width: 100%;
    height: 450px;
  }


  .schedule_free_consultion {
    padding: 100px 0;
  }

  .form_heading h4 {
    color: #145fc2;
    border-bottom: 1px solid rgb(0 0 0 / 18%);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 7px;
    display: inline-block;
    width: 100%;
  }

  .form_group_wrap {
    margin-bottom: 15px;
  }

  /*-------- subscription ------------*/

  .subscription_sec{
    padding: 50px 0;
  }

  .offers {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 30px 15px;
    margin: 10px;
    width: 300px;
    height: auto;
    top: 0;
    border: 1px solid #eaeaea;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
  }

  .offers:hover {
    position: relative;
    top: -20px;
    box-shadow: 0px 14px 6px 0px #0000004d;
  }

  .offers h3{
    color: var(--main-color);
  }


  .row .col:nth-child(2) .offers {
    border-top: 5px solid var(--main-color);
    box-shadow: 0 0 10px 0px #0000001c;
    top: -20px;
  }

  .row .col:nth-child(2) .offers h3{
    margin-top: 20px;
  }

  .row .col:nth-child(2) .offers:hover {
    box-shadow: 0px 14px 6px 0px #0000004d;
  }

  .offers button {
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    color: var(--main-color);
    border: 0;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    margin: 30px auto 20px auto;
    padding: 10px 20px;
    transition-duration: 0.5s;
    text-transform: uppercase;
  }

  .offers button:hover {
     background: var(--main-color);
     color: var(--white-color);
  }


  /*-------- video ------------*/
  .video_sec{
      padding: 50px 0 20px;
    }
    .video_iframe{
      width: 100%;
      height: 250px;
      display: block;
      margin-bottom: 30px;
    }
    .video_iframe video, .video_iframe iframe{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /*-------- video ------------*/

  .ig-type-slider .ig-thumbs .effect-polaroid, .ig-type-slideshow .ig-thumbs .ig-img:not(.ig-img-loading) .effect-polaroid .sk-ig-reflection-wrapper, .ig-type-slideshow-animated .ig-thumbs .ig-img:not(.ig-img-loading) .effect-polaroid .sk-ig-reflection-wrapper, .ig-type-mosaic .ig-thumbs .ig-img:not(.ig-img-loading) .effect-polaroid .sk-ig-reflection-wrapper, .ig-type-filmstrip .ig-thumbs .ig-img:not(.ig-img-loading) .effect-polaroid .sk-ig-reflection-wrapper{
          box-sizing: content-box;
  }




/*-------- checkout ------------*/
.sub_box{
    border: 1px solid rgba(0, 0, 0, 0.233);
    padding: 15px;
    transition: all ease-in 0.3s;
    position: relative;
}
.sub_box:hover {
    position: relative;
    box-shadow: 0px 14px 6px 0px #0000004d;
    transition: all ease-in 0.3s;
}
.sub_summery{
    font-size: 18px;
    margin-bottom: 10px;
    display: block
}
.sub_box p{
    margin-bottom: 5px;
}
.total_price{
    font-weight: 600;
    color: #000;
    font-size: 18px;
}
.paynm{
    font-size: 14px;
    color: #727272;
    padding: 15px 0;
}
.month_text{
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.main_pll{
    font-size: 16px;
    color: #000;
}
.main_pll1{
    font-size: 14px;
}
.custom_check_box_mon [type="radio"]:checked,
.custom_check_box_mon [type="radio"]:not(:checked) {
      position: absolute;
      left: -9999px;
  }
  .custom_check_box_mon [type="radio"]:checked + label,
  .custom_check_box_mon [type="radio"]:not(:checked) + label
  {
      position: relative;
      padding-left: 28px;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      color: #666;
  }
  .custom_check_box_mon [type="radio"]:checked + label:before,
  .custom_check_box_mon [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #a90504;
    border-radius: 100%;
    background: #fff;
  }
  .custom_check_box_mon [type="radio"]:checked + label:after,
  .custom_check_box_mon [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #a90504;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .custom_check_box_mon [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  .custom_check_box_mon [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }

  .click_here_btn{
      position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width:171px;
  }
  .click_here_btn img{
    width:100%;
  }

.best-offer {
    background: linear-gradient(90deg, #a80403 0%, #a80404 50%, #a80404 100%);
    transform: rotate(-45deg);
    position: absolute;
    z-index: 1;
    padding: 0.2rem 4rem;
    top: 1rem;
    left: -4rem;
    border: 2px solid #e1bdbc;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    color: #fff;
}



/*-------- blog ------------*/
.blog_inr{
    padding: 80px 0;
  }
.blog_box_sec{
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
  .blog_desc p{
    font-size: 14px
  }
  .blog_img{
    width: 100%;
    height: 250px;
  }
  .blog_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .blog_text{
    padding:10px;
  }
  .blog_text .name_blg{
    font-size: 15px;
    font-weight: 500;
  }
  .blog_text h3 a{
    color: var(--text-color);
    font-family: var(--main-font);
    font-size: 22px;
    font-weight: 600;
  }
  .blog_text p{
    font-size: 14px;
    word-wrap: break-word;
  }
  .read_more_text{
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
  }

  .blog_sec_inner{
    padding: 100px 0;
  }
  .left_blog{
    width: 100%;
  }
  .left_blog h1{
    font-size: 35px;
    margin-bottom: 20px;
    color: #4D5666;
    margin-top: 23px;
  }
  .left_blog .blog_big_img{
    margin-bottom: 15px;
  }
  .left_blog .blog_big_img img{
    /* height: 400px;
    width: 95%;
    box-shadow: 0 0 40px rgb(0 0 0 / 35%);
    object-fit: cover; */
    max-width: 100%;
    height: auto !important;
  }
  .left_blog .date_bb p, .left_blog .small_img p{
    margin-bottom: 0;
  }

  .blog_img{
    margin-bottom: 15px;
  }
  .box_blk{
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .main_color_bg {
    background: #ffffff;
    box-shadow: 0 0 20px rgb(0 0 0 / 15%);
  }
  .box_blk ul{
    padding-left: 20px;
  }
  .box_blk ul li{
    margin-bottom: 15px;
  }
  .box_blk ul li a, .box_blk p a{
    color: var(--p-color);
    text-decoration: none;
  }
  .box_blk h5{
    color: #000;
    margin-bottom: 15px;
  }
  .box_blk .top_input .form-control{
    width: 100%;
    background: #E5F6FF;
    border: #E5F6FF;
    padding: 15px;
    border-radius: 6px 0 0 6px;
  }
  .box_blk .top_input .btn{
    background: #E5F6FF;
    border: #E5F6FF;
    border-radius:0 6px 6px 0;
  }
  .single_blog_img img{
    height: 550px;
  }
  .box_blk .tags{
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .box_blk .tags li a{
    background: #E5F6FF;
    color: rgb(0 0 0 / 100%);
    padding: 7px 13px;
    display: block;
    margin: 0 4px;
    border-radius: 5px;
  }
  .recent_post_img img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
  }
  /*-------- blog ------------*/
