@charset "UTF-8";
:root {
  --theme-color: #C51F67;
  --title-color: #021D35;
  --body-color: #55585B;
  --smoke-color: #f1f3f4;
  --smoke-two: #f8f8f8;
  --white-color: #ffffff;
  --black-color: #000000;
  --border-color: rgba(0, 0, 0, 0.1);
  --title-font: "Rajdhani", sans-serif;
  --body-font: "Poppins", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
}

html::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

html::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--black-color);
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p {
  margin: 0 0 15px 0;
  color: var(--body-color);
  line-height: 2;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 36px;
}

.h3,
h3 {
  font-size: 30px;
}

.h4,
h4 {
  font-size: 24px;
}

.h5,
h5 {
  font-size: 20px;
}

.h6,
h6 {
  font-size: 16px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 42px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
  .h3,
  h3 {
    font-size: 24px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }
  .h5 {
    font-size: 18px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: 30px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
}

.text-theme {
  color: var(--theme-color);
}

.bg-theme {
  background-color: var(--theme-color);
}

.bg-smoke {
  background-color: var(--smoke-color);
}

.as-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.as-menu-wrapper .as-menu-toggle:not(.hamburger-btn) img {
  max-width: 19px;
  top: -1px;
  position: relative;
}

.as-menu-wrapper .mobile-logo {
  padding-bottom: 40px;
  padding-top: 37px;
  display: block;
  background-color: var(--title-color);
  text-align: center;
}

.as-menu-wrapper .as-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.as-menu-wrapper .as-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.as-menu-wrapper .as-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--black-color);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -1000px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.as-menu-wrapper.as-body-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.as-menu-wrapper.as-body-visible .as-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.as-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.as-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.as-mobile-menu ul li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  list-style-type: none;
}

.as-mobile-menu ul li li:first-child {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}

.as-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white-color);
}

.as-mobile-menu ul li a:before {
 
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}

.as-mobile-menu ul li.as-active > a {
  color: var(--theme-color);
}

.as-mobile-menu ul li.as-active > a:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.as-mobile-menu ul li ul li {
  padding-left: 20px;
}

.as-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.as-mobile-menu ul .as-item-has-children > a:after {
  content: "";
  font-family: var(--icon-font);
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(255, 126, 2, 0.3);
  border-radius: 50%;
}

.as-mobile-menu ul .as-item-has-children.as-active > a:after {
  content: "";
}

.as-mobile-menu > ul {
  padding: 0 40px;
}

.as-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.as-menu-toggle:not(.hamburger-btn) {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 50%;
}

.as-menu-toggle:not(.hamburger-btn) img {
  max-width: 25px;
  top: 3px;
  position: relative;
}

.as-menu-toggle:not(.hamburger-btn).style2 {
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 28px;
  margin-left: 15px;
}

@media (max-width: 400px) {
  .as-menu-wrapper .as-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .as-mobile-menu > ul {
    padding: 0 20px;
  }
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: #fff;
}

.preloader .as-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 10px auto;
}

.loader {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  -webkit-perspective: 1000px;
          perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: var(--theme-color);
}

.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -webkit-transform: rotateX(45deg);
          transform: rotateX(45deg);
  -webkit-animation: 1s spinLoader linear infinite;
          animation: 1s spinLoader linear infinite;
}

.loader:after {
  color: var(--theme-color);
  -webkit-transform: rotateY(45deg);
          transform: rotateY(45deg);
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@-webkit-keyframes rotateccw {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes rotateccw {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@-webkit-keyframes spinLoader {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}

@keyframes spinLoader {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}

/*------------------- 3.2. Buttons -------------------*/
.as-btn {
  border: none;
  vertical-align: middle;
  color: #fff;
  background-color: transparent;
  border-radius: 5px;
  line-height: 1;
  padding: 14px 23px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.as-btn1 {
  border: none;
  vertical-align: middle;
  color: #fff;
  background-color: black;
  border-radius: 5px;
  line-height: 1;
  padding: 14px 23px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.as-btn .btn-bg,
.as-btn .btn-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.as-btn .btn-bg {
  background-color: var(--theme-color);
  border: 2px solid transparent;
  border-radius: inherit;
  z-index: -2;
}

.as-btn .btn-shape {
  background-color: var(--title-color);
  height: 50%;
  width: 0;
  z-index: -1;
}

.as-btn1 .btn-shape {
  background-color: var(--title-color);
  height: 50%;
  width: 0;
  z-index: -1;
}

.as-btn .btn-shape:last-of-type, .as-btn .btn-shape:last-child {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.as-btn1 .btn-shape:last-of-type, .as-btn .btn-shape:last-child {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

.as-btn i {
  margin-left: 10px;
}

.as-btn:hover, .as-btn.active {
  background-color: transparent;
  color: #fff;
}

.as-btn1:hover, .as-btn.active {
  background-color: white;
  color: #000;
}

.as-btn:hover .btn-shape, .as-btn.active .btn-shape {
  width: 100%;
}

.as-btn.style2 {
  color: var(--title-color);
  padding: 14.5px 30px;
}

.as-btn.style2 .btn-bg {
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(4, 9, 45, 0.1);
}

.as-btn.style2 .btn-shape {
  background-color: var(--theme-color);
}

.as-btn.style2:hover {
  color: #fff;
}

.as-btn-group {
  margin: 0 -7px -15px -7px;
}

.as-btn-group .as-btn {
  margin: 0 7px 15px 7px;
  margin-bottom: 15px;
}

.scrollToTop {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}

.scrollToTop i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  font-style: normal;
}

.scrollToTop:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: white;
  border-radius: inherit;
  z-index: 1;
}

.scrollToTop:focus i,
.scrollToTop:hover i {
  background-color: var(--title-color);
  color: var(--white-color);
}

.scrollToTop.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .scrollToTop {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }
  .scrollToTop.show {
    bottom: 15px;
  }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 96;
}

.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

/* Small devices */
@media (max-width: 767px) {
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}

.space,
.space-top {
  padding-top: 70px;
}

.space,
.space-bottom {
  padding-bottom: 130px;
}

.space-extra,
.space-extra-top {
  padding-top: 100px;
}

.space-extra,
.space-extra-bottom {
  padding-bottom: 100px;
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: 40px;
  }
  .space,
  .space-bottom {
    padding-bottom: 60px;
  }
  .space-extra,
  .space-extra-top {
    padding-top: 30px;
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: 30px;
  }
  .space-top-md-none {
    padding-top: 0;
  }
}

.as-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 100px;
  padding-right: 100px;
  z-index: 2;
}

.as-header.show {
  background-color: var(--black-color);
  position: fixed;
  z-index: 999;
}

.main-menu {
  display: block;
}

.main-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.main-menu li {
  display: inline-block;
  margin: 0 30px;
  padding: 0;
}

.main-menu a {
  font-size: 18px;
  font-family: var(--title-font);
  color: var(--white-color);
  font-weight: 700;
  display: inline-block;
  padding: 30px 0;
}

.hero-title {
  font-size: 64px;
  line-height: 1.2;
  text-transform: uppercase;
}

#homeSlide .slick-list {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -15px;
  margin-top: -15px;
}

.hero-logo {
  margin-bottom: 30px;
}

.hero-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.as-hero {
  background-size: cover;
  position: relative;
  padding-top: 310px;
  padding-bottom: 270px;
}

.hero-left-img {
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 100%;
}

.hero-right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
}

.as-container {
  max-width: 1704px;
}

.sec-title {
  font-size: 54px;
  margin-top: -0.2em;
}

.sec-text {
  margin-bottom: 30px;
}

.thumb-box {
  text-align: center;
  position: relative;
  margin-bottom: 25px;
}

.thumb-box .new-label {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  background-color: red;
  color: var(--white-color);
  line-height: 1;
  padding: 10px 20px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  margin: -10px -10px 0 0;
  display: inline-block;
}

.thumb-box .thumb-img {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.04);
}

.thumb-box .thumb-img img {
  width: 100%;
}

.thumb-box .thumb-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.thumb-box .thumb-link {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}

.thumb-box .thumb-link .btn-shape {
  top: -2px;
}

.thumb-box .thumb-link .btn-shape {
  height: calc(50% + 4px);
}

.thumb-box .thumb-link .btn-shape:last-of-type, .thumb-box .thumb-link .btn-shape:last-child {
  top: auto;
  bottom: -2px;
}

.thumb-box .thumb-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  background-color: var(--smoke-color);
  padding: 10px;
  margin-top: 0;
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.thumb-box .thumb-title:hover {
  color: var(--white-color);
  background-color: var(--title-color);
}

.thumb-box .thumb-title a {
  color: inherit;
}

.thumb-box .thumb-title a:hover {
  color: var(--white-color);
}

.thumb-box:hover .thumb-link,
.thumb-box:hover .thumb-img:before {
  opacity: 1;
  visibility: visible;
}

.home-pages-area {
  border-bottom: 1px solid #eaeaea;
}

.as-icon-box {
  display: inline-block;
  margin-left: 20px;
}

.icon-btn {
  height: 43px;
  width: 43px;
  line-height: 43px;
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  font-size: 18px;
  text-align: center;
  margin-top: 0px;
  border-radius: 5px;
}

.icon-btn.arrow-right {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 10px;
}

.icon-btn:hover {
  background-color: var(--title-color);
  box-shadow: 0px 20px 40px 0px rgba(34, 34, 34, 0.08);
  color: #fff;
}

#homeSlide .thumb-box {
  margin-left: 15px;
  margin-right: 15px;
}

.filter-menu {
  margin: 20px 0 60px 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filter-menu .as-btn {
  border-radius: 5px;
  color: var(--white-color);
}

.filter-menu .as-btn:before,
.filter-menu .as-btn:after {
  display: none;
}

.filter-menu .as-btn:hover,
.filter-menu .as-btn.active {
  background-color: var(--title-color);
  color: var(--white-color);
}

.feature-box {
  text-align: center;
  margin-bottom: 40px;
}

.feature-box_icon {
  width: 160px;
  height: 160px;
  line-height: 160px;
  box-shadow: 0px 13px 35px 0px rgba(56, 62, 75, 0.08);
  background-color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 5px;
}

.feature-box_icon img {
  max-width: 80px;
}

.feature-box_title {
  margin-bottom: 0;
}

/* Extra large devices */
@media (max-width: 1600px) {
  .hero-right-img {
    max-width: 400px;
  }
  .hero-left-img {
    max-width: 350px;
    top: 16%;
    bottom: auto;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-right-img,
  .hero-left-img {
    max-width: 300px;
  }
  .hero-title {
    font-size: 60px;
  }
  .as-header {
    padding-left: 0;
    padding-right: 0;
  }
  .main-menu li {
    margin: 0 20px;
  }
  .main-menu a {
    font-size: 16px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 46px;
  }
  .as-hero {
    padding-top: 145px;
    padding-bottom: 100px;
  }
  .filter-menu .as-btn {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 120px;
  }
  .sec-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .as-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .sec-title {
    font-size: 30px;
  }
  .hero-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .hero-btns {
    margin-top: 15px;
  }
}

@media (max-width: 575px) {
  .filter-menu {
    gap: 5px;
  }
  .filter-menu .as-btn {
    min-width: auto;
  }
}

/*# sourceMappingURL=style.css.map */

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Styles */
.rammob
{
 width: 50%
}
}

/* Desktops and laptops ----------- */
@media only screen  and (min-width : 1224px) {
/* Styles */
.bharathan,.ar
{
	display:none!important;
}
}
/* Large screens ----------- */
@media only screen  and (min-width : 1824px) {
/* Styles */
.bharathan
{
	display:none;
}
}