@font-face {
  font-family: TradeWinds;
  src: url(../fonts/TradeWinds-Regular.ttf);
}
@font-face {
  font-family: Damion;
  src: url(../fonts/Damion-Regular.ttf);
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/Lato-Regular.ttf);
}
@font-face {
  font-family: RobotoSlab;
  src: url(../fonts/Lato-Black.ttf);
}
:root {
  --primary: rgb(255, 255, 255);
  --secondary: rgb(132, 132, 132);
  --textdarkest: rgb(80, 80, 80);
  --textdark: #6f6f6f;
  --textmedium: rgb(132, 132, 132);
  --textlight: rgb(174, 174, 174);
  --textlightest: rgb(249, 249, 249);
  --greylightest: rgb(230, 230, 230);
  --blueBG: #eaf5f7;
  --red: #7b0000;
  --green1: #657900;
  --green2: #283618;
  --redgrad: linear-gradient(to bottom, #570000 5%, #c10000 100%);
}
/* @@@@@@@@@@@@@@@@         ANIMATIONS        @@@@@@@@@@@@ */

.animate__zoom {
  animation-name: zoom;
}
@keyframes zoom {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 20%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.anim-for-hero {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;

    transform: scale(2) rotate(25deg);
  }

  to {
    opacity: 1;
  }
}

.anim-for-hero-Vid {
  animation-name: fadeInDownVid;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fadeInDownVid {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__slideInFade {
  animation-name: slideInFade;
}
@keyframes slideInFade {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -80%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 50%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim-delay1 {
  animation-duration: 2s;
}
.anim-delay2 {
  animation-duration: 1.1s;
}
.anim-delay3 {
  animation-duration: 2.2s;
}
/* LLLLLLLLLLLL        LAZY-LOADs      LLLLLLLLLLLLL */
.lazyLoad {
  transform: translateY(20rem);
  opacity: 0;
}
.lazy0 {
  transition: transform 0.7s ease-out 0.01s, opacity 1s 0.02s;
}
.lazy1 {
  transition: transform 0.7s ease-out 0.07s, opacity 1s 0.06s;
}
.lazy2 {
  transition: transform 0.7s ease-out 0.1s, opacity 1s 0.15s;
}
.lazy3 {
  transition: transform 0.7s ease-out 0.15s, opacity 1s 0.2s;
}
.lazy4 {
  transition: transform 0.7s ease-out 0.2s, opacity 1s 0.25s;
}
.lazy5 {
  transition: transform 0.7s ease-out 0.25s, opacity 1s 0.3s;
}
.lazy6 {
  transition: transform 0.7s ease-out 0.3s, opacity 1s 0.35s;
}
.lazy7 {
  transition: transform 0.7s ease-out 0.35s, opacity 1s 0.4s;
}
.lazy8 {
  transition: transform 0.7s ease-out 0.4s, opacity 1s 0.45s;
}
.lazy9 {
  transition: transform 0.5s ease-out 0.15s, opacity 0.5s ease-out 0.15s;
}
.lazy10 {
  transition: transform 0.5s ease-out 0.3s, opacity 0.5s ease-out 0.3s;
}
.lazy11 {
  transition: transform 0.5s ease-out 0.45s, opacity 0.5s ease-out 0.45s;
}
.lazy12 {
  transition: transform 0.5s ease-out 0.6s, opacity 0.5s ease-out 0.6s;
}
.flex-direct-rtl {
  flex-direction: row-reverse !important;
}
@media (min-width: 768px) {
  .mt-768px-10r {
    margin-top: 10rem !important;
  }
}

body {
  max-width: 2048px;
  margin: 0 auto;
  padding: 0;
  font-family: body;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  display: block;
}
.flex-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.showAfterload {
  display: none;
}
p,
h1 {
  margin: 0;
  padding: 0;
}
h1 {
  font-family: RobotoSlab;
}
p {
  font-family: Roboto;
}
#preloader {
  display: flex;
align-items: center;
justify-content: center;
text-align: center;

  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 2.1rem;
  left: 0;
  background-color: white;
  z-index: 9999;
}
#preloader img {
  width: 20rem;
  transform: translateY(-25%);
}
/* '''''''''    NAVBAR   ''''''''''' */
.nav-container {
  position: relative;
  background-color: var(--primary);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.toggle-btn {
  height: 2rem;
  margin-right: 2rem;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}
.burger {
  display: block;
  width: 2rem;
  height: 3px;
  background-color: var(--red);
  border-radius: 2rem;
}
.logo {
  padding: 0.2rem 0;
}
.logo img {
  height: 3rem;
  transition: 0.2s;
}
.logo img:hover {
  transform: scale(1.03);
}
.menu-container {
  font-family: Roboto;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  z-index: 100;
  background: var(--primary);
  transition: all 0.3s ease-out;
}
.slide-menu-on {
  transform: translate(0);
}
.close-btn {
  position: absolute;
  right: 2.2rem;
  top: 0.8rem;
  cursor: pointer;
}
.close-btn i {
  font-size: 1.9rem;
  color: var(--red);
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 1rem;
}

.nav-list .nav-item {
  display: block;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  color: var(--textdark);
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.3s;
}
.nav-list .nav-item:hover {
  color: var(--red);
  transform: translateX(0.5rem);
}
.nav-list__arrow {
  font-size: 1.3rem;
  display: inline-block;
  transition: transform 0.5s;
}
.fa-caret-down:before {
  pointer-events: all;
}
.arrow__rotation {
  transform: rotatez(180deg);
}

.sub-menu {
  overflow: hidden;
  max-height: 0;
}
.sub-menu__item {
  border-bottom: 0.05rem solid var(--textlight);
}
.sub-menu__item__link {
  display: block;
  font-size: 1.2;
  padding: 0.5rem 0 0.5rem 2.5rem;
  color: var(--textdark);
  transition: 0.3s;
}
.sub-menu__item__link:hover {
  color: var(--red);
  transform: translateX(0.5rem);
}
.sub-menu--display-on {
  max-height: 3000px;
  transition: 1.5s linear;
}
/* '''''''''''    HERO   ''''''''''' */
.mainPageHero-cnr {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.mainPageHero-cnr__bg {
  position: relative;
  z-index: -10;
  background-image: linear-gradient(
      to bottom,
      rgba(61, 61, 61, 0.646),
      rgba(0, 0, 0, 0)
    ),
    url(../../images/bg-main.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.hero-text-container {
  width: 98%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text {
  font-family: TradeWinds;
  font-weight: 100;
  font-size: 2rem;
  color: rgb(230, 230, 230);
  text-shadow: 0.2rem 0.2rem 0.2rem #000000;
}
.hero-text-container p {
  color: rgb(236, 236, 236);
  font-family: Damion;
  font-size: 1.5rem;
  padding: 0 0.9rem;
  text-shadow: 0.2rem 0.2rem 0.3rem #000000;
  margin: 0.4rem auto 1rem;
}
.hero-btn {
  font-family: RobotoSlab;
  font-size: 1.1rem;
  font-weight: 100;
  margin-top: 1rem;
  background-color: rgba(0, 0, 0, 0.357);
  border: 0.1rem solid rgb(236, 236, 236);
  color: rgb(236, 236, 236);
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: 0.3rem 0.3rem 0.2rem #000000;
}
.hero-btn:hover {
  background-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0.2rem 0.5rem 0.2rem #000000;
}
.video-main {
  display: none;
}
/* '''''''''''   WHY US    '''''''''' */
.top-swoop-bluetop {
  background-image: url(../../images/Top-Swoop-blue.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 2rem;
  margin: -4.2rem auto -0.1rem;
  z-index: 1000;
}
.whyUs-cnr {
  background: var(--blueBG);
  padding: 3rem 10% 5rem;
}
.whyUs-cnr__h1 {
  color: var(--textdarkest);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}
.whyUs-cnr__row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.whyUs-cnr__row__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}
.whyUs-cnr__row__box i::before {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--red);
  width: 3.7rem;
  overflow: hidden;
}

.whyUs-cnr__row__box div h1 {
  font-size: 1.3rem;
  color: var(--red);
}
.whyUs-cnr__row__box div p {
  font-size: 1.1rem;
  color: var(--textdarkest);
}
/* ''''''''''''''''     BODY   '''''''''''' */
.body-container {
  margin: 5rem 8%;
  padding-top: 4rem;
}
.body-container__header {
  text-align: center;
  color: var(--textdark);
  font-family: RobotoSlab;
  border-bottom: 0.1rem solid var(--textdark);
  width: 90%;
  margin: 0 auto 3rem;
  padding-bottom: 0.4rem;
}
.body-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5rem;
  padding-top: 1rem;
}
.body-link {
  background-color: var(--red);
  flex-basis: 100%;
  display: inline-block;
  border: 0.05rem solid rgba(0, 0, 0, 0.418);
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.747);
}
.body-image {
  overflow: hidden;
}
.body-image img {
  max-width: 100%;
  height: auto;
  transition: 0.4s;
}
.body-desc {
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-desc h1 {
  margin: 0;
  padding: 0.7rem 0;
  font-family: Roboto;
  letter-spacing: 0.05rem;
  font-size: 1.3rem;
  color: var(--textlightest);
  transition: 0.3s;
}
.body-link:hover .body-col .body-image img {
  transform: scale(1.05);
}
.body-link:hover .body-desc h1 {
  transform: scale(1.1);
}
/* '''''''''     SINCE    ''''''''''' */
.since-cnr {
  height: 15rem;
  background: rgb(49, 58, 0);
  background: linear-gradient(
    50deg,
    rgb(45, 53, 0) 9%,
    rgb(110, 132, 0) 48.8%,
    rgb(133, 0, 0) 48.8%,
    rgba(57, 0, 0, 1) 95%
  );
  margin: 8rem 0 0;
  box-shadow: 0.1rem 0.1rem 0.7rem black;
}
.since-cnr h1 {
  font-size: 14vw;
  color: #bdbdbd;
  font-family: "Times New Roman", Times, serif;
}
.since-cnr h1 span {
  display: inline-block;
  font-size: 6vh;
  color: rgb(70, 70, 70);
  text-shadow: 0.01rem 0.01rem 0.01rem black;
  font-weight: 900;
}

/* ''''''''''''''''  NO JAMBOTRONN  '''''''''' */
.no-jambotron-cnr {
  background-image: url(../../images/test4.webp);
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
  width: 100%;
  background-color: white;
  padding: 7rem 0;
  text-align: left;
  line-height: 1.7rem;
  color: var(--textdark);
  font-family: Roboto;
  gap: 3rem;
}
.no-jambotron-cnr__row1 {
  height: 13rem;
  width: 100%;
  background-image: url(../../images/no-jambotron-small.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.no-jambotron-cnr__row2 {
  display: flex;
  flex-direction: column;
  padding: 0 10%;
  gap: 3rem;
}
.no-jambotron-cnr__row2 h3 {
  margin: 0;
}

.no-jambotron-cnr__span {
  color: var(--red);
  font-family: RobotoSlab;
  font-size: 1.5rem;
}
.big-jambotron-cnr {
  height: 18rem;
  padding: 2rem 2rem;
  margin: 0 0 7rem;
  background: rgb(65, 0, 0);
  background: linear-gradient(
    120deg,
    rgba(65, 0, 0, 1) 12%,
    rgba(123, 0, 0, 1) 50%,
    rgba(101, 121, 0, 1) 50%,
    rgba(36, 43, 0, 1) 93%
  );
  color: var(--textlightest);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0.1rem 0.1rem 1rem rgb(255, 255, 255);
}
.big-jambotron-cnr_h1 {
  font-size: 2rem;
  font-family: RobotoSlab;
  margin: 0;
}
.big-jambotron-cnr_p {
  font-size: 1.1rem;
  font-family: Roboto;
  margin-top: 1rem;
}
/* ''''''''''''''''''''  FOOTER  '''''''''''''''''' */
footer {
  background-color: var(--primary);
  padding-top: 3rem;
}
.row-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
  color: var(--textdark);
}
.footer-links-list {
  flex-basis: 40%;
}
.footer-links-list__header {
  font-family: RobotoSlab;
  text-align: center;
  width: 80%;
  padding-bottom: 0.2rem;
  margin: -0.1rem auto 0.7rem auto;
  font-size: 1rem;
  border-bottom: 0.05rem solid var(--textdark);
}
.footer-link-item a {
  font-size: 1.1rem;
  font-family: Roboto;
  color: var(--textmedium);
}
.footer-link-item {
  text-align: center;
  margin-top: 0.5rem;
}
.footer-contact-list {
  align-items: center;
  margin: 3rem auto 0 auto;
  padding: 1rem 1.8rem 0 1.8rem;
}
.footer-contact-item {
  margin-left: 2rem;
}
.footer-link-item a:hover,
.footer-contact-item a:hover {
  color: var(--red);
}
.footer-contact-item a {
  color: var(--textmedium);
  font-family: Roboto;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  display: inline-block;
}
.row-socials {
  padding-top: 3rem;
}
.row-socials h1 {
  width: 60%;
  color: var(--textdark);
  font-family: RobotoSlab;
  font-size: 1.3rem;
  margin: 0 auto 1rem auto;
  padding-top: 0.5rem;
  text-align: center;
  border-top: 0.05rem solid var(--textdark);
}
.social-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.social-item {
  cursor: pointer;
}
.social-item .fab {
  transition: 0.2s;
}
.social-item .fab:hover {
  transform: scale(1.2);
  color: var(--red);
}
.social-item i {
  font-size: 2.5rem;
  color: var(--secondary);
}
.footer-container img {
  margin-top: 1rem;
  width: 100%;
  height: auto;
}

.footer-copyright {
  margin-top: -0.3rem;
  display: flex;
  justify-content: center;
  height: 3rem;
  background: var(--primary);
}
/* <>_______________   [ MEDIA QUERIES 481 ]  ______________ */

@media (min-width: 481px) {
  .hero-text-container {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-text {
    font-size: 4rem;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-text-container p {
    font-size: 1.9rem;
  }

  .whyUs-cnr__row {
    max-width: 22rem;
    margin: 0 auto;
  }

  .whyUs-cnr__row__box div p {
    font-size: 1.2rem;
  }
  .body-container {
    margin: 0 18%;
  }
  .body-link {
    max-width: 25rem;
  }

  .since-cnr h1 {
    font-size: 13vw;
  }
  .since-cnr h1 span {
    font-size: 5vh;
  }
  .no-jambotron-cnr {
    padding: 6rem 0;
  }
  .no-jambotron-cnr__row1 {
    height: 14rem;
    background-size: contain;
  }
  .big-jambotron-cnr {
    max-height: 22rem;
    padding: 0 11%;
  }
  .big-jambotron-cnr_h1 {
    font-size: 2.5rem;
  }

  .footer-contact-item {
    margin-left: 4rem;
  }
}
/* <>_______________   [ MEDIA QUERIES 768 ]  ______________ */

@media (min-width: 768px) {
 
  .toggle-btn,
  .close-btn,
  .menu-logo-container {
    display: none;
  }
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .menu-container {
    transform: translateX(0);
    transition: all 0.3s ease-out;
    width: auto;
    margin-right: 1.5rem;
    position: static;
    background: unset;
  }

  .nav-menu {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    padding: 0 3rem 0 0;
  }

  .nav-list .nav-item {
    font-size: 0.9rem;
    width: fit-content;
    margin: 0;
    padding: 0.6rem 0.2rem;
    position: relative;
    z-index: 1;
  }
  .nav-list .nav-item:hover {
    transform: translateX(0);
  }
  .nav-item::before {
    content: "";
    z-index: -1;
    position: absolute;
    transition: width 0.35s ease-out;
    top: 1.8rem;
    width: 0;
    height: 0.1rem;
    background-color: var(--red);
  }

  .nav-list .nav-item:hover::before {
    width: 100%;
  }

  .logo img {
    height: 2rem;
  }
  .sub-menu {
    position: absolute;
    background-color: var(--primary);
    box-shadow: 0.5rem 0.3rem 0.5rem #000000;
    width: 11rem;
  }
  .sub-menu__item__link {
    padding: 0.7rem 1.2rem 0.7rem 1.2rem;
  }

  .nav-list__arrow {
    font-size: 1rem;
    margin-top: 0;
  }
  .mainPageHero-cnr {
    height: 100vh;
    margin-bottom: 5rem;
  }

  .hero-text {
    font-size: 3.8rem;
    max-width: 100%;
  }
  .hero-text-container p {
    font-size: 1.7rem;
  }
  .hero-btn {
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 0.5rem 1.8rem;
  }
  .top-swoop-bluetop {
    background-image: url(../../images/Top-Swoop-blue.webp);
    background-size: contain;
    background-position: left;
    width: 100%;
    height: 2rem;
    margin: -8rem auto -0.1rem;
    z-index: 1000;
  }
  .whyUs-cnr {
    padding: 4rem 2% 8rem;
  }

  .whyUs-cnr__row {
    max-width: 100%;
    justify-content: center;
    gap: 3rem 2rem;
  }
  .whyUs-cnr__row__box {
    max-width: 40%;
    margin: 0;
    gap: 0.8rem;
  }

  .body-row {
    gap: 3rem;
  }
  .body-link {
    flex-basis: 45%;
  }
  .body-desc h1 {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
  .since-cnr {
    height: 17rem;
    padding: 0 5%;
  }
  .since-cnr h1 {
    font-size: 6.9rem;
  }
  .since-cnr h1 span {
    font-size: 4rem;
  }
  .no-jambotron-cnr {
    margin: 0;
    padding: 0;
    flex-direction: row;
    height: 55rem;
    gap: 0;
  }
  .no-jambotron-cnr__row1 {
    background-image: url(../../images/no-jambotron.webp);
    position: sticky;
    top: 5rem;
    background-position: -10% auto;
    background-size: contain;
    margin: 22% 0 2rem;
    height: 16rem;
    width: 40%;
  }
  .no-jambotron-cnr__row2 {
    margin: 26% auto 5rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 90%;
    padding: 0 3rem 0 0;
  }

  .no-jambotron-cnr h3 {
    text-align: left;
    font-size: 1.3rem;
    line-height: 2rem;
  }
  .big-jambotron-cnr {
    height: 20rem;
    padding: 0 19%;
  }
  .big-jambotron-cnr_h1 {
    font-size: 3rem;
    font-family: RobotoSlab;
    margin: 0;
  }
  .big-jambotron-cnr_p {
    font-size: 1.3rem;
    font-family: Roboto;
  }
  .row-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
  }
  .footer-links-list {
    flex-basis: 25%;
  }
  .footer-contact-list {
    width: 40%;
    border-top: unset;
    margin: 0rem auto 0 auto;
    padding: 0;
  }
  .footer-contact-item a {
    display: inline-block;
    font-size: 1.1rem;
  }
  .row-socials {
    padding-top: 3rem;
  }
  .row-socials h1 {
    width: 70%;
    margin: 0 auto 1.6rem auto;
    padding-top: 0.8rem;
  }
  .social-list {
    justify-content: center;
  }
  .social-item i {
    margin: 0 2rem;
  }
  .footer-container img {
    margin-top: 2rem;
  }
}
/* <>_______________   [ MEDIA QUERIES 992 ]  ______________ */

@media (min-width: 992px) {
  .nav-menu {
    gap: 4.5rem;
    padding-right: 5rem;
  }
  .mainPageHero-cnr {
    height: 41rem;
    margin: 0;
  }
  .mainPageHero-cnr__bg {
    display: none;
  }
  .hero-text {
    font-size: 4.5rem;
  }
  .hero-text-container p {
    font-size: 1.5rem;
  }

  .video-main {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-swoop-bluetop {
    background-image: url(../../images/Top-Swoop-blue.webp);
    background-size: 100% 100%;
    width: 100%;
    height: 2rem;
    margin-top: -4rem 0 -0.01rem;
    z-index: 1000;
  }
  .whyUs-cnr {
    padding: 5rem 5% 10rem;
  }
  .whyUs-cnr__row {
    max-width: 1200px;
    gap: 5rem 2rem;
  }
  .whyUs-cnr__row__box {
    max-width: 30%;
  }
  .body-container {
    margin: 0;
  }
  .body-row {
    gap: 5rem 3rem;
  }
  .body-link {
    flex-basis: 25%;
  }
  .body-desc h1 {
    transition: 0.3s;
  }
  .no-jambotron-cnr {
    padding: 0 0 0 10%;
    max-width: 1500px;
    margin: 0 auto 4rem;
    height: 53rem;
    gap: 1rem;
  }
  .no-jambotron-cnr__row1 {
    top: 5rem;
    background-position: right;
    background-size: contain;
    margin: 15% 0 0;
    height: 19.5rem;
    width: 50%;
  }
  .no-jambotron-cnr__row2 {
    margin: 19.5% auto 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 85%;
    padding: 0 3rem 0 0;
  }

  .no-jambotron-cnr h3 {
    text-align: left;
    font-size: 1.3rem;
    line-height: 2rem;
  }
  .row-footer-links {
    width: 80%;
  }
}
/* <>_______________   [ MEDIA QUERIES 1200 ]  ______________ */
@media (min-width: 1200px) {
  .nav-menu {
    gap: 5rem;
    padding-right: 10rem;
  }
  .mainPageHero-cnr {
    height: 42rem;
  }
  .hero-text-container {
    top: 50%;
  }

  .body-row {
    gap: 4rem 1.9rem;
  }
  .body-link {
    flex-basis: 19%;
  }
  .since-cnr {
    height: 17rem;
    padding: 0 10%;
  }
  .since-cnr h1 {
    font-size: 10vw;
  }
  .since-cnr h1 span {
    font-size: 11vh;
  }
  .no-jambotron-cnr {
    height: 55rem;
  }
}
/* <>_______________   [ MEDIA QUERIES 1400 ]  ______________ */
@media (min-width: 1400px) {
  .mainPageHero-cnr {
    height: 50rem;
  }

  .hero-text {
    font-size: 5rem;
  }
  .hero-text-container p {
    font-size: 2rem;
    margin: 0.4rem auto 2.5rem;
  }

  .body-container {
    margin: 0 10%;
  }
  .body-row {
    gap: 5rem 5%;
    margin: 0;
  }
  .body-link {
    flex-basis: 20%;
  }
  .since-cnr {
    height: 20rem;
  }
  .since-cnr h1 {
    font-size: 11rem;
  }
  .since-cnr h1 span {
    font-size: 7rem;
  }
}
/* <>_______________   [ MEDIA QUERIES 2048 ]  ______________ */

@media (min-width: 2048px) {
  .video-main {
    max-width: 2048px;
  }
}

/* 0000000000000000000000000----CONTACT----000000000000000000000000000000 */
.contact-body {
  padding: 3rem 0 8rem;
  background-image: url(../../images/test3.webp);
}
.contact-cnr {
  background-color: var(--blueBG);
  margin: 0 10%;
  border-radius: 1rem;
}
.contact-cnr__header {
  width: 100%;
  color: var(--textdarkest);
  text-align: center;
  margin: 0rem auto;
  padding-top: 3rem;
  font-family: RobotoSlab;
}
.contact-cnr__row-1 {
  display: flex;
  flex-direction: column;
  transition: all 1s;
}
.contact-cnr__row-1__form {
  width: 80%;
  margin: 2rem auto;
}
.contact-cnr__row-1__form input,
.contact-cnr__row-1__form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem 0.8rem;
  border: 0;
  border-radius: 0.3rem;
  background-color: #ffffffc2;
  box-shadow: 0.1rem 0.1rem 0.4rem rgba(128, 128, 128, 0.728);
}
.contact-cnr__row-1__form button {
  width: 100%;
  padding: 0.6rem;
  background: var(--red);
  margin-top: 0.5rem;
  color: white;
  border: 0;
  border-radius: 0.3rem;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.contact-cnr__row-1__form button {
  font-size: 1.1rem;
  cursor: pointer;
}
.contact-cnr__row-1__form button:hover {
  transform: scale(1.02);
}
.contact-cnr__row-1__contactsList {
  width: 85%;
  background-color: #ffffffb4;
  margin: 3rem auto;
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0.1rem 0.1rem 0.7rem rgb(133, 133, 133);
}
.contact-cnr__row-1__contactsList__item {
  margin-bottom: 1rem;
}
.contact-cnr__row-1__contactsList__item a {
  font-family: Roboto;
  transition: all 0.3s;
  font-size: 1.05rem;
  color: var(--textdark);
  line-height: 1.7rem;
}
.contact-cnr__row-1__contactsList__item i {
  color: var(--red);
  font-size: 1.2rem;
}
.contact-cnr__row-1__contactsList__item a:hover {
  color: var(--red);
}
.contact-cnr__row-socials {
  background-color: transparent;
}
.contact-cnr__row-socials__social-list {
  background-color: transparent;

  display: flex;
  justify-content: center;
  gap: 0.6rem;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
}
.contact-cnr__row-socials__social-list__item {
  font-size: 2rem;
  color: var(--red);
  transition: 0.2s;
  cursor: pointer;
}
.contact-cnr__row-socials__social-list__item:hover {
  transform: scale(1.2);
}
@media (min-width: 481px) {
  .contact-cnr__row-socials__social-list {
    gap: 1.1rem;
  }
  .contact-cnr {
    margin: 0 15%;
  }
  .contact-cnr__row-socials__social-list__item {
    font-size: 2.1rem;
  }
}
@media (min-width: 768px) {
  .contact-cnr {
    margin: 0 5%;
    padding: 0 2rem;
  }
  .contact-cnr__row-1 {
    flex-direction: row;
    align-items: start;
    gap: 1.5rem;
    padding: 3rem 0 3rem;
  }

  .contact-cnr__row-1__form button {
    width: 8rem;
    font-size: 1.1rem;
  }
  .contact-cnr__row-1__contactsList,
  .contact-cnr__row-1__form {
    margin: 0;
  }
  .contact-cnr__row-1__contactsList__item {
    margin: 0 0 1.8rem 1rem;
  }
  .contact-cnr__row-socials__social-list {
    gap: 1rem;
  }

  .contact-cnr__row-socials__social-list__item {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .contact-cnr {
    margin: 0 10%;
    padding: 0 2rem;
  }
  .contact-cnr__row-1 {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .contact-cnr {
    height: 47rem;
    max-width: 60rem;
    margin: 0 auto;
  }
  .contact-cnr__row-socials__social-list {
    max-width: 60rem;
  }
}

/* ;;;;;;;;;;;;;;;;      ABOUT-US      ;;;;;;;;;;;; */

.hero-cnr {
  position: relative;
  padding-bottom: 12rem;
  overflow-x: hidden;
  width: 100%;
}
.hero-cnr__background {
  height: 100%;
  position: absolute;
  z-index: -3;
  width: 100%;
}
.hero-cnr__background__gradient {
  position: absolute;
  z-index: -2;
  background: linear-gradient(
    45deg,
    hsla(70, 100%, 24%, 1) 0%,
    hsla(70, 100%, 37%, 1) 100%
  );
  width: 100%;
  height: 100%;
}
.hero-cnr__background__pattern {
  position: absolute;
  z-index: -1;
  background-image: url(../../images/test2.webp);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: -1.2rem;
  height: 85%;
  width: 100%;
  top: 0;
  left: 0;
}
.hero-cnr__downcurl {
  display: block;
  background-image: url(../images/test.svg);
  z-index: -1;
  position: absolute;
  height: 64px;
  bottom: 0;
  width: 1920px;
  background-repeat: no-repeat;
  margin-left: -960px;
  background-size: 100% 100%;
  left: 50%;
}
.hero-cnr__content-cnr {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.hero-cnr__content-cnr__textcnr {
  text-align: center;
  color: var(--textlightest);
}
.hero-cnr__content-cnr__textcnr--about {
  margin-top: 5rem;
}
.hero-cnr__content-cnr__textcnr--h1 {
  font-family: RobotoSlab;
  font-size: 3rem;
  font-weight: 900;
}
.hero-cnr__content-cnr__textcnr--p {
  font-family: Roboto;
  font-size: 1.2rem;
  margin: 0 1rem;
}
.hero-cnr__content-cnr__imgcnr img {
  display: block;
  width: 100%;
}

@media (min-width: 481px) {
  .hero-cnr__content-cnr__imgcnr img {
    width: 85%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .hero-cnr {
    height: 32rem;
  }
  .hero-cnr__background {
    height: 27rem;
  }
  .hero-cnr__downcurl {
    width: 100%;
    margin-left: 0;
    left: 0;
    bottom: 5rem;
  }
  .hero-cnr__background__gradient {
    background: rgb(123, 0, 0);
    background: linear-gradient(
      50deg,
      rgba(123, 0, 0, 1) 0%,
      rgba(125, 150, 0, 1) 65%
    );
  }
  .hero-cnr__background__pattern {
    background-position: 0;
    height: 100%;
    background-position: 0rem;
    background-size: cover;
    width: 45rem;
  }

  .hero-cnr__content-cnr {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .hero-cnr__content-cnr__imgcnr img {
    width: 45rem;
    margin: 10rem auto 0;
    z-index: 10;
  }
  .hero-cnr__content-cnr__textcnr--about {
    margin: 5rem -5rem 0 0;
    width: 30%;
  }
  .hero-cnr__content-cnr__textcnr--h1 {
    font-family: RobotoSlab;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  .hero-cnr__white-filler {
    background-color: white;
    height: 10rem;
    width: 100%;
    position: absolute;
    z-index: -4;
    bottom: 0;
  }
}
.body-aboutUs-cnr {
  background-image: url(../../images/test4.webp);
  background-attachment: fixed;
  background-color: white;
  padding-bottom: 3rem;
}

.body-aboutUs-cnr__h1 {
  font-family: RobotoSlab;
  color: var(--textdarkest);
  margin: 0 10% 1.7rem;
  font-size: 2rem;
  text-align: center;
}
.body-aboutUs-cnr__row__box1 {
  width: 90%;
  margin: 0 auto;
}
.body-aboutUs-cnr__row__box1 img {
  width: 100%;
}
.body-aboutUs-cnr p {
  font-family: Roboto;
  color: var(--textdark);
  margin: 1rem 10%;
  line-height: 1.8rem;
  font-size: 1.2rem;
}
.body-aboutUs-cnr__row__box2 img {
  width: 1.7rem;
  display: inline-block;
  margin-left: -1.8rem;
}
@media (min-width: 481px) {
  .body-aboutUs-cnr {
    padding: 4rem 0;
  }
  .body-aboutUs-cnr__row__box1 {
    width: 75%;
    margin: 0 auto;
  }
  .body-aboutUs-cnr__h1 {
    margin: 0 15% 1.7rem;
  }
  .body-aboutUs-cnr p {
    margin: 1rem 15%;
  }
}
@media (min-width: 768px) {
  .body-aboutUs-cnr__h1 {
    margin: 0 20% 3rem;
  }
  .body-aboutUs-cnr__row__box1 {
    width: 50%;
    margin: 0 auto;
  }
  .body-aboutUs-cnr p {
    margin: 2rem 20%;
    line-height: 2rem;
  }
}
@media (min-width: 992px) {
  .body-aboutUs-cnr__row {
    display: flex;
    justify-content: stretch;
    gap: 7%;
    padding: 0 7% 0 3%;
    max-width: 1800px;
    margin: 0 auto;
  }
  .body-aboutUs-cnr p {
    margin: 2rem 0;
  }
  .body-aboutUs-cnr__row__box1 {
    margin-top: 5rem;
  }
  .body-aboutUs-cnr__row__box2 {
    max-width: 55%;
  }
}
/* //////////////////////////////////////// */
.blueBG-cnr {
  position: relative;
  width: 100%;
  margin: 2rem 0;
}
.blueBG-cnr__row {
  background-color: var(--blueBG);
  padding: 10rem 0;
}
.top-swoop-blue,
.bot-swoop-blue {
  background-repeat: no-repeat;
  height: 4rem;
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
}
.top-swoop-blue {
  background-image: url(../../images/Top-Swoop.webp);
  background-size: 43rem 100%;
  background-position: -2rem 0;
  top: 0;
}

.bot-swoop-blue {
  background-image: url(../../images/Bottom-Swoop.webp);
  background-size: 35rem 100%;
  background-position: -5rem 0;
  bottom: 0;
}
@media (min-width: 481px) {
  .top-swoop-blue {
    background-size: 60rem 100%;
    background-position: -2rem 0;
  }

  .bot-swoop-blue {
    background-size: 60rem 100%;
    background-position: -13rem 0;
  }
}
@media (min-width: 768px) {
  .top-swoop-blue {
    background-size: 100% 100%;
    background-position: -2rem 0;
  }

  .bot-swoop-blue {
    background-size: 100% 100%;
    background-position: 0 0;
  }
}
/* -------------------------- */
.about-whyCR-cnr__h1 {
  text-align: center;
  font-family: RobotoSlab;
  font-size: 3rem;
  margin: 0 8% 3.5rem;
  color: var(--textdarkest);
}
.about-whyCR-cnr__row,
.about-whyCR-cnr__row__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-whyCR-cnr__row {
  gap: 2rem;
}
.about-whyCR-cnr__row__box {
  flex-direction: row;
  margin: 0 10%;
  gap: 0.7rem;
}
.about-whyCR-cnr__row__box i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
  font-size: 2.5rem;
}
.about-whyCR-cnr__row__box h1 {
  font-family: RobotoSlab;
  color: var(--red);
}
.about-whyCR-cnr__row__box p {
  font-family: Roboto;
  font-size: 1.1rem;
}
@media (min-width: 481px) {
  .about-whyCR-cnr__row {
    margin: 0 17%;
    gap: 3rem;
  }
  .about-whyCR-cnr__row__box {
    max-width: 40rem;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .about-whyCR-cnr__row {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    margin: 0;
    gap: 3.5rem;
  }
  .about-whyCR-cnr__row__box {
    max-width: 30%;
    margin: 0;
  }
  .about-whyCR-cnr__row__box i {
    font-size: 2.2rem;
  }
  .about-whyCR-cnr__row__box h1 {
    font-size: 1.2rem;
  }
  .about-whyCR-cnr__row__box p {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .about-whyCR-cnr__h1 {
    margin: -1rem auto 4.3rem;
    font-size: 3rem;
  }
  .about-whyCR-cnr__row {
    gap: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .about-whyCR-cnr__row__box {
    max-width: 25%;
  }
}

/* ----------------- CUSTOME -------------- */
.custom-head2-cnr {
  max-width: 1400px;
  margin: 0 auto 5rem;

  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5%;
}
.custom-head2-cnr__row1 {
  margin: 0 auto;
}
.custom-head2-cnr__row1 img {
  width: 100%;
}
.custom-head2-cnr__row2 {
  margin: 0 10%;
}
.custom-head2-cnr__row2 h1 {
  color: var(--red);
  text-align: center;
  font-size: 1.8rem;
}
.custom-head2-cnr__row2 p {
  color: var(--textdarkest);
  font-size: 1.2rem;
  line-height: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 481px) {
  .custom-head2-cnr__row1 {
    width: 70%;
  }
  .custom-head2-cnr__row2 {
    margin: 0 20%;
  }
}
@media (min-width: 768px) {
  .custom-head2-cnr {
    flex-wrap: nowrap;
    padding: 0 5%;
    justify-content: center;
    align-items: center;
  }
  .custom-head2-cnr__row1 {
    width: 50%;
  }
  .custom-head2-cnr__row2 {
    width: 55%;
    margin: 0;
  }
  .custom-head2-cnr__row2 h1 {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .custom-head2-cnr {
    padding: 0 10%;
  }
  .custom-head2-cnr__row1 {
    width: 40%;
  }
  .custom-head2-cnr__row2 {
    width: 55%;
    margin: 0;
  }
}
.howItWork-cnr {
  background-color: var(--blueBG);
  padding: 7rem 0;
}
.howItWork-cnr__h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 3rem;
}
.howItWork-cnr__row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem 10%;
}
.howItWork-cnr__row__box {
  text-align: center;
}
.howItWork-cnr__row__box img {
  width: 10rem;
  margin: 0 auto;
}
.howItWork-cnr__row__box h1 {
  color: var(--textdarkest);
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .howItWork-cnr__row {
    flex: 1 1 0px;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 5%;
  }
  .howItWork-cnr__row__box {
    width: 33%;
  }
}
.custom-2nd-cnr {
  background-image: url(../../images/test4.webp);
  background-attachment: fixed;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 10%;
}
.custom-2nd-cnr__row {
  display: flex;
  flex-direction: column;
}
.custom-2nd-cnr__row__box1 {
  width: 80%;
  margin: 0 auto;
}
.custom-2nd-cnr__row__box1 img {
  width: 100%;
}
.custom-2nd-cnr__h1 {
  text-align: center;
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 4rem;
}
.custom-2nd-cnr__row__box2 h4 {
  font-family: RobotoSlab;
  color: var(--red);
  font-size: 1.3rem;
  margin: 3rem 0 0.5rem;
}
.custom-2nd-cnr__row__box2 p {
  color: var(--textdarkest);
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .custom-2nd-cnr__row__box1 {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .custom-2nd-cnr {
    padding: 8rem 5%;
    max-width: 1400px;
  }
  .custom-2nd-cnr__row {
    flex-direction: row;
    justify-content: stretch;
    align-items: start;
    gap: 2rem;
  }
  .custom-2nd-cnr__row__box1 {
    width: 70%;
    margin-top: 10rem;
  }
  .custom-2nd-cnr__row__box2 {
    width: 100%;
  }
}

.includes-cnr {
  background-color: var(--blueBG);
  padding: 7rem 5%;
}
.includes-cnr-h1 {
  text-align: center;
  color: var(--red);
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.includes-cnr__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 90%;
  margin: 0 auto;
}
.includes-cnr__row__box {
  display: flex;
  width: 100%;
  align-items: center;
  margin-left: 10%;
  gap: 1.2rem;
}
.includes-cnr__row__box h1 {
  color: var(--textdarkest);
  font-size: 1.4rem;
}
.includes-cnr__row__box i::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  font-size: 2.3rem;
  color: var(--red);
}
@media (min-width: 481px) {
  .includes-cnr-h1 {
    margin-bottom: 3rem;
  }

  .includes-cnr__row {
    max-width: 70%;
  }
  .includes-cnr__row__box {
    margin-left: 18%;
  }
}
@media (min-width: 768px) {
  .includes-cnr__row {
    max-width: 1200px;
    margin-left: 8%;
    gap: 4rem 6rem;
  }
  .includes-cnr__row__box {
    width: 30%;
    margin-left: 0;
    gap: 1.2rem;
  }
}
@media (min-width: 992px) {
  .includes-cnr-h1 {
    margin-bottom: 4rem;
  }
  .includes-cnr__row {
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem 6rem;
    padding-left: 5%;
  }
  .includes-cnr__row__box {
    width: 20%;
    margin-left: 0;
    gap: 1.2rem;
  }
}

.categ-cnr {
  text-align: center;
  padding: 2rem 8%;
  background-image: url(../../images/test4.webp);
  background-attachment: fixed;
}
.categ-cnr__h1 {
  color: var(--red);
  font-size: 2.5rem;
  max-width: 75%;
  margin: 0 auto 3rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.1rem solid var(--red);
}
.categ-cnr__row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.categ-cnr__row__box__txtcnr {
  background: rgb(154, 154, 154);
  background: radial-gradient(
    circle,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.categ-cnr__row__box {
  overflow: hidden;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.661);
  border-radius: 1.5rem;
  transition: all 0.2s;
}
.categ-cnr__row__box:hover img {
  transform: scale(1.04);
}
.categ-cnr__row__box:hover {
  box-shadow: 0.1rem 0.1rem 0.5rem 0.1rem rgba(0, 0, 0, 0.585);
}
.categ-cnr__row__box__img {
  clip-path: polygon(0% 0%, 100.1% 0%, 100.1% 100.3%, 50% 97%, 0% 100.3%);
}

.categ-cnr__row__box img {
  max-width: 100%;
  transition: all 0.2s linear;
}

.categ-cnr__row__box__txtcnr h1 {
  background-color: transparent;
  color: var(--red);
  padding: 1rem 0;
  font-size: 1.3rem;
}
.categ-cnr__row__box__txtcnr button {
  box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.53);
  background: var(--redgrad);
  background-color: var(--red);
  border: none;
  outline: none;
  border-radius: 2rem;
  display: inline-block;
  cursor: pointer;
  color: var(--textlightest);
  font-size: 0.8rem;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}
.categ-cnr__row__box__txtcnr button i {
  transition: all 0.2s;
}
.categ-cnr__row__box__txtcnr button:hover {
  background: linear-gradient(to bottom, #b60000 5%, #620000 100%);
  background-color: #7b0000;
}
.categ-cnr__row__box__txtcnr button:hover i {
  transform: translateX(0.2rem);
}
@media (min-width: 481px) {
  .categ-cnr {
    padding: 2rem 20%;
  }
}
@media (min-width: 768px) {
  .categ-cnr__h1 {
    max-width: 35%;
  }
  .categ-cnr {
    padding: 2rem 0;
  }
  .categ-cnr__row {
    justify-content: center;
    gap: 5rem 8%;
  }
  .categ-cnr__row__box {
    max-width: 35%;
  }
}
@media (min-width: 992px) {
  .categ-cnr {
    padding: 2rem 0;
  }
  .categ-cnr__row {
    justify-content: center;
    gap: 5rem 4%;
  }
  .categ-cnr__row__box {
    max-width: 25%;
  }
}
.transport-cnr {
  padding-bottom: 6rem;
  border-bottom: 0.2rem solid rgb(172, 172, 172);
}
.transport-cnr__row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 1rem 15%;
  margin: auto;
  max-width: 1500px;
}
.transport-cnr__row__box {
  overflow: hidden;
  transition: 0.2s;
  box-shadow: 0.05rem 0.1rem 0.4rem rgba(0, 0, 0, 0.765);
  border-radius: 1rem;
}
.transport-cnr__row__box:hover {
  box-shadow: 0.01rem 0.5rem 1rem rgba(0, 0, 0, 0.657);
  transform: translateY(-0.5rem) scale(1.01);
}

.transport-cnr__box__imgcnr img {
  width: 100%;
}
.transport-cnr__box__txtcnr {
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 1.3rem;
}
.transport-cnr__box__txtcnr h1 {
  background: var(--redgrad);
  color: var(--textlightest);
  padding: 0.5rem 0;
}
.transport-cnr__box__txtcnr p {
  color: var(--textdarkest);
  font-size: 1.1rem;
  padding: 0 1rem;
}
.transport-cnr__box__txtcnr button {
  width: 8rem;
  margin: 0 auto 1rem;
  border: 0;
  background-color: transparent;
  outline: none;
  color: var(--red);
  font-size: 1.2rem;
  padding: 0.3rem 0;
  font-family: RobotoSlab;
  cursor: pointer;
}

.transport-cnr__box__txtcnr button i {
  transition: 0.15s ease-out;
}
.transport-cnr__box__txtcnr button:hover i {
  transform: translateX(0.5rem);
}

@media (min-width: 481px) {
  .transport-cnr__row {
    padding: 2rem 20%;
  }
}
@media (min-width: 768px) {
  .transport-cnr__row {
    padding: 4rem 0;
    justify-content: center;
    gap: 5rem 7%;
  }
  .transport-cnr__row__box {
    max-width: 35%;
  }
}
@media (min-width: 992px) {
  .transport-cnr__row {
    padding: 4rem 0 8rem;
    justify-content: center;
    gap: 5rem 3%;
  }
  .transport-cnr__row__box {
    max-width: 21%;
  }
}
/* ------------------------------- */
.daytour-cnr {
  background-image: url(../images/test4.webp);
  background-attachment: fixed;
  border-bottom: 0.1rem solid rgb(194, 194, 194);
}
.daytour-cnr__row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 5% 10rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.daytour-cnr__row__box {
  width: 100%;
  height: 4rem;
  max-width: 16.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0.1rem 0.1rem 0.3rem gray;
  border-radius: 0.3rem;
  overflow: hidden;
  transition: all 0.2s;
}
.daytour-cnr__row__box:hover {
  transform: scale(1.02);
  box-shadow: 0.1rem 0.1rem 0.8rem rgb(168, 168, 168);
}
.daytour-cnr__row__box__img {
  padding: 0 1rem 0 0.8rem;
  width: 7rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, var(--green1) 0%, rgb(255, 255, 255) 100%);
}
.daytour-cnr__row__box__img img {
  width: 80%;
  margin-left: -1.5rem;
}
.daytour-cnr__row__box__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  margin-left: -10%;
  gap: 0.5rem;
}
.daytour-cnr__row__box__txt h1 {
  color: var(--red);
  font-size: 1.1rem;
}
.daytour-cnr__row__box__txt button {
  border: none;
  outline: none;
  background: none;
  color: var(--textdarkest);
  cursor: pointer;
}
@media (min-width: 481px) {
  .daytour-cnr__row {
    gap: 3rem 2rem;
  }
}
