@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    transition: cubic-bezier(0.19, 1, 0.22, 1);
}
body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}


.nav-links .drop-menu li {
    width: 100%!important;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    font-family: 'Outfit','Poppins';
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    color: #999;
    overflow-x: hidden !important;
    background: white;
}
/* navbar starts */
nav {
    position: sticky;
    z-index: 99;
    width: 100%;

    background: white !important;
}

nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-size: 17px;
    font-weight: 300;
    padding: 0px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: red;
    font-weight: 400;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: white;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 69px !important;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: white !important;
    color: black !important;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 90%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: black;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    margin-left: 10px;
}

.content .row .mega-links {
    margin-left: -30px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
    text-align: left;

}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: black;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: white;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}


@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: white;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
        color: #fff;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
        color: white;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showDrop1:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: black !important;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
 .nav-links .mobile-item:hover {
        background: red;
        color:white !important;
    }
    

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }


    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}
@media (min-width:280px) and (max-width:426px) {
    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 16px;
        /* font-weight: 500; */
    }
    .drop-menu li a{
        font-size: 15px;
        font-weight: 300;
        
    }
    .drop-menu li {
        width: 100%;
    }
    .nav-links .mobile-item {
        display: block;
        color: red;
        font-size: 16px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .content .row header {
        font-size: 16px;
    }
    #mob{
        font-weight: 500;
    }
    .row .mega-links li a {
        padding: 0px;
        padding: 0 20px;
        color: #d9d9d9;
        font-size: 14px;
        display: block;

    }
    .logo img {
        height: 40px !important;
        width: 70px !important;

    }
    .main-img{

    }
    .main-img video {
        position: relative;
        top: -12px !important;
        width: 100%;
        height: 300px;
    }
}
nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

.logo img {
    height: 70px;
    width: 120px
}

.logo {
    margin-top: 6px;
}
/* navbar ends */
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    background:#1b1b1b;
    box-shadow: 0 1px 2px rgba(212, 33, 33, 0.2);
    z-index: 99;
  }
  nav .navbar{
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 50px;
  }
  .navbar .logo a{
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  nav .navbar .nav-links{
    line-height: 70px;
    height: 100%;
  }
  nav .navbar .links{
    display: flex;
  }
  nav .navbar .links li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
  
  }
  nav .navbar .links li a{
      font-family: "Outfit", sans-serif;
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    font-weight: 200;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow{
    transform: rotate(180deg);
  
    }
  
  nav .navbar .links li .arrow{
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
  }
  nav .navbar .links li .sub-menu{
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #1b1b1b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: block;
  }
  .navbar .links li .sub-menu li{
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .navbar .links li .sub-menu a{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }
  .navbar .links li .sub-menu .more-arrow{
    line-height: 40px;
  }
  .navbar .links li .htmlCss-more-sub-menu{
    /* line-height: 40px; */
  }
  .navbar .links li .sub-menu .more-sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
  }
  .links li .sub-menu .more:hover .more-sub-menu{
    display: block;
  }
  .navbar .search-box{
      display: none;
    position: relative;
     height: 40px;
    width: 40px;
  }
  .navbar .search-box i{
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .navbar .search-box .input-box{
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #1b1b1b;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .navbar.showInput .search-box .input-box{
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #1b1b1b;
  }
  .search-box .input-box::before{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #1b1b1b;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
  }
  .search-box .input-box input{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
  }
  .navbar .nav-links .sidebar-logo{
    display: none;
  }
  .navbar .bx-menu{
    display: none;
  }
  .navbar.nav-link:hover li {
      color: #f82323;
  }
  @media (max-width:920px) {
    nav .navbar{
      max-width: 100%;
      padding: 0 25px;
    }
  
    nav .navbar .logo a{
      font-size: 27px;
    }
    nav .navbar .links li{
      padding: 0 10px;
      white-space: nowrap;
    }
    nav .navbar .links li a{
      font-size: 15px;
      margin-left: 2px;
    }
  }
  @media (max-width:800px){
    nav{
      /* position: relative; */
    }
    .navbar .bx-menu{
      display: block;
    }
    nav .navbar .nav-links{
      position: fixed;
      top: -39px;
      left: -100%;
      display: block;
      max-width: 270px;
      width: 100%;
      background:  #1b1b1b;
      line-height: 40px;
      padding: 46px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.5s ease;
      z-index: 1000;
    }
    .navbar .nav-links .sidebar-logo{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .sidebar-logo .logo-name{
      font-size: 25px;
      color: #fff;
    }
      .sidebar-logo  i,
      .navbar .bx-menu{
        font-size: 25px;
        color: #fff;
        margin-top: 22px;
      }
    nav .navbar .links{
      display: block;
      margin-top: 20px;
      margin-left: 0;
    }
    nav .navbar .links li .arrow{
      line-height: 40px;
    }
  nav .navbar .links li{
      display: block;
    }
  nav .navbar .links li .sub-menu{
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li{
    border-bottom: none;
  
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow{
    transform: rotate(0deg);
    }
    .navbar .links li .sub-menu .more-sub-menu{
      display: none;
    }
    .navbar .links li .sub-menu .more span{
      /* background: red; */
      display: flex;
      align-items: center;
      /* justify-content: space-between; */
    }
  
    .links li .sub-menu .more:hover .more-sub-menu{
      display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu{
      display: none;
    }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu{
        display: block;
      }
      .navbar .nav-links.show1 .links .htmlcss-arrow,
      .navbar .nav-links.show3 .links .js-arrow{
          transform: rotate(180deg);
  }
      .navbar .nav-links.show2 .links .more-arrow{
        transform: rotate(90deg);
      }
  }
  @media (max-width:370px){
    nav .navbar .nav-links{
    max-width: 100%;
  } 
  }
  
  .wrappers{
      position: relative;
      max-width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding: 0 150px;
      border-radius: 100px;
      margin-top: -240px;
      z-index: 1;
      /* left: 184px; */
    }
    .card2 .card{
      position: relative;
      /* background: #fff; */
      border-radius: 20px;
      width: 100%;
      overflow: hidden;
      box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.15);
      cursor: pointer;
    }
    .wrappers .card img{
      width: 100%;
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    .card:hover img{
      transform: scale(1.1);
    }
    .wrappers .card .content{
      position: absolute;
      width: 100%;
      bottom: -50%;
      /* background: #fff; */
      padding: 10px 20px 22px 20px;
      box-shadow: 0px -3px 10px 0px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }
    @media (max-width: 480px) {
      .wrappers{
          position: relative;
      max-width: 919px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-radius: 100px;
      margin-top: -182px;
      left: -6px;
      }
      .wrappers .card{
          position: relative;
          /* background: #fff; */
          border-radius: 20px;
          width: calc(33% - 13px);
          overflow: hidden;
          box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.15);
        }
        .wrappers .card img{
          width: 100%;
          border-radius: 3px;
          transition: all 0.3s ease;
        }
        .card:hover img{
          transform: scale(1.1);
        }
        .wrappers .card .content{
          position: absolute;
          width: 100%;
          bottom: -50%;
          /* background: #fff; */
          padding: 10px 20px 22px 20px;
          box-shadow: 0px -3px 10px 0px rgba(0,0,0,0.15);
          transition: all 0.3s ease;
        }
  
      
  }
  @media (max-width: 1200px) {
      .wrappers{
    
      left: 0px;
      }}
      /*--------------------------- nav ends */
/* ======================================footer starts */
/* ======= Footer style ======= */
.footer {
    background-color: #1b1b1b;
    margin-bottom: -23px;
}
.footer-logo {
    width: 130px;
    margin-bottom: 15px;
}
.footer-logo img{
    height: auto;
    width: 130px;
}
.footer-logo h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.25em;

}
.footer-logo h2 span {
    color: #f82323;
}
.footer .widget .widget-title {
    font-size: 21px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}
/* first footer */
.first-footer {
    padding: 12px 0 0 0;
    margin-bottom: -65px;
}
/* footer icon */
.icon-footer {
    width: 60px;
    max-height: 60px;
    min-height: 60px;
    min-width: 60px;
    background-color: #f82323;
    color: #1b1b1b;
    font-size: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #f82323;
    border-radius: 100%;
}
.icon-footer i {
    width: 100%;
    text-align: center;
}
/* footer link */
.links.dark {
    background-color: transparent;
    border: 1px solid #222;
    box-shadow: none;
    border-radius: 0px;
}
.links.dark.footer-contact-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding: 2px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
}
.footer-contact-links-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1032px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-contact-links-divider {
    width: 1px;
    min-height: 100%;
    margin-right: 20px;
    margin-left: 20px;
    background-color: #222;
}
.footer-contact-link-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1b1b1b;
    text-decoration: none;
}
.image-wrapper.footer-contact-link-icon {
    margin-right: 15px;
}
.footer-contact-link-wrapper h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 700;
}
.footer-contact-link-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 0px;
}
/* second footer */
.second-footer {
    border-bottom: 1px solid #222;
}
.second-footer .widget-area .widget {
    padding: 45px 0;
}
.second-footer .widget-area .widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
/* usefull links */
.footer .usful-links ul {
    margin: 0;
    padding: 0;
}
.footer .usful-links ul li {
    margin-bottom: 5px;
}
.footer .usful-links ul li:hover {
    color: #f82323;
}
.footer .usful-links ul li i {
    font-size: 7px;
    margin-right: 3px;
}
.footer .usful-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 15px;
}
.footer .usful-links ul li a:after {
    width: 6px;
    height: 6px;
    content: "";
    background: #f82323;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
}
.footer .usful-links ul li a:hover {
    color: #f82323;
}
/* bottom footer */
.copyright {
    padding-top: 0px;
    padding-bottom: 0px;
}
.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: -36px;
}
.copyright p a {
    background: linear-gradient(to bottom, #f82323 0%, #f82323 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 1px;
    color: #fff;
    text-decoration: none;
    transition: background-size .2s;
}
.copyright p a:hover {
    color: #fff;
}
/* social icons */
.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    background: transparent;
    color: #fff;
    font-weight: 300;
    border-radius: 0;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border: 1px solid #f82323;
    border-radius: 100%;
}
.social-icons li:hover {
    background: #f82323;
    color: #1b1b1b;
}
/* newsletter */
.widget-newsletter {
    position: relative;
}
.widget-newsletter input {
    height: 60px;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #fff;
    outline: none;
    padding: 0 90px 0 20px;
    border: 1px solid #f82323;
    border-radius: 30px;
}
.widget-newsletter button {
    height: 40px;
    width: 40px;
    border: none;
    background: #f82323;
    font-size: 14px;
    font-weight: 700;
    color: #1b1b1b;
    outline: none;
    padding: 0px 16px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: -3px;
    right: -9px;
    border-radius: 100%;
    line-height: 55px;
    outline: none;
    transform: rotate(0);
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}
.widget-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.widget-newsletter:hover button {
    background: #fff;
    color: #1b1b1b;
    outline: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}
@media screen and (max-width: 767px) {
    .footer-contact-links-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-contact-links-divider {
        width: auto;
        min-height: 1px;
        margin: 20px 0px;
    }
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e627';
    text-align: center;
    line-height: 55px;
    font-size: 10px;
    font-weight: normal;
    left: 0;
    top: 0;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: #f82323;
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap::after {
    color: #f82323;
}
.progress-wrap svg.progress-circle path {
    stroke: #f82323;
}


/* ======= Responsive style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }
    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }
    .header .caption h1 {
        font-size: 42px;
    }
    .header .caption h2 {
        font-size: 42px;
    }
    .kenburns-inner .caption h1 {
        font-size: 42px;
    }
    .banner-header h6 {
        font-size: 10px;
    }
    .parallax-header h6 {
        font-size: 10px;
    }
    .parallax-header[data-overlay-dark] h1, .parallax-header h1 {
        font-size: 42px;
    }
    .section-title {
        font-size: 35px;
    }
    .section-subtitle {
        font-size: 10px;
    }
    .section-subtitle {
        font-size: 10px;
    }
    .process .item h5 {
        font-size: 21px;
    }
    .video-fullscreen-wrap h6 {
        font-size: 12px;
    }
    .video-fullscreen-wrap h1 {
        font-size: 42px;
    }
    .footer .widget .widget-title {
        font-size: 21px;
    }
    .not-found h1 {
        font-size: 150px;
        line-height: 150px;
    }
    .footer-bottom .footer-social {
        float: left;
    }
    .form1.brdr {
        border-radius: 20px;
    }
    .car-details .sidebar-car {
        margin-top: 30px;
    }   
    .blog2 .post-cont {
        padding: 30px 15px;
    }  
}

/* ======================================footer ends ================================*/
/* .container {
    max-width: 1000px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    margin-left: auto;
    margin-right: auto;
  } */
  
  @media screen and (min-width: 700px) {
    
  }
  p {
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 300;
      line-height: 1.95em;
      color: #999;
      margin-bottom: 15px;
  }
  h1 {
      font-size: 42px;
  }
  h2 {
      font-size: 35px;
  }
  h3 {
      font-size: 28px;
  }
  h4 {
      font-size: 21px;
  }
  h5 {
      font-size: 17px;
  }
  h6 {
      font-size: 14px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      line-height: 1.5em;
      margin: 0 0 15px 0;
      color: #1b1b1b;
  }
  img {
      /* width: ; */
      margin: auto;
      height: auto;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
  }
  span,
  a,
  a:hover {
      display: inline-block;
      text-decoration: none;
      color: inherit;
  }
  b {
      font-weight: 700;
      color: #1b1b1b;
  }
  /* text field */
  button,
  input,
  optgroup,
  select,
  textarea {
      font-family: 'Outfit', sans-serif;
  }
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="text"]:focus,
  input[type="file"]:focus,
  input[type="radio"]:focus,
  input[type="checkbox"]:focus,
  textarea:focus {
      outline: none;
  }
  input[type="password"],
  input[type="email"],
  input[type="text"],
  input[type="file"],
  textarea {
      max-width: 100%;
      margin-bottom: 15px;
      padding: 18.5px 20px;
      height: auto;
      background-color: #222;
      -webkit-box-shadow: none;
      box-shadow: none;
      display: block;
      width: 100%;
      line-height: 1.5em;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: #999;
      background-image: none;
      border: none;
      border-radius: 30px;
  }
  input[type="submit"],
  input[type="reset"],
  input[type="button"],
  button {
      text-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      line-height: 1.95em;
      -webkit-transition: background-color .15s ease-out;
      transition: background-color .15s ease-out;
      background: #1b1b1b;
      border: none;
      color: white !important;
  }
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  button:hover {
      color: red !important;
      border: none;
      background-color: rgb(145, 137, 137);
  }
  select {
      padding: 10px;
      border-radius: 5px;
  }
  textarea:focus,
  textarea:active,
  textarea::placeholder {
      color: #999;
  }
  table,
  th,
  tr,
  td {
      border: 0px solid #999;
  }
  th,
  tr,
  td {
      padding: 10px;
  }
  input[type="radio"],
  input[type="checkbox"] {
      display: inline;
  }
  /* submit and alert success  */
  input[type="submit"] {
      display: inline-block;
      height: auto;
      padding: 19px 35px;
      border: none;
      border-radius: 0;
      background-color: #f82323;
      -webkit-transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
      transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
      color: #1b1b1b;
      line-height: 20px;
      font-weight: 300;
      text-align: center;
      font-size: 14px;
      border-radius: 30px;
  }
  input[type="submit"]:hover {
      border: none;
      background-color: #fff;
      color: #1b1b1b;
  }
  .alert-success {
      background: transparent;
      color: #999;
      border: 1px solid #f82323;
      border-radius: 30px;
  }
  /* placeholder */
  ::-webkit-input-placeholder {
      color: #999;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 300;
  }
  :-moz-placeholder {
      color: #999;
  }
  ::-moz-placeholder {
      color: #999;
      opacity: 1;
  }
  :-ms-input-placeholder {
      color: #999;
  }
  /* Important */
  .bg-position-top {
      background-position: top;
  }
  .bg-position-center {
      background-position: center;
  }
  .bg-position-bottom {
      background-position: bottom;
  }
  .o-hidden {
      overflow: hidden;
  }
  .position-re {
      position: relative;
  }
  .full-width {
      width: 100%;
  }
  .bg-img {
      background-size: cover;
      background-repeat: no-repeat;
  }
  .bg-fixed {
      background-attachment: fixed;
  }
  .bg-gray {
      background-color: #f6f6f6;
  }
  .bg-white {
      background-color: #fff;
  }
  .bg-yellow {
      background-color: #f82323;
  }
  .txt-dark {
      color: #1b1b1b;
  }
  .pattern {
      background-repeat: repeat;
      background-size: auto;
  }
  .bold {
      font-weight: 700;
  }
  .count {
      font-family: 'Outfit', sans-serif;
  }
  .valign {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }
  .v-middle {
      position: absolute;
      width: 100%;
      top: 50%;
  /*    left: 0;*/
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
      z-index: 9;
  }
  .v-middle2 {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 0;
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
  }
  .v-bottom {
      position: absolute;
      width: 100%;
      bottom: 5%;
      left: 0;
      -webkit-transform: translate(0%, -5%);
      transform: translate(0%, -5%);
      z-index: 9;
  }
  .js .animate-box {
      opacity: 0;
  }
  :root {
      scroll-behavior: auto;
  }
  .position-relative {
      position: relative !important;
  }
  .bp-bottom {
      background-position: bottom;
  }
  .bp-top {
      background-position: top;
  }
  .bp-center {
      background-position: center;
  }
  .icon-bg {
      background:#fff !important;
  }
  hr {
      margin-top: 5px;
      margin-bottom: 15px;
      border: 0;
  }
  .mt-15 {
      margin-top: 15px !important;
  }
  .mt-30 {
      margin-top: 30px !important;
  }
  .mt-45 {
      margin-top: 45px !important;
  }
  .mt-60 {
      margin-top: 60px !important;
  }
  .mt-90 {
      margin-top: 90px !important;
  }
  .mt--120 {
      margin-top: -120px !important;
  }
  .mb-0 {
      margin-bottom: 0 !important;
  }
  .mb-15 {
      margin-bottom: 15px !important;
  }
  .mb-20 {
      margin-bottom: 20px !important;
  }
  .mb-30 {
      margin-bottom: 30px !important;
  }
  .mb-45 {
      margin-bottom: 45px !important;
  }
  .mb-60 {
      margin-bottom: 60px !important;
  }
  .mb-90 {
      margin-bottom: 90px !important;
  }
  .mb-120 {
      margin-bottom: 120px !important;
  }
  .pt-60 {
      padding-top: 60px !important;
  }
  .pb-0 {
      padding-bottom: 0 !important;
  }
  .no-padding {
      padding: 0 !important;
  }
  .ml-30 {
      margin-left: 30px !important;
  }
  .mr-10 {
      margin-right: 10px !important;
  }
  .mr-15 {
      margin-right: 15px !important;
  }
  /* list */
  .list {
      position: relative;
      display: block;
  }
  .list li {
      position: relative;
      display: flex;
      align-items: center;
  }
  .list li + li {
      margin-top: 10px;
  }
  .list-icon {
      display: grid;
  }
  .list-icon span {
      font-size: 11px;
      color: #f82323;
      background-color: #222;
      text-align: center;
      padding: 15px;
      border-radius: 100%;
  }
  .list-text {
      margin-left: 15px;
  }
  .list-text p {
      font-size: 14px;
      margin: 0;
      color: #999;
  }
  /* vertical line */
  .line-vr-section {
      position: relative;
      margin: -25px auto;
      border: 0;
      border-left: 1px solid;
      border-color: #f82323;
      width: 2px;
      height: 50px;
      z-index: 10;
      opacity: 1;
  }
@media screen and (max-width:768px) {
    .list-inline {
        display: flex !important;
    }
}
@media screen  and (max-width:425px) {
    .copyright p{
        font-size: 8px;
    }
    .copyright p a{
        font-size: 8px!important;
    }   
    .list-inline {
        display: flex !important;
    }
    .res {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
/* ================================footer ends ===================================  */

/* ==============================body starts ========================================*/
.main{
height: auto;
max-width: 100%;
overflow: hidden;
padding: 60px 0px;
} 
.main-img{
    height: 660px;
    width: 110%;
    overflow: hidden;
    /* padding: 0; */
    /* margin: 0; */
    /* background-image: url(img/adver1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
}
.main-img video{
    position:relative;
    top: -40px;
}
.section-title {
    font-size: 35px;
    text-align: center;
}
.section-title {
    font-size: 35px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.25em;
    font-weight: 700;}
.heading{
    padding-top: 40px;
    padding-bottom: 20px;
}
/* caurosel */
.outer-carousel{
    background-color: #f82323;
    width: 100%;
    height: fit-content;
}
.carousel-wrap {
    margin: 0px auto;
    padding: 20px 0%;
    width: 92%;
    position: relative;
  }
  
  /* fix blank or flashing items on carousel */
  .owl-carousel .item {
    position: relative;
    z-index: 100; 
    -webkit-backface-visibility: hidden; 
  }
  .owl-carousel .item img{
    height: 100px !important;
    width: 130px !important;
  }
   .fa-caret-right ,.fa-caret-left{
    color: white;
   }
  
  /* end fix */
  .owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
  }
  .item a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .img-name{
    color: white;
    
  }
  .owl-nav i {
    font-size: 52px;
  }
  
  .owl-nav .owl-prev {
    left: -30px;
  }
  
  .owl-nav .owl-next {
    right: -30px;
  }
.owl-dot{
    display: none;
}
/* caurosel */
.sec-2{
padding-top: 0px !important;
padding-bottom: 20px !important;
/* display: flex;
justify-content: center;
align-items: center; */
padding: 0 20px;
}
/* .sec-2>div:nth-child(0){
} */
.slider-sec{
    
    /* padding-top: 70px; */
}
/*============================================= inner sec 2=================================== */
/* body{
    background:#ccc;
  } */
  .main1 {
    font-family:Arial;
    width:100%;
    display:block;
    margin:0 auto;
    padding: 0;
    height: auto;
  }
  .slick-dots{
    display: none !important;
  }
  h3 {
     
      margin: 10px;
     
  }
  .fortuner{
    height: 320px;
    width: 350px;
    margin: auto;
  }
  .slider{
    height: 266px;
  }
  .action{
    display:block;
    margin:100px auto;
    width:100%;
    text-align:center;
  }
  .action a {
    display:inline-block;
    padding:5px 10px; 
    background:#f30;
    color:#fff;
    text-decoration:none;
  }
  .action a:hover{
    background:#000;
  }
.black-color{
    background-color: #000;
}
.gray-color{
    background-color: #1A191B;
}
.blue-color{
    background-color: #131C35;
}
.silver-color{
    background-color: #D7D8D7;
}
.brown-color{
    background-color: #361C19;
}
.white-color{
    background-color: white;
}
.color{
    height: 40px;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px black;
}
.text{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
}
.text span{
    color: black !important;
    font-size: 13px !important;
}
.slick-dotted{
    height: 110px;
    margin-top: 100px;
}
.sec-2-inner{
    height: auto;
    background-color: #3d3c3e;
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 9;
    margin-bottom: 15px;
    text-align: center;
}
.sec-2-inner p {
    font-size: 35px !important;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
}
.sec-2-inner span{
    color: red;
}
.sec-22{
    position: relative;
    height: auto;
    padding: 0px 5px;
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    top: 0px;
}
.opt{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
/* .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} */
.opt li{
    width: 33%;
    text-align: center;
    /* color: #1A191B; */
    color: black !important;
    font-weight: 400;
    font-size: 18px;
    margin-top: 23px;
    /* margin-bottom: -10px; */
    /* line-height: 50px; */
}
.opt li span{
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
    font-size: 18px !important;
    margin-top: 5px;
}
.start{
    width: 100%;
    height: auto;
    text-align: center;
    padding: 30px 0 10px 0;
}
.start p{
    font-size: 35px;
    color: #000;
    font-weight: 400;
    /* margin-bottom: -3px; */
}
.start span{
    font-size: 40px;
    font-weight: 600;
    color: #000;
}
.back-outer{
    height: fit-content;
    max-width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.back{
    height: auto;
    width: 150px;
    padding: 5px 17px;
    /* margin: auto; */
    border-radius: 25px;
    /* box-shadow: 0 0 3px black; */
    background-color: red;
    color: white;
    margin-top: 14px;
    text-align: center;
    &:hover{
    box-shadow: 0 0 5px black;
}
}
.content{
    /* margin: 10px 0px; */
    padding: 20px 40px;
    color: #000;
    text-align: center;
    font-size: 20px;
    
    &::after{
        content: ".";
    }
}
.content span{
    margin-bottom: 10px;
}
.inner-heading{
    width: 100%;
    display: block;
    padding: 10px 0px ;
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    /* letter-spacing: 3px; */
    text-align: center;

}
.int{
    margin-top: 100px;
}
.price_sec{
    height: fit-content;
    padding: 20px 0px 80px 0px;
}
.back1{
    height: auto;
    width: 300px;
    background-color: red;
    border-radius: 50px;
    /* margin: auto; */
    margin: 100px auto 10px auto !important;
    text-align: center;
}.back1 a{
    padding: 10px 20px;
    color: white;
    font-size: 20px;
    font-weight: 500;
    &:hover{
        color: white;
    }
}
/*==================
=========================== inner sec 2 ====================================*/
/* #slider45{
    background: #F7F5E6;
    height: 320px !important;
    margin: 0;
    padding: 0;
    width: 100% !important;
  } */
  .card{
    height: 410px;
    /* width: 50%; */
    /* margin: auto; */
    border-radius: 17px !important;
    overflow: hidden;
  }
  .card__title{
    
    background-color: red !important;
    color: white !important;
    height: fit-content !important;
    font-size: 30px;
    /* text-align: left; */
    font-weight: 400;
    /* display: block; */
    padding: 5px 12px;

  }
  .card__title span{
    font-size: 16px;
    display: block;
    margin-top: -10px;
  }
  .card__body{
    padding: 0px 30px;
    color: black;
    margin-top: -10px;
    /* font-size: 30px; */
  }
  .card__list{
    color: #000;
    padding: 0;
}
.card__list li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.425);
      padding: 0px 30px;
      font-size: 15px;
      text-align: left;
      /* border-top: 1px solid rgba(0, 0, 0, 0.414); */
      /* padding: 0; */
      /* margin: 0px 12px; */
  }
  button{
    background-color: transparent;
    color: white;
    &:hover{
    color: white;
    background-color: transparent;
        
    }
  }
  .card__button{
    background-color: red;
    color: white;
    width: fit-content;
    height: fit-content;
    margin: auto;
    padding: 8px 25px;
    border-radius: 30px;
    position: relative;
    z-index: 7;
    &:hover{
        background-color: red;
        color: white;
    }
  }
  .active2{
    
  }
.price{
    display: flex;
    justify-content: left;
    align-items: start;
    flex-direction: column;
    font-size: 32px;
    color: #000;
    font-weight: 600;
    /* gap: -40px; */
    margin-bottom: -10px;
}
.price__tag{
    text-align: left;
}
.price span{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: -25px;
}
  .slider45 {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .slide_viewer {
    height: 320px;
    overflow: hidden;
    position: relative;
  }
  
  .slide_group {
    height: 100%;
    position: relative;
    width: 100%;
  }
  
  .slide3 {
    display: none;
    height: 100%;
    position: absolute;
    width: 100%;
  }
  
  .slide:first-child {
    display: block;
  }
  

  
  .slide_buttons {
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    color: red;
  }
  
  a.slide_btn {
    color: #474544;
    font-size: 42px;
    margin: 0 0.175em;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .directional_nav p{
    color: red;
    text-align: center;
    /* padding: 0; */
    /* margin: 0; */
    /* height: 50px; */
    /* width:  fit-content;  */
    font-size: 45px;
    /* background-color: red; */

    font-family: monospace;
  }
  .slide_btn.active, .slide_btn:hover {
    color: red;
    cursor: pointer;
  }
  
  .directional_nav {
    height: 340px;
    margin: 0 auto;
    max-width: 940px;
    position: relative;
    top: -340px;
  }
  
  .previous_btn {
    bottom: 0;
    left: 100px;
    margin: auto;
    position: absolute;
    top: 0;
  }
  
  .next_btn {
    bottom: 0;
    margin: auto;
    position: absolute;
    right: 100px;
    top: 0;
  }
  
  .previous_btn, .next_btn {
    cursor: pointer;
    height: 65px;
    opacity: 0.5;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    width: 65px;
  }
  
  .previous_btn:hover, .next_btn:hover {
    opacity: 1;
  }
  
  @media only screen and (max-width: 767px) {
    .previous_btn {
      left: 50px;
    }
    .next_btn {
      right: 50px;
    }
  }
  /* ==================================interior=================================== */
  /* @keyframes heartbeat {
    0% {
        transform: scale(0);
   }
    25% {
        transform: scale(1.2);
   }
    50% {
        transform: scale(1);
   }
    75% {
        transform: scale(1.2);
   }
    100% {
        transform: scale(1);
   }
}

.slider-container {
    position: relative;
    margin: 0 auto;
    width: 800px;
    height: 600px;
}
.slider-container .bullet-container {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-container .bullet-container .bullet {
    margin-right: 14px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
}
.slider-container .bullet-container .bullet:last-child {
    margin-right: 0px;
}
.slider-container .bullet-container .bullet.active {
    opacity: 1;
}
.slider-container .slider-content {
    position: relative;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 60%;
    transform: translate(-50%, -50%);
}
.slider-container .slider-content .slider-single {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: z-index 0ms 250ms;
}
.slider-container .slider-content .slider-single .slider-single-image {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
    transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
    transform: scale(0);
    opacity: 0;
}
.slider-container .slider-content .slider-single .slider-single-download {
    position: absolute;
    display: block;
    right: -22px;
    bottom: 12px;
    padding: 15px;
    color: #333;
    background-color: #fdc84b;
    font-size: 18px;
    font-weight: 600;
    font-family: "karla";
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
    opacity: 0;
}
.slider-container .slider-content .slider-single .slider-single-download:hover, .slider-container .slider-content .slider-single .slider-single-download:focus {
    outline: none;
    text-decoration: none;
}
.slider-container .slider-content .slider-single .slider-single-title {
    display: block;
    float: left;
    margin: 16px 0 0 20px;
    font-size: 20px;
    font-family: "karla";
    font-weight: 400;
    color: #fff;
    transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
    opacity: 0;
}
.slider-container .slider-content .slider-single .slider-single-likes {
    display: block;
    float: right;
    margin: 16px 20px 0 0;
    transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
    opacity: 0;
}
.slider-container .slider-content .slider-single .slider-single-likes i {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    color: #ff6060;
    transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
    transform: scale(0);
}
.slider-container .slider-content .slider-single .slider-single-likes p {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    color: #fff;
}
.slider-container .slider-content .slider-single .slider-single-likes:hover, .slider-container .slider-content .slider-single .slider-single-likes:focus {
    outline: none;
    text-decoration: none;
}
.slider-container .slider-content .slider-single.preactivede .slider-single-image {
    transform: translateX(-50%) scale(0);
}
.slider-container .slider-content .slider-single.preactive {
    z-index: 1;
}
.slider-container .slider-content .slider-single.preactive .slider-single-image {
    opacity: 0.3;
    transform: translateX(-25%) scale(0.8);
}
.slider-container .slider-content .slider-single.preactive .slider-single-download {
    transform: translateX(-150px);
}
.slider-container .slider-content .slider-single.preactive .slider-single-title {
    transform: translateX(-150px);
}
.slider-container .slider-content .slider-single.preactive .slider-single-likes {
    transform: translateX(-150px);
}
.slider-container .slider-content .slider-single.proactive {
    z-index: 1;
}
.slider-container .slider-content .slider-single.proactive .slider-single-image {
    opacity: 0.3;
    transform: translateX(25%) scale(0.8);
}
.slider-container .slider-content .slider-single.proactive .slider-single-download {
    transform: translateX(150px);
}
.slider-container .slider-content .slider-single.proactive .slider-single-title {
    transform: translateX(150px);
}
.slider-container .slider-content .slider-single.proactive .slider-single-likes {
    transform: translateX(150px);
}
.slider-container .slider-content .slider-single.proactivede .slider-single-image {
    transform: translateX(50%) scale(0);
}
.slider-container .slider-content .slider-single.active {
    z-index: 2;
}
.slider-container .slider-content .slider-single.active .slider-single-image {
    opacity: 1;
    transform: translateX(0%) scale(1);
}
.slider-container .slider-content .slider-single.active .slider-single-download {
    opacity: 1;
    transition-delay: 100ms;
    transform: translateX(0px);
}
.slider-container .slider-content .slider-single.active .slider-single-title {
    opacity: 1;
    transition-delay: 200ms;
    transform: translateX(0px);
}
.slider-container .slider-content .slider-single.active .slider-single-likes {
    opacity: 1;
    transition-delay: 300ms;
    transform: translateX(0px);
}
.slider-container .slider-content .slider-single.active .slider-single-likes i {
    animation-name: heartbeat;
    animation-duration: 500ms;
    animation-delay: 900ms;
    animation-interation: 1;
    animation-fill-mode: forwards;
}
.slider-container .slider-left {
    position: absolute;
    z-index: 3;
    display: block;
    right: 85%;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    padding: 20px 15px;
    border-top: 2px solid #fdc84b;
    border-right: 2px solid #fdc84b;
    border-bottom: 2px solid #fdc84b;
    border-left: 2px solid #fdc84b;
    margin-right: -2px;
}
.slider-container .slider-right {
    position: absolute;
    z-index: 3;
    display: block;
    left: 85%;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    padding: 20px 15px;
    border-top: 2px solid #fdc84b;
    border-right: 2px solid #fdc84b;
    border-bottom: 2px solid #fdc84b;
    border-left: 2px solid #fdc84b;
    margin-left: -2px;
}
.slider-container .not-visible {
    display: none !important;
} */
main{
    height: 250px;
    width: 100%;
    padding: 0px 20px;
    position: relative;
    
}
main>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 0, 0, 0.457);
    font-size: 45px;
    /* background-color: #000; */
    position: relative;
    z-index: 5;
    height: inherit;
    width: 100%;
    font-family: monospace;
    &:hover{
        color: red;
        cursor: pointer;
    }
}

.cust_slide{
    height: 250px;
    width: 100%;
    /* margin-left: 10%; */
    /* margin-right: 10%; */
    padding: 0 12%;
    /* margin: 0 auto; */
    position: absolute;
    transition: 0.7s;
}
.cust_slide2{
    height: 250px;
    width: 100%;
    /* margin-left: 10%; */
    /* margin-right: 10%; */
    padding: 0 12%;
    /* margin: 0 auto; */
    position: absolute;
    transition: 0.7s;
}
.per{
    text-align: center;
    text-transform: uppercase;
    background-color: #222;
    color: white;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4px;
    padding: 0;
    padding: 20px 0;
}
.performance{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 10px 20px
}
.performance1{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
    font-size: 15px;
}
.performance1 h1{
    font-size: 23px !important;
}
.performance1 p{
    font-size: 16px !important;
    color: rgba(0, 0, 0, 0.676) !important;
}
.performance i{
    width: 10%;
    font-size: 25px;
    color: #000;
    background-color: rgba(128, 128, 128, 0.125);
    text-align: center;
    padding: 10px 0px;
    border: 0.5px solid rgba(128, 128, 128, 0.435);
    border-radius: 5px;
    transition: 0.5s;
    &:hover{
        color: white;
        background-color: #000;
    }
}
.performance div{
    width: 87%;
    /* padding: 13px 0; */
}
.performance div h1{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.performance div p{
    color: gray;
}
#large3{
    height: 270px;
}
@media(max-width:2025px) and (min-width:978px) {
.back-new{
    margin:-100px auto 10px auto !important;
}
    .new2{
    margin-top: 80px;
}
.slick-dotted{
    margin-top: 200px;
}
.new3{
    margin-top: 95px;
}
.update{
    padding: 20px 0px 0px 0px !important;
    /* margin: 0; */
}
}
/*================================== responsive  ==================================*/
@media(max-width:480px) and (min-width:320px) {
    .section-title{
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 17px;
    }
    .owl-carousel .item img {
        height: 60px !important;
        width: 70px !important;
    }
    .new{
        margin-top: -60px;
    }
    .main-img{
        height: 245px;
        overflow: hidden;
        width: 110%;
        background-color: #000;
    }
    .carousel-wrap{
        padding: 0;
    }
    .img-name{
        font-size: 12px;
    }
    .main-img img{
        height: inherit;
    }
    .main-new{
        height: fit-content;
    }
    .main1{
        width: 100%;
        padding: 0;
        margin: 0;
        height: 230px;
    }
    #chng{
       width: 100%;
       display: flex;
       justify-content: center;
       align-items: center;
    }
    .slick-slide img{
        height: 150px;
        width: inherit;
        margin: auto;
    }
    .slick-slide h3{
        /* width: 100%; */
    }
    .slider{
        height: 70px;
    }
    .color{
        height: 15px;
        width: 15px;
        border-radius: 3px;
        box-shadow: 0 0 2px black;
    }
    .text>span{
        font-size: 7px !important;
        margin-top: -7px;
    }
    .main1 h3{
        text-align: center;
    }
    .slider-sec{
        padding-top:20px;
    }
    .sec-2-inner p{
        font-size: 25px !important;
    }
    .sec-22{
        overflow: visible;
        height: auto;
    }
    .sec-2{
        padding: 0;
        margin: 20px 0 0px 0;
    }
    .opt li span {
        margin-bottom: 0;
        margin-top: -3px;
        line-height: 18px;
    }
    .opt li{
        font-size: 11px;
        margin: 5px 0;
        /* border-bottom: 1px solid #999; */
    }
    .opt {
        justify-content: center;
        align-items: center;
    }
    .opt li span{
        font-size: 10px !important;
    }
    .start{
            padding: 15px ;
    }
    .start p{
        font-size: 15px;
        margin-bottom: 4px;
    }
    .start span{
        font-size: 18px;
    }
    .back{
        margin-top: 10px;
        width: fit-content;
        padding: 3px 15px;
    }
    #large3{
        height: 220px;
    }
    .back a{
        font-size: 12px !important;
        padding: 0%;
        /* padding: 3px 5px; */
    }
    #icon-img>img{
        height: 40px !important;
        width: 40px !important;
    }
    #icon-img2>img{
        height: 40px !important;
        width: 55px !important;
    }
    .card2{
        flex: 0 0 94% !important;
        /* height: 400px; */
    }
    .card__body{
        padding: 10px 15px !important;
    }
    .price span {
        margin-bottom: -17px;
    }
    .content{
        font-size: 12px;
        padding: 15px 17px 0 17px;
        margin: 0;
        /* height: fit-content; */
    }
    .modal-content{
        height: 40vh !important;
        /* padding-top: 50%; */
        /* margin-top: 50%; */
        top: 25%;
    }
    .price_sec{
        padding: 0 !important;
    }
    .inner-heading{
        padding: 0%;
        font-size: 22px;
    }
     .slider45 , .slide_viewer{
        height: 280px;
        margin: auto;
    }
    .directional_nav{
        /* height: 300px; */
    }

    .card{
        height: 270px;
        border-radius: 15px !important;
    }
    .card__title{
        font-size: 15px;
        padding: 3px 6px;
    }
    .card__title span{
        font-size: 10px;
        margin-top: 0.2px;
    }
    .price{
        font-size: 15px;
        margin-top: -3px;
        /* line-height: 1px; */
    }
    .price__symbol{
        font-size: 11px !important;
        /* font-weight: 200; */
        /* margin-bottom: 0.1px !important; */
        padding-bottom: 5px !important;
    }
    .price__tag{
        font-size: 11px !important;
        margin-top: 3px;
        margin-bottom: 0;
    }
    .card__body{
        padding: 0 6px;
    }
    .card__list__item{
        font-size: 11px;
    }
    .card__list li{
        padding: 0px 15px;
        font-size: 11px;
        /* text-align: center; */
    }
    
.previous_btn2 i, .next_btn2 i, .previous_btn5 i, .next_btn5 i, .previous_btn6 i, .next_btn6 i {
    font-size: 15px !important;
    color: white;
    background-color: red;
    padding: 8px 11px !important;
    border-radius: 50%;
}
.next_btn2, .next_btn5, .next_btn6 {
    right: -6px !important;
    z-index: 15;
    background-color: transparent !important;
}
.previous_btn2, .previous_btn5, .previous_btn6 {
    left: -6px !important;
    z-index: 15;
    background-color: transparent !important;
}
.int{
    margin-top: 30px;
}
.card3, .card6{
    flex: 0 0 100% !important;
}
.card3 img, .card6 img{
    width: 278px !important;
    margin: auto;
}
.back1{
    margin: 30px auto 10px auto !important;
    width: fit-content;
}
.back1 a{
    font-size: 13px;
    padding: 10px 15px;
}
    .card__button {
        font-size: 11px;
        padding: 0px 10px;
        margin: 8px auto;
    }
    .slide_buttons{
        margin-top: -18px;
    }
    .slide_buttons a{
        font-size: 22px;
    }
    .directional_nav p{
        margin: auto;
        padding: 0;
    }
    main h6 img{
        height: 180px !important;
        padding: 0 !important;
    }
    main >div{
        height: 180px;
        padding: 0 !important;
        width: 100%;
        /* background-color: red; */
    }
    main{
        padding: 0 12px;
        height: 180px;
    }
    .cus_slide{
        padding: 0 !important;
    }
    main >div>buttton{
        background-color: red !important;
        color: white;
        padding: 2px 3px;
        border-radius: 5px;
        font-size: 30px;
        border: 1px solid rgba(255, 255, 255, 0.637);
    }
    .per{
        padding: 5px 0;
        font-size: 17px;
    }
    .performance i{
        width: 20%;
    
    }
    .performance{
        /* border: 1px solid gray; */
        /* border-bottom: 1px solid black; */
    }
    .performance div{
        width: 78%;
    }
    .performance i{
        font-size: 15px;
        padding: 9px;
        height: fit-content;
        width: fit-content;
    }
    .performance div h1{
        font-size: 10px !important;
    }
    .performance1 div h1{
        font-size: 10px !important;
    }
    .performance div p{
        font-size: 11px !important;
        margin-top: 5px;
        line-height: 18px;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.286); */
        
    }
    .performance1 div ul li{
        font-size: 11px !important;
        margin-top: 5px;
        line-height: 18px;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.286); */     
    }
    .performance1 div p{
        font-size: 11px;
        margin-top: 5px;
        line-height: 18px;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.286); */
        
    }
    .main{
        padding: 70px 0 30px 0;
    }
    .table{
        border: 1px solid #999;
        /* text-align: center; */
        margin: 30px 0;
    }
    .table tr{
        padding: 0 20px;
    }
    .second-footer .widget-area .widget p{
        text-align: center;
    }
}
@media (max-width:768px) and (min-width:768px){
    .slider-sec{
        margin-top: 0px !important;
        /* height: 200px; */
    }
    #chng img{
        width: 100%;
    }
    .main1{
        /* height: 150px; */
    }
    .sec-2{
        height: auto;
    }
    .slider{
        height: 150px !important;
    }
    .main-new{
        height: fit-content !important;
    }
    .slider-sec{
        height: fit-content;
    }
    .color{
        height: 25px;
        width: 25px;
        box-shadow: 0 0 5px black;
    }
    .text span{
        font-size: 12.2px !important;
    }
    #mob{
        font-weight: 500;
        color: #f2f2f2;
    }
    .sec-22{
        height: 400px;
        margin-top: -40px;
    }
    .item a img{
        height: 100px !important;
        width: 50px !important;
    }
    .slider{
        height: 180px;
    }
    .carousel-wrap{
        padding: 5px 0;
    }
    .sec-2-inner p{
        /* font-size: 25px !important; */
    }
    .opt li{
        font-size: 17px !important;
    }
    .opt li span{
        font-size: 15px !important;
        margin-top: 0;
    }
    .card__title{
        padding: 0px 13px;
    }
    main{
        padding: 0;
        height: 220px;
    }
    main .cust_slide{
        padding: 0 6% !important;
        width: 100%;
        height: 190px;
    }
    main div{
        height: 190px;
        padding: 0;
    }
    main div buttton{
        background-color: red;
        color: white;
        border: 1px solid white;
        padding: 5px;
        border-radius: 5px;
        font-size: 35px;
    }
    .cust_slide2{
        height: 190px;
    }
    .performance i{
        font-size: 17px;
    }
    .main-img video{
        top: -20px;
    }
    .main-img{
        height: 400px;
    }
    .slick-dotted{
        margin-top: 240px;
        height: 100px !important;
    }
    .main{
        height: 4060px;
    }
    .card2{
        flex: 0 0 47% !important;
    }
    .price span{
        margin-bottom: -35px;
    }
    .price_sec{
        padding:20px 0 40px 0 ;
    }
    .card3,.card6{
        flex:  0 0 50% !important;
    }
    .card3 img,.card6 img{
        width: 305px !important;
    }
    #icon-img img{
        height: 50px !important;
        width: 50px !important;
    }
    #icon-img2 img{
        height: 50px !important;
        width: 60px !important;
    }
    #large3{
        height: 220px;
    }
    
    

}
.main-new{
    height: fit-content;
}
/*================================== responsive  ==================================*/
  /* ==================================interior=================================== */
/*===============================body ends ========================================*/
.slider-container2 {
    width: 90%;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    /* overflow: hidden; */
    margin: auto;
}

.slider-wrapper2 {
    overflow: hidden;
  width: 100%;
  height: fit-content;
}

.slider22 {
    display: flex;
    transition: transform 0.5s ease;
}

.card2 {
    flex: 0 0 33.33%; /* Show 3 cards at a time */
    /* background-color: #ffffff; */
    /* border: 1px solid #ddd; */
    height: fit-content;
    padding: 20px;
    margin: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.previous_btn2, .next_btn2 ,.previous_btn5, .next_btn5,.previous_btn6, .next_btn6 {
    /* background-color: #333; */
    /* color: white; */
    border: none;
    /* padding: 10px; */
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.previous_btn2 i, .next_btn2 i ,.previous_btn5 i, .next_btn5 i,.previous_btn6 i, .next_btn6 i{
    font-size: 22px;

    color: white;
    background-color: red;
    padding: 12px 15px;
    border-radius: 50%;
}
.previous_btn2 ,.previous_btn5,.previous_btn6 {
    left: -20px;
    z-index: 15;
    background-color: transparent !important;
 
}

.next_btn2,  .next_btn5,.next_btn6{
    right: -20px;
    z-index: 15;
    background-color: transparent !important;
}
/* ------------------------------------------------------------------------------------------------- */


.slider-container5 {
    width: 80%;
    max-width: 900px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-wrapper5 ,.slider-wrapper6 {
    overflow: hidden;
    width: 100%;
    height: fit-content;
}

.slider5 ,.slider6{
    display: flex;
    transition: transform 0.5s ease;
    height: fit-content;
}

.card3,.card6 {
    flex: 0 0 33.33%; 
    padding: 10px;
    cursor: pointer;
    margin: auto;
    overflow: hidden;
    /* border-radius: 17px 25px 25px 17px; */
}

.card3 img,.card6 img {
    width: 350px;
    height: 220px;
    display: block;
    border-radius:17px;
}


.previous_btn5, .next_btn5,.previous_btn6, .next_btn6 {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.previous_btn5,.previous_btn6 {
    left: -40px;
}

.next_btn5 ,.next_btn6{
    right: -40px;
}

/* Modal Styles */
.modal3 {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh !important;
    /* overflow: auto; */
    background-color: rgba(0, 0, 0, 0.9);
    /* border: 3px solid white; */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    height: 85vh
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    /* position: relative;
    z-index: 1001; */
}

/* ----------------------------------------------------------------------------------------------------- */