* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* Define CSS animations */
.fade-in {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
}


.popupbg {
  width: 100%;
  height: 110%;
  background-color: rgba(34, 34, 34, 0.9);
  position: fixed;
  z-index: 1002;
  display: none;
  transition: 0.2s;
}

.popup {
  background-color: rgba(34, 34, 34, 0.9);
  width: 550px;
  padding: 30px 40px;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 8px;
  z-index: 1002;
  display: none;
  border: 1px solid #f74843;
}

.popup button {
  display: block;
  margin: 0 0 20px auto;
  background-color: transparent;
  font-size: 35px;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}

.popup h2 {
  color: #fff;
  text-align: center;
  padding-bottom: 5%;
  text-decoration: underline 2px solid #f74843;
}

.popup p {
  font-size: 14px;
  text-align: justify;
  margin: 20px 0;
}

.popup a {
  display: block;
  width: 200px;
  position: relative;
  margin: auto;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  margin-top: 10%;
  transition: 0.2s;
}

.popup a:hover {
  letter-spacing: 2px;
  transition: 0.2s;
}

/*CAMPAIGN BAR*/

.campaign {
  background-color: #333;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 91;
}

#campaignspan {
  text-decoration: underline 2px solid #f74843;
}

.campaign-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.campaign h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 10px;
}

.campaign p {
  font-size: 15px;
  margin: 0;
}

.campaign a {
  color: #fff;
  text-decoration: 2px underline #f74843;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.campaign a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Add a shadow to the bar */
.campaign {
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.5);
}

.campaign-close-btn {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/*CAMPAIGN BAR END*/

.showcase .loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #f74843;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.showcase {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  animation: fadeInBackground 2s ease forwards;
  background-repeat: no-repeat;
  border-bottom: 1px solid #f74843;
  align-items: center;
  background-position: center;
  background-color: #000;
  background-size: cover;
  transition: 0.5s;
  z-index: 2;
}

@keyframes fadeInBackground {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.showcase .text>* {
  opacity: 0;
  animation: slideInText 2s 0.3s ease forwards;
}

@keyframes slideInText {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.showcase .fa {
  font-size: 15px;
  color: #f74843;
}

.showcase #videopc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.showcase #videomobile {
  display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.4);
  mix-blend-mode: overlay;
}

.redline {
  height: 1px;
  width: 100%;
  background: #f74843;
}

.startbox {
  position: relative;
  z-index: 10;
  display: inline-block;
  height: 50px;
  margin-top: -10%;
  margin-bottom: 3%;
  border: 2px solid rgba(34, 34, 34, 255);
  background: #f74843;
  text-align: center;
  margin-left: auto;
  padding: 10px 30px;
  transition: transform 0.5s ease;
}

.startbox.active {
  transform: translateX(-100%);
}

.startbox h2 {
  text-align: center;
  position: relative;
}

.verticalline {
  position: relative;
  height: 50px;
  margin-top: 0;
  margin-left: 50%;
  z-index: 100;
  width: 2px;
  background: #f74843;
  text-align: center;
}

.horizontalline {
  height: 2px;
  width: 100%;
  margin-top: 10%;
  background: #f74843;
  margin: auto;
}

.line-row {
  margin-top: 2%;
  display: flex;
  justify-content: space-evenly;
}

.verticalline-left {
  max-width: 2px;
  position: relative;
  height: 100px;
  margin-left: 0;
  z-index: 100;
  width: 2px;
  background: #f74843;
}

.verticalline-right {
  position: relative;
  height: 100px;
  margin-left: 100%;
  z-index: 100;
  width: 2px;
  background: #f74843;
}

.text {
  position: relative;
  z-index: 10;
}

.text h2 {
  margin-top: 15%;
  font-size: 4.5em;
  font-weight: 800;
  color: #f74843;
  line-height: 1em;
  text-transform: uppercase;
}

.text h3 {
  font-size: 3.5em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}

.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}

.hero-btn {
  display: inline-block;
  font-size: 1em;
  background: #f74843;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 3%;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}

.hero-btn:hover {
  transition: 0.2s;
  letter-spacing: 6px;
  color: #fff;
}

/* Styling the area of the slides */
/*===================================================
#slideshow {
  overflow: hidden;
  height: 50vh;
  width: 100%;
  margin: 0 auto;
  background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.8)), url(/images/abS2.avif);
}

/* Style each of the sides
    with a fixed width and height ===================================

.slide {
  float: left;
  height: 50vh;
  width: 728px;
  text-align: center;
  border: 1px solid red;
  padding-top: 2%;
}

.slide h1 {
  color: #f74843;
  text-align: center;
  padding-top: 1%;
  font-size: 1.8em;
}

.slide h2 {
  text-align: center;
  color: #f74843;
  font-size: 1.2em;
}

.slide p {
  color: #fff;
  padding: 5%;
}

/* Add animation to the slides =========================================

.slide-wrapper {

  /* Calculate the total width on the
      basis of number of slides ======================================
  width: calc(728px * 3);

  /* Specify the animation with the
      duration and speed =============================================
  animation: slide 15s ease infinite;
}

/* Set the background color
    of each of the slides ==============================================

.slide:nth-child(1) {
  background-color: rgba(34, 34, 34, 0.8);
}

.slide:nth-child(2) {
  background: rgba(38, 38, 38, 0.8);
}

.slide:nth-child(3) {
  background-color: rgba(34, 34, 34, 0.8);
  text-align: center;
}

/*
    .slide:nth-child(4) {
        background: yellow;
    }
    .slide:nth-child(5) {
        background: black;
    }
     */
/* Define the animation
    for the slideshow ============================================

@keyframes slide {

  /* Calculate the margin-left for
      each of the slides ===========================================
  20% {
    margin-left: 0px;
  }

  40% {
    margin-left: calc(-728px * 1);
  }

  60% {
    margin-left: calc(-728px * 2);
  }
}
======================================================*/


@media(max-width: 767px) {
  body .showcase #videopc {
    display: none;
  }

  body .showcase #videomobile {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }

  body .popup {
    background: linear-gradient(rgba(34, 34, 34, 0.9), rgba(34, 34, 34, 0.9)), url(/images/abS2.avif);
    width: 300px;
    height: 500px;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    z-index: 1002;
    display: none;
    border: 1px solid #f74843;
  }

  body .popup button {
    display: block;
    margin: 0 0 20px auto;
    background-color: transparent;
    font-size: 35px;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
  }

  body .popup h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 5%;
    text-decoration: underline 2px solid #f74843;
  }

  body .popup p {
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
  }

  body .popup a {
    display: block;
    position: relative;
    margin: auto;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
    margin-top: 20%;
    transition: 0.3s;
  }

  body .popup a:hover {
    letter-spacing: 2px;
    transition: 0.3s;
  }

  body .campaign h3 {
    padding-right: 40px;
  }

  body .campaign .close-btn {
    right: 10px;
  }

  body .row {
    flex-direction: column;
  }

  body .trio {
    padding-top: 15%;
  }

  body .row2 {
    flex-direction: column;
    justify-content: space-between;
  }

  body .cont81 {
    width: 80%;
    position: relative;
    background: #fff;
    text-align: center;
    margin-left: 14%;
    padding-right: 0;
  }

  body #news {
    position: relative;
    padding-left: 14%;
    font-size: 28px;
    padding-top: 25%;
    color: #f74843;
    text-transform: uppercase;
    z-index: 1000;
    font-weight: 500;
  }

  body .content {
    width: 90%;
    flex-basis: 31%;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 5%;
    margin-top: 5%;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: 0 0 20px 0px rgba(38, 38, 38, 0.2);
    text-align: center;
  }

  body .content h2 {
    font-size: 1.2em;
    padding: 10px 10px 10px 10px;
    text-align: center;
  }

  body .content h4 {
    font-size: 0.9em;
    text-align: center;
    margin-left: 4%;
  }

  body #bigh2 {
    padding-top: 15%;
    color: #f74843;
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 500;
    margin-left: 5%;
  }

  body .cont82 h2 {
    color: #f74843;
    text-align: center;
    padding-top: 8%;
    padding-bottom: 3%;
    margin-left: 28%;
    font-size: 1.2em;
  }

  body .cont82 p {
    margin-left: 28%;
  }

  body .reference {
    width: 80%;
    flex-basis: 35%;
    background: rgba(38, 38, 38, .5);
    border-radius: 5px;
    margin-top: 8%;
    margin-bottom: 8%;
    padding: 0 0;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: 0 0 20px 0px rgba(38, 38, 38, 1);
    text-align: center;
  }

  body .reference img {
    width: 100%;
    transition: 0.5s;
    margin-left: 14%;
  }

  body #bottomref {
    margin-top: 8%;
    padding-bottom: 30%;
  }

  body .aboutsection p {
    text-align: left;
    padding-top: 3%;
    font-size: 1.2em;
  }

  body .aboutcontent {
    width: 100%;
    flex-basis: 35%;
    padding-top: 8%;
    background-color: rgba(38, 38, 38, 255);
    box-sizing: border-box;
    transition: 0.5s;
    text-align: center;
  }

  body .txtn {
    width: 70%;
    padding-left: 10%;
    padding-bottom: 10%;
  }

  body .aboutcontent img {
    width: 80%;
    margin-top: 8%;
    margin-bottom: 8%;
  }

  body #btn2 {
    display: inline-block;
    font-size: 0.9em;
    background: #f74843;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin-top: 3%;
    color: #111;
    letter-spacing: 2px;
    transition: 0.2s;
  }

  /* Styling the area of the slides */

  /*body #slideshow {
    overflow: hidden;
    height: 80vh;
    width: 100%;
    margin: 0 auto;
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.8)), url(/images/abS2.avif);
  }

  /* Style each of the sides
    with a fixed width and height 

  body .slide {
    height: 80vh;
    width: 364px;
    text-align: left;
    border: 1px solid red;
    padding-top: 2%;
  }

  body .slide h1 {
    color: #f74843;
    text-align: center;
    padding-top: 1%;
    margin: 3%;
    font-size: 1.8em;
  }

  body .slide h2 {
    text-align: center;
    margin: 2%;
    color: #f74843;
    font-size: 1.2em;
  }

  body .slide p {
    color: #fff;
    padding: 5%;
    margin: 2%;
  }

  /* Define the animation for the slideshow 
  @keyframes slide {

    0%,
    100% {
      margin-left: 0;
      /* Starting and ending positions 
    }

    30% {
      margin-left: -100%;
      /* Move to the second slide 
    }

    60% {
      margin-left: -200%;
      /* Move to the third slide 
    }
  }*/

}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  body .showcase #videopc {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }

  body .showcase #videomobile {
    display: none;
  }

  body .content h2 {
    font-size: 1.2em;
    padding: 10px 10px 10px 10px;
    text-align: center;
  }

  body .content h4 {
    font-size: 0.8em;
    text-align: center;
    margin-left: 4%;
  }
}


@media only screen and (orientation: landscape) and (min-width: 375px) and (max-width: 918px) {
  body .showcase #videopc {
    display: none;
  }

  body .showcase #videomobile {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }

  body .popup {
    background: linear-gradient(rgba(34, 34, 34, 0.9), rgba(34, 34, 34, 0.9)), url(/images/abS2.avif);
    width: 100%;
    height: 110%;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    z-index: 1002;
    display: none;
    border: 1px solid #f74843;
  }

  body .popup button {
    display: block;
    margin: -1% 0 -5% auto;
    /*--top margin, right margin, bottom margin, left margin--*/
    background-color: transparent;
    font-size: 40px;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
  }

  body .popup h2 {
    color: #fff;
    font-size: 1.8em;
    text-align: center;
    padding-bottom: 1.5%;
    margin-top: -2%;
    text-decoration: underline 2px solid #f74843;
  }

  body .popup p {
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
  }

  body .popup a {
    display: block;
    font-size: 1.2em;
    position: relative;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
    margin-top: 4%;
    transition: 0.3s;
  }

  body .popup a:hover {
    letter-spacing: 2px;
    transition: 0.3s;
  }

  body .text h2 {
    margin-top: 30%;
    font-size: 4em;
    font-weight: 800;
    color: #f74843;
    line-height: 1em;
    text-transform: uppercase;
  }

  body .text h3 {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
  }
}

@media (max-width: 991px) {

  .showcase,
  .showcase header {
    padding: 40px;
  }

  .text h2 {
    font-size: 3em;
  }

  .text h3 {
    font-size: 2em;
  }
}

.cont {
  width: 100%;
  background: url(/images/abS2.avif);
  margin: auto;
  position: relative;
}

.cont80 {
  width: 100%;
  position: relative;
  background: rgba(38, 38, 38, 0.9);
  text-align: center;
  z-index: 60;
  margin: auto;
}

.cont80 .fa {
  color: #f74843;
  font-size: 60px;
  z-index: 65;
}

.cont80 h1 {
  text-align: center;
  font-size: 28px;
  color: #f74843;
  padding-top: 5%;
}

.cont80 p {
  text-align: center;
  font-size: 1em;
  color: rgba(177, 177, 177, 1.0);
  padding-top: 5%;
  line-height: 20px;
}

.cont80 h3 {
  color: #f74843;
  padding-top: 28px;
  text-transform: uppercase;
  font-weight: 600;
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-evenly;
}

.trio {
  flex-basis: 31%;
  border-radius: 5px;
  margin-bottom: 5%;
  padding: 20px 12px;
  transition: 0.5s;
}

.cont2 {
  width: 100%;
  background: #fff;
  margin-bottom: 10%;
}

.cont2 h4 {
  color: #f74843;
  text-align: center;
  padding-bottom: 3%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9em;
}

#news {
  position: relative;
  padding-left: 6.5%;
  font-size: 28px;
  padding-top: 5%;
  color: #f74843;
  text-transform: uppercase;
  z-index: 1000;
  font-weight: 500;
}

.cont81 {
  width: 90%;
  position: relative;
  background: #fff;
  text-align: center;
  margin: auto;
}

.row2 {
  margin-top: 5%;
  display: flex;
  justify-content: space-evenly;
}

.content {
  width: 80%;
  flex-basis: 31%;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 5%;
  padding: 0 0;
  box-sizing: border-box;
  transition: 0.5s;
  box-shadow: 0 0 20px 0px rgba(38, 38, 38, 0.2);
  text-align: center;
}

.content img {
  padding-bottom: 3%;
  width: 100%;
  transition: 0.3s;
}

.content img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.content h2 {
  font-size: 1.5em;
  font-weight: 500;
  color: #000;
  text-align: center;
  padding-bottom: 5%;
  transition: 0.3s;
}

.content h2:hover {
  color: #f74843;
  transition: 0.3s;
}

.content a {
  text-decoration: none;
}

.cont82 {
  width: 100%;
  position: relative;
  background: rgba(38, 38, 38, 1);
  text-align: center;
}

#bigh2 {
  padding-top: 8%;
  color: #f74843;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: 500;
}

.cont82 h2 {
  color: #f74843;
  text-align: center;
  padding-top: 8%;
  padding-bottom: 3%;
}

.cont82 p {
  letter-spacing: 2px;
}

.cont82 a {
  text-decoration: 2px solid #f74843 underline;
  color: #fff;
  transition: 0.2s;
}

.cont82 a:hover {
  letter-spacing: 4px;
  transition: 0.2s;
}

.reference {
  width: 80%;
  flex-basis: 35%;
  background: rgba(38, 38, 38, .5);
  border-radius: 5px;
  margin-top: 8%;
  padding: 0 0;
  box-sizing: border-box;
  transition: 0.5s;
  box-shadow: 0 0 20px 0px rgba(38, 38, 38, 1);
  text-align: center;
}

.reference img {
  width: 100%;
  transition: 0.5s;
}

.reference img:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

#bottomref {
  margin-top: 8%;
  padding-bottom: 10%;
}

.aboutsection {
  width: 100%;
  background: url(/images/abS2.avif);
  padding-bottom: 5%;
  margin-top: -5%;
  text-align: left;
  position: relative;
}

.aboutsection h1 {
  text-align: left;
  padding-top: 8%;
  font-weight: 500;
  font-size: 2em;
  color: #f74843;
  ;
}

.aboutsection p {
  text-align: left;
  padding-top: 3%;
  font-size: 1.2em;
  color: #ddddddcc;
}

.aboutcontent {
  width: 100%;
  margin-bottom: -5%;
  padding-top: 8%;
  background-color: rgba(38, 38, 38, 255);
  opacity: 0.9;
  transition: 0.5s;
}

.aboutcontent img {
  width: 100%;
}

.txtn {
  width: 50%;
  padding-left: 10%;
  padding-bottom: 5%;
}

#btn2 {
  display: inline-block;
  font-size: 0.7em;
  background: #f74843;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 3%;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}

#btn2:hover {
  transition: 0.2s;
  letter-spacing: 4px;
  color: #fff;
}