@font-face {
    font-family: Inter-Regular;
    font-weight: 400;
    src: url('../fonts/Inter-Regular.ttf');
}
@font-face {
    font-family: Inter-Medium;
    font-weight: 500;
    src: url('../fonts/Inter-Medium.ttf');
}
@font-face {
    font-family: Inter-SemiBold;
    font-weight: 600;
    src: url('../fonts/Inter-SemiBold.ttf');
}
@font-face {
    font-family: Inter-Bold;
    font-weight: 700;
    src: url('../fonts/Inter-Bold.ttf');
}
@font-face {
    font-family: Inter-ExtraBold;
    font-weight: 800;
    src: url('../fonts/Inter-ExtraBold.ttf');
}
@font-face {
    font-family: Inter-Black;
    font-weight: 900;
    src: url('../fonts/Inter-Black.ttf');
  }
/* ====================== */
*{
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    margin-bottom: 0;
    color: #000000;
}
p{
    font-family: Inter-Regular;
    font-size: 18px;
    line-height: 1.5;
    color: #747474;
    margin-bottom: 0;
}
a{
    text-decoration: none;
    transition: all 0.4s ease;
}
li{
    list-style: none;
}
ul{
    padding: 0;
    margin: 0;
}
img{
    width: 100%;
    height: 100%;
    display: block;
}
.mb_120{
    margin-bottom: 120px;
}
.cmn_title{
    font-family: Inter-Bold;
    font-size: 44px;
    line-height: 1.2;
    margin: 0 0 50px;
}
.cmn_btn{
    background-color: #C92F84;
    color: #ffffff;
    border: 1px solid #C92F84;
    padding: 9px 10px;
    min-width: 170px;
    font-family: Inter-Medium;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    display: inline-block;
    transition: all 0.4s ease;
}
.cmn_btn:hover{
    background-color: transparent;
    color: #000000;
}
.cmn_btn_2{
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #C92F84;
    padding: 9px 10px;
    min-width: 170px;
    font-family: Inter-Medium;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    display: inline-block;
    transition: all 0.4s ease; 
}
.cmn_btn_2:hover{
    background-color: #C92F84;
    color: #ffffff;
}
body.menudrawer {
    overflow: hidden;
}
/* =============== Header ============ */
.header{
    padding: 19px 0;
}
.header .row {
    justify-content: space-between;
}
.header__logo img{
    max-width: 183px;
}
nav.header__menu ul{
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    align-items: center;
    justify-content: center;
}
.link_list_menu{
    color: #000000;
    font-family: Inter-SemiBold;
    font-size: 18px;
    line-height: 1.2;
}
.link_list_menu:hover,
.link_list_menu.active{
    color: #C92F84;
}
.mobile-menu .link_list_menu svg{
    width: 20px;
    margin: 0 7px 0 0;
}
.mobile-menu .link_list_menu svg path{
    fill: #C92F84;
}
.header__registration {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.hamburger-menu,.header_user_icon{
    display: none;
}
.hamburger-menu {
    cursor: pointer;
    /* z-index: 9998; */
}
.menu_close_icon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    border: 1px solid #C92F84;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: end;
    border-radius: 50%;
    margin: 5px 5px 0 0;
    justify-content: center;
    color: #C92F84;
}
  .bar,
  .bar:after,
  .bar:before {
    width: 22px;
    height: 1px;
} 
  .bar {
    position: relative;
    transform: translateY(2px);
    background: #C92F84;
    transition: all 0ms 300ms;
  }
  .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    background: #C92F84;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    background: #C92F84;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  
  /* 
  .bar.animate {
    background: rgba(255, 255, 255, 0);
  }
  .bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  } 
  */

  /* .mobile-menu.overlay {
    max-width: 100%;
    background: rgb(0 0 0 / 50%);
 } */
  .mobile-menu_inner {
    width: 280px;
    background: #fff;
    height: 100%;
    position: absolute;
    top: 0;
    overflow-y: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    -webkit-transform: translate3d(0, 0, 205px);
    -moz-transform: translate3d(0, 0, 205px);
    transform: translate3d(0, 0, 205px);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
 }
 .mobile_menu_bottom {
    padding: 10px 0;
    border-top: 5px solid #C92F84;
}
 .mobile_menu_bottom .social_media{
    margin: 0;
 }
 .mobile_menu_bottom .social_media li{
    border: 1px solid #000000;
    align-items: end;
 }
.mobile-menu .mobile_menu_bottom li:first-child {
    margin-top: 0;
}
.mobile-menu .mobile_menu_bottom li{
    padding: 0;
}
 .mobile_menu_bottom svg path{
    fill: #000000;
 }
  
/*---------------------Mobiles Menu----------------------*/
  
  .mobile-menu ul {
    margin: 0;
    padding: 0;
  }
  
  .mobile-menu li {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    overflow: hidden;
    padding: 5px;
    position: relative;
    text-align: left;
    padding-left:15px;
  }
  
  .mobile-menu li:first-child {
    margin-top: 90px;
  }
  
  .mobile-menu li:hover {
    background: #CCCCCC;
  }
  
  .mobile-menu li a {
    text-decoration: none;
    color: black;
  }
  
/*---------------------Mobiles Menu - Slide IN ----------------------*/
  
  .mobile-menu {
    top: 0;
    max-width: 400px;
    left: -100%;
    width: 100%;
    /* background: #ffffff; */
    color: #000000;
    height: 100%;
    position: fixed;
    z-index: 9997;
    overflow-y: auto;
    -webkit-transform: translate3d(0, 0, 205px);
    -moz-transform: translate3d(0, 0, 205px);
    transform: translate3d(0, 0, 205px);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  
  .mobile-menu.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  
      /*---------------------
      Mobiles Menu - Dropdown Submenu
      ----------------------*/
  
  .has-children:hover{
      cursor:hand;
  }
  
  .children {
      display:none;	
  }
  
  .mobile-menu .children li:first-child {
    margin-top: 0px;
  }
  
  .icon-arrow {
      position: absolute;
      display: block;
      font-size: 0.7em;
      color: black;
      top: 5px;
      right: 10px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg); 
      transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;	 
  }
    
  .icon-arrow:after {
      content: "\25BC";
  }
  
  .icon-arrow.open {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg); 
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s; 		
  }
/* =============== Hero Banner ============ */
.hero_banner .item {
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 841px;
}
.hero_banner .owl-theme .owl-nav.disabled+.owl-dots{
    margin: 0;
    position: absolute;
    bottom: 42px;
    left: 0;
    right: 0;
}
.hero_banner .owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 9px;
    background: #ffffff;
}
.hero_banner .owl-theme .owl-dots .owl-dot.active span, 
.hero_banner .owl-theme .owl-dots .owl-dot:hover span{
    background: #ffffff;
}
.hero_banner .owl-dot{
    margin: 0 4px;
}
.hero_banner .owl-dot.active {
    border: 1px solid #ffffff;
    border-radius: 50%;
}
.slider_content h1{
    font-family: Inter-Medium;
    font-size: 60px;
    line-height: 1.1;
    color: #ffffff;
    max-width: 720px;
}
.slider_content h1 span{
    font-family: Inter-Black;
    font-size: 67px;
    line-height: 1.04;
}

/* =============== Comapny Text ============ */
.company_text p{
    font-family: Inter-Regular;
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
    max-width: 1320px;
    margin: 0 auto;
}
.company_text p b{
    font-family: Inter-Bold;
    font-size: 26px;
    line-height: 1.3;
    color: #000000;
}
/* =============== Icon with Text ============ */
.icon_with_text_inner{
    background-color: #FFFAFD;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s ease;
}
.icon_with_text_inner:hover{
    box-shadow: 0 0 4px #C92F84;
}
.icon_with_text_icon {
    max-width: 64px;
    height: 64px;
    margin-bottom: 15px;
}
.icon_with_text_text{
    font-family: Inter-SemiBold;
    font-size: 22px;
    line-height: 1.5;
}
.icon_with_text_desc{
    font-family: Inter-Regular;
    font-size: 18px;
    line-height: 1.5;
}
/* =============== Image with Text ============ */
.col-md-6.text {
    padding: 0 139px;
    display: flex;
    align-items: center;
}
.right_img_text .col-md-6.text{
    justify-content: end;
}
.text_inner {
    max-width: 535px;
}
.image_inner{
    min-height: 600px;
    height: 100%;
}
.image_with_text .cmn_title{
    margin: 0 0 20px;
}
.image_with_text_desc{
    font-family: Inter-Regular;
    font-size: 18px;
    line-height: 1.5;
}
.left_img_text .text_inner {
    max-width: 575px;
}
/* =============== Newsletter ============ */
.newsletter {
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: cover;
    min-height: 382px;
    overflow: hidden;
}
.newsletter_left_img {
    max-width: 440px;
    margin-bottom: -6px;
    margin-left: 54px;
}
.newsletter_right_img{
    max-width: 430px;
    margin-bottom: -94px;
    margin-right: 40px;
}
.newsletter_inner .cmn_title{
   margin: 0 0 10px;
}
.newsletter_input{
    border: 1px solid #000000;
    border-left: none;
    border-right: none;
    padding: 16px 30px;
    margin: 0 0 10px;
}
.newsletter_desc{
    font-family: Inter-Regular;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #000000;
    margin: 0 0 30px;
}
.newsletter_input{
    position: relative;
}
.newsletter_input input,
.newsletter_input button{
    background: transparent;
    border: none;
}
.newsletter_input input{
    width: 100%;
    padding-right: 30px;
}
.newsletter_input button{
    position: absolute;
    right: 30px;
}
.newsletter_input input:focus-visible {
    outline: unset;
}
.newsletter_input svg{
    transition: all 0.4s ease;
}
.newsletter_input svg:hover{
    transform: rotate(45deg);
}
/* =============== Footer ============ */
.footer{
    background-color: #000000;
    color: #ffffff;
}
.footer_top{
    padding: 80px 0 95px;
}
.footer_menu{
    column-gap: 81px;
}
.footer_menu h4,.footer_contact h4{
    font-family: Inter-Bold;
    font-size: 24px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 30px;
}
.footer_menu li,.footer_contact li{
    margin: 0 0 20px;
}
.footer_menu li a,.footer_contact li a{
    font-family: Inter-Regular;
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
}
.footer_menu li a:hover,.footer_contact li a:hover{
    color: #C92F84;
}
.footer_icon {
    display: none;
    float: right;
    transition: all 0.4s ease;
}
.footer_logo img{
    max-width: 150px;
    height: auto;
    margin: 0 auto 15px;
}
.social_media{
    display: flex;
    align-items: center;
    margin: 0 -8px;
}
.social_media li{
    border: 1px solid #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin:0 8px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}
.social_media li:hover{
    border: 1px solid #C92F84;
}
.social_media li:hover svg path{
    fill: #C92F84;
}
.social_media li svg path{
    transition: all 0.4s ease;
}
.footer_contact li{
    display: flex;
    font-family: Inter-Regular;
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
}
.footer_contact li svg{
    margin-right: 10px;
}
.footer_copyright p{
    font-family: Inter-Regular;
    font-size: 16px;
    line-height: 1.1;
    color: #ffffff;
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding: 16px 0;
}
.footer_copyright p a{
    color: #ffffff;
}
.footer_copyright p a:hover{
    color: #C92F84;
}
/* ================= Product Page (categories) =============== */
.categories{
    padding-top: 80px;
}
.categories_maintitle{
    margin-bottom: 50px;    
}
.categories_maintitle a{
    font-family: Inter-Medium;
    font-size: 20px;
    line-height: 1.5;
    text-decoration: underline;
    color: #000000;
}
.categories_maintitle a:hover {
    color: #C92F84;
}
.categories_img{
    min-height: 251px;
    margin-bottom: 25px;
}
.categories_title{
    font-family: Inter-SemiBold;
    font-size: 22px;
    line-height: 1.2;
}

.categories h2 {
    margin-bottom: 0;
}
body .icon_main_box {
    margin: 0 -15px;
}
body .icon_main_box .icon_box{
    padding:0 15px;
}
body .brands_inner {
    padding-left: 15px;
    padding-right: 15px;
}
body .brands_wrapper {
    margin: 0 -15px
}
.welcome_sec {
    max-width: 1195px;
    margin: 0 auto;
}
.dropdown.cmn_icon_btn {
    display: none;
}
body .container{
    margin:0 auto;
    padding:0 15px;
}

@media (min-width: 1200px){
    body .container{
        max-width:1470px;
    }
}
/* ================= Responsive =============== */
@media (max-width:1600px) {
    .mb_120 {
        margin-bottom: 100px;
    }
    .hero_banner .item{
        min-height: 700px;
    }
    .slider_content h1{
        font-size: 52px;
    }
    .slider_content h1 span{
        font-size: 60px;
    }
    .company_text p{
        font-size: 24px;
    }
    .image_inner {
        min-height: 500px;
    }
    .col-md-6.text {
        padding: 0 80px;
    }
    .newsletter {
        min-height: 340px;
    }
    .newsletter_left_img {
        max-width: 400px;
        margin-bottom: 0;
        margin-left: 0;
    }
    .newsletter_right_img {
        max-width: 370px;
        margin-bottom: -100px;
        margin-right: 0;
    }
}
@media (max-width:1441px) {
    .cmn_title{
        font-size: 34px;
    }
    .cmn_btn,
    .cmn_btn_2{
        min-width: 135px;
        font-size: 18px;
    }
    .header__logo img {
        max-width: 140px;
    }
    .hero_banner .item {
        min-height: 600px;
    }
    .slider_content h1 {
        font-size: 42px;
        max-width: 500px;
    }
    .slider_content h1 span {
        font-size: 50px;
    }
    .hero_banner .owl-theme .owl-nav.disabled+.owl-dots{
        bottom: 25px;
    }
    .company_text p {
        font-size: 22px;
    }
    .image_inner {
        min-height: 430px;
    }
    .col-md-6.text {
        padding: 0 15px;
    }
    .newsletter {
        min-height: 300px;
    }
    .newsletter_left_img {
        max-width: 350px;
    }
    .newsletter_right_img {
        max-width: 300px;
    }
    .newsletter_inner {
        max-width: 450px;
    }
    .footer_top {
        padding: 60px 0;
    }
}
@media (max-width:1199px) {
    .mb_120 {
        margin-bottom: 80px;
    }
    .cmn_btn, .cmn_btn_2 {
        min-width: 100px;
    }
    nav.header__menu ul{
        column-gap: 20px;
    }
    .link_list_menu{
        font-size: 16px;
    }
    .hero_banner .item {
        min-height: 500px;
    }
    .company_text p {
        font-size: 20px;
    }
    .icon_with_text_text{
        font-size: 18px;
    }
    .image_inner {
        min-height: 270px;
    }
    
    .cmn_title {
        font-size: 32px;
    }
    .image_with_text .cmn_title {
        margin: 0 0 10px;
    }
    .image_with_text_desc{
        font-size: 16px;
    }
    .newsletter {
        min-height: 300px;
        display: flex;
        align-items: end;
    }   
    .newsletter_left_img {
        max-width: 250px;
        margin-bottom: -24px;
    }
    .newsletter_right_img {
        max-width: 220px;
    }
    .newsletter_inner {
        max-width: 400px;
        padding-bottom: 48px;
    }
    .newsletter_desc{
        font-size: 16px;
    }
    .footer_menu h4, .footer_contact h4{
        font-size: 20px;
        margin: 0 0 15px
    }
    .footer_menu li a, .footer_contact li a,.footer_contact li{
        font-size: 16px;
    }
}
@media (max-width:1024px){
    .icon_with_text_inner {
        padding: 20px;
    }
    .icon_with_text_desc {
        font-size: 16px;
    }
    body .brands_inner {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    body .brands_wrapper {
        margin: 0 -7.5px;
    }
}
@media (max-width:991px) {
	a.cmn_btn {
    display: none;
}
button.btn.btn-secondary.dropdown-toggle.cmn_btn {
    padding-right: 0;
}
    .dropdown.cmn_icon_btn {
        display: block;
    }
    .dropdown-toggle::after{
        display: none;
    }
    .cmn_icon_btn a.dropdown-item {
        padding: 7px 20px;
        font-family: Inter-Medium;
    }
    .btn-secondary:focus , .btn-secondary:active:focus{
        box-shadow:none;
    }
    .mb_120 {
        margin-bottom: 60px;
    }
    .header__menu,.header_user_text{
        display: none;
    }
    .hamburger-menu,.header_user_icon{
        display: block;
    }
    .header__registration{
        gap: 0;
    }
    .header .cmn_btn,
    .header .cmn_btn_2{
        border: none;
        min-width: unset;
        padding: 0 5px;
    }
    .header .cmn_btn{
        background-color: transparent;
        border: none; 
    }
    .slider_content h1 {
        font-size: 36px;
    }
    .slider_content h1 span {
        font-size: 40px;
    }
    .hero_banner .owl-theme .owl-dots .owl-dot span{
        margin: 5px;
    }
    .company_text p b{
        font-size: 22px;
    }
    .company_text p {
        font-size: 18px;
    }
    .icon_with_text_inner{
        padding: 15px;
    }
    .icon_with_text_icon {
        max-width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    .icon_with_text_desc{
        font-size: 16px;
    }
    .newsletter_wrapper{
        flex-wrap: wrap;
        justify-content: center;
    }
    .newsletter_inner {
        order: 1;
        width: 100%;
        max-width: 100%;
        padding: 40px 0 20px;

    }
    .newsletter_left_img{
        order: 2;
    }
    .newsletter_right_img{
        order: 3;
    }
    .footer_top {
        padding: 40px 0;
    }
    .footer_wrapper{
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }
    .footer_icon {
        display: block;
    }
    .icon_close .footer_icon{
        transform: rotate(45deg);
    }
    .footer_logo {
        order: 1;
        width: 100%;
    }
    .footer_menu {
        column-gap: 0;
        order: 2;
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .footer_contact {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    .social_media{
        justify-content: center;
    }
    .footer_menu_left ul,.footer_menu_right ul{
        display: none;    
    }
    .footer_menu_left h4,.footer_menu_right h4{
        border-bottom: 1px solid #ffffff;
        padding-bottom: 10px;
    }
    .footer_menu li, .footer_contact li {
        margin: 0 0 10px;
    } 
    .slider_content h1 {
        font-size: 33px;
        max-width: 300px;
    }  
    .slider_content h1 span {
        font-size: 37px;
    }
    .hero_banner .item {
        min-height: 430px;
    }
    .mobile_menu_bottom .social_media li {
        line-height: 35px;
    }
    .newsletter_input {
        max-width: 420px;
        margin: 0 auto;
    }
    .icon_with_text_desc {
        font-size: 15px;
    }
}
@media (max-width:767px) {
    .icon_with_text_inner {
        padding: 15px 10px;
    }
    .image_sec {
        padding-bottom: 20px;
    }
    .mb_120 {
        margin-bottom: 50px;
    }
    .slider_content h1,
    .slider_content h1 span {
        font-size: 28px;
    }
    .image_inner {
        min-height: 220px;
    }
    .image_with_text .cmn_title{
        font-size: 28px;;
    }
    .hero_banner .item {
        min-height: 300px;
    }
    .slider_content h1 {
        max-width: 260px;
    }
    .hero_banner .owl-theme .owl-nav.disabled+.owl-dots {
        bottom: 10px;
    }
    .footer_menu li a, .footer_contact li a, .footer_contact li {
        font-size: 14px;
    }
    .footer_contact li svg {
        max-width: 15px;
    }
    .image_with_text_desc {
        font-size: 14px;
    }
    .icon_with_text_desc {
        font-size: 14px;
    }
}
@media (max-width:575px) {
    .cmn_title {
        font-size: 25px;
    }
    .header__logo img {
        max-width: 120px;
    }
    .hero_banner .item{
        min-height: 639px;
        align-items: start;
    }
    .hero_banner .item_1{
        background-image: url('../images/mob_slider_1.png') !important;
    }
    .hero_banner .item_2{
        background-image: url('../images/mob_slider_2.png') !important;
    }
    .slider_content {
        max-width: 350px;
        padding: 30px 0 0 8px;
    }
    .slider_content h1 {
        max-width: 460px;
    }
    .company_text p {
        font-size: 16px;
    }
    .company_text p b {
        font-size: 20px;
    }
    .image_with_text .cmn_title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .col-md-6.text {
        padding: 15px 0 0;
    }
    .newsletter_left_img {
        max-width: 200px;
    }
    .newsletter_right_img {
        max-width: 170px;
        margin-bottom: -40px;
    }
    .newsletter_input{
        padding: 15px 7px;
    }
    .newsletter_input input {
        padding-right: 50px;
    }
    .newsletter_input button{
        right: 8px;
    }
    .newsletter_input svg{
        width: 16px;
    }
    .footer_logo img {
        max-width: 130px;
    }
    .footer_menu h4, .footer_contact h4 {
        font-size: 18px;
    }
    .footer_copyright p{
        font-size: 14px;
    }
}
@media (max-width:450px) {
    .hero_banner .item {
        min-height: 550px;
    }
}
@media (max-width:390px) {
    .newsletter_left_img {
        max-width: 140px;
    }
    .newsletter_right_img {
        max-width: 100px;
        margin-bottom: -40px;
    }
}
@media (max-width:376px) {
    .hero_banner .item {
        min-height: 530px;
    }
}
@media (max-width:374px) {
    .image_inner {
        min-height: 250px;
    }
    .slider_content h1, .slider_content h1 span {
        font-size: 26px;
    }
}


section {
    overflow: hidden;
}
body::before {
    content: '';
    max-width: 100%;
    background: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s;
    opacity: 0;
}

body.menudrawer {
    transition: all 0.5s;
}

.menudrawer::before {
    opacity: 1;
    z-index:999;
}
.image_inner img {
    object-fit: cover;
    object-position: center;
}

section.icon_with_text.mb_120 {
    padding: 0 0 4px;
}
