@import url("https://fonts.googleapis.com/css2?family=Euphoria+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  font-family: sans-serif;

  /*overflow: hidden; just brcause of this style, browser stops us to scroll pages*/
}

/* First Page Content*/
.first-page {
  height: 100vh;
  width: 100%;
}

/* Image Slide */

.buttons {
  display: none;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  opacity: 0;
  transition: 350ms ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide:first-child {
  background: url("../media/ImageSliderOne.jpg") no-repeat center top/cover;
}
.slide:nth-child(2) {
  background: url("../media/ImageSliderTwo.jpg") no-repeat center top/cover;
}
.slide:nth-child(3) {
  background: url("../media/ImageSliderThree.jpg") no-repeat center top/cover;
}

.slide .content {
  font-size: 13vw;
  color: #fff;
  opacity: 0;
  margin-top: 17vh;
  text-align: center;
}

.slider :first-child :first-child :first-child :nth-child(3),
.slider :nth-child(2) :first-child :first-child :nth-child(3),
.slider :nth-child(3) :first-child :first-child :nth-child(3) {
  font-size: 22vw;
  line-height: 1;
}

.slide.current .content {
  opacity: 0.8;
  font-family: "Euphoria Script", cursive;
  transition: all 800ms ease-in-out;
}

.content-first-slider .content-for-desktop-size,
.content-second-slider .content-for-desktop-size,
.content-third-slider .content-for-desktop-size {
  display: none;
}

/*Slider Bars*/
.slider-bar,
.slider-bar::before,
.slider-bar::after {
  display: block;
  position: absolute;
  background: #797979;
  height: 0.2em;
  width: 1em;
  border-radius: 2px;
  top: 97%;
  left: 50%;
  transform: translateX(-50%);
}

.slider-bar::before,
.slider-bar::after {
  content: "";
}

.slider-bar::before {
  transform: translateX(-2em) translateY(-3px);
}

.slider-bar::after {
  transform: translateX(1em) translateY(-3px);
}

.bar-for-first-slider::before {
  background: #fff;
}

.bar-for-second-slider {
  background: #fff;
}

.bar-for-three-slider::after {
  background: #fff;
}

/*Mouse Scroll*/

#scroll {
  transition: bottom 0.6s;
}

.scroll {
  position: absolute;
  bottom: 2%; /*OR top = 91%(but there  are differences in mobile version open this website in mobile to check both option remember open it in mobile web not in virtual mobile*/
  right: 3%;
}

.mouse {
  height: 45px;
  width: 27px;
  border: 2px solid #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
}

.mouse-scroll {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  margin-top: 28%;
  animation: 1.5s scroll cubic-bezier(0.7, -0.6, 0.3, 8) infinite;
}

.mouse:hover {
  background: #fff;
  opacity: 0.7;
  transition: all 300ms ease-in-out;
}

.mouse:hover .mouse-scroll {
  background: #696969;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.8);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(15px) scale(0.8);
  }
}

/* Header */

#header {
  transition: top 0.6s;
}

header {
  position: fixed;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  width: 100%;
  z-index: 999;
}

.logo-text {
  height: auto;
  width: 170px;
  text-align: left;
  margin: 6px 0.6em;
}

.header-nav-models-tablet-view,
.header-nav-models {
  display: none;
}

.header-nav-content {
  height: auto;
  position: absolute;
  top: 0%;
  right: 0%;
  background-color: white;
  transform: scale(0, 1);
  transition: transform 200ms ease-in-out 100ms;
  transform-origin: right;
  margin-top: 3rem;
  border: 1px solid #bfafb2;
  border-right: none;
  border-radius: 15px 0px 0px 15px;
  box-shadow: 0px 0px 12px #808080;
}

/* Horizontal line in the Main Hamburger Navigaion Bar*/
.header-nav-links-content hr {
  border-top: 1px solid #bfafb2;
  border-bottom: none;
  margin: 0px 10px;
}

/* Size of Main Hamburger Slide */
.header-nav-links-content li {
  margin-right: 4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 1.8rem;
  font-family: sans-serif;
  list-style: none;
}

.header-nav-links-content li a {
  color: black;
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 100ms ease-in-out;
}

.header-nav-links-content li :hover,
.header-nav-links-content li:first-child a {
  color: #8d8d8d;
}
.header-nav-links-content li:first-child a {
  cursor: default;
  pointer-events: none;
}
/* Navigation Toggle with animation*/
.nav-toggle {
  display: none;
}

.nav-toggle-lable {
  position: absolute;
  right: 0%;
  margin-right: 1.3em;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-toggle-lable:hover {
  cursor: pointer;
}
.nav-toggle-lable span,
.nav-toggle-lable span::before,
.nav-toggle-lable span::after {
  display: block;
  background: white;
  height: 0.125em;
  width: 1.2em;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.nav-toggle-lable span::before,
.nav-toggle-lable span::after {
  content: "";
  position: absolute;
}

.nav-toggle-lable span::before {
  transform: translateY(-5px);
}

.nav-toggle-lable span::after {
  transform: translateY(5px);
}

.nav-toggle-lable.open span {
  transform: translateX(-20px);
  background: transparent;
}

.nav-toggle-lable.open span::before {
  transform: rotate(45deg) translate(15px, -15px);
  background: #fff;
}

.nav-toggle-lable.open span::after {
  transform: rotate(-45deg) translate(15px, 15px);
  background: #fff;
}

.nav-toggle:checked ~ .header-nav-content {
  transform: scale(1, 1);
}

.nav-toggle:checked ~ .header-nav-content a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 250ms;
}

/* Second Page Content*/

#second-page {
  width: 100%;
  background-color: #131313;
  overflow-x: hidden;
}

.who {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 15px 25px 20px 25px;
  text-align: center;
}

.who-heading p {
  padding-bottom: 0px;
}
.who-heading p :first-child {
  display: none;
}
.who-heading p :nth-child(2),
.who-heading p :nth-child(3) {
  font-size: 22px;
  font-weight: bolder;
}

.who-content :first-child {
  height: 100%;
  display: flex;
  align-items: center;
  word-spacing: 4px;
  font-size: 14px;
  line-height: 20px;
}

.parallax-window {
  display: none;
}

.parallax-one-mobile-view {
  background-image: url(../media/Parallax_one_mobile.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}
.parallax-two-mobile-view {
  background-image: url(../media/Parallax_three_mobile.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}
.parallax-three-mobile-view {
  background-image: url(../media/Parallax_two_mobile.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

.parallax-four-mobile-view {
  background-image: url(../media/Parallax_four_mobile.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

/* End of the Second Page Content*/

/*Footer*/

footer {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: #131313;
  font-family: "Poppins", sans-serif;
}

/*Join us content*/
.footer-desktop hr {
  display: none;
}
.footer-join-us-form {
  display: none;
}
.footer-join-us-content {
  text-align: center;
  padding: 20px 25px;
  padding-bottom: 0;
}

.footer-join-us-content :first-child {
  color: #ffffff;
  font-size: 20px;
  font-weight: bolder;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.footer-join-us-content :nth-child(2) {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}

.footer-join-us-button {
  text-align: center;
  margin-top: 8px;
}

.footer-join-us-button a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 50px;
  background-color: #444857;
}

.footer-join-us-button i {
  font-size: 15px;
  margin-left: 5px;
}

.footer-join-us-button a:hover {
  background-color: #626262;
  transition: all 500ms ease-in-out;
}
/* End of the Join us content*/
.footer-map-links {
  text-align: center;
}
/*Map*/
#map {
  height: 45vh;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
/*End of the map*/
/*Social Media tem links*/
.instagram-repeat,
.facebook-repeat,
.phone-repeat,
.email-repeat,
.linkedin-repeat {
  display: none;
}
.footer-links {
  margin-top: 10px;
}
.footer-links a {
  text-decoration: none;
}

.footer-links a i {
  height: 30px;
  width: 30px;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  line-height: 29px;
  vertical-align: middle;
  background-color: #444857;
  color: #fff;
  margin: 6px 10px;
  transition: all 400ms;
}
.footer-links a i:hover {
  border-color: #ffffff;
  background-color: transparent;
  cursor: pointer;
}

.footer-copyright {
  width: 100%;
  position: absolute;
  bottom: 0%;
}

.footer-copyright hr {
  border-bottom: none;
  border-right: none;
  border-left: none;
  margin: 0 15px;
  border-color: #8d8d8d;
}

.footer-copyright :nth-child(2) :first-child {
  font-size: 12px;
  margin: 6px 0;
  text-align: center;
  color: #696969;
}

/*End of the social media button effect*/
/*End of the footer*/

@media screen and (max-height: 825px) {
  #map {
    height: 53vh;
  }
}
@media screen and (max-height: 740px) {
  #map {
    height: 45vh;
  }
}
@media screen and (max-height: 670px) {
  #map {
    height: 40vh;
    margin-top: 25px;
  }
}
@media screen and (max-height: 642px) {
  #map {
    height: 36vh;
  }
}

@media screen and (max-height: 570px) {
  #map {
    margin-top: 15px;
  }
  #map {
    height: 26vh;
  }

  .footer-links {
    margin-top: 4px;
  }
}

@media screen and (min-width: 575px) and (max-width: 1004px) {
  header {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /*Main Content slider from Left side changes*/

  .header-nav-content {
    height: 100vh;
    position: absolute;
    top: 0%;
    right: 0%;
    background-color: white;
    transform: scale(0, 1);
    transition: transform 200ms ease-in-out 100ms;
    transform-origin: right;
    padding-top: 4rem;
    margin-top: 0px;
    border: none;
    border-radius: 0px;
  }

  .nav-toggle-lable.open span::before {
    transform: rotate(45deg) translate(15px, -15px);
    background: black;
  }

  .nav-toggle-lable.open span::after {
    transform: rotate(-45deg) translate(15px, 15px);
    background: black;
  }

  /* Background Images*/
  .slide:first-child {
    background: url("../media/ImageSliderFour.jpg") no-repeat center
      center/cover;
    background-attachment: fixed;
  }
  .slide:nth-child(2) {
    background: url("../media/ImageSliderFive.jpg") no-repeat center top/cover;
    background-attachment: fixed;
  }
  .slide:nth-child(3) {
    background: url("../media/ImageSliderSix.jpg") no-repeat center top/cover;
    background-attachment: fixed;
  }

  /* Image Slide Left-Right Buttons*/

  .buttons {
    display: contents;
    display: flex;
    margin: 0;
    padding: 0;
  }

  .button-left {
    position: absolute;
    bottom: 48%;
    left: 0px;
  }

  .button-next {
    position: absolute;
    bottom: 48%;
    right: 0px;
  }

  .buttons li {
    list-style: none;
    width: 2.2rem;
    height: 2.2rem;
    background: transparent;
    margin: 0 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: 0.5s;
    cursor: pointer;
  }

  .buttons li:hover {
    background: #ffffff;
    opacity: 0.8;
  }

  .buttons li span {
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    border: 2px solid #fff;
    transition: 0.5s;
  }

  /*for Next-icon*/
  .buttons li.next span {
    top: 51%;
    right: 44%;
    transform: translateY(-50%) rotate(-45deg);
    border-left: none;
    border-top: none;
  }

  .buttons li.next:hover span {
    border: 2px solid #000;
    opacity: 0.7;
    border-left: none;
    border-top: none;
  }

  /*for Previous-icon*/
  .buttons li.prev span {
    top: 51%;
    left: 44%;
    transform: translateY(-50%) rotate(-45deg);
    border-right: none;
    border-bottom: none;
  }

  .buttons li.prev:hover span {
    border: 2px solid #000;
    opacity: 0.7;
    border-right: none;
    border-bottom: none;
  }

  /*Mouse Scroll*/
  .scroll {
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }

  /*Slide Bar*/

  .slider-bar,
  .slider-bar::before,
  .slider-bar::after {
    display: none;
    /*left: 94%;
    top: 97%;*/
  }

  /*.slider-bar::before {
    transform: translateX(-2.4em) translateY(-3px);
  }

  .slider-bar::after {
    transform: translateX(0.5em) translateY(-3px);
  }*/

  /*Change the position of conent of the slide*/

  .slide .content {
    position: absolute;
    bottom: 34%;
    /*to put content in the middle*/
    left: 0%;
    right: 0%;
    font-size: 8vw;
  }

  .slide.current .content {
    opacity: 1;
    font-family: "Euphoria Script", cursive;
    transition: all 1000ms ease-in-out 600ms;
  }

  .slider :first-child :first-child :first-child :nth-child(3),
  .slider :nth-child(2) :first-child :first-child :nth-child(3),
  .slider :nth-child(3) :first-child :first-child :nth-child(3) {
    font-size: 14vw;
    line-height: 1;
  }
  /* Size of Main Hamburger Slide */
  .header-nav-links-content li {
    margin-right: 10rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 1.8rem;
  }

  .header-nav-links-content li a {
    font-size: 0.9rem;
  }

  /* Dropdown-Models */
  .header-nav-models-tablet-view,
  .header-nav-models-tablet-view-dropdown {
    display: contents;
  }

  .header-nav-links-content :nth-child(2),
  .header-nav-links-content :nth-child(3) {
    display: none;
  }

  .header-nav-links-models-tablet-view-dropdown {
    font-family: sans-serif;
    list-style: none;
    text-align: center;
    transform: scale(1, 0);
    transition: transform 200ms ease-in-out 100ms;
    transform-origin: top;
    top: 100%;
    position: absolute;
    left: 38%;
    right: 38%;
    margin: auto;
    background: #ffffff;
    border: 1px solid #bfafb2;
    border-radius: 10px;
    box-shadow: 0px 0px 12px #808080;
  }

  .header-nav-links-models-tablet-view-dropdown li {
    margin: 10px 0;
  }

  .header-nav-links-models-tablet-view-dropdown li a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    opacity: 0;
    font-family: sans-serif;
    text-transform: uppercase;
  }

  .header-nav-links-models-tablet-view-dropdown li a:hover {
    /*cursor: pointer;*/
    color: #8d8d8d;
  }

  /* Horizontal line in the Main Hamburger Navigaion Bar*/
  .header-nav-links-models-tablet-view-dropdown hr {
    border-top: 1px solid #bfafb2;
    border-bottom: none;
    margin: 0px 10px;
  }
  /* End */

  .nav-toggle-tablet-view:checked
    ~ .header-nav-models-tablet-view-dropdown
    .header-nav-links-models-tablet-view-dropdown {
    transform: scale(1, 1);
  }

  .nav-toggle-tablet-view:checked
    ~ .header-nav-models-tablet-view-dropdown
    .header-nav-links-models-tablet-view-dropdown
    li
    a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 240ms;
  }

  /* Models plus toggle animation */
  .nav-toggle-tablet-view {
    display: none;
  }

  .nav-toggle-tablet-view-lable ul {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #fff;
    font-family: sans-serif;
    text-transform: uppercase;
    list-style: none;
    margin-top: 2px;
  }

  .nav-toggle-tablet-view-lable ul:hover {
    cursor: pointer;
  }

  .nav-toggle-tablet-view-lable ul li::after {
    content: "";
    display: block;
    height: 1px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left;
    transition: transform ease-in-out 250ms;
  }

  .nav-toggle-tablet-view-lable ul li:hover::after {
    transform: scale(1, 1);
  }

  /*Second Page content*/

  .who-heading p :first-child,
  .who-heading p :nth-child(2) {
    font-size: 22px;
    font-weight: bolder;
  }

  .who-content :first-child {
    height: 100%;
    display: flex;
    align-items: center;
    word-spacing: 4px;
    font-size: 16px;
    line-height: 20px;
  }

  .parallax-window {
    display: block;
    height: 60vh;
    background: transparent;
  }

  .parallax-one-mobile-view,
  .parallax-two-mobile-view,
  .parallax-three-mobile-view,
  .parallax-four-mobile-view {
    display: none;
  }
  /* End of the Second Page Content*/

  /*footer*/

  /*Join us content*/
  .footer-join-us-content {
    padding: 20px 25px 2px 25px;
  }

  .footer-join-us-content :first-child {
    font-size: 30px;
  }

  .footer-join-us-content :nth-child(2) {
    font-size: 16px;
  }
  /* End of the Join us content*/
  /*Map*/
  #map {
    height: 48vh;
    width: 100%;
    margin-top: 22sx;
    text-align: center;
  }
  /*End of the map*/
  /*Social Media tem links*/
  .footer-links a i {
    height: 35px;
    width: 35px;
    font-size: 18px;
    line-height: 35px;
  }
  /*End of the social media button effect*/

  /*End of the footer*/
}

@media screen and (min-width: 1005px) {
  header {
    grid-template-columns: 1fr 4fr 1fr;
  }

  .logo-text {
    height: auto;
    width: 198px;
    text-align: left;
    margin: 6px 1em;
  }

  /*Main Content slider from Left side changes*/

  .header-nav-content {
    height: 100vh;
    position: absolute;
    top: 0%;
    right: 0%;
    background-color: white;
    transform: scale(0, 1);
    transition: transform 200ms ease-in-out 100ms;
    transform-origin: right;
    padding-top: 4rem;
    margin-top: 0px;
    border: none;
    border-radius: 0px;
  }

  .nav-toggle-lable.open span::before {
    transform: rotate(45deg) translate(15px, -15px);
    background: black;
  }

  .nav-toggle-lable.open span::after {
    transform: rotate(-45deg) translate(15px, 15px);
    background: black;
  }

  /* Background Images*/
  .slide:first-child {
    background: url("../media/ImageSliderSeven.jpg") no-repeat center
      center/cover;
    background-attachment: fixed;
  }
  .slide:nth-child(2) {
    background: url("../media/ImageSliderEight.jpg") no-repeat center top/cover;
    background-attachment: fixed;
  }
  .slide:nth-child(3) {
    background: url("../media/ImageSliderNine.jpg") no-repeat center top/cover;
    background-attachment: fixed;
  }

  /* Image Slide Left-Right Buttons*/

  .buttons {
    display: contents;
    display: flex;
    margin: 0;
    padding: 0;
  }

  .button-left {
    position: absolute;
    bottom: 48%;
    left: 0px;
  }

  .button-next {
    position: absolute;
    bottom: 48%;
    right: 0px;
  }

  .buttons li {
    list-style: none;
    width: 2.2rem;
    height: 2.2rem;
    background: transparent;
    margin: 0 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: 0.5s;
    cursor: pointer;
  }

  .buttons li:hover {
    background: #ffffff;
    opacity: 0.8;
  }

  .buttons li span {
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    border: 2px solid #fff;
    transition: 0.5s;
  }

  /*for Next-icon*/
  .buttons li.next span {
    top: 51%;
    right: 44%;
    transform: translateY(-50%) rotate(-45deg);
    border-left: none;
    border-top: none;
  }

  .buttons li.next:hover span {
    border: 2px solid #000;
    opacity: 0.7;
    border-left: none;
    border-top: none;
  }

  /*for Previous-icon*/
  .buttons li.prev span {
    top: 51%;
    left: 44%;
    transform: translateY(-50%) rotate(-45deg);
    border-right: none;
    border-bottom: none;
  }

  .buttons li.prev:hover span {
    border: 2px solid #000;
    opacity: 0.7;
    border-right: none;
    border-bottom: none;
  }

  /*Mouse Scroll*/
  .scroll {
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }

  /*Slide Bar*/

  .slider-bar,
  .slider-bar::before,
  .slider-bar::after {
    display: none;
    /*left: 95.5%;
    top: 97%;*/
  }

  /*.slider-bar::before {
    transform: translateX(-2.4em) translateY(-3px);
  }

  .slider-bar::after {
    transform: translateX(0.5em) translateY(-3px);
  }*/

  /*Change the position of conent of the slide*/

  .content-first-slider .content-for-mobile-size,
  .content-second-slider .content-for-mobile-size,
  .content-third-slider .content-for-mobile-size {
    display: none;
  }

  /* Size of Main Hamburger Slide */
  .header-nav-links-content li {
    margin-right: 10rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 1.8rem;
  }

  .header-nav-links-content li a {
    font-size: 0.9rem;
  }

  /*Models Navigation*/
  .header-nav-models {
    display: contents;
  }

  .header-nav-links-content :nth-child(2),
  .header-nav-links-content :nth-child(3) {
    display: none;
  }

  .header-nav-links-models {
    list-style: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
  }

  .header-nav-links-models li {
    margin-right: 1em;
    margin-left: 1em;
    font-family: sans-serif;
  }

  .header-nav-links-models li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.4s linear;
  }

  .header-nav-links-models li::after {
    content: "";
    display: block;
    height: 1px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left;
    transition: transform ease-in-out 250ms;
  }

  .header-nav-links-models li:hover::after {
    transform: scale(1, 1);
  }

  /* Second Page Content*/

  #second-page {
    background-color: rgba(19, 19, 19, 1);
  }

  .who {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    padding: 0;
    text-align: unset;
  }

  .who-heading {
    position: relative;
    width: 100%;
  }

  .who-heading p {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    height: 76%;
    width: 100%;
    padding-left: 14vw;
  }

  .who-heading p :first-child {
    display: flex;
    height: 100%;
    align-items: center;
  }

  .who-heading p :nth-child(2) {
    display: none;
  }
  .who-heading p :nth-child(3) {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 50px;
    margin-left: 3vw;
  }

  .who-content {
    width: 100%;
    padding: 60px 120px 60px 80px;
  }

  .who-content :first-child {
    height: 100%;
    display: flex;
    align-items: center;
    word-spacing: 4px;
    font-size: 20px;
    line-height: normal;
  }

  .parallax-window {
    display: block;
    height: 60vh;
    background: transparent;
  }

  .parallax-one-mobile-view,
  .parallax-two-mobile-view,
  .parallax-three-mobile-view,
  .parallax-four-mobile-view {
    display: none;
  }

  /* End of the Second Page Content*/

  /*Footer*/

  footer {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: #131313;
    font-family: "Poppins", sans-serif;
  }

  .footer-desktop hr {
    display: block;
  }

  .footer-desktop {
    height: 92%;
    display: flex;
    padding-top: 5%;
  }

  .footer-join-us {
    width: 50%;
  }

  .footer-map-links {
    width: 50%;
    text-align: center;
  }

  .footer-desktop hr {
    border-top: none;
    border-bottom: none;
    border-right: none;
    border-color: #8d8d8d;
    margin: 10px 0;
  }

  /*Join us content*/
  .footer-join-us-content {
    text-align: unset;
    padding: 0;
  }

  .footer-join-us-content :first-child {
    color: #ffffff;
    font-size: 40px;
    font-weight: bolder;
    margin-top: 0px;
    padding-bottom: 0;
    position: absolute;
    top: 1.8%;
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .footer-join-us-content :nth-child(2) {
    color: #ffffff;
    font-size: 20px;
    line-height: normal;
    padding: 20px 40px;
    padding-top: 30px;
  }

  .footer-join-us-button {
    display: none;
  }

  /* End of the Join us content*/

  /*Map*/
  #map {
    height: 50vh;
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  /*End of the map*/
  /*Social Media tem links*/

  .footer-links {
    height: 30vh;
    width: 100%;
    display: block;
    position: relative;
    margin: 0;
  }
  .footer-links a {
    text-decoration: none;
  }

  .footer-links a i {
    height: unset;
    width: unset;
  }

  .instagram,
  .facebook,
  .phone,
  .email,
  .linkedin {
    position: absolute;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
  }

  .instagram-repeat,
  .facebook-repeat,
  .phone-repeat,
  .email-repeat,
  .linkedin-repeat {
    display: block;
    position: absolute;
    border-radius: 50%;
    text-align: center;
  }

  .footer-links .instagram {
    height: 60px;
    width: 60px;
    font-size: 32px;
    line-height: 60px;
    color: #ffffff;
    left: 47%;
    top: 45%;
    transform: translate(-50%, -50%);
  }

  .footer-links .facebook {
    height: 40px;
    width: 40px;
    font-size: 24px;
    line-height: 39px;
    color: #ffffff;
    left: 15%;
    top: 10%;
  }

  .footer-links .phone {
    height: 55px;
    width: 55px;
    font-size: 32px;
    line-height: 54px;
    color: #ffffff;
    top: 19%;
    right: 16%;
  }

  .footer-links .email {
    height: 45px;
    width: 45px;
    font-size: 22px;
    line-height: 42px;
    color: #ffffff;
    bottom: 11%;
    left: 16%;
  }

  .footer-links .linkedin {
    height: 35px;
    width: 35px;
    font-size: 18px;
    line-height: 34px;
    color: #ffffff;
    top: 14%;
    right: 34%;
  }

  .footer-links .instagram-repeat {
    height: 40px;
    width: 40px;
    font-size: 24px;
    line-height: 39px;
    color: #ffffff;
    bottom: 12%;
    right: 14%;
  }

  .footer-links .facebook-repeat {
    height: 45px;
    width: 45px;
    font-size: 22px;
    line-height: 44px;
    color: #ffffff;
    top: 58%;
    left: 32%;
  }

  .footer-links .phone-repeat {
    height: 35px;
    width: 35px;
    font-size: 20px;
    line-height: 34px;
    color: #ffffff;
    top: 71%;
    left: 55%;
  }

  .footer-links .email-repeat {
    height: 35px;
    width: 35px;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    padding-left: 1px;
    top: 47%;
    right: 28%;
  }

  .footer-links .linkedin-repeat {
    height: 30px;
    width: 30px;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    top: 28%;
    left: 28%;
  }

  .footer-copyright {
    width: 100%;
    position: absolute;
    bottom: 0%;
  }

  .footer-copyright hr {
    border-bottom: none;
    border-right: none;
    border-left: none;
    margin: 0 25px;
    border-color: #8d8d8d;
  }

  .footer-copyright :nth-child(2) :first-child {
    font-size: 13px;
    margin: 8px 0;
    color: #696969;
  }

  /*End of the social media button effect*/

  /*Join us Form*/
  .footer-join-us-form {
    width: 100%;
    height: 46vh;
    display: block;
    padding: 70px;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 0;
    margin-top: 0px;
    font-family: "Poppins", sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
  }

  input[type="text"],
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 4px;
    margin-bottom: 16px;
    resize: vertical;
    font-size: 15px;
    background-color: transparent;
    color: #ccc;
  }

  input[type="submit"] {
    background-color: #444857;
    font-size: 20px;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.8s;
  }

  input[type="submit"]:hover {
    background-color: #626262;
  }
  #msg {
    min-height: 8vh;
    height: 18vh;
  }
  /*End of the join us form*/
  /*End of the footer*/
}

@media screen and (max-height: 700px) {
  .footer-join-us-form {
    padding-top: 5px;
    margin-top: -15px;
    height: 40vh;
  }
  #msg {
    height: 8vh;
  }
}

@media screen and (min-width: 1005px) and (max-width: 1150px) {
  .footer-join-us-content :first-child {
    font-size: 36px;
  }
  .footer-join-us-content :nth-child(2) {
    font-size: 18px;
  }
}

@media screen and (min-width: 1005px) and (max-width: 1240px) {
  /*To change the size of the font of the text next to the vertical large text*/
  .who-heading p :nth-child(3) {
    font-size: 40px;
    margin-left: 2.5vw;
  }
  /*End of the changes in the font size*/

  /*To change the oadding of the content*/
  .who-content {
    padding: 30px 60px 30px 60px;
  }
  /*End f the oadding change*/
}
