:root {
  /* Backgrounds */
  --primary-black: #010101;
  /* Colors */
  --primary-orange: #e34312;
  
}

@font-face {
  font-family: 'PoliticaBold';
  src: url('./fonts/PoliticaBold.woff2') format('woff2'),
       url('./fonts/PoliticaBold.woff') format('woff'),
       url('./fonts/PoliticaBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'PoliticaRegular';
  src: url('/fonts/PoliticaRegular.woff2') format('woff2'),
       url('/fonts/PoliticaRegular.woff') format('woff'),
       url('/fonts/PoliticaRegular.ttf') format('truetype');
  font-weight: normal;
  font-style:normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: PoliticaBold, Arial, sans-serif;
  color: #ffffff;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: var(--primary-black);
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

nav {
  padding: 10px 30px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-black);
  position: fixed;
  height: 70px;
  z-index: 999;
}

.logo img {
  padding-top: 30px;
  height: 120px;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li {
  list-style-type: none;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
}

.menu-icon {
  display: none;
}

.menu-icon i {
  color: #fff;
  font-size: 30px;
}

@media (max-width: 600px) {
  nav ul {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background: var(--primary-black);
    gap: 0;
    overflow: hidden;
    z-index: -1;
  }
  nav ul li {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: #fff 0.5px solid;
    width: 100%;
  }
  .menu-icon {
    display: block;
  }
  #menuList {
    transition: all 0.5s;
  }
}

.hero {
  height: 900px;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/hero_1.jpg");
  background-size: cover;
  background-position: 50% center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.changing-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.changing-text p {
  width: 100%;

  font-size: 40px;
  color: #ffffff;
  font-weight: bolder;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  padding-left: 30px;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

@media (max-width: 600px) {
  .changing-text p {
    font-size: 24px;
  }
}

.about-img-sec {
  width: 100%;
  height: 100%;
}

.intro {
  background-color: var(--primary-orange);
}

.bg-black {
  background-color: black;
}
.bg-orange {
  border-bottom: solid 2px var(--primary-orange);
  border-right: solid 2px var(--primary-orange);
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.starter-template h1 {
  display: inline-block;
  border-bottom: solid 2px var(--primary-orange);
  padding-bottom: 10px;
}

@keyframes appear {
  from {
    opacity: 0;
    /* clip-path: inset(100% 100% 100% 100%); */
  }
  to {
    opacity: 1;
    /* clip-path: inset(0 0 0 0); */
  }
}

.block {
  animation: appear ease-in;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.view {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.block {
  height: 200px;
  width: 300px;
  margin: 50px;
}

.glow {
  color: #fff;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--primary-orange),
      0 0 40px var(--primary-orange), 0 0 50px var(--primary-orange),
      0 0 60px var(--primary-orange), 0 0 70px var(--primary-orange);
  }

  to {
    text-shadow: 0 0 20px #fff, 0 0 30px var(--primary-orange),
      0 0 40px var(--primary-orange), 0 0 50px var(--primary-orange),
      0 0 60px var(--primary-orange), 0 0 70px var(--primary-orange),
      0 0 80px var(--primary-orange);
  }
}

/* whatsapp */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

@media (max-width: 450px) {
  .card-columns {
    column-count: 2;
  }
}

/* swiper */

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 375px;
  height: 600px;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-pagination-bullet {
  background-color: #e34312;
}

.swiper-pagination-bullet-active {
  background-color: #e34312;
}

/* swiper-end */

/* .animation-1 {
  animation-name: example;
  animation-duration: 4s;
  animation-direction: reverse;
}
@keyframes example {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: 200px;
    top: 0px;
  }
  50% {
    left: 200px;
    top: 200px;
  }
  75% {
    left: 0px;
    top: 200px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
} */
