@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
  color: #fff;
}

::-moz-selection {
  color: #fff;
  background: #1a1a1a;
}

::selection {
  color: #fff;
  background: #1a1a1a;
}

body {
  width: 100%;
  overflow-x: hidden !important;
  background-color: #f0ece9;
  color: #1a1a1a;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: #ed1c24;
}

@media (max-width: 900px) {
  body::-webkit-scrollbar {
    width: 0px;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
}

input[type=checkbox]::before {
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
}

input[type=checkbox]:checked::before {
  visibility: visible;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.js-scroll {
  opacity: 0;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-left {
  animation: fadeleft 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-right {
  animation: faderight 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-top {
  animation: fadetop 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-btm {
  animation: fadebtm 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fadeleft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadetop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadebtm {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.opacity {
  opacity: 0;
}

.opacity-ani {
  opacity: 0;
  animation: opacityani 800ms ease 500ms forwards;
}

@keyframes opacityani {
  100% {
    opacity: 1;
  }
}
.box {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.box2 {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
  transition: 0.3s all ease;
  background-color: #1a1a1a;
}

nav.color {
  background-color: #1a1a1a;
}

.goTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}
.goTop span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #1a1a1a;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.251);
  cursor: pointer;
  transition: 0.2s;
}
.goTop span i {
  color: #fff;
  font-size: 1.5em;
}
.goTop span:hover {
  background-color: #ed1c24;
}
.goTop span:hover i {
  color: #1a1a1a;
}

.f-s {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.links {
  display: flex;
  height: 90px;
  z-index: 4;
}

.mainLinks {
  display: flex;
  list-style: none;
  gap: 25px;
}

.link {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1em;
  color: #fff;
  text-transform: capitalize;
}
.link img {
  width: 7px;
}

.link {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 90px;
  gap: 5px;
  transition: 0.2s;
  font-weight: 600;
}
.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  bottom: 25px;
  left: -101%;
  background-color: #ed1c24;
  transition: 0.2s all ease;
}

.link.active::after {
  left: 0;
}

.menu {
  display: none;
  flex-direction: column;
  position: relative;
  height: 80px;
  width: 35px;
  border: none;
  outline: none;
  background-color: transparent;
}
.menu span {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s;
}
.menu span:nth-child(1) {
  top: 28px;
}
.menu span:nth-child(2) {
  top: 40px;
}
.menu span:nth-child(3) {
  top: 52px;
}

.activeMenu .box .menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 40px;
  background-color: red;
}

.activeMenu .box .menu span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.activeMenu .box .menu span:nth-child(3) {
  transform: rotate(-45deg);
  background-color: red;
  top: 40px;
}

.ls {
  display: flex;
  gap: 20px;
}
.ls .mLinks {
  display: none;
}

.last .mLinks {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 901px) {
  .menu {
    display: flex;
  }
  .last .mLinks {
    display: none;
  }
  .ls {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: scroll;
    top: 80px;
    left: -100%;
    gap: 0;
    transition: 0.4s;
    background-color: #1a1a1a;
    padding: 0 0 70px 0;
  }
  .ls .mLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5%;
  }
  .ls::-webkit-scrollbar {
    width: 0px;
  }
  .mainLinks {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
  }
  .link {
    margin-left: 5%;
  }
  .link {
    height: 40px;
  }
  .link::after {
    bottom: 0;
  }
  .activeMenu .f-s .links .ls {
    left: 0;
  }
  .layer {
    display: none;
  }
  .mLinks {
    gap: 20px;
  }
  .mLinks .link {
    margin-left: 0;
  }
}
.home {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
}
.home .img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .homeimgs {
  width: 100%;
  position: relative;
  height: 100vh;
}
.home .homeimgs img {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.svg {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100vw;
  height: auto;
}

.homeImgs {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 700px) {
  .home,
  .homeimgs {
    height: 70vh;
  }
}
.m1 {
  position: relative;
  margin-right: auto;
  width: 33.3333333333%;
  height: 100%;
  z-index: 1;
  transition: 0.3s all ease;
}
.m1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.m1.active {
  width: 50%;
}

.m2 {
  position: relative;
  margin-left: auto;
  width: 33.3333333333%;
  height: 100%;
  z-index: 1;
  transition: 0.3s all ease;
}
.m2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.m2.active2 {
  width: 50%;
}

.shadow {
  position: relative;
  transition: 0.3s all ease;
}
.shadow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  transition: 0.3s all ease;
}
.shadow:hover::after {
  background-color: transparent;
}

.imgs {
  position: absolute;
  display: flex;
  justify-content: center;
  height: 100vh;
  z-index: 2;
  transition: 400ms all ease;
  width: 70%;
}
.imgs .shadow {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: skew(-10deg);
  width: 33.3333333333%;
  position: relative;
  overflow: hidden;
}
.imgs .shadow:hover {
  width: 66.6666666667%;
}
.imgs .shadow img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.imgs.active {
  transform: translateX(23%);
}

.imgs.active2 {
  transform: translateX(-23%);
}

.ht {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.readM {
  padding: 5px 25px;
  background-color: #1a1a1a;
  border-radius: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  gap: 5px;
  position: absolute;
  bottom: 40px;
  font-size: 0.9em;
  text-transform: uppercase;
  transition: 0.3s all ease;
}
.readM i {
  transition: 0.3s all ease;
}
.readM:hover {
  background-color: #ed1c24;
  color: #1a1a1a;
}
.readM:hover i {
  color: #1a1a1a;
}

.mySwiper {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.mySwiper .swiper-slide {
  margin: 0 auto;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  position: relative;
  border-radius: 5px;
  outline: 2px solid #ed1c24;
  background-color: #fff;
}
.client img {
  position: absolute;
  width: 85%;
  height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pb50 {
  padding-bottom: 50px;
}

@media (max-width: 360px) {
  .client {
    margin: 0 auto;
  }
}
.counter {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.counterCard {
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  position: relative;
  background-color: #1a1a1a;
  transition: 0.3s all ease;
}
.counterCard::after {
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  background-color: transparent;
  border-radius: 5px;
  z-index: -1;
  transition: 0.3s all ease;
}
.counterCard:hover {
  scale: 1.05;
}
.counterCard:hover::after {
  background-color: rgba(28, 28, 28, 0.5);
}
.counterCard h1 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 3.5em;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 600;
  color: #ed1c24;
  line-height: 1.25;
  z-index: 2;
}
.counterCard h1::after {
  content: "+";
  font-size: 0.5em;
}
.counterCard span {
  font-size: 1.2em;
  white-space: nowrap;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}
.counterCard i {
  position: absolute;
  z-index: 1;
  font-size: 10em;
  color: #ed1c24;
  opacity: 0.1;
}

.counterInner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

@media (max-width: 1200px) {
  .counter {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .counterCard {
    height: 170px;
    width: calc(50% - 10px);
  }
  .counterCard h1 {
    font-size: 2.5em;
  }
  .counterCard span {
    font-size: 1em;
  }
  .counterCard i {
    font-size: 6em;
  }
}
@media (max-width: 350px) {
  .counterCard {
    height: 150px;
  }
  .counterCard h1 {
    font-size: 2em;
  }
  .counterCard span {
    font-size: 0.9em;
  }
  .counterCard i {
    font-size: 5em;
  }
}
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background-color: #1a1a1a;
  height: auto;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footerLogo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerLogo img {
  width: 250px;
}
.footerLogo p {
  padding-top: 20px;
  max-width: 400px;
}

.footerLinkGroup {
  display: flex;
  gap: 100px;
}

.linkGroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.linkGroup h2 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}
.linkGroup h2::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #ed1c24;
}
.linkGroup ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.linkGroup ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s all ease;
  font-weight: 400;
}
.linkGroup ul li a img {
  width: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.linkGroup ul li a:hover {
  color: #ed1c24;
}

.cont {
  width: 290px;
}
.cont ul li:nth-child(1) a {
  line-height: 1.5;
}
.cont ul li a {
  line-height: 2;
}
.cont ul li a img {
  width: 20px;
}

.drop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.drop .dropMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  height: 43px;
  padding: 0 20px;
  position: absolute;
  top: calc(100% + 20px);
  background-color: #ed1c24;
  border-radius: 5px;
}
.drop .dropMenu a {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
}
.drop .dropMenu a .langu {
  width: 20px;
  margin-top: 3px;
}
.drop a {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
}
.drop a .langu {
  width: 20px;
}
.drop a .drop-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6px;
  transition: 0.2s;
  transform: translateY(1px);
}

.drop.active .dropMenu {
  display: flex;
}
.drop.active .drop-icon {
  transform: rotate(90deg);
}

.media {
  display: flex;
  gap: 10px;
  transform: translateY(-10px);
}
.media a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-color: #fff;
  transition: 200ms all ease;
}
.media a i {
  font-size: 1.3em;
  color: #1a1a1a;
  transition: 200ms all ease;
}
.media a:hover {
  background-color: #ed1c24;
}
.media a:hover i {
  color: #fff;
}

@media (max-width: 1001px) {
  .footer {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 601px) {
  .footerLinkGroup {
    flex-direction: column;
    gap: 30px;
  }
  .linkGroup {
    width: 100%;
  }
  .cont {
    width: 100%;
  }
}
@media (max-width: 421px) {
  .footerLogo img {
    width: 200px;
  }
  .footerLogo .aboutText {
    width: 100%;
  }
}
@media (max-width: 551px) {
  .circle {
    display: none;
  }
}
.homePlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  bottom: 100px;
  z-index: 5;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: 0.3s all ease;
}
.homePlay i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3em;
}
.homePlay::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: -1;
  transition: 0.2s all ease;
}
.homePlay:hover::after {
  background-color: rgba(28, 28, 28, 0.5);
}
.homePlay .fa-pause {
  display: none;
}

.preventPlay {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.hxt {
  position: absolute;
  display: flex;
  justify-content: left;
  z-index: 3;
  transition: 0.4s all cubic-bezier(0.215, 0.61, 0.355, 1);
}

.homeText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 550px;
}
.homeText h1 {
  color: #fff;
  font-size: 3em;
  line-height: 1;
  text-transform: uppercase;
}
.homeText h1 span {
  font-size: 1.7em;
}
.homeText a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  text-transform: uppercase;
  height: 40px;
  border-radius: 7px;
  color: #fff;
  transition: 0.3s all ease;
  background-color: #1a1a1a;
  margin-top: 10px;
}
.homeText a::after {
  border-radius: 7px;
  content: "";
  position: absolute;
  width: 150px;
  height: 50px;
  z-index: -1;
  transition: 0.2s all ease;
}
.homeText a:hover::after {
  background-color: rgba(28, 28, 28, 0.5);
}

.pause .homePlay {
  bottom: 20px;
}
.pause .homePlay .fa-pause {
  display: block;
}
.pause .homePlay .fa-play {
  display: none;
}
.pause .readM {
  bottom: -100%;
}
.pause .hxt {
  transform: translateX(-200%);
}
.pause .preventPlay {
  display: none;
}

@media (max-width: 550px) {
  .homeText h1 {
    font-size: 2em;
  }
}
.p50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.swiper {
  width: 100%;
}

.aboutCont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.aboutCont img {
  width: 300px;
  border-radius: 5px;
}

.aboutText {
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.aboutText h1 {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 7px;
  color: #1a1a1a;
}
.aboutText h1::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #ed1c24;
}
.aboutText p {
  color: #1a1a1a;
}
.aboutText a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 7px;
  padding: 0 30px;
  transition: 0.3s all ease;
  background-color: #ed1c24;
}
.aboutText a:hover {
  background-color: #1a1a1a;
}

.w100 {
  width: 100%;
}

.pt50 {
  padding-top: 50px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  background-color: #1a1a1a;
  z-index: 2;
}
header h1 {
  color: #fff;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: capitalize;
}

.pt0 {
  padding-top: 0;
}

.mySwiper2 .swiper-slide img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ed1c24;
  border-radius: 9px;
}
.mySwiper2 .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  transition: 0.2s;
}
.mySwiper2 .swiper-pagination-bullet-active {
  background-color: #ed1c24;
}

.asw {
  width: 500px;
}
.asw .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.asw .swiper-slide img {
  width: 100%;
  margin: 0 auto;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ed1c24;
  border-radius: 9px;
}

@media (max-width: 1200px) {
  .aboutCont {
    flex-direction: column;
  }
  .asw {
    width: 100%;
  }
}
.clients {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.clientsInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
}
.clientsInner .swiper-button-prev {
  top: 40%;
  color: #ed1c24;
  left: -20px;
}
.clientsInner .swiper-button-next {
  top: 40%;
  color: #ed1c24;
  right: -20px;
}

@media (max-width: 1250px) {
  .pl20 {
    padding-left: 0 !important;
  }
  .clientsInner .swiper-button-prev {
    display: none;
  }
  .clientsInner .swiper-button-next {
    display: none;
  }
}
.viw {
  padding: 0 60px;
  background-color: #ed1c24;
  border-radius: 10px;
  height: 40px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  gap: 5px;
  font-size: 1em;
  text-transform: capitalize;
  transition: 0.3s all ease;
  font-weight: 500;
}
.viw i {
  transition: 0.3s all ease;
}
.viw:hover {
  background-color: #1a1a1a;
  color: #fff;
}

@media (max-width: 800px) {
  .aboutText {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .mySwiper2 .swiper-slide img {
    height: 200px;
  }
  .aboutText h1 {
    font-size: 1.7em;
  }
  .aboutText p {
    font-size: 0.9em;
  }
}
@media (max-width: 370px) {
  .aboutText h1 {
    font-size: 1.5em;
  }
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 40;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  animation: hide 400ms ease 3000ms forwards;
}
.loader img:nth-child(2) {
  width: 80px;
  margin-left: 25px;
}

@keyframes hide {
  100% {
    top: 100%;
  }
}
.loaderLogo {
  opacity: 0;
  animation: loader 1.5s linear 0s infinite forwards;
}
.loaderLogo img {
  width: 170px;
}

@keyframes loader {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ps {
  padding: 50px 0 50px 20px;
}

.pw0 {
  padding: 0 0 50px 20px;
}

.mySwiper3 {
  padding: 20px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.product {
  display: flex;
  align-items: flex-start;
  width: 350px;
  position: relative;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  gap: 7px;
}
@media (max-width: 600px) {
  .product {
    width: 100%;
  }
}
.product a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 7px;
  padding: 0 30px;
  transition: 0.3s all ease;
  background-color: #ed1c24;
}
.product a:hover {
  background-color: #1a1a1a;
}

@media (max-width: 360px) {
  .mySwiper3 .product {
    margin: 0 auto;
  }
}
.pImg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2509803922);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.pImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all ease;
}
.pImg img:hover {
  width: 110%;
  height: 110%;
}

.catNew {
  width: 270px;
}
@media (max-width: 600px) {
  .catNew {
    width: 100%;
  }
}
.catNew .pImg {
  height: 330px;
}

.ptext {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.ptext p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  color: #1a1a1a;
}
.ptext span {
    padding: 0 10px;
    height: 25px;
    font-size: 0.7em;
  color: #fff;
  background-color: #ed1c24;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
}
.ptext .capitalize {
  text-transform: capitalize;
}

.price {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}
.price span {
  color: #ed1c24;
  font-weight: 600;
}

.co {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  border-radius: 0 0 7px 7px;
  width: 40px;
  height: 40px;
  top: 6px;
  left: 6px;
}
.co img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  position: relative;
  flex-direction: column;
  gap: 10px;
  border-bottom: 5px solid #ed1c24;
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.4941176471);
}
.header img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header h1 {
  color: #fff;
  z-index: 2;
  font-size: 4em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadetop 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 500ms forwards;
}
.header h6 {
  z-index: 3;
  font-size: 1.2em;
  font-weight: 500;
  text-transform: capitalize;
  white-space: nowrap;
  opacity: 0;
  animation: fadebtm 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 700ms forwards;
}
.header h6 span {
  color: #ed1c24;
  font-weight: 600;
}

.w100 {
  width: 100%;
}

@media (max-width: 550px) {
  .header {
    height: 250px;
  }
  .header h1 {
    font-size: 2em;
  }
  .header h6 {
    font-size: 0.8em;
  }
}
.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 0 70px 0;
  flex-direction: column;
  gap: 30px;
}

.pas {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.location {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.location iframe {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  margin-top: 20px;
}
.location a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #1a1a1a;
}

.coLinks li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1a1a1a;
}
.coLinks li span {
  font-size: 1.3em;
  white-space: nowrap;
}
.coLinks li a {
  color: #ed1c24 !important;
}

@media (max-width: 1071px) {
  .contact {
    gap: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact .location {
    width: 100%;
  }
  .contact .form2 {
    width: 100%;
  }
}
@media (max-width: 601px) {
  .form {
    width: 100%;
    padding: 0;
  }
  .location {
    width: 100%;
  }
}
@media (max-width: 551px) {
  .coLinks li {
    align-items: flex-start;
    flex-direction: column;
  }
  .location iframe {
    height: 250px;
  }
  .du label {
    padding-left: 0;
  }
  .du label::before {
    display: none;
  }
  .du .check label {
    padding-left: 10px;
  }
}
.form2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}
.form2 form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form2 header {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form2 header h1 {
  color: #fff;
  font-size: 1.7em;
  text-transform: uppercase;
}
.form2 header span {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #fff;
  font-weight: 300;
}
.form2 header .hcen {
  text-align: center;
  padding-bottom: 10px;
}

.w600 {
  max-width: 600px;
}

@media (max-width: 501px) {
  .file #fileData {
    width: 60%;
  }
  .forms {
    padding: 50px 10px;
  }
  .form,
  .dataCard {
    width: 100%;
    padding: 30px 20px;
  }
  .bac {
    width: calc(100% - 40px);
  }
}
.input {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  position: relative;
}
.input label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
  text-transform: uppercase;
  color: #1a1a1a;
  font-size: 1.1em;
  border-left: 6px solid #ed1c24;
  font-weight: 500;
}
.input input[type=text],
.input input[type=number],
.input .in {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #1a1a1a;
  font-size: 1em;
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  background-color: rgba(237, 28, 36, 0.0784313725);
  border-left: 6px solid #ed1c24;
  border-radius: 0;
}
.input textarea {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  height: 170px;
  padding: 10px;
  resize: none;
  background-color: rgba(237, 28, 36, 0.0784313725);
  color: #1a1a1a;
  font-size: 1.1em;
  border-left: 6px solid #ed1c24;
  border-radius: 0;
}
.input .send .login {
  margin: 0 auto;
}

.input.ta span {
  height: 150px;
}

.checks {
  display: flex;
  gap: 20px;
}

.check {
  display: flex;
  align-items: center;
}
.check label::before {
  display: none;
}

.sendBtn button {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #ed1c24;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s all ease;
}
.sendBtn button:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.paginationCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  padding-left: 20px;
  position: relative;
  direction: ltr;
  background-color: #1a1a1a;
  margin-top: 20px;
}

.page {
  font-size: 0.9em;
  color: #fff;
}
.page span {
  color: #ed1c24;
}

@media (max-width: 471px) {
  .paginationCont {
    justify-content: center;
    padding: 0 20px;
  }
  .page {
    position: absolute;
    top: -27px;
    left: 5px;
  }
}
.paginations {
  display: flex;
  justify-content: center;
  align-items: center;
  direction: ltr;
}
.paginations button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ed1c24;
  border-radius: 50%;
  margin: 0 10px;
}
.paginations button img {
  width: 7px;
}

.spans {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0 10px;
}
.spans li:nth-child(1) .page-link {
  background-color: #fff;
}
.spans li:nth-child(1) .page-link.active {
  background-color: #fff;
}
.spans li:nth-child(1) .page-link.active:hover {
  background-color: #c7c7c8;
}
.spans li:last-child .page-link {
  background-color: #fff;
}
.spans li:last-child .page-link.active {
  background-color: #fff;
}
.spans li:last-child .page-link.active:hover {
  background-color: #c7c7c8;
}
.spans li .page-link.active {
  background-color: #ed1c24;
  color: #fff;
}
.spans li .page-link.active:hover {
  background-color: #ed1c24;
}
.spans li .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #eef0f4;
  color: #1a1a1a;
  transition: 0.2s;
  cursor: pointer;
  font-size: 0.8em;
}
.spans li .page-link img {
  width: 7px;
}
.spans li .page-link:hover {
  background-color: #c7c7c8;
}

.cats {
  display: flex;
  justify-content: center;
}

.mySwiper4 {
  width: 100%;
  height: 100%;
  padding: 100px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.catCard {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  gap: 10px;
  border: 2px solid #ed1c24;
  transition: 0.2s all ease;
  position: relative;
  overflow: hidden;
}
.catCard img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
.catCard h2 {
  width: 100%;
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: capitalize;
  white-space: nowrap;
  z-index: 2;
  padding-bottom: 10px;
}

@media (max-width: 500px) {
  .catCard {
    height: 170px;
    width: 170px;
  }
  .catCard h2 {
    white-space: wrap;
  }
  .aboutCont img {
    width: 200px;
  }
}
.cats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
}

.abt .aboutCont {
  flex-direction: column;
}

.pl20 {
  padding-left: 20px;
}

.popUp {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 20px;
  position: fixed;
  z-index: 10;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding-top: 100px;
}

.popUpCont {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.popUpCont img {
  width: 500px;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .popUpCont img {
    width: 100%;
  }
}
.popUpCont::-webkit-scrollbar {
  width: 0;
}
.popUpCont i {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ed1c24;
  cursor: pointer;
}

.relative {
  position: relative;
}

.close {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

#imgSrcx {
  display: flex;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fa-xmark {
  position: fixed;
  top: 7%;
  cursor: pointer;
  font-size: 1.7em;
  right: 7%;
}

.w550 {
  width: 550px;
  position: relative;
}

@media (max-width: 600px) {
  .w430 {
    width: 100%;
  }
  .w550 {
    width: 100%;
  }
  #imgSrcx {
    height: auto;
  }
}
@media (max-width: 600px) {
  .product {
    margin: 0 auto;
  }
  .clientsInner {
    padding-right: 20px;
  }
}
@media (max-width: 350px) {
  .product {
    width: 100%;
  }
}
.exc {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
}
.exc img {
  width: 50%;
}
.exc .aboutText {
  width: 50%;
  padding-right: 20px;
}
.exc .aboutText span {
  color: #1a1a1a;
}

@media (max-width: 1100px) {
  .exc {
    flex-direction: column;
  }
  .exc img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
  .exc .aboutText {
    width: 100%;
    padding: 0 20px;
  }
}
.homeShape {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 30vh;
  z-index: 5;
}

.relative {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.homelogo {
  width: 400px;
  position: absolute;
  right: 0;
  bottom: 100px;
  animation: homelogo 2s ease-in-out infinite;
}

@keyframes homelogo {
  0% {
    top: -100px;
  }
  50% {
    top: -120px;
  }
  100% {
    top: -100px;
  }
}
.hometext {
  width: 400px;
  position: relative;
  bottom: -50px;
  animation: hometext 0.4s ease-in-out 1200ms forwards;
  opacity: 0;
}

@keyframes hometext {
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@media (max-width: 800px) {
  .homelogo {
    width: 300px;
  }
  @keyframes hometext {
    100% {
      opacity: 1;
      bottom: -20px;
    }
  }
}
@media (max-width: 500px) {
  .homelogo {
    width: 250px;
  }
  .hometext {
    width: 100%;
  }
}
.chocolate {
  position: absolute;
  z-index: 6;
}
.chocolate img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: imgt 2s ease-in-out infinite;
}
@media (max-width: 800px) {
  .chocolate img {
    width: 50px;
    height: 50px;
  }
}

@keyframes imgt {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Positioning and individual animation delays */
.c1 {
  left: 12vw;
  bottom: 30vh;
}

.c1 img {
  animation-delay: 0s;
}

.c2 {
  left: 40vw;
  top: 80px;
}

.c2 img {
  animation-delay: 400ms;
}

.c3 {
  left: 40vw;
  top: 30vh;
}

.c3 img {
  animation-delay: 560ms;
}

.c4 {
  bottom: 5vh;
}

.c4 img {
  animation-delay: 650ms;
}

.c5 {
  bottom: 10vh;
  right: 3vw;
}

.c5 img {
  animation-delay: 800ms;
}

.c6 {
  top: 80px;
  left: -20px;
}

.c6 img {
  animation-delay: 1000ms;
}

.home-vector {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 3;
}

.col {
  display: flex;
  gap: 30px;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
}
.col h1 {
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.col h1::after {
  content: "";
  width: 100px;
  height: 5px;
  background-color: #ed1c24;
}
.col .aboutCont {
  align-items: flex-start;
  gap: 30px;
}
.col .aboutCont img {
  width: 350px;
  height: 250px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.col .aboutCont .aboutText p {
  font-size: 1.1em;
  line-height: 1.4;
}

.reverse {
  flex-direction: row-reverse;
}

.w100about h1 {
  width: 100%;
  align-items: flex-start;
}
.w100about .aboutCont {
  width: 100%;
  flex-direction: column;
}
.w100about .aboutCont .aboutText {
  width: 100%;
}

.counters {
  width: 500px;
  display: flex;
  flex-wrap: wrap;
}

.counter {
  display: flex;
  flex-direction: column;
  width: 250px;
  gap: 10px;
  align-items: flex-start;
  padding: 20px 0;
}
.counter h1 {
  line-height: 1;
  color: #1a1a1a;
  font-weight: 600;
}

@media (max-width: 1050px) {
  .about-image {
    transform: translateX(0);
  }
  .flex-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .counters {
    width: 100%;
  }
  .counter {
    width: 50%;
  }
}
.counters2 {
  padding-top: 80px;
  width: 100%;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 60px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.counters2 .counter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  border: 2px solid #ed1c24;
  flex-direction: column;
  border-radius: 10px;
  position: relative;
  height: 200px;
  padding-top: 40px;
  flex-grow: 1;
}
.counters2 .counter span {
  padding: 0 20px;
  text-align: center;
  line-height: 1.25;
  font-size: 1.3em;
  color: #000;
}
.counters2 .counter h1 {
  font-size: 2.5em;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: #ed1c24;
}
.counters2 .counter h1 p {
  font-size: 1.2rem;
}
.counters2 .counter h1 div {
  font-size: 2.3rem;
}
.counters2 .counter .c-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ed1c24;
  top: -45px;
}
.counters2 .counter .c-img img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pt50 {
  padding-top: 50px;
}

@media (max-width: 1200px) {
  .col .aboutCont {
    flex-direction: row;
  }
  .col .reverse {
    flex-direction: row-reverse;
  }
}
@media (max-width: 800px) {
  .col .aboutCont {
    flex-direction: column;
  }
  .col .aboutCont img {
    width: 100%;
  }
  .col .reverse {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .col .aboutCont img {
    width: 100%;
  }
  .col .aboutCont .aboutText p {
    font-size: 1em;
  }
}
.headerImage {
  border: none;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.headerImage h1 {
  position: absolute;
  color: #f0ece9;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.headerImage h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2509803922);
  z-index: -1;
}
.headerImage .headerImg {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.withb .headerImg {
  border-radius: 0 0 200px 200px;
}

@media (max-width: 1200px) {
  .headerImage .headerImg {
    height: 400px;
  }
}
@media (max-width: 1000px) {
  .withb .headerImg {
    border-radius: 0 0 100px 100px;
  }
}
@media (max-width: 800px) {
  .headerImage .headerImg {
    height: 300px;
  }
  .withb .headerImg {
    border-radius: 0;
  }
}
.m0a {
  margin: 0 auto;
}

.bInner {
  padding-top: 30px;
  padding-bottom: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.bInner .product {
  flex-direction: row;
  gap: 20px;
}
.bInner .pImg {
  width: 200px;
  height: 100px;
  border-radius: 5px;
}
.bInner .ptext p {
  text-overflow: initial;
  overflow: initial;
  display: initial;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial;
}

.videosInner {
  width: 100%;
  gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 0;
}

.videoIframe {
  width: calc(50% - 15px);
  overflow: hidden;
}
.videoIframe iframe {
  width: 100%;
  height: 350px;
  border-radius: 15px;
}

@media (max-width: 850px) {
  .videosInner {
    flex-direction: column;
  }
  .videoIframe {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .videoIframe {
    height: 300px;
    border-radius: 10px;
  }
}
.paginations {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  direction: ltr;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.paginations li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #272727;
  text-align: center;
  transition: 0.2s all ease;
  color: #000;
}
.paginations li .p-link.active {
  color: #ed1c24;
  border: 1px solid #ed1c24;
}
.paginations li:nth-child(1) a {
  background-color: #272727;
  color: #fff;
}
.paginations li:nth-child(1) a:hover {
  background-color: #ed1c24;
  border: 1px solid #ed1c24;
}
.paginations li:last-child a {
  background-color: #272727;
  color: #fff;
}
.paginations li:last-child a:hover {
  background-color: #ed1c24;
  border: 1px solid #ed1c24;
}

.catsLabels {
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 50px;
}
.catsLabels .catLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 35px;
  border-radius: 20px;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  transition: 0.3s all ease;
}
.catsLabels .active {
  background-color: #ed1c24;
  color: #fff;
}

@media (max-width: 500px) {
  .catsLabels .catLabel {
    flex-grow: 1;
    font-size: 0.9em;
    padding: 0 15px;
    height: 30px;
  }
}
.rowInputs {
  width: 100%;
  display: flex;
  gap: 20px;
}
@media (max-width: 500px) {
  .rowInputs {
    flex-direction: column;
  }
}

.endImg {
  width: 100%;
}
.endImg img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.choHeader {
  height: 350px;
}
.choHeader h1 {
  padding-top: 50px;
}
.choHeader img {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 800px) {
  .choHeader {
    height: 300px;
  }
  .choHeader h1 {
    padding-top: 50px;
  }
  .choHeader img {
    height: 300px;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex a:nth-child(2) {
  gap: 10px;
  background-color: transparent;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  transition: 0.3s all ease;
}
.flex a:nth-child(2) i {
  color: #ed1c24;
  transition: 0.3s all ease;
}
.flex a:nth-child(2):hover {
  background-color: #ed1c24;
  color: #fff;
}
.flex a:nth-child(2):hover i {
  color: #fff;
}

.catd a {
  gap: 10px;
  background-color: transparent;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  transition: 0.3s all ease;
}
.catd a i {
  color: #ed1c24;
  transition: 0.3s all ease;
}
.catd a:hover {
  background-color: #ed1c24;
  color: #fff;
}
.catd a:hover i {
  color: #fff;
}

.linkButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: #ed1c24;
  height: 40px;
  border-radius: 10px;
  font-size: 0.9em;
  font-weight: 400;
  padding: 0 15px;
}/*# sourceMappingURL=style.css.map */
