/**
 * Created by Sushant Gauchan
 * Email : sushant.gauchan@gmail.com
*/
/*-------------------------------------- Fonts Starts -------------------------------------*/
/*--------------------------------------- Fonts Ends --------------------------------------*/
/*------------------------------------- Colors Starts -------------------------------------*/
/*-------------------------------------- Colors Ends --------------------------------------*/
/*-------------------------------------- Mixins Starts ------------------------------------*/
.ex-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start; }

.ex-flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap; }

.ex-vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.ex-transition {
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease; }

.ex-transition-medium {
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease; }

.ex-transition-large {
  -webkit-transition: all 1.8s ease;
  -moz-transition: all 1.8s ease;
  -ms-transition: all 1.8s ease;
  -o-transition: all 1.8s ease;
  transition: all 1.8s ease; }

/*--------------------------------------- Mixins Ends -------------------------------------*/
/*------------------------------------ Site Wide Starts -----------------------------------*/
/*------------------------------------- Site Wide Ends ------------------------------------*/
/*------------------------------------ Body Style Start -----------------------------------*/
/*------------------------------------- Body Style Ends -----------------------------------*/
/*--------------------------------- Header Wrapper Starts ---------------------------------*/
#header-wrapper {
  z-index: 10;
  width: 100%;
  position: relative;
  opacity: 1;
  transition: all .8s ease;
  background-color: #E0051F; }
  #header-wrapper .common-logo-nav-wrapper .nav-container nav ul li {
    display: inline-block;
    vertical-align: top; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav ul li a {
      font-size: 16px;
      display: block;
      color: #fff;
      font-weight: 600; }
  #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li {
    position: relative; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li:not(:last-of-type) {
      margin-right: 120px; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > a {
      padding: 42px 0; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul {
      box-shadow: 0 0 8px #27272712;
      min-width: 200px;
      position: absolute;
      left: -22px;
      top: 100%;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease; }
      #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul:after {
        content: '';
        position: absolute;
        top: -7px;
        left: 18px;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #fff; }
      #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li {
        position: relative;
        width: 100%;
        border-left: 2px solid transparent;
        background-color: #fff;
        transition: all .6s ease; }
        #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li a {
          font-size: 14px;
          padding: 18px 20px;
          line-height: 1em;
          color: #E0051F;
          transition: all .6s ease; }
        #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover {
          border-left: 2px solid #E0051F;
          background-color: #E8F6FF;
          transition: all .6s ease; }
          #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover > a {
            color: #E0051F;
            transition: all .6s ease; }
          #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover ul {
            opacity: 1;
            pointer-events: initial;
            transition: opacity 0.5s ease; }
        #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul {
          position: absolute;
          width: 230px;
          left: 100%;
          top: 0;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.5s ease; }
          #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li {
            width: 100%;
            display: block;
            border-left: 2px solid transparent;
            background-color: #fff;
            transition: all .6s ease; }
            #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li a {
              color: #fff;
              transition: all .6s ease; }
            #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li:hover {
              border-left: 2px solid #E0051F;
              background-color: #E8F6FF;
              transition: all .6s ease; }
              #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li:hover > a {
                color: #E0051F;
                transition: all .6s ease; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li.has-sub-menu > a {
      position: relative;
      padding-right: 15px; }
      #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li.has-sub-menu > a:after {
        content: '';
        height: 8px;
        width: 8px;
        background-image: url("../img/icons/icon_down.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        filter: brightness(0) invert(1);
        transition: all .4s ease; }
    #header-wrapper .common-logo-nav-wrapper .nav-container nav > ul > li:hover > ul {
      opacity: 1;
      pointer-events: initial;
      transition: opacity 0.5s ease; }
  #header-wrapper .common-logo-nav-wrapper .nav-container .close-icon-container {
    display: none; }
  #header-wrapper .custom-container {
    padding-top: 0;
    padding-bottom: 0; }
  #header-wrapper.nav-scroll {
    position: fixed;
    background-color: #fff;
    top: 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.28);
    animation: ani-slide-down 0.7s;
    transition: all .5s ease-in-out; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .common-logo-container a {
      filter: brightness(100%) invert(0); }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav ul li a {
      color: #E0051F; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li.has-sub-menu > a:after {
      filter: brightness(1) invert(0);
      transition: all .4s ease; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul:after {
      opacity: 0; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li {
      position: relative;
      background-color: #fff; }
      #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li:hover > a {
        background-color: #E8F6FF; }
      #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li {
        background-color: #fff; }
        #header-wrapper.nav-scroll .common-logo-nav-wrapper .nav-container nav > ul > li > ul > li ul li:hover > a {
          background-color: #E8F6FF; }
    #header-wrapper.nav-scroll .common-logo-nav-wrapper .co-btn.color-invert.type-border {
      color: #E0051F;
      border-color: #E0051F; }
      #header-wrapper.nav-scroll .common-logo-nav-wrapper .co-btn.color-invert.type-border:hover {
        background-color: #05312d;
        color: #fff;
        border-color: #05312d;
        transition: all .4s ease; }

.common-logo-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative; }
  .common-logo-nav-wrapper .common-logo-container a {
    filter: brightness(0) invert(1); }
  .common-logo-nav-wrapper .action-container .action-item.type-icon {
    display: none; }

/*--------------------------------- Header Wrapper Starts ---------------------------------*/
/*----------------------------------- Navigation Starts -----------------------------------*/
#navigation-wrapper {
  z-index: 11;
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #E0051F;
  display: flex;
  flex-direction: column;
  clip-path: inset(0 0% 100% 0);
  transition: 0.8s 0.1s cubic-bezier(0.71, 0.26, 0.26, 0.88);
  pointer-events: none; }

body.menu-open #navigation-wrapper {
  pointer-events: initial;
  clip-path: inset(0 0% 0 0);
  transition: 0.8s 0.1s cubic-bezier(0.71, 0.26, 0.26, 0.88); }

/*------------------------------------ Navigation Ends ------------------------------------*/
/*-------------------------------- Content Wrapper Starts ---------------------------------*/
#content-wrapper #home-page {
  background-color: #fcfafb; }
  #content-wrapper #home-page .about-section .title-container {
    max-width: 880px;
    margin: auto;
    text-align: center; }
    #content-wrapper #home-page .about-section .title-container .icon img {
      width: 256px; }
    #content-wrapper #home-page .about-section .title-container .title {
      margin-top: 40px;
      margin-bottom: 25px; }
      #content-wrapper #home-page .about-section .title-container .title h1 {
        color: #E0051F;
        line-height: 1;
        font-weight: 600; }
  #content-wrapper #home-page .about-section .features-container {
    margin-top: 80px;
    display: flex; }
    #content-wrapper #home-page .about-section .features-container .feature-item {
      width: 25%;
      text-align: center; }
      #content-wrapper #home-page .about-section .features-container .feature-item .icon {
        margin-bottom: 28px; }
      #content-wrapper #home-page .about-section .features-container .feature-item .title {
        width: 250px;
        margin: auto; }
        #content-wrapper #home-page .about-section .features-container .feature-item .title h4 {
          color: #161616;
          font-weight: 600; }
  #content-wrapper #home-page .product-section .layout-container {
    display: flex;
    margin: -8px; }
    #content-wrapper #home-page .product-section .layout-container .layout-item {
      width: 50%;
      padding: 8px; }
      #content-wrapper #home-page .product-section .layout-container .layout-item .inner {
        width: 100%;
        height: 100%; }
      #content-wrapper #home-page .product-section .layout-container .layout-item:nth-of-type(1) .image-container {
        width: 100%;
        height: 100%; }
        #content-wrapper #home-page .product-section .layout-container .layout-item:nth-of-type(1) .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }
      #content-wrapper #home-page .product-section .layout-container .layout-item:nth-of-type(2) .inner {
        background-color: #E4E4E4;
        padding: 135px;
        border-radius: 8px; }
        #content-wrapper #home-page .product-section .layout-container .layout-item:nth-of-type(2) .inner .text-container .title {
          margin-bottom: 30px; }
          #content-wrapper #home-page .product-section .layout-container .layout-item:nth-of-type(2) .inner .text-container .title span {
            text-transform: uppercase;
            color: #E0051F;
            font-weight: 600; }
          #content-wrapper #home-page .product-section .layout-container .layout-item:nth-of-type(2) .inner .text-container .title h1 {
            margin: 25px 0px;
            font-weight: 600; }
  #content-wrapper #home-page .featured-product-section .featured-product-container {
    display: flex;
    flex-wrap: wrap;
    margin: -8px; }
    #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item {
      width: 50%;
      padding: 8px; }
      #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item .featured-product-inner a {
        display: block;
        position: relative;
        overflow: hidden; }
        #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item .featured-product-inner a .image-container img {
          width: 100%;
          transition: transform 0.4s ease;
          border-radius: 8px;
          overflow: hidden; }
        #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item .featured-product-inner a .text-container {
          padding: 30px 40px;
          position: absolute;
          left: 0;
          bottom: 0; }
          #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item .featured-product-inner a .text-container h6 {
            color: #949494;
            font-weight: 600;
            margin-bottom: 5px; }
          #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item .featured-product-inner a .text-container h4 {
            font-size: 24px;
            color: #E0051F;
            font-weight: 600; }
      #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item .featured-product-inner:hover .image-container img {
        transform: scale(1.1); }
      #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item:nth-of-type(4), #content-wrapper #home-page .featured-product-section .featured-product-container .featured-product-item:nth-of-type(5) {
        width: 25%; }
  #content-wrapper #home-page .blogs-section .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px; }
    #content-wrapper #home-page .blogs-section .section-title .title-item h1 {
      color: #E0051F;
      font-weight: 600; }
    #content-wrapper #home-page .blogs-section .section-title .title-item a {
      color: #161616;
      font-weight: 500; }
      #content-wrapper #home-page .blogs-section .section-title .title-item a img {
        margin-left: 10px; }
#content-wrapper #about-page {
  background-color: #f5f5f5; }
  #content-wrapper #about-page .about-section .layout-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    #content-wrapper #about-page .about-section .layout-container .layout-item {
      width: 50%; }
      #content-wrapper #about-page .about-section .layout-container .layout-item .inner {
        width: 100%;
        height: 100%; }
      #content-wrapper #about-page .about-section .layout-container .layout-item .text-container {
        width: 480px;
        margin: auto; }
        #content-wrapper #about-page .about-section .layout-container .layout-item .text-container .title span {
          color: #E0051F;
          font-weight: 700; }
        #content-wrapper #about-page .about-section .layout-container .layout-item .text-container .title h3 {
          margin-top: 10px;
          margin-bottom: 40px;
          font-weight: 600; }
      #content-wrapper #about-page .about-section .layout-container .layout-item .image-container {
        width: 100%;
        height: 600px; }
        #content-wrapper #about-page .about-section .layout-container .layout-item .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          border-radius: 6px;
          overflow: hidden; }
  #content-wrapper #about-page .common-about-layout {
    position: relative;
    z-index: 1; }
    #content-wrapper #about-page .common-about-layout .top-layout-container {
      display: flex;
      margin-bottom: 70px; }
      #content-wrapper #about-page .common-about-layout .top-layout-container .layout-item:nth-of-type(1) {
        width: calc(100% - 664px); }
      #content-wrapper #about-page .common-about-layout .top-layout-container .layout-item:nth-of-type(2) {
        width: 664px; }
      #content-wrapper #about-page .common-about-layout .top-layout-container .layout-item .layout-inner .title span {
        color: #E0051F;
        font-weight: 700;
        line-height: 1; }
      #content-wrapper #about-page .common-about-layout .top-layout-container .layout-item .layout-inner .title h5 {
        font-weight: 600; }
    #content-wrapper #about-page .common-about-layout .buttom-layout-container {
      margin: -20px; }
      #content-wrapper #about-page .common-about-layout .buttom-layout-container .common-numbers-container {
        display: flex;
        padding: 20px;
        margin: -35px; }
        #content-wrapper #about-page .common-about-layout .buttom-layout-container .common-numbers-container .numbers-item {
          width: 25%;
          padding: 35px; }
          #content-wrapper #about-page .common-about-layout .buttom-layout-container .common-numbers-container .numbers-item .numbers-item-inner {
            text-align: center; }
            #content-wrapper #about-page .common-about-layout .buttom-layout-container .common-numbers-container .numbers-item .numbers-item-inner h4 {
              font-size: 40px;
              color: #E0051F;
              font-weight: 600; }
            #content-wrapper #about-page .common-about-layout .buttom-layout-container .common-numbers-container .numbers-item .numbers-item-inner img {
              width: 100%; }
            #content-wrapper #about-page .common-about-layout .buttom-layout-container .common-numbers-container .numbers-item .numbers-item-inner span {
              font-weight: 700; }
  #content-wrapper #about-page .about-section-with-numbers {
    background-color: #fff; }
  #content-wrapper #about-page .experience-section {
    position: relative; }
    #content-wrapper #about-page .experience-section .custom-container {
      padding-bottom: 580px; }
    #content-wrapper #about-page .experience-section .background-image {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      z-index: 0; }
      #content-wrapper #about-page .experience-section .background-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
  #content-wrapper #about-page .tagline-section .tagline-container {
    padding: 140px 160px;
    background-color: #fff;
    text-align: center; }
    #content-wrapper #about-page .tagline-section .tagline-container h1 {
      color: #E0051F;
      font-size: 60px;
      font-weight: 400; }
  #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container {
    display: flex;
    align-items: center; }
    #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container:nth-of-type(even) {
      flex-direction: row-reverse; }
    #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container:not(:last-child) {
      margin-bottom: 100px; }
    #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container .layout-item:nth-of-type(1) {
      width: calc(100% - 650px); }
    #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container .layout-item:nth-of-type(2) {
      width: 650px; }
    #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container .layout-item .inner {
      width: 100%;
      height: 100%; }
    #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container .layout-item .image-container img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      object-position: center;
      border-radius: 6px;
      overflow: hidden; }
    #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container .layout-item .text-container {
      max-width: 470px;
      margin: auto; }
      #content-wrapper #about-page .mission-vision-section .mission-vision-container .layout-container .layout-item .text-container h3 {
        color: #E0051F;
        font-weight: 600;
        margin-bottom: 25px; }
#content-wrapper #product-page .product-list-section .product-category-container {
  margin-bottom: 80px; }
#content-wrapper #product-page .product-list-section .common-product-container {
  display: flex;
  flex-wrap: wrap;
  margin: -8px; }
  #content-wrapper #product-page .product-list-section .common-product-container .product-item {
    width: 33.33%;
    padding: 8px; }
    #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner {
      padding: 0px 65px;
      padding-bottom: 90px;
      border: 1px solid #E4E4E4;
      border-radius: 8px;
      position: relative; }
      #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .image img {
        width: 100%; }
      #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .product-title {
        text-align: center;
        margin-top: 20px; }
        #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .product-title h6 {
          font-weight: 600;
          color: #949494;
          margin-bottom: 10px; }
        #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .product-title h4 {
          color: #E0051F;
          font-weight: 600; }
          #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .product-title h4 a {
            color: #E0051F;
            font-weight: 600; }
      #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .product-price {
        text-align: center;
        margin-top: 10px; }
        #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .product-price h5 {
          color: #56585d; }
      #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .info-container {
        position: absolute;
        left: 20px;
        top: 20px; }
        #content-wrapper #product-page .product-list-section .common-product-container .product-item .product-inner .info-container span {
          display: block;
          font-size: 12px;
          font-weight: 600;
          color: #fff;
          border-radius: 4px;
          background-color: #E0051F;
          line-height: 1;
          padding: 7px 10px; }
#content-wrapper #product-detail-page {
  background-color: #f5f5f5; }
  #content-wrapper #product-detail-page .product-details-section .custom-container {
    padding-top: 72px;
    padding-bottom: 72px; }
  #content-wrapper #product-detail-page .product-details-section .layout-container {
    display: flex;
    flex-wrap: wrap;
    margin: -8px; }
    #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item {
      padding: 8px; }
      #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item:nth-of-type(1) {
        width: calc(100% - 528px); }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item:nth-of-type(1) .layout-inner {
          padding: 25px; }
      #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item:nth-of-type(2) {
        width: 528px; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item:nth-of-type(2) .layout-inner {
          padding: 60px; }
      #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner {
        background-color: #fff;
        border-radius: 4px;
        width: 100%;
        height: 100%; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-slider {
          margin-bottom: 16px; }
          #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-slider .gallery-item .gallery-item-inner {
            width: 100%;
            height: 100%; }
            #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-slider .gallery-item .gallery-item-inner img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: center; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-nav {
          display: flex; }
          #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-nav .slick-list {
            height: 80px !important; }
            #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-nav .slick-list .slick-track {
              height: 80px !important; }
          #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-nav .gallery-item {
            width: 80px !important;
            height: 80px !important;
            border: 1px solid #E4E4E4;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer; }
            #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-nav .gallery-item .gallery-item-inner {
              width: 100%;
              height: 100%; }
              #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-nav .gallery-item .gallery-item-inner img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center; }
            #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-gallery-container .product-gallery-item .product-gallery-nav .gallery-item:not(:last-child) {
              margin-right: 16px; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-details-container .product-details-item.price {
          display: flex;
          align-items: center; }
          #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-details-container .product-details-item.price h6 {
            margin-bottom: 0px;
            margin-right: 20px; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-details-container .product-details-item .product-name h3 {
          font-weight: 700; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-details-container .product-details-item h6 {
          font-weight: 700;
          line-height: 1;
          margin-bottom: 12px; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-details-container .product-details-item .features-list ul li {
          line-height: 1.6; }
        #content-wrapper #product-detail-page .product-details-section .layout-container .layout-item .layout-inner .product-details-container .product-details-item:not(:last-child) {
          margin-bottom: 32px; }
#content-wrapper #distributor-page {
  background-color: #f5f5f5; }
  #content-wrapper #distributor-page .distributors-list-section .section-title {
    text-align: center;
    margin-bottom: 80px; }
    #content-wrapper #distributor-page .distributors-list-section .section-title h1 {
      font-weight: 700;
      color: #E0051F; }
  #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner {
    padding: 40px;
    border: 1px solid #E4E4E4;
    border-radius: 8px; }
    #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .image-container {
      width: 100%;
      height: 320px; }
      #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-name {
      margin-bottom: 35px;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-name .name {
        display: flex;
        align-items: center; }
        #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-name .name li h4 {
          font-weight: 700; }
        #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-name .name li span {
          font-weight: 700; }
        #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-name .name li img {
          margin-right: 10px; }
      #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-name .social-links {
        display: flex;
        justify-content: right; }
        #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-name .social-links li:not(:last-child) {
          margin-right: 15px; }
    #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-location {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-location .item .location-details li {
        display: inline-block; }
        #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-location .item .location-details li:not(:last-child) {
          margin-right: 55px; }
        #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-location .item .location-details li img {
          margin-right: 10px; }
      #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list .distributors-inner .details-container .distributor-location .item .direction a img {
        margin-right: 8px; }
  #content-wrapper #distributor-page .distributors-list-section .section-content .distributors-list-container .distributors-list:not(:last-child) {
    margin-bottom: 40px; }
#content-wrapper #dealer-form-page {
  background-color: #f5f5f5; }
  #content-wrapper #dealer-form-page .dealer-form-section .section-title {
    max-width: 800px;
    margin: auto;
    text-align: center; }
    #content-wrapper #dealer-form-page .dealer-form-section .section-title h1 {
      color: #E0051F;
      font-weight: 600;
      margin-bottom: 15px; }
    #content-wrapper #dealer-form-page .dealer-form-section .section-title p {
      color: #949494; }
  #content-wrapper #dealer-form-page .dealer-form-section .section-content {
    margin-top: 85px; }
    #content-wrapper #dealer-form-page .dealer-form-section .section-content .form-container {
      max-width: 1072px;
      margin: auto;
      padding: 72px;
      background-color: #fff;
      border-radius: 16px; }
      #content-wrapper #dealer-form-page .dealer-form-section .section-content .form-container .form-title {
        margin-bottom: 30px; }
        #content-wrapper #dealer-form-page .dealer-form-section .section-content .form-container .form-title span {
          color: #E0051F;
          font-weight: 400;
          display: block; }
#content-wrapper #contact-page {
  background-color: #f5f5f5; }
  #content-wrapper #contact-page .social-links-section .custom-container {
    padding-top: 105px; }
  #content-wrapper #contact-page .social-links-section .custom-container .title {
    margin-bottom: 25px; }
    #content-wrapper #contact-page .social-links-section .custom-container .title h5 {
      color: #E0051F;
      font-weight: 600; }
  #content-wrapper #contact-page .social-links-section .custom-container .social-links-list-container {
    display: flex;
    flex-wrap: wrap;
    margin: -8px; }
    #content-wrapper #contact-page .social-links-section .custom-container .social-links-list-container .social-links-item {
      width: 25%;
      padding: 8px; }
      #content-wrapper #contact-page .social-links-section .custom-container .social-links-list-container .social-links-item ul a {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        background-color: #fff;
        border-radius: 8px;
        color: #161616; }
        #content-wrapper #contact-page .social-links-section .custom-container .social-links-list-container .social-links-item ul a li {
          text-align: center;
          font-weight: 600; }
          #content-wrapper #contact-page .social-links-section .custom-container .social-links-list-container .social-links-item ul a li:nth-of-type(2) {
            flex: 1; }
  #content-wrapper #contact-page .contact-form-section .layout-container {
    display: flex;
    flex-wrap: wrap; }
    #content-wrapper #contact-page .contact-form-section .layout-container .layout-item {
      width: 50%; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item:nth-of-type(1) {
        padding-right: 150px; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item:nth-of-type(2) .layout-inner {
        background-color: #fff;
        padding: 72px;
        border-radius: 16px; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .layout-title .title {
        margin-bottom: 25px; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .layout-title .title h5 {
          color: #E0051F;
          font-weight: 600;
          margin-bottom: 15px; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .layout-title .title h1 {
          color: #161616;
          font-weight: 600; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .layout-title .description {
        color: #949494; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .common-info-box .title {
        margin-bottom: 10px;
        color: #949494; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .common-info-box .title span {
          font-weight: 700;
          color: #161616; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .common-info-box .description ul li img {
        margin-right: 10px; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .form-container .form-title {
        margin-bottom: 35px; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .form-container .form-title h3 {
          color: #E0051F;
          font-weight: 600;
          margin-bottom: 15px; }
        #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .form-container .form-title p {
          color: #949494; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .form-container .form-action input {
        width: 100%; }
      #content-wrapper #contact-page .contact-form-section .layout-container .layout-item .layout-inner .common-bottom-margin {
        margin-bottom: 35px; }
  #content-wrapper #contact-page .common-book-call-container {
    padding: 65px;
    background-image: url("../img/background/background-1.jpg");
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    background-position: right;
    text-align: center; }
    #content-wrapper #contact-page .common-book-call-container .title {
      width: 57%;
      margin: auto; }
      #content-wrapper #contact-page .common-book-call-container .title h2 {
        color: #fff;
        font-weight: 600; }
      #content-wrapper #contact-page .common-book-call-container .title span {
        color: #fff; }
    #content-wrapper #contact-page .common-book-call-container .common-bottom-margin {
      margin-bottom: 30px; }
#content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .title {
  text-align: center; }
  #content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .title h1 {
    color: #161616;
    margin-bottom: 20px;
    font-weight: 600; }
  #content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .title h6 {
    color: #949494;
    line-height: 1; }
#content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .blog-thumnail {
  height: 745px;
  margin: 80px 0px; }
  #content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .blog-thumnail img {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
#content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .blogs-description ul {
  padding-left: 30px; }
  #content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .blogs-description ul li {
    list-style-type: disc; }
#content-wrapper #blogs-detail-page .blog-details-section .blogs-detail-container .blogs-description img {
  width: 100%; }
#content-wrapper #blogs-detail-page .blog-details-section .common-side-padding {
  padding: 0px 250px; }
#content-wrapper #blogs-detail-page .similar-blog-section .section-title {
  text-align: center;
  margin-bottom: 50px; }
  #content-wrapper #blogs-detail-page .similar-blog-section .section-title h2 {
    color: #E0051F;
    font-weight: 600; }
#content-wrapper #error-page {
  z-index: 0;
  height: 100vh;
  position: relative;
  background-color: #E0051F;
  display: flex;
  align-items: center;
  justify-content: center; }
  #content-wrapper #error-page .content-section .content-container {
    text-align: center; }
    #content-wrapper #error-page .content-section .content-container .title h1 {
      z-index: 0;
      font-size: 300px;
      font-weight: 900;
      letter-spacing: -18px;
      line-height: 1em;
      display: flex;
      justify-content: center;
      color: #efc88d;
      background: -webkit-linear-gradient(-41deg, #efc88d, #c59245);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    #content-wrapper #error-page .content-section .content-container .content h1 {
      font-weight: 900;
      color: #fff;
      margin-bottom: 15px; }
    #content-wrapper #error-page .content-section .content-container .content p {
      color: #ffffffd9; }

/*--------------------------------- Content Wrapper Ends ----------------------------------*/
/*--------------------------------- Footer Wrapper Starts ---------------------------------*/
#footer-wrapper {
  background-color: #161616; }
  #footer-wrapper .custom-container {
    padding-bottom: 60px; }
  #footer-wrapper .top-footer {
    display: flex;
    justify-content: space-between; }
    #footer-wrapper .top-footer .top-footer-item:nth-of-type(1) {
      width: 700px; }
    #footer-wrapper .top-footer .top-footer-item .quick-links-container ul li:not(:last-child) {
      margin-bottom: 30px; }
    #footer-wrapper .top-footer .top-footer-item .quick-links-container ul li h4 {
      line-height: 1;
      font-weight: 400; }
      #footer-wrapper .top-footer .top-footer-item .quick-links-container ul li h4 a {
        line-height: 1;
        color: #fff; }
    #footer-wrapper .top-footer .top-footer-item .list-info-container .list-title {
      margin-bottom: 15px; }
      #footer-wrapper .top-footer .top-footer-item .list-info-container .list-title span {
        color: #949494;
        line-height: 1; }
    #footer-wrapper .top-footer .top-footer-item .list-info-container .list-item ul li {
      line-height: 1; }
      #footer-wrapper .top-footer .top-footer-item .list-info-container .list-item ul li:not(:last-child) {
        margin-bottom: 20px; }
      #footer-wrapper .top-footer .top-footer-item .list-info-container .list-item ul li a {
        color: #fff; }
    #footer-wrapper .top-footer .top-footer-item .list-info-container:not(:last-child) {
      margin-bottom: 45px; }
  #footer-wrapper .bottom-footer {
    margin-top: 25px; }
    #footer-wrapper .bottom-footer .footer-social-links-container {
      margin-bottom: 50px; }
      #footer-wrapper .bottom-footer .footer-social-links-container ul li {
        display: inline-block; }
        #footer-wrapper .bottom-footer .footer-social-links-container ul li:not(:last-child) {
          margin-right: 30px; }
    #footer-wrapper .bottom-footer .copyright-text-container span {
      color: #949494; }

/*---------------------------------- Footer Wrapper Ends ----------------------------------*/
/*----------------------------------- Components Starts -----------------------------------*/
.common-banner-section .banner-slider .banner-item {
  z-index: 0;
  height: calc(100vh - 116px);
  overflow: hidden;
  background-color: #f4f7f6;
  position: relative;
  background-size: cover;
  background-position: center bottom; }
  .common-banner-section .banner-slider .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
    .common-banner-section .banner-slider .banner-item img.type-mobile {
      display: none; }
  .common-banner-section .banner-slider .banner-item .text-container {
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0; }
    .common-banner-section .banner-slider .banner-item .text-container .inner {
      width: 800px;
      max-width: 100%;
      margin: auto;
      opacity: 0;
      margin-bottom: -130px;
      transition: all .6s ease;
      text-align: center; }
      .common-banner-section .banner-slider .banner-item .text-container .inner .title h1 {
        color: #fff;
        font-weight: 600; }
      .common-banner-section .banner-slider .banner-item .text-container .inner .content {
        margin-top: 10px;
        margin-bottom: 30px; }
        .common-banner-section .banner-slider .banner-item .text-container .inner .content h4 {
          color: #fff; }
      .common-banner-section .banner-slider .banner-item .text-container .inner .links {
        display: flex;
        justify-content: center;
        gap: 16px; }
  .common-banner-section .banner-slider .banner-item .scroll-down {
    z-index: 2;
    width: 40px;
    margin: auto;
    animation: ani-bounce 2s infinite;
    cursor: pointer;
    position: absolute;
    bottom: 44px;
    left: 0;
    right: 0; }
    .common-banner-section .banner-slider .banner-item .scroll-down img {
      width: 100%;
      max-width: 100%;
      height: auto; }
  .common-banner-section .banner-slider .banner-item.mobile {
    display: none; }
    .common-banner-section .banner-slider .banner-item.mobile .banner-item {
      height: inherit; }
      .common-banner-section .banner-slider .banner-item.mobile .banner-item img {
        height: inherit; }
.common-banner-section.align-center .banner-slider .banner-item .text-container .inner {
  margin: auto;
  text-align: center; }
.common-banner-section.height-small .banner-slider .banner-item {
  height: 512px; }
.common-banner-section.visible .banner-slider .banner-item .text-container .inner {
  margin-bottom: 0;
  opacity: 1;
  transition: all .6s ease; }

.video-list-container {
  max-width: 800px;
  margin: auto; }
  .video-list-container .video-list:not(:last-child) {
    margin-bottom: 40px; }
  .video-list-container .video-list .iframe-container {
    width: 100%;
    height: 424px; }
    .video-list-container .video-list .iframe-container iframe {
      width: 100%;
      height: 100%; }

.manual-container .layout-container {
  display: flex;
  align-items: center; }
  .manual-container .layout-container .layout-item:nth-of-type(1) {
    width: 256px; }
  .manual-container .layout-container .layout-item:nth-of-type(2) {
    width: calc(100%  - 256px);
    padding-left: 72px; }
  .manual-container .layout-container .layout-item .image-container img {
    width: 100%; }
  .manual-container .layout-container .layout-item .text-container {
    width: 610px; }
    .manual-container .layout-container .layout-item .text-container h3 {
      font-weight: 700;
      margin-bottom: 35px; }
    .manual-container .layout-container .layout-item .text-container a {
      border-bottom: 2px solid #161616;
      padding-bottom: 14px;
      color: #161616; }
      .manual-container .layout-container .layout-item .text-container a img {
        margin-right: 14px; }

.banner-ad-image-container {
  margin-bottom: 50px; }
  .banner-ad-image-container .image-container img {
    width: 100%; }

.feature-list-container .layout-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .feature-list-container .layout-container:not(:last-child) {
    margin-bottom: 50px; }
  .feature-list-container .layout-container:nth-of-type(even) {
    flex-direction: row-reverse; }
  .feature-list-container .layout-container .layout-item {
    width: 50%; }
    .feature-list-container .layout-container .layout-item .text-container {
      width: 480px;
      margin: auto; }
      .feature-list-container .layout-container .layout-item .text-container h3 {
        font-weight: 700;
        margin-bottom: 20px; }
    .feature-list-container .layout-container .layout-item .image-container {
      width: 100%;
      height: 440px; }
      .feature-list-container .layout-container .layout-item .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
        overflow: hidden; }

.common-blog-container {
  display: flex;
  flex-wrap: wrap;
  margin: -55px -20px; }
  .common-blog-container .blog-item {
    width: 33.33%;
    padding: 55px 20px; }
    .common-blog-container .blog-item .image-container a {
      display: block;
      width: 100%;
      height: 320px; }
      .common-blog-container .blog-item .image-container a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
        overflow: hidden; }
    .common-blog-container .blog-item .text-container {
      margin-top: 25px; }
      .common-blog-container .blog-item .text-container h6 {
        color: #949494;
        margin-bottom: 10px; }
      .common-blog-container .blog-item .text-container h5 {
        font-weight: 600; }
        .common-blog-container .blog-item .text-container h5 a {
          color: #161616; }
    .common-blog-container .blog-item .link-container {
      margin-top: 8px; }
      .common-blog-container .blog-item .link-container a {
        color: #E0051F;
        opacity: 0;
        pointer-events: none;
        transition: all .4s ease; }
        .common-blog-container .blog-item .link-container a img {
          margin-left: 14px; }
    .common-blog-container .blog-item:hover .link-container a {
      opacity: 1;
      pointer-events: initial;
      transition: all .4s ease; }

.product-specification-image-container {
  max-width: 1050px;
  margin: auto; }
  .product-specification-image-container .image-container img {
    width: 100%; }

.model-list ul li {
  display: inline-block; }
  .model-list ul li a {
    color: #161616;
    line-height: 1;
    padding: 17px 45px;
    border: 2px solid #E4E4E4;
    display: block;
    border-radius: 8px;
    transition: .6s; }
  .model-list ul li:hover a {
    color: #fff;
    background-color: #161616;
    transition: .6s;
    border: 2px solid #161616; }
  .model-list ul li:not(:last-child) {
    margin-right: 10px; }
.model-list.type-one ul li a {
  font-weight: 600; }
.model-list.type-one ul li:hover a {
  background-color: #E0051F;
  border: 2px solid #E0051F; }
.model-list.type-one ul li:not(:last-child) {
  margin-right: 25px; }
.model-list.type-one ul .active a {
  color: #fff;
  background-color: #E0051F;
  border: 2px solid #E0051F; }
.model-list.product-model ul li {
  display: inline-block; }
  .model-list.product-model ul li a {
    padding: 13px 9px;
    font-size: 14px; }
  .model-list.product-model ul li .active {
    color: #fff;
    background-color: #161616;
    transition: .6s;
    border: 2px solid #161616; }

.common-content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .common-content-container .content-item:nth-of-type(1) {
    width: calc(100% - 600px);
    padding-right: 100px; }
  .common-content-container .content-item:nth-of-type(2) {
    width: 600px; }
    .common-content-container .content-item:nth-of-type(2) .image-container {
      box-shadow: 0px 70px 100px -55px #4a2311; }
      .common-content-container .content-item:nth-of-type(2) .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }

.common-team-container {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -15px; }
  .common-team-container .team-item {
    width: 33.33%;
    padding: 30px; }
    .common-team-container .team-item .image-container {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      background-color: #f4f7f6;
      padding-bottom: 120%;
      cursor: pointer; }
      .common-team-container .team-item .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        right: 0;
        filter: grayscale(0);
        transition: all .4s ease; }
      .common-team-container .team-item .image-container:hover img {
        filter: grayscale(1);
        transition: all .4s ease; }
    .common-team-container .team-item .text-container .name {
      margin-top: 28px;
      margin-bottom: 12px; }
      .common-team-container .team-item .text-container .name h4 {
        color: #161616;
        cursor: pointer;
        transition: all .4s ease; }
        .common-team-container .team-item .text-container .name h4:hover {
          color: #E0051F;
          transition: all .4s ease; }
    .common-team-container .team-item .text-container .designation p {
      font-size: 18px;
      line-height: 1em; }

.common-news-container {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -15px; }
  .common-news-container .news-item {
    width: 33.33%;
    padding: 30px 15px; }
    .common-news-container .news-item .inner {
      height: 100%;
      background-color: #fff;
      box-shadow: 0 10px 30px #0000001a; }
      .common-news-container .news-item .inner .image-container a {
        display: block;
        position: relative;
        padding-bottom: 75%;
        background-color: #f4f7f6; }
        .common-news-container .news-item .inner .image-container a img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          position: absolute;
          top: 0;
          right: 0; }
      .common-news-container .news-item .inner .text-container {
        padding: 30px 25px; }
        .common-news-container .news-item .inner .text-container .title h4 {
          line-height: 1.4em;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          transition: all .4s ease; }
          .common-news-container .news-item .inner .text-container .title h4 a {
            color: #161616;
            transition: all .4s ease; }
            .common-news-container .news-item .inner .text-container .title h4 a:hover {
              color: #E0051F;
              transition: all .4s ease; }
        .common-news-container .news-item .inner .text-container .content {
          margin-top: 20px; }
          .common-news-container .news-item .inner .text-container .content p {
            font-size: 18px;
            line-height: 1.6em;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            transition: all .4s ease; }

.common-faq-container .card {
  width: 100%;
  border: 0;
  padding: 40px;
  background-color: #fff; }
  .common-faq-container .card:not(:last-of-type) {
    margin-bottom: 30px; }
  .common-faq-container .card .card-inner .card-header {
    border: 0;
    background-color: transparent;
    padding: 0; }
    .common-faq-container .card .card-inner .card-header button {
      width: 100%;
      line-height: 1em;
      background-color: #fff;
      position: relative;
      display: flex;
      outline: none;
      text-align: left;
      border: 0;
      padding: 0; }
      .common-faq-container .card .card-inner .card-header button:active, .common-faq-container .card .card-inner .card-header button:focus {
        outline: none; }
      .common-faq-container .card .card-inner .card-header button span {
        display: block; }
        .common-faq-container .card .card-inner .card-header button span:nth-of-type(1) {
          width: 30px;
          font-weight: bold; }
        .common-faq-container .card .card-inner .card-header button span:nth-of-type(2) {
          width: calc(100% - 30px);
          margin-top: -2px; }
  .common-faq-container .card .card-inner .card-body {
    padding: 0;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #CECECE; }

.common-social-container ul {
  display: flex; }
  .common-social-container ul li {
    display: flex; }
    .common-social-container ul li:not(:last-of-type) {
      margin-right: 20px; }
    .common-social-container ul li a {
      font-size: 16px;
      color: #56585d; }

.common-instagram-section .instagram-container {
  display: flex;
  flex-wrap: wrap; }
  .common-instagram-section .instagram-container .instagram-item {
    width: 20%; }
    .common-instagram-section .instagram-container .instagram-item a {
      position: relative;
      display: block;
      padding-bottom: 110%; }
      .common-instagram-section .instagram-container .instagram-item a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        right: 0; }

.common-background {
  background-color: #E9E1CE; }

.common-title {
  margin-bottom: 30px; }
  .common-title h5 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px; }

.common-tagline {
  margin-bottom: 15px; }
  .common-tagline i {
    display: block;
    line-height: 1em;
    color: #E0051F;
    margin-bottom: 10px; }
  .common-tagline h6 {
    font-family: "Inter Tight", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E0051F; }

.common-action {
  margin-top: 40px; }
  .common-action.align-center {
    text-align: center; }
    .common-action.align-center .action-inner {
      justify-content: center; }
  .common-action .action-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .common-action .action-inner .action-item {
      display: flex;
      align-items: center; }
      .common-action .action-inner .action-item:not(:last-of-type) {
        margin-right: 20px; }

.common-logo-container a {
  width: 192px;
  display: inline-block; }
  .common-logo-container a img {
    width: 100%;
    max-width: 100%;
    height: auto; }

.common-icon {
  margin-bottom: 40px; }
  .common-icon img {
    width: 85px;
    height: auto; }

.common-toggle {
  display: none; }

.common-copyright-container p a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  line-height: 1em;
  color: #BEA24E;
  /*color: #F9C741;
  background: -webkit-linear-gradient(-41deg, #F9C741 0%, #FFE294 15%, #FFE294 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/ }

.common-form {
  overflow: hidden;
  position: relative; }
  .common-form .fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; }
    .common-form .fields .form-group {
      position: relative;
      width: 100%;
      margin-bottom: 0;
      padding: 0 10px; }
      .common-form .fields .form-group:not(:last-of-type) {
        margin-bottom: 25px; }
      .common-form .fields .form-group.half-width {
        width: 50%; }
      .common-form .fields .form-group.has-error input, .common-form .fields .form-group.has-error select, .common-form .fields .form-group.has-error textarea {
        border: 1px solid #e74c3c; }
      .common-form .fields .form-group.has-error label {
        color: #e74c3c; }
      .common-form .fields .form-group.has-error .floating-label {
        color: #e74c3c; }
      .common-form .fields .form-group label {
        font-size: 14px;
        font-weight: bold;
        color: #161616; }
        .common-form .fields .form-group label span {
          color: #e74c3c; }
      .common-form .fields .form-group input, .common-form .fields .form-group select, .common-form .fields .form-group textarea {
        width: 100%;
        padding: 14px 15px;
        font-family: "Inter Tight", sans-serif;
        line-height: 1em;
        border-radius: 5px;
        background-color: transparent;
        border: 1px solid #E4E4E4;
        color: #949494;
        transition: all .3s ease;
        height: 60px; }
        .common-form .fields .form-group input::placeholder, .common-form .fields .form-group select::placeholder, .common-form .fields .form-group textarea::placeholder {
          transition: all .3s ease;
          color: #949494; }
        .common-form .fields .form-group input:focus, .common-form .fields .form-group select:focus, .common-form .fields .form-group textarea:focus {
          outline: none;
          transition: all .3s ease; }
          .common-form .fields .form-group input:focus::placeholder, .common-form .fields .form-group select:focus::placeholder, .common-form .fields .form-group textarea:focus::placeholder {
            color: #949494;
            transition: all .3s ease; }
      .common-form .fields .form-group textarea {
        height: 150px;
        vertical-align: top; }
      .common-form .fields .form-group .floating-label {
        font-size: 15px;
        display: inline-block;
        padding: 2px 6px;
        line-height: 1em;
        pointer-events: none;
        color: black;
        position: absolute;
        left: 11px;
        top: 16px;
        transition: 0.2s ease all;
        background: black; }
      .common-form .fields .form-group input:focus ~ .floating-label,
      .common-form .fields .form-group select:focus ~ .floating-label,
      .common-form .fields .form-group textarea:focus ~ .floating-label,
      .common-form .fields .form-group input:not(:focus):valid ~ .floating-label,
      .common-form .fields .form-group select:not(:focus):valid ~ .floating-label,
      .common-form .fields .form-group textarea:not(:focus):valid ~ .floating-label {
        top: -7px;
        transform: translateY(0);
        font-size: 13px; }
  .common-form .form-action {
    margin-top: 45px; }
    .common-form .form-action input {
      border: none;
      width: 100%; }
    .common-form .form-action .wpcf7-spinner {
      position: absolute;
      top: 35%;
      transform: translateX(-50%);
      right: -50px;
      margin: 0; }
  .common-form .wpcf7-not-valid-tip {
    font-size: 15px;
    line-height: 1em;
    margin-top: 20px; }
  .common-form .wpcf7 form.invalid .wpcf7-response-output,
  .common-form .wpcf7 form.unaccepted .wpcf7-response-output,
  .common-form .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #fef8ed;
    color: #d08404;
    border: 0;
    border-left: 4px solid #f59e0b;
    font-size: 16px;
    padding: 20px 18px 19px;
    line-height: 1em;
    border-radius: 8px; }

.common-remove-tab-style {
  border-bottom: 0;
  margin-bottom: 55px;
  border-bottom: 1px solid #CACACA; }
  .common-remove-tab-style li:not(:last-child) {
    margin-right: 5px; }
  .common-remove-tab-style li .nav-link {
    position: relative;
    font-weight: 700;
    color: #161616;
    padding: 0;
    border: 0;
    padding: 18px 40px;
    line-height: 1;
    transition: .6s; }
    .common-remove-tab-style li .nav-link:hover, .common-remove-tab-style li .nav-link.active {
      border: 0;
      color: #fff;
      background-color: #E0051F;
      transition: .6s; }
      .common-remove-tab-style li .nav-link:hover:after, .common-remove-tab-style li .nav-link.active:after {
        width: 100%;
        transition: all .4s ease; }

/*------------------------------------ Components Ends ------------------------------------*/
/*---------------------------------- Slick Slider Starts ----------------------------------*/
.common-banner-section .banner-slider .banner-item:not(:first-of-type) {
  display: none; }

.common-banner-section .banner-slider.slick-initialized .banner-item {
  display: block; }

.slick-slider .slick-prev, .slick-slider .slick-next {
  z-index: 1;
  height: 45px;
  width: 32px; }
  .slick-slider .slick-prev:after, .slick-slider .slick-next:after {
    content: '';
    height: inherit;
    width: inherit;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
  .slick-slider .slick-prev:before, .slick-slider .slick-next:before {
    display: none; }
.slick-slider .slick-prev {
  left: 20px; }
  .slick-slider .slick-prev:after {
    background-image: url("../img/icons/left-arrow.svg"); }
.slick-slider .slick-next {
  right: 20px; }
  .slick-slider .slick-next:after {
    background-image: url("../img/icons/right-arrow.svg"); }
.slick-slider.slick-dotted {
  margin-bottom: 0; }
  .slick-slider.slick-dotted .slick-dots {
    bottom: 50px; }
    .slick-slider.slick-dotted .slick-dots li {
      height: 13px;
      width: 13px;
      border-radius: 100%;
      margin: 0;
      background-color: rgba(255, 255, 255, 0.45); }
      .slick-slider.slick-dotted .slick-dots li.slick-active {
        background-color: #fff; }
      .slick-slider.slick-dotted .slick-dots li:not(:last-of-type) {
        margin-right: 18px; }
      .slick-slider.slick-dotted .slick-dots li button {
        height: 13px;
        width: 13px;
        padding: 0;
        opacity: 0; }

/*----------------------------------- Slick Slider Ends -----------------------------------*/
/*-------------------------------------- Modal Starts -------------------------------------*/
.modal .modal-dialog {
  max-width: 700px;
  margin: 100px auto; }
  .modal .modal-dialog .modal-header {
    padding: 0;
    border: 0; }
    .modal .modal-dialog .modal-header button {
      z-index: 1;
      height: 40px;
      width: 36px;
      margin: 0;
      padding: 0;
      color: #fff;
      opacity: 1;
      outline: none;
      position: absolute;
      top: -50px;
      right: -7px; }
      .modal .modal-dialog .modal-header button i {
        color: #fff;
        font-size: 13px; }
  .modal .modal-dialog .modal-content {
    background: #fff;
    border: 0;
    border-radius: 5px; }
    .modal .modal-dialog .modal-content .modal-body {
      padding: 30px 26px; }
      .modal .modal-dialog .modal-content .modal-body .text-container .title {
        margin-bottom: 30px; }
      .modal .modal-dialog .modal-content .modal-body .text-container .content p, .modal .modal-dialog .modal-content .modal-body .text-container .content ul li {
        font-size: 18px; }
      .modal .modal-dialog .modal-content .modal-body .text-container .content ul {
        padding-left: 20px; }
        .modal .modal-dialog .modal-content .modal-body .text-container .content ul li {
          list-style: disc; }
.modal.type-video .modal-dialog {
  max-width: 1000px; }
  .modal.type-video .modal-dialog .modal-content {
    background-color: black; }
    .modal.type-video .modal-dialog .modal-content .modal-body {
      padding: 0; }
      .modal.type-video .modal-dialog .modal-content .modal-body .video-container iframe {
        width: 100%;
        height: 560px;
        vertical-align: top;
        border: 0; }

/*--------------------------------------- Modal Ends --------------------------------------*/
/*------------------------------------ Animation Starts -----------------------------------*/
@keyframes ani-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 0.9;
    transform: translateY(0); } }
@keyframes ani-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0px); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }
@keyframes ani-banner {
  0% {
    transform: scale(1.2);
    100% {
      transform: scale(1); } } }
.animation-area .ani-fade-top {
  opacity: 0;
  padding-top: 30px;
  transition: all .5s ease; }
  .animation-area .ani-fade-top.normal {
    opacity: 1;
    padding-top: 0;
    transition: all .5s ease; }
  .animation-area .ani-fade-top.delay-1.normal {
    transition: all .5s ease;
    transition-delay: .2s; }
  .animation-area .ani-fade-top.delay-2.normal {
    transition: all .5s ease;
    transition-delay: .4s; }
  .animation-area .ani-fade-top.delay-3.normal {
    transition: all .5s ease;
    transition-delay: .6s; }
  .animation-area .ani-fade-top.delay-4.normal {
    transition: all .5s ease;
    transition-delay: 1s; }

/*------------------------------------- Animation Ends ------------------------------------*/

/*# sourceMappingURL=thestyles.css.map */
