@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;700;100;1500&family=Rubik&display=swap");

* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000; 
  border-radius: 2px;
} */

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    background: #fff;
}

/* NumBar*/ 
.NumBar {
  display: inline-block;
  top: 0;
  color: #fff;
  position: fixed;
  background-color: orangered;
  width: 100%;
  z-index: 100;
  height: 20px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .NumBar a {
    font-size: 10px;
    margin: 0 4px;
  }

  .NumBar {
    height: 60px;
  }
}

.NumBar a {
  display: inline-block;
  font-size: 0.8em;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0 20px;
  padding: 0 4px;
  position: relative;
  text-decoration: none;
}

/* NAVBAR */

#NavBar {
    background: #fff;
    position: fixed;
    top: 20px;
    height: 60px;
    line-height: 60px;
    width: 100vw;
    z-index: 100;
}

.NavBar-Wrapper {
    margin: auto;
    text-align: center;
    width: 70%;
}

@media screen and (max-width: 1600px) {
    .NavBar-Wrapper {
        width: 90%;
    }
}

@media screen and (max-width: 638px) {
    .NavBar-Wrapper {
        width: 100%;
    }

    #NavBar {
      top: 60px;
      z-index: 10;
    }
}

.Logo {
    float: left;
    filter: invert();
    margin-top: 5px;
    margin-left: 28px;
    font-size: 1.5em;
    height: 10px;
    width: auto;
}

@media(max-width: 1600px) {
    .Logo {
        margin-left: 5px;
    }
}

#NavBar ul {
    float: right;
    list-style: none;
    margin-top: -2px;
    text-align: right;
    transition: transform 0.5s ease-out;
    -webkit-transition: transform 0.5s ease-out;
}

@media(max-width: 1600px) {
    .Navigations {
        display: none;
    }
}

#NavBar li {
    display: inline-block;
}

#NavBar li a {
    color: #000;
    display: block;
    font-size: 0.8em;
    height: 50px;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0 20px;
    padding: 0 4px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out; 
}

#NavBar li a:hover { 
    color: #5a5a5a;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
}

/* hover line */
#NavBar li a:before, #NavBar li a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: 4px;
    background: orangered;
}

#NavBar li a:before {
    left: 0;
    transition: 0.5s;
}

#NavBar li a:after {
    background: orangered;
    right: 0;
    /* transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); */
}

#NavBar li a:hover:before {
    background: orangered;
    width: 100%;
    transition: width 0.5s cubic-bezier((0.22, 0.61, 0.36, 1));
}

#NavBar li a:hover:after {
    background: transparent;
    width: 100%;
    /* transition: 0s; */
}

.menuIcon {
  display: none;
}

/*Mobile Menu Icon*/
@media(max-width: 1600px) {
    .menuIcon {
        cursor: pointer;
        display: block;
        position: fixed;
        float: right;
        right: 70px;
        top: 20px;
        height: 23px;
        width: 27px;
        z-index: 112;
    }
}

@media(max-width: 1200px) {
  .menuIcon {
      cursor: pointer;
      display: block;
      position: fixed;
      float: right;
      right: 70px;
      top: 78px;
      height: 23px;
      width: 27px;
      z-index: 112;
  }
}

 /* Icon Bars */
 .icon-bars {
    background: #000;
    position: absolute;
    margin-right: 28px;
    top: 45%;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  } 

  .icon-bars::before {
    background: #000;
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    right: 45px;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  .icon-bars::after {
    margin-top: 0px;
    background: #000;
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  /* Toggle Menu Icon */
  .menuIcon.toggle .icon-bars {
    background-color: #fff;
    top: 5px;
    transform: translate3d(0, 5px, 0) rotate(135deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars::before {
    background-color: #fff;
    top: 0;
    transition-delay: 0.1s;
    opacity: 0;
  }

  .menuIcon.toggle .icon-bars::after {
    top: 10px;
    background-color: #fff;
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars.overlay {
    width: 20px;
    opacity: 0;
    -webkit-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
  }

  
/*======================================================
                   Responsive Mobile Menu 
  ======================================================*/
.overlay-menu {
    background: orangered;
    color: #ffffff;;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 15px;
    transform: translateX(-100%);
    width: 100vw;
    height: 100vh;
    -webkit-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    z-index: 100;
  }
  
  .overlay-menu ul, .overlay-menu li {
    display: block;
    position: relative;
  }
  
  .overlay-menu li a {
    display: block;
    font-size: 1.8em;
    letter-spacing: 4px;
    color:#fff;
    text-decoration: none;
  /*   opacity: 0; */
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  /*   -webkit-transition: 0.2s opacity 0.2s ease-out;
    transition: 0.2s opacity 0.2s ease-out; */
  }
  
  .overlay-menu li a:hover,
  .overlay-menu li a:active {
    color: rgb(122, 122, 122);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }


  /*----------------------------------------------------SlideShow--------------------------------------------------- */
  * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

@media screen and (max-width: 1600px) {
  .slideshow-container {
    top: 100px;
  }
}

/* Hide the images by default */
.myslide {
  height: auto;
  overflow: hidden;
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 50px;
  padding: 45px;
  color: rgb(235, 85, 40, 80%);
  transition: 0.1s;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: rgb(0, 0, 0, 80%);
  font-size: 60px;
}

/* Caption text */
.text {
  color: #fff;
  position: absolute;
  letter-spacing: 2px;
  line-height: 45px;
  top: 25%;
  left: 15%;
  -webkit-animation-name: posi;
  -webkit-animation-duration: 2s;
  animation-name: posi;
  animation-duration: 2s;
  z-index: 10;
}

.text h1 {
  color: #fff;
  font-weight: bold;
  margin: 20px;
}

.text p {
  color: #fff;
  font-size: 25px;
}

@-webkit-keyframes posi {
  from {left: 20%;}
  to {left: 15%;}
}

@keyframes posi {
  from {left: 20%;}
  to {left: 15%;}
}

.Image {
  transform: scale(-1, -1);
  margin-bottom: -10px;
  -webkit-animation-name: zoomin;
  -webkit-animation-duration: 20s;
  animation-name: zoomin;
  animation-duration: 20s;
}

@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.2, 1.2);}
}

@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.2, 1.2);}
}

.Dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 20px;
  cursor: pointer;
}

/* The dots/bullets/indicators */
.dot {
  transition-duration: .8s;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid rgb(255, 255, 255, 80%);;
  border-radius: 50%;
  margin: 0 20px;
  cursor: pointer;
}

.active, .dot:hover {
  transition-duration: .8s;
  background-color: rgb(0, 0, 0, 80%);
  width: 20px;
  height: 20px;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes fade {
  from {opacity: .5}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .5}
  to {opacity: 1}
}

@media screen and (max-width: 1400px) {
  .text {
    line-height: 10px;
    top: 30%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-animation-name: posi2;
    -webkit-animation-duration: 1s;
    animation-name: posi2;
    animation-duration: 1s;
  }

  .dot {
    width: 10px;
    height: 10px;  
    margin: 0 10px;
  }

  @-webkit-keyframes posi2 {
    from {top: 5%;}
    to {top: 20%;}
  }

  @keyframes posi2 {
    from {top: 5%;}
    to {top: 20%;}
  }

  .text h1 {
    font-size: 15px;
    margin-top: 0;
  }

  .text p {
    font-size: 10px;
  }
}

@media screen and (max-width: 520px) {
  .text h1 {
    font-size: 30px;
  }

  .text p {
    font-size: 10px;
  }
}

@media screen and(max-width: 1400px) {
.MainInfo {
  position: absolute;
  z-index: 0;
}
}

.MainInfo {
  position: relative;
  display: flex;
  background-color: #fff;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  color: #000;
  padding-top: 30px;
  padding-bottom: 30px;
  text-transform: uppercase;
}


.inner-main {
  width: 1200px;
  justify-content: space-between;
  display: flex;
}

/* Vertical Line Styles */

.vl {
  width: 1px;
  border-right: 2px solid orangered;
}

.MainInfo .C1 {
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.MainInfo .C2 {
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.MainInfo .C3 {
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.MainInfo .C4 {
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.ABTTitle {
  padding-top: 70px;
  text-align: left;
  margin-left: 20%;
  color: orangered;
  font-size: 30px;
  font-weight: 900;
  text-transform:uppercase;
}

@media screen and (max-width: 1400px){ 
  .MainInfo .C1 {
    font-size: 15px;
    font-weight: 500;
  }

  .MainInfo .C2 {
    font-size: 15px;
    font-weight: 500;
  }

  .MainInfo .C3 {
    font-size: 15px;
    font-weight: 500;
  }

  .MainInfo .C4 {
    font-size: 15px;
    font-weight: 500;
  }

  .About-Image-Container {
    width: 50%;
    height: auto;
  }

}

.ABTTitle span {
  color: #000;
  padding-left: 5%;
}

.SepratorLeft {
  display: block;
  margin-left: 20%;
}

#whatsapp .wtsapp {
  display: block;
  position: fixed;
  font-size: 40px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  border: none;
  text-align: center;
  line-height: 70px;
  left: 92%;
  top: 87%;
  z-index: 100;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition-duration: 0.5s;
}

@media(max-width: 1200px) {
  #whatsapp .wtsapp {
    left: 80%;
  }
}

#whatsapp .wtsapp:hover {
  scale: 1.1;
}

.About {
  margin-top: 8%;
  display: flex;
  flex-direction: row;
}

.AboutDesc {
  width: 75%;
  font-size: 22px;
  text-align: left;
  font-weight: 400;
  line-height: 1.3;
  color: #5a5a5a;
  margin-left: 20%;
}

.About-Image-Container {
  padding-right: 100px;
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
}

.About-Image-Container .img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .About {
    flex-direction: column;
    align-items: right;
  }
  
  .ABTTitle {
    padding-right: 5%;
  }
  
  .AboutDesc {
    padding-right: 5%;
  }
  .Btn-Container { /*////////////////////////////////////////*/
    padding-left: 20%;
  }
}

/* Button Styles */

.Btn {
  background: orangered;
  color: #fff;
  text-transform: uppercase;
  width: 150px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: .5s;
  border: 3px solid orangered;
}

.Btn-Container {
  padding-left: 70%;
}

.Btn:hover {
  transition-duration: .7s;
  color: #000;
  background: #fff;
  border: 3px solid #000  ;
}

/* Services Section Styles */

.Services-Title {
  font-size: 50px;
  padding-top: 100px;;
  font-weight: 900;
  width: 100%;
  text-align: center;
  /* padding-left: 10%; */
  padding-bottom: 90px;
}

.Services-Title span {
  color: orangered;
}

.Services-Container {
  display: flex;
  padding-left: 10%;
  padding-right: 10%;
  flex-direction: row;
  justify-content: space-between;
  overflow: visible;
}

.Service {
  display: flex;
  flex-direction: column;
  background: #f1f1f2;
  align-items: center;
  text-align: center;
  width: 330px;
  height: 450px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  transition: box-shadow 0.5s, transform 0.5s, color 0.5s;
  overflow: hidden;
  cursor: pointer;
  padding: 20px 15px;
  position: relative;
  border: #ececec solid 1px;
}

.Service::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #000;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s;
}

.Service:hover:before {
  height: 100%;
  color: #fff;
}

/* Service Icon */
.Service-Ico {
  width: 100px !important;
  height: 100px !important;
  position: absolute;
  bottom: 30px !important;
  left: 115px !important;
  z-index: 1;
  transition: 0.5s;
}

.Service:hover, .Service:focus, .Service:active {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  color: #fff;
}
.Service:hover .Service-Ico{
  filter: brightness(0) invert(1);
}

.Service-Name {
  padding-top: 10px;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  padding-bottom: 30px;
}

.Service-Description {
  padding-left: 4%;
  padding-right: 4%;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .Services-Container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-left: 10%;
    padding-right: 10%;
    justify-content: space-around;
  }

  .Service-Ico {
    right: 180px !important;
  }
}

@media screen and (max-width: 1700px) {
  .Service {
    border-radius: 25px;
  }
}

.pkgPrice {
  font-weight: 400;
  font-size: large;
}

.pkgPrice sup {
  font-weight: 200;
  font-size: small;
}

/* Loyalty */

.Loyalty {
  padding-left: 18%;
  padding-right: 10%;
  color: #000;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.Bronze img {
  width: 280px;
  height: 162px;
  border-radius: 10px;
}

.Silver img {
  width: 280px;
  height: 162px;
  border-radius: 10px;
}

.Gold img {
  width: 280px;
  height: 162px;
  border-radius: 10px;
}

.Black img {
  width: 280px;
  height: 162px;
  border-radius: 10px;
}

.LoyaltyTitle {
  font-size: 50px;
  padding-top: 100px;;
  font-weight: 900;
  width: 100%;
  text-align: center;
  padding-bottom: 40px;
}

.LoyaltyTitle span {
  color: orangered;
}

.LoyaltyDes {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-left: 20%;
  align-items: center;
  padding-bottom: 40px;
}

@media screen and (max-width: 1200px) {
 
  .Loyalty {
  flex-direction: column;
 }

 .LoyaltyDes {
  flex-direction: column;
 }

}

.LoyaltyBTN {
  background: orangered;
  color: #fff;
  text-transform: uppercase;
  width: 150px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: .5s;
  border: 3px solid orangered;
  padding-left: 10%;
}

/* Client Section Styles */

.custom-logo-slider {
  width: 100px;
  height: 100px;
  transition: 0.5s;
  border-radius: 19px;
}
.custom-logo-slider:hover{
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.custom-slide-track {
  display: flex;
  gap: 3em;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  animation-delay: -10s;
}

.custom-slider {
  padding: 1em 0;
  overflow: hidden; 
}

.custom-slide {
  display: inline-block;
}


@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

.Clients-Title {
  margin-top: 8%;
  font-size: 60px;
  font-weight: 900;
  width: 100%;
  text-align: center;
  padding-bottom: 90px;
} 

.Clients-Title span {
  color: orangered;
}

.Clients {
  position: relative;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
}

.Clients-Container {
  display: flex;
  padding-left: 10%;
  padding-right: 10%;
  flex-direction: column;
  justify-content: space-between;
}

.Clients-Row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 50px;
}

.Client-Logo {
  max-width: 150px;
  width: 100%;
  filter: saturate(100%);
  transition: 0.5s;
}

.Client-Logo:hover {
  filter: saturate(100%);
}

/* Packages */
.PackagesTitle {
  font-size: 50px;
  font-weight: 900;
  width: 100%;
  text-align: center;
  padding-bottom: 90px;
  padding-top: 90px;
}

.PackagesTitle span {
  color: orangered;
}

.Pkg-Container{
  display: flex;
  padding-left: 5%;
  padding-right: 5%;
  flex-direction: row;
  justify-content: space-between;
  overflow: visible;
}

@media screen and (max-width: 1200px) {
  .Pkg-Container {
    flex-direction: column;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
    gap: 20px;
    justify-content: space-around;
  }
}

@media screen and (max-width: 1600px) {
  .Pkg-Container {
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
    gap: 20px;
    justify-content: space-around;
  }
}

.PKGWRP1 {
  display: flex;
  flex-direction: column;
  background: #fff;
  align-items: center;
  text-align: center;
  width: 300px;
  font-weight: 200;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  overflow: hidden;
  padding: 20px 10px;
  position: relative;
  border: #f1f1f2 solid 3px;
}
.PKGWRP2 {
  display: flex;
  flex-direction: column;
  background: #fff;
  align-items: center;
  font-weight: 200;
  text-align: center;
  width: 300px;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  overflow: hidden;
  padding: 20px 10px;
  position: relative;
  border: #f1f1f2 solid 3px;
}
.PKGWRP3 {
  display: flex;
  flex-direction: column;
  background: #fff;
  font-weight: 200;
  align-items: center;
  text-align: center;
  width: 300px;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  overflow: hidden;
  padding: 20px 10px;
  position: relative;
  border: orangered solid 3px;
}
.PKGWRP4 {
  display: flex;
  flex-direction: column;
  background: #fff;
  align-items: center;
  text-align: center;
  font-weight: 200;
  width: 300px;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  overflow: hidden;
  padding: 20px 10px;
  position: relative;
  border: #f1f1f2 solid 3px;
}
.PKGWRP5 {
  display: flex;
  flex-direction: column;
  background: #fff;
  align-items: center;
  text-align: center;
  font-weight: 200;
  width: 300px;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  overflow: hidden;
  padding: 20px 10px;
  position: relative;
  border: #f1f1f2 solid 3px;
}

.PKGWRP1 p span{
  color: red
}

.PKGWRP2 p span{
  color: red
}

.PKGWRP3 p span{
  color: red
}

.PKGWRP4 p span{
  color: red
}

.PKGWRP5 p span1{
  color: red
}

.pkgTitle p span3{
  color: orangered
}

.PKGWRP1 p span1{
  color: rgb(12, 200, 12)
}

.PKGWRP2 p span1{
  color: rgb(12, 200, 12)
}

.PKGWRP3 p span1{
  color: rgb(12, 200, 12)
}

.PKGWRP4 p span1{
  color: rgb(12, 200, 12)
}

.PKGWRP5 p span1{
  color: rgb(12, 200, 12)
}

.pkgBTN3 {
  background: orangered;
  color: #fff;
  text-transform: uppercase;
  width: 150px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: .5s;
  border: 3px solid rgb(255, 195, 173);
}

.pkgBTN{
  background: #919191;
  color: #fff;
  text-transform: uppercase;
  width: 150px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: .5s;
  border: 3px solid #f1f1f2;
}

.Notes{
  padding-left: 7%;
  font-size: 10px;
  font-weight: 300;
  padding-top: 1%;
}

/* Footer Styles */
.Footer {
  position: relative;
  display: flex;
  flex-direction: row;
  padding-left: 10%;
  padding-top: 10px;
  padding-right: 10%;
  width: 100%;
  justify-content: space-between;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  color: #b00000;
}

.FooterLogo {
  padding-left: 10%;
  cursor: pointer;
}

.Footer .Links{
  padding-top: 10px;
  line-height: 1.5;
  flex-direction: column;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  color: #fff;
}

.Footer .Links a {
  text-decoration: none;
  font-weight: 400;
  color: #fff;
}

.Social-Container {
  padding-top: 35px;
  padding-right: 10%;
  text-decoration: none;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.Social-Icons {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  background: #000;
  cursor: pointer;
}

/* Social Net */
.social-X {
  width: 45px;
  margin: 1% 1px -18px 1px;
  padding: 0.6% 0%;
  padding: 10px;
}

.social-a-f {
  margin-right: -12px;
}

.social-X:hover {
  fill: #ffffff !important;
  transition: 0.5s;
  transform: scale(0.8);
  cursor: pointer;
}

/* Social Net */
.copyright {
  text-align: center;
  font-size: 12px !important;
  font-weight: 400;
  color: #ffffff;
  background-color: #000000 !important;
}

/* Footer Net */
.footer {
  background: #000;
  height: 200px;;
  padding: 30px 0px 0px 0px !important;
  margin-top:5% !important;
  /* font-family: 'Play', sans-serif; */
  text-align: center;
}

.footer .row {
  width: 100%;
  /* margin: 1% 0%; */
  padding: 0.6% 0%;
  color: rgb(231, 231, 231);
  font-size: 0.8em;
  background-color: #000;
}
.footnav{
  padding-bottom: 30px !important;
}
.footer .row ul li a {
  font-size: 16px;
  /* letter-spacing: 1.2x; */
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}

.footer .row ul li:hover {
  color: #e9e9e9;
  font-weight: 300;
  transform: scale(1.1);
  cursor: pointer;
}

.footer .row a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.footer .row a i {        
  border-radius: 50%;
  padding: 0.7% 0.8%;
}
.footer .row a i.fa-facebook{
  padding: 0.685% 1%;
}
.fa .fa-facebook
{
  margin-right: -30px;
  margin-right: 30px !important;
}

.footer .row a i:hover{
  transform: scale(1.1);
}

.footer .row ul{
  width:100%;
}

.footer .row ul li{
  display:inline-block;
  margin:0px 30px;
}

.footer .row a i{
  font-size:2em;
  margin:0% 1%;
}

.Contact {
  position: relative;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Contact-Title {
  font-size: 50px;
  font-weight: 900;
  margin-top: 6%;
  width: 100%;
  text-align: center;
  /* padding-left: 10%; */
  padding-bottom: 70px;
} 

.Contact-Title span {
  color: orangered;
}

.Contact-Container {
  color: #000;
  width: 100%;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 2fr;
  grid-template-areas:
  "Form ContactInfo" 
  "Form Map";
  grid-gap: 10px;
  height: 720px;   /*******************************************/
}


/* Form Styles */

.Form-Title {
  padding-top: 20px;
  padding-left: 40px;
  padding-bottom: 20px;
  color: #000;
  font-weight: 500;
  font-size: 2.1em;
}

.Form-Title a {
  font-size: 14px;
  font-weight: 200;
  padding-top: 1px;
}

.FormBox {
  padding-left: 70px;
  padding-right: 70px;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  caret-color: orangered;
}

.FormBox .Row50 {
  display: flex;
  gap: 20px;
  caret-color: orangered;
}

.FormBox .Row50 .InputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
  caret-color: orangered;
}

.FormBox .Row100 .InputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 100%;
  caret-color: orangered;
}

.InputBox span {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

.InputBox input {
  padding: 10px;
  font-size: 1.1em;
  border-radius: 10px;
  border: 1px solid #000;
  caret-color: orangered;
}

.InputBox textarea {
  padding: 10px;
  font-size: 1.1em;
  border: 1px solid #000;
  resize: none;
  border-radius: 10px;
  min-height: 200px;
  caret-color: orangered;
}

.InputBox [type="submit"]
{
  margin-top: 20px;
  cursor: pointer;
  background: orangered;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 1.1em;
  padding: 14px 15px;
}

.InputBox ::placeholder {
  color: #999;
}

.Form {
  grid-area: Form;
  height: 800px;              /********************/
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
}


/* Quote Styles */

.Qoute {
  grid-area: ContactInfo;
  border-radius: 10px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 35px;
  padding-bottom: 35px;
  background: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  justify-content: center;
}

.Qoute a span {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.Qoute a {
  color: #fff;
  font-size: 16px;
  text-align: left;
  font-weight: 200;
}


/* Map Styles */


.Map iframe {
  width: 100% !important;
  height: 493px;
  border-radius: 20px;
  margin-top: 10px;
  padding: 0;
  grid-area:  Map;
  background: #fffff5;
  border-radius: 10px;
  border: 1px solid #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  filter: grayscale(100%) invert(90%);
}

@media screen and (max-width: 1600px) {
  .Map iframe {
    height: 200px;
  }

  .Contact-Container {
    color: #000;
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "Form Form" 
    "ContactInfo ContactInfo"
    "Map Map";
    grid-gap: 10px;
    height: auto;
  }
}

