@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: myFont1;
  src: url("../font/Agatho_Regular.otf");
}
html{
    scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #ffcf54;
  --secondaryColor: #ff4c6c;
  --secondaryTextColor: rgb(141, 141, 141);
  --thridColor: #B9F3E4;
  --fourthColor: #edeb07;
  --bgColo: #242732;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bgColo);
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(117, 117, 117);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .container {
    width: 90%;
  }
}

a,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea,
textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "Montserrat", sans-serif;
}

::-moz-selection {
  color: var(--primaryColor);
  background: transparent;
}

::selection {
  color: var(--primaryColor);
  background: transparent;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.contactPopup {
  position: fixed;
  z-index: 200;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 500px;
  background: white;
  padding: 50px;
  display: none;
}
@media (max-width: 480px) {
  .contactPopup {
    width: 90%;
    padding: 20px;
  }
}
.contactPopup h2 {
  font-size: 25px;
  font-weight: 400;
  font-family: myFont1;
}
.contactPopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .contactPopup form {
    margin-top: 30px;
  }
}
.contactPopup form .formgroup {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contactPopup form .formgroup label {
  font-size: 14px;
}
.contactPopup form .formgroup input {
  width: 100%;
  margin-top: 5px;
  height: 45px;
  padding: 0px 20px;
  border: 1px solid #ccc;
  background: white;
  outline: none;
  font-size: 16px;
  font-weight: 500;
}
.contactPopup form .formgroup input:focus {
  border: 1px solid #000;
}
.contactPopup form .formBtnArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.contactPopup form .formBtnArea .closeContactPopup {
  flex: 0 0 48%;
  padding: 14px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  background: #eee;
  transition: 0.3s;
}
.contactPopup form .formBtnArea .closeContactPopup:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
.contactPopup form .formBtnArea button {
  flex: 0 0 48%;
  padding: 14px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  background: var(--primaryColor);
  color: black;
  border: none;
  outline: none;
  transition: 0.3s;
}
.contactPopup form .formBtnArea button:hover {
  transition: 0.3s;
  background: black;
  color: white;
}

.aboutVideoPopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 70%;
  height: 80vh;
  background: black;
  z-index: 150;
  display: none;
}
@media (max-width: 1024px) {
  .aboutVideoPopup {
    height: 500px;
    width: 90%;
  }
}
@media (max-width: 480px) {
  .aboutVideoPopup {
    height: 220px;
  }
}
.aboutVideoPopup .closeAboutVideoPopup {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.348);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  top: 20px;
  cursor: pointer;
  right: 20px;
}
@media (max-width: 480px) {
  .aboutVideoPopup .closeAboutVideoPopup {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.aboutVideoPopup video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidemenu {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  top: -120%;
  left: 0;
  z-index: 220;
  transition: 0.3s ease-out;
  opacity: 0;
}
.sidemenu .closeSidemenu {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 35px;
}
.sidemenu .sidemenuLink {
  width: 100%;
  margin-top: 100px;
}
.sidemenu .sidemenuLink ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sidemenu .sidemenuLink ul li {
  width: 100%;
  list-style: none;
}
.sidemenu .sidemenuLink ul li a {
  text-decoration: none;
  padding: 14px 50px;
  display: flex;
  color: black;
  font-size: 45px;
  font-weight: 500;
  font-family: myFont1;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .sidemenu .sidemenuLink ul li a {
    font-size: 40px;
    padding: 14px 30px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .sidemenu .sidemenuLink ul li a {
    font-size: 30px;
  }
}
.sidemenu .sidemenuLink ul li .sidemenuLinkActive {
  color: var(--primaryColor);
}

.sidemenuActive {
  transition: 0.3s ease-in;
  top: 0%;
  opacity: 1;
}

nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--bgColo);
  z-index: 100;
  left: 0;
}
nav .navMain {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  nav .navMain {
    height: 60px;
  }
}
nav .navMain .navLogo {
  text-decoration: none;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 180px;
}
@media (max-width: 480px) {
  nav .navMain .navLogo {
    width: 60px;
  }
}
nav .navMain .navLogo img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  nav .navMain .navLogo img {
    width: 100%;
    height: 100%;
  }
}
nav .navMain .navLink {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  nav .navMain .navLink {
    display: none;
  }
}
nav .navMain .navLink ul {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media (max-width: 1800px) {
  nav .navMain .navLink ul {
    gap: 30px;
  }
}
nav .navMain .navLink ul li {
  list-style: none;
}
nav .navMain .navLink ul li a {
  text-decoration: none;
  font-size: 14px;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  transition: 0.3s;
}
nav .navMain .navLink ul li a:hover {
  transition: 0.3s;
  background: white;
  color: black;
}
nav .navMain .navLink ul li a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: var(--bgColo);
  bottom: -13px;
  right: -13px;
  transform: rotate(45deg);
}
nav .navMain .navLink ul li .navLinkActive {
  border: 1px solid var(--primaryColor);
}
nav .navMain .navLink ul li .navLinkActive:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: white;
}
nav .navMain .navLink ul li .navLinkActive::after {
  border-left: 1px solid var(--primaryColor);
}
nav .navMain .navContact {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  nav .navMain .navContact {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  nav .navMain .navContact {
    display: none;
  }
}
nav .navMain .navContact a {
  text-decoration: none;
  width: 180px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
nav .navMain .navContact a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
nav .navMain .navContact a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
nav .navMain .navBar {
  display: none;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}
@media (max-width: 1200px) {
  nav .navMain .navBar {
    display: flex;
  }
}
nav .navMain .navBar .navBarBox {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}
nav .navMain .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  background: white;
}

#banner {
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
}
@media (max-width: 480px) {
  #banner {
    margin-top: 60px;
  }
}
#banner .bannerDetails {
  width: 100%;
  padding: 50px 0px 150px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}
#banner .bannerDetails::after {
  position: absolute;
  content: "";
  width: 600px;
  height: 600px;
  top: 0;
  right: -10%;
  z-index: -1;
  background-image: url(../images/about-element.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
}
@media (max-width: 1024px) {
  #banner .bannerDetails::after {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails::after {
    width: 100%;
    height: 400px;
  }
}
#banner .bannerDetails .bannerDetailsCol1 {
  flex: 100%;
  display: flex;
  flex-direction: column;
}
#banner .bannerDetails .bannerDetailsCol1 h1 {
  font-size: 12em;
  font-family: myFont1;
  font-weight: 500;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #banner .bannerDetails .bannerDetailsCol1 h1 {
    font-size: 6em;
  }
}
@media (max-width: 1024px) {
  #banner .bannerDetails .bannerDetailsCol1 h1 {
    font-size: 5em;
  }
}
@media (max-width: 768px) {
  #banner .bannerDetails .bannerDetailsCol1 h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsCol1 h1 {
    font-size: 2em;
  }
}
#banner .bannerDetails .bannerDetailsCol1 h2 {
  color: white;
  font-weight: 500;
  font-size: 3em;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  #banner .bannerDetails .bannerDetailsCol1 h2 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsCol1 h2 {
    font-size: 18px;
    margin-top: 20px;
  }
}
#banner .bannerDetails .bannerDetailsCol1 p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
  width: 60%;
}
@media (max-width: 1800px) {
  #banner .bannerDetails .bannerDetailsCol1 p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  #banner .bannerDetails .bannerDetailsCol1 p {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsCol1 p {
    margin-top: 20px;
  }
}
#banner .bannerDetails .bannerDetailsCol1 a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  display: none;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsCol1 a {
    display: flex;
  }
}
#banner .bannerDetails .bannerDetailsCol1 a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#banner .bannerDetails .bannerDetailsCol1 a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#banner .bannerDetails .bannerDetailsCol2 {
  flex: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
#banner .bannerDetails .bannerDetailsCol2 .bannerAtchivementBox {
  flex: 0 0 24%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  background: rgba(29, 27, 27, 0.9921568627);
  margin-top: 20px;
}
@media (max-width: 1024px) {
  #banner .bannerDetails .bannerDetailsCol2 .bannerAtchivementBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsCol2 .bannerAtchivementBox {
    flex: 100%;
  }
}
#banner .bannerDetails .bannerDetailsCol2 .bannerAtchivementBox h3 {
  color: white;
  font-size: 2.5em;
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsCol2 .bannerAtchivementBox h3 {
    font-size: 2em;
  }
}
#banner .bannerDetails .bannerDetailsCol2 .bannerAtchivementBox p {
  color: white;
  font-family: myFont1;
  margin-top: 20px;
  font-weight: 300;
  opacity: 0.8;
  font-size: 18px;
  letter-spacing: 2px;
}
#banner .bannerThumbnail {
  width: 100%;
}
#banner .bannerThumbnail .bannerThumbnailBox {
  width: 100%;
  overflow: hidden;
  display: block;
  height: calc(100vh - 80px);
  position: relative;
}
@media (max-width: 1024px) {
  #banner .bannerThumbnail .bannerThumbnailBox {
    height: 700px;
  }
}
@media (max-width: 480px) {
  #banner .bannerThumbnail .bannerThumbnailBox {
    height: calc(100vh - 60px);
  }
}
#banner .bannerThumbnail .bannerThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  padding: 50px 7.5%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
#banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h1 {
  font-size: 6em;
  font-family: myFont1;
  font-weight: 500;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h1 {
    font-size: 5em;
  }
}
@media (max-width: 1024px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h1 {
    font-size: 5em;
  }
}
@media (max-width: 768px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 480px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h1 {
    font-size: 2.5em;
  }
}
#banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h2 {
  color: white;
  font-weight: 500;
  font-size: 2em;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h2 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails h2 {
    font-size: 18px;
    margin-top: 20px;
  }
}
#banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 20px;
  opacity: 0.7;
  width: 60%;
}
@media (max-width: 1800px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails p {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails p {
    margin-top: 20px;
  }
}
#banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 480px) {
  #banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails a {
    display: flex;
  }
}
#banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#banner .bannerThumbnail .bannerThumbnailBox .bannerThumbnailBoxDetails a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: black;
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}

#about {
  width: 100%;
  padding: 150px 0px 200px 0px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  #about {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  #about {
    padding: 100px 0px;
  }
}
@media (max-width: 480px) {
  #about {
    padding-top: 0;
  }
}
#about::after {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 0;
  right: 0;
  z-index: -1;
  background-image: url(../images/about-element.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
}
@media (max-width: 480px) {
  #about::after {
    width: 100%;
    height: 400px;
    top: inherit;
    bottom: 0;
  }
}
#about .aboutMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about .aboutMain .aboutDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutDetails {
    flex: 100%;
    order: 2;
    margin-top: 50px;
  }
}
#about .aboutMain .aboutDetails .title {
  display: flex;
  align-items: center;
}
#about .aboutMain .aboutDetails .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutDetails .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutDetails .title span {
    margin-right: 10px;
    width: 30px;
  }
}
#about .aboutMain .aboutDetails .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutDetails .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutDetails .title h2 {
    font-size: 22px;
  }
}
#about .aboutMain .aboutDetails p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
}
#about .aboutMain .aboutDetails p:nth-of-type(1) {
  margin-top: 60px;
}
@media (max-width: 480px) {
  #about .aboutMain .aboutDetails p {
    font-size: 16px;
  }
}
#about .aboutMain .aboutDetails a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  display: flex;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
#about .aboutMain .aboutDetails a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#about .aboutMain .aboutDetails a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#about .aboutMain .aboutThumbnail {
  flex: 0 0 50%;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutThumbnail {
    flex: 100%;
    order: 1;
  }
}
#about .aboutMain .aboutThumbnail .aboutThumbnailVideo {
  width: 100%;
  height: 500px;
  background: black;
  position: relative;
  z-index: 0;
}
@media (max-width: 1800px) {
  #about .aboutMain .aboutThumbnail .aboutThumbnailVideo {
    height: 450px;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutThumbnail .aboutThumbnailVideo {
    height: 250px;
  }
}
#about .aboutMain .aboutThumbnail .aboutThumbnailVideo .playAboutBtn {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background: var(--primaryColor);
  color: white;
  font-size: 40px;
  transform: translate(-50%, -50%);
  top: 50%;
  cursor: pointer;
  left: 50%;
}
@media (max-width: 480px) {
  #about .aboutMain .aboutThumbnail .aboutThumbnailVideo .playAboutBtn {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
#about .aboutMain .aboutThumbnail .aboutThumbnailVideo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#testimonials {
  width: 100%;
  background: url(../images/img/img4.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 200px 0px;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  #testimonials {
    padding: 100px 0px;
  }
}
#testimonials::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.454);
  z-index: -1;
}
#testimonials .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#testimonials .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #testimonials .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #testimonials .title span {
    width: 30px;
    margin-right: 10px;
  }
}
#testimonials .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #testimonials .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #testimonials .title h2 {
    font-size: 22px;
  }
}
#testimonials .testimonialsMian {
  width: 100%;
  padding: 0px 20%;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  #testimonials .testimonialsMian {
    padding: 0;
  }
}
#testimonials .testimonialsMian .testimonialsBox {
  width: 100%;
  background: var(--bgColo);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
}
@media (max-width: 480px) {
  #testimonials .testimonialsMian .testimonialsBox {
    padding: 20px;
  }
}
#testimonials .testimonialsMian .testimonialsBox .star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#testimonials .testimonialsMian .testimonialsBox .star .material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}
#testimonials .testimonialsMian .testimonialsBox .star span {
  font-size: 22px;
  color: var(--primaryColor);
}
#testimonials .testimonialsMian .testimonialsBox p {
  color: white;
  line-height: 1.7;
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
}
@media (max-width: 480px) {
  #testimonials .testimonialsMian .testimonialsBox p {
    font-size: 16px;
  }
}
#testimonials .testimonialsMian .testimonialsBox .testimonialProfile {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
#testimonials .testimonialsMian .testimonialsBox .testimonialProfile h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: myFont1;
  color: white;
  text-align: center;
}
@media (max-width: 480px) {
  #testimonials .testimonialsMian .testimonialsBox .testimonialProfile h3 {
    font-size: 16px;
  }
}
#testimonials .testimonialsMian .testimonialsBox .testimonialProfile span {
  font-size: 16px;
  color: white;
  opacity: 0.7;
  margin-top: 10px;
  text-align: center;
}
#testimonials .testimonialsMian .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
#testimonials .testimonialsMian .owl-dots button {
  background: white;
  width: 20px;
  height: 5px;
  border: none;
  outline: none;
}
#testimonials .testimonialsMian .owl-dots button:nth-of-type(1) {
  border-radius: 5px 0px 0px 5px;
}
#testimonials .testimonialsMian .owl-dots button:nth-last-of-type(1) {
  border-radius: 0px 5px 5px 0px;
}
#testimonials .testimonialsMian .owl-dots .active {
  background: var(--primaryColor);
}

#services {
  width: 100%;
  padding-top: 200px;
}
@media (max-width: 768px) {
  #services {
    padding-top: 100px;
  }
}
#services .servicesHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  #services .servicesHead {
    flex-wrap: wrap;
  }
}
#services .servicesHead .title {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  #services .servicesHead .title {
    width: 100%;
  }
}
#services .servicesHead .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #services .servicesHead .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #services .servicesHead .title span {
    width: 30px;
    margin-left: 10px;
  }
}
#services .servicesHead .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #services .servicesHead .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #services .servicesHead .title h2 {
    font-size: 22px;
  }
}
#services .servicesHead .servicesMoreBtn {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  #services .servicesHead .servicesMoreBtn {
    display: none;
  }
}
#services .servicesHead .servicesMoreBtn a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
#services .servicesHead .servicesMoreBtn a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#services .servicesHead .servicesMoreBtn a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#services .servicesHeadMain {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
#services .servicesHeadMain .servicesBox {
  width: 25%;
  height: 600px;
  background: black;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #services .servicesHeadMain .servicesBox {
    height: 500px;
  }
}
@media (max-width: 1024px) {
  #services .servicesHeadMain .servicesBox {
    width: 50%;
  }
}
@media (max-width: 480px) {
  #services .servicesHeadMain .servicesBox {
    width: 100%;
  }
}
#services .servicesHeadMain .servicesBox:hover .servicesBoxName {
  transition: 0.3s;
  padding-bottom: 100px;
}
#services .servicesHeadMain .servicesBox .servicesBoxThumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
#services .servicesHeadMain .servicesBox .servicesBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .servicesHeadMain .servicesBox .servicesBoxName {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: 0.3s;
  background: linear-gradient(rgba(0, 0, 0, 0), black);
}
#services .servicesHeadMain .servicesBox .servicesBoxName h3 {
  font-size: 28px;
  color: white;
  font-family: myFont1;
  text-align: center;
  font-weight: 300;
}

#recentWork {
  width: 100%;
  padding: 200px 0px;
}
@media (max-width: 768px) {
  #recentWork {
    padding: 100px 0px;
  }
}
#recentWork .recentWorkHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#recentWork .recentWorkHead .title {
  display: flex;
  align-items: center;
}
#recentWork .recentWorkHead .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #recentWork .recentWorkHead .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #recentWork .recentWorkHead .title span {
    margin-right: 10px;
    width: 30px;
  }
}
#recentWork .recentWorkHead .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #recentWork .recentWorkHead .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #recentWork .recentWorkHead .title h2 {
    font-size: 22px;
  }
}
#recentWork .recentWorkHead .recentWorkMoreBtn {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  #recentWork .recentWorkHead .recentWorkMoreBtn {
    display: none;
  }
}
#recentWork .recentWorkHead .recentWorkMoreBtn a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
#recentWork .recentWorkHead .recentWorkMoreBtn a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#recentWork .recentWorkHead .recentWorkMoreBtn a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#recentWork .recentWorkMain {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
#recentWork .recentWorkMain .recentWorkList {
  width: 100%;
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: black;
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxThumbnail {
  flex: 0 0 55%;
  overflow: hidden;
  height: 300px;
  background: black;
}
@media (max-width: 480px) {
  #recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxThumbnail {
    flex: 100%;
    height: 250px;
  }
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
@media (max-width: 480px) {
  #recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails {
    flex: 100%;
    padding: 20px;
  }
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails h3 {
  color: white;
  font-size: 20px;
  font-family: myFont1;
  font-weight: 300;
}
@media (max-width: 480px) {
  #recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails h3 {
    font-size: 16px;
  }
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails p {
  color: white;
  opacity: 0.7;
  margin-top: 10px;
  font-size: 16px;
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails a {
  text-decoration: none;
  width: 100%;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  margin-top: 40px;
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails a:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: black;
}
#recentWork .recentWorkMain .recentWorkList .recentWorkBox .recentWorkBoxDetails a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: black;
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#recentWork .recentWorkMain .recentWorkList .owl-nav, #recentWork .recentWorkMain .recentWorkList .owl-dots {
  display: none;
}
#recentWork .recentWorkMain .recentWorkControls {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#recentWork .recentWorkMain .recentWorkControls .custom-nav2 {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 480px) {
  #recentWork .recentWorkMain .recentWorkControls .custom-nav2 {
    gap: 20px;
  }
}
#recentWork .recentWorkMain .recentWorkControls .custom-nav2 button {
  width: 50px;
  height: 40px;
  border: none;
  outline: none;
  background: none;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 25px;
  color: white;
  transition: 0.3s;
}
#recentWork .recentWorkMain .recentWorkControls .custom-nav2 button:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  color: black;
}

#howWork {
  width: 100%;
  padding: 100px 0px 200px 0px;
}
@media (max-width: 1024px) {
  #howWork {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  #howWork {
    padding: 50px 0px 100px 0px;
  }
}
#howWork .title {
  display: flex;
  align-items: center;
}
#howWork .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #howWork .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #howWork .title span {
    width: 30px;
    margin-right: 10px;
  }
}
#howWork .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #howWork .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #howWork .title h2 {
    font-size: 22px;
  }
}
#howWork .howWorkMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
#howWork .howWorkMain .howWorkThumbnail {
  flex: 0 0 45%;
  background: black;
}
@media (max-width: 1024px) {
  #howWork .howWorkMain .howWorkThumbnail {
    flex: 100%;
  }
}
#howWork .howWorkMain .howWorkThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#howWork .howWorkMain .howWorkDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #howWork .howWorkMain .howWorkDetails {
    flex: 100%;
    margin-top: 50px;
  }
}
#howWork .howWorkMain .howWorkDetails p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  opacity: 0.7;
}
@media (max-width: 480px) {
  #howWork .howWorkMain .howWorkDetails p {
    font-size: 16px;
  }
}
#howWork .howWorkMain .howWorkDetails ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
#howWork .howWorkMain .howWorkDetails ul li {
  flex: 0 0 32%;
  background: black;
  padding: 30px 20px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 480px) {
  #howWork .howWorkMain .howWorkDetails ul li {
    flex: 100%;
  }
}
#howWork .howWorkMain .howWorkDetails ul li .icon {
  width: 60px;
}
#howWork .howWorkMain .howWorkDetails ul li .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#howWork .howWorkMain .howWorkDetails ul li h4 {
  font-size: 22px;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  margin-top: 20px;
}

#parallaxSection {
  width: 100%;
  padding: 500px 0px 100px 0px;
  background: url(../images/img/img5.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}
@media (max-width: 1800px) {
  #parallaxSection {
    padding-top: 400px;
  }
}
@media (max-width: 480px) {
  #parallaxSection {
    padding-top: 300px;
  }
}
#parallaxSection::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), black);
}
#parallaxSection .parallaxSectionMain {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#parallaxSection .parallaxSectionMain h2 {
  font-size: 4em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  #parallaxSection .parallaxSectionMain h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #parallaxSection .parallaxSectionMain h2 {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  #parallaxSection .parallaxSectionMain h2 {
    font-size: 30px;
  }
}
#parallaxSection .parallaxSectionMain p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  opacity: 0.7;
  margin-top: 40px;
  width: 70%;
}
@media (max-width: 1024px) {
  #parallaxSection .parallaxSectionMain p {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #parallaxSection .parallaxSectionMain p {
    font-size: 16px;
  }
}

#contact {
  width: 100%;
  padding: 200px 0px;
}
@media (max-width: 768px) {
  #contact {
    padding: 100px 0px;
  }
}
#contact .title {
  display: flex;
  align-items: center;
}
#contact .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #contact .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #contact .title span {
    width: 30px;
    margin-right: 10px;
  }
}
#contact .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #contact .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #contact .title h2 {
    font-size: 22px;
  }
}
#contact .contactMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
#contact .contactMain .contactForm {
  flex: 0 0 45%;
}
@media (max-width: 1024px) {
  #contact .contactMain .contactForm {
    flex: 100%;
  }
}
#contact .contactMain .contactForm form {
  background: black;
  padding: 50px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  #contact .contactMain .contactForm form {
    padding: 50px;
  }
}
@media (max-width: 480px) {
  #contact .contactMain .contactForm form {
    padding: 20px;
  }
}
#contact .contactMain .contactForm form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contact .contactMain .contactForm form .formGroup input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(238, 238, 238, 0.4705882353);
  padding: 20px 0px;
  font-size: 20px;
  outline: none;
  color: white;
}
#contact .contactMain .contactForm form .formGroup input:focus {
  border-bottom: 1px solid white;
}
#contact .contactMain .contactForm form .formGroup textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(238, 238, 238, 0.4705882353);
  padding: 20px 0px;
  font-size: 20px;
  outline: none;
  color: white;
}
#contact .contactMain .contactForm form .formGroup textarea:focus {
  border-bottom: 1px solid white;
}
#contact .contactMain .contactForm form .formBtnArea {
  margin-top: 40px;
  width: 100%;
}
#contact .contactMain .contactForm form .formBtnArea button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  border: none;
  outline: none;
  cursor: pointer;
}
#contact .contactMain .contactForm form .formBtnArea button:hover {
  transition: 0.3s;
  background: white;
  color: black;
}
#contact .contactMain .contactForm form .formBtnArea button::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: black;
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#contact .contactMain .contactDetails {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1024px) {
  #contact .contactMain .contactDetails {
    flex: 100%;
    margin-top: 50px;
  }
}
#contact .contactMain .contactDetails .contactDetailsBox {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contact .contactMain .contactDetails .contactDetailsBox h3 {
  font-family: myFont1;
  color: var(--primaryColor);
  font-size: 16px;
  font-weight: 500;
}
#contact .contactMain .contactDetails .contactDetailsBox p {
  color: white;
  font-size: 20px;
  line-height: 1.7;
  margin-top: 20px;
}
#contact .contactMain .contactDetails .contactDetailsBox a {
  color: white;
  font-size: 20px;
  line-height: 1.7;
  text-decoration: none;
  margin-top: 20px;
}
#contact .contactMain .contactDetails .contactDetailsBox .socialLinks{
    display: flex;
    align-items: center;
    gap: 10px;
}
#contact .contactMain .contactDetails .contactDetailsBox .socialLinks a{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    font-size: 20px;
    border-radius: 5px;
    color: black;
    transition: .3s;
}
#contact .contactMain .contactDetails .contactDetailsBox .socialLinks a:hover{
    transition: .3s;
    background: var(--primaryColor);
    color: white;
}
#contact .contactMain .contactDetails .vieLoaction {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
#contact .contactMain .contactDetails .vieLoaction:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#contact .contactMain .contactDetails .vieLoaction::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}

footer {
  width: 100%;
  padding: 50px 0px;
  background: rgba(0, 0, 0, 0.299);
}
footer .footerMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  footer .footerMain {
    justify-content: center;
  }
}
footer .footerMain .footerCol2 {
  width: 80px;
}
footer .footerMain .footerCol2 .footerlogo {
  width: 100%;
}
footer .footerMain .footerCol2 .footerlogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footerMain .footerCol3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 480px) {
  footer .footerMain .footerCol3 {
    justify-content: center;
    width: 100%;
  }
}
footer .footerMain .footerCol3 p {
  font-size: 14px;
  color: white;
  opacity: 0.7;
  margin-right: 10px;
  font-weight: 300;
}
@media (max-width: 480px) {
  footer .footerMain .footerCol3 p {
    text-align: center;
    margin-top: 20px;
    margin-right: 0;
  }
}
footer .footerMain .footerCol3 span {
  font-size: 14px;
  color: white;
  opacity: 0.7;
  display: flex;
  align-items: center;
  font-weight: 300;
}
@media (max-width: 480px) {
  footer .footerMain .footerCol3 span {
    margin-top: 10px;
  }
}
footer .footerMain .footerCol3 span i {
  margin: 0px 10px;
}
footer .footerMain .footerCol3 span a {
  text-decoration: none;
}
footer .footerMain .footerCol3 span a .footerLogo {
  width: 50px;
}
footer .footerMain .footerCol3 span a .footerLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}

#aboutBanner {
  width: 100%;
  margin-top: 80px;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #aboutBanner {
    padding: 50px 0px;
    margin-top: 60px;
  }
}
#aboutBanner .aboutBannerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#aboutBanner .aboutBannerMain h1 {
  font-size: 8em;
  font-family: myFont1;
  font-weight: 500;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 6em;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 1.7em;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerVideo {
  width: 100%;
  height: 800px;
  background: black;
  margin-top: 50px;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain .aboutBannerVideo {
    height: 600px;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain .aboutBannerVideo {
    height: 500px;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerVideo {
    height: 400px;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerVideo {
    height: 220px;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerVideo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#aboutBanner .aboutBannerMain h2 {
  font-size: 3em;
  font-family: myFont1;
  font-weight: 500;
  margin-top: 100px;
  color: white;
  line-height: 1.7;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain h2 {
    font-size: 25px;
    margin-top: 50px;
  }
}
#aboutBanner .aboutBannerMain p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
}
#aboutBanner .aboutBannerMain p:nth-of-type(1) {
  margin-top: 60px;
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain p {
    font-size: 16px;
  }
}

#aboutParallax {
  width: 100%;
  height: 90vh;
  background: url(../images/img/img6.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  #aboutParallax {
    height: 400px;
    background-attachment: inherit;
  }
}

#visionMission {
  width: 100%;
  padding: 200px 0px 50px 0px;
}
@media (max-width: 768px) {
  #visionMission {
    padding: 100px 0px 0px 0px;
  }
}
#visionMission .visionMissionMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #visionMission .visionMissionMain {
    gap: 100px;
  }
}
#visionMission .visionMissionMain .visionMissionBox {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #visionMission .visionMissionMain .visionMissionBox {
    flex: 100%;
  }
}
#visionMission .visionMissionMain .visionMissionBox .title {
  display: flex;
  align-items: center;
}
#visionMission .visionMissionMain .visionMissionBox .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #visionMission .visionMissionMain .visionMissionBox .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #visionMission .visionMissionMain .visionMissionBox .title span {
    width: 30px;
    margin-right: 10px;
  }
}
#visionMission .visionMissionMain .visionMissionBox .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #visionMission .visionMissionMain .visionMissionBox .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #visionMission .visionMissionMain .visionMissionBox .title h2 {
    font-size: 22px;
  }
}
#visionMission .visionMissionMain .visionMissionBox .visionMissionBoxDetails {
  width: 100%;
  margin-top: 40px;
}
#visionMission .visionMissionMain .visionMissionBox .visionMissionBoxDetails ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#visionMission .visionMissionMain .visionMissionBox .visionMissionBoxDetails ul li {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
#visionMission .visionMissionMain .visionMissionBox .visionMissionBoxDetails ul li .icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  font-weight: 500;
}
#visionMission .visionMissionMain .visionMissionBox .visionMissionBoxDetails ul li p {
  width: calc(100% - 50px);
  color: white;
  font-size: 16px;
  line-height: 1.7;
}

#serviceBanner {
  width: 100%;
  margin-top: 80px;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #serviceBanner {
    padding: 50px 0px;
    margin-top: 60px;
  }
}
#serviceBanner .serviceBannerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#serviceBanner .serviceBannerMain h1 {
  font-size: 8em;
  font-family: myFont1;
  font-weight: 500;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 6em;
  }
}
@media (max-width: 1024px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 480px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 2em;
  }
}
#serviceBanner .serviceBannerMain p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
}
#serviceBanner .serviceBannerMain p:nth-of-type(1) {
  margin-top: 60px;
}
@media (max-width: 480px) {
  #serviceBanner .serviceBannerMain p {
    font-size: 16px;
  }
}

#serviceList {
  width: 100%;
  padding-bottom: 50px;
}
#serviceList .serviceListMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#serviceList .serviceListMain .serviceListBox {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  #serviceList .serviceListMain .serviceListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 768px) {
  #serviceList .serviceListMain .serviceListBox {
    flex: 100%;
  }
  #serviceList .serviceListMain .serviceListBox:nth-of-type(1) {
    margin-top: 50px;
  }
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxThumbnail {
  width: 100%;
  height: 350px;
  background: black;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #serviceList .serviceListMain .serviceListBox .serviceListBoxThumbnail {
    height: 300px;
  }
}
@media (max-width: 480px) {
  #serviceList .serviceListMain .serviceListBox .serviceListBoxThumbnail {
    height: 220px;
  }
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails h2 {
  color: white;
  font-family: myFont1;
  font-size: 2em;
  font-weight: 300;
}
@media (max-width: 1800px) {
  #serviceList .serviceListMain .serviceListBox .serviceListBoxDetails h2 {
    font-size: 1.7em;
  }
}
@media (max-width: 480px) {
  #serviceList .serviceListMain .serviceListBox .serviceListBoxDetails h2 {
    font-size: 30px;
  }
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 20px;
  opacity: 0.7;
}
@media (max-width: 480px) {
  #serviceList .serviceListMain .serviceListBox .serviceListBoxDetails p {
    font-size: 16px;
  }
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  transition: 0.3s;
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}

#innerServices {
  width: 100%;
  margin-top: 80px;
  padding: 100px 0px;
}
@media (max-width: 1024px) {
  #innerServices {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  #innerServices {
    padding: 50px 0px 0px 0px;
    margin-top: 60px;
  }
}
#innerServices .innerServicesMain {
  width: 100%;
  padding: 0px 20%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #innerServices .innerServicesMain {
    padding: 0;
  }
}
#innerServices .innerServicesMain .innerServicesThumbnail {
  width: 100%;
  overflow: hidden;
}
#innerServices .innerServicesMain .innerServicesThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#innerServices .innerServicesMain h1 {
  font-size: 3em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  #innerServices .innerServicesMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #innerServices .innerServicesMain h1 {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  #innerServices .innerServicesMain h1 {
    font-size: 30px;
  }
}
#innerServices .innerServicesMain p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
}
#innerServices .innerServicesMain p:nth-of-type(1) {
  margin-top: 60px;
}
@media (max-width: 480px) {
  #innerServices .innerServicesMain p {
    font-size: 16px;
  }
  #innerServices .innerServicesMain p:nth-of-type(1) {
    margin-top: 40px;
  }
}

#careerBanner {
  width: 100%;
  margin-top: 80px;
  padding: 100px 0px;
  background-image: url(../images/career.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}
#careerBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.448), black);
}
@media (max-width: 480px) {
  #careerBanner {
    padding: 50px 0px;
    margin-top: 60px;
  }
}
#careerBanner .careerBannerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#careerBanner .careerBannerMain h1 {
  font-size: 6em;
  font-family: myFont1;
  font-weight: 500;
  color: white;
  text-align: center;
}
@media (max-width: 1800px) {
  #careerBanner .careerBannerMain h1 {
    font-size: 5em;
  }
}
@media (max-width: 1024px) {
  #careerBanner .careerBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #careerBanner .careerBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #careerBanner .careerBannerMain h1 {
    font-size: 35px;
    text-align: left;
  }
}
#careerBanner .careerBannerMain p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
  text-align: center;
  width: 60%;
}
#careerBanner .careerBannerMain p:nth-of-type(1) {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  #careerBanner .careerBannerMain p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #careerBanner .careerBannerMain p:nth-of-type(1) {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  #careerBanner .careerBannerMain p {
    font-size: 16px;
    text-align: left;
  }
}

#careerContact {
  width: 100%;
  background: white;
  padding: 150px 0px;
}
@media (max-width: 1024px) {
  #careerContact {
    padding: 100px 0px;
  }
}
@media (max-width: 480px) {
  #careerContact {
    padding: 0px 0px 50px 0px;
  }
}
#careerContact .careerContactMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#careerContact .careerContactMain .careerContactDetails {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #careerContact .careerContactMain .careerContactDetails {
    flex: 100%;
    margin-top: 50px;
    order: 2;
  }
}
@media (max-width: 480px) {
  #careerContact .careerContactMain .careerContactDetails {
    margin-top: 0;
  }
}
#careerContact .careerContactMain .careerContactDetails h2 {
  font-size: 5em;
  font-family: myFont1;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 1800px) {
  #careerContact .careerContactMain .careerContactDetails h2 {
    font-size: 4em;
  }
}
@media (max-width: 1024px) {
  #careerContact .careerContactMain .careerContactDetails h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #careerContact .careerContactMain .careerContactDetails h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #careerContact .careerContactMain .careerContactDetails h2 {
    font-size: 35px;
  }
}
#careerContact .careerContactMain .careerContactDetails a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  transition: 0.3s;
}
#careerContact .careerContactMain .careerContactDetails a:hover {
  transition: 0.3s;
  background: black;
  color: white;
}
#careerContact .careerContactMain .careerContactDetails a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: white;
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#careerContact .careerContactMain .careerContactThumbnail {
  flex: 0 0 45%;
}
@media (max-width: 768px) {
  #careerContact .careerContactMain .careerContactThumbnail {
    flex: 100%;
    order: 1;
    height: 300px;
  }
}
#careerContact .careerContactMain .careerContactThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#careerList {
  width: 100%;
  padding: 150px 0px 0px 0px;
}
@media (max-width: 1024px) {
  #careerList {
    padding: 100px 0px 0px 0px;
  }
}
@media (max-width: 480px) {
  #careerList {
    padding: 50px 0px 0px 0px;
  }
}
#careerList .careerListHead {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#careerList .careerListHead .title {
  display: flex;
  align-items: center;
}
#careerList .careerListHead .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #careerList .careerListHead .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #careerList .careerListHead .title span {
    width: 30px;
    margin-right: 10px;
  }
}
#careerList .careerListHead .title h2 {
  font-size: 2em;
  color: white;
  font-family: myFont1;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #careerList .careerListHead .title h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #careerList .careerListHead .title h2 {
    font-size: 22px;
  }
}
#careerList .careerListHead p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
  width: 60%;
}
#careerList .careerListHead p:nth-of-type(1) {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  #careerList .careerListHead p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #careerList .careerListHead p:nth-of-type(1) {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  #careerList .careerListHead p {
    font-size: 16px;
  }
}
#careerList .careerListMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-top: 40px;
}
#careerList .careerListMain::after {
  content: "";
  height: 0;
  width: 32%;
}
#careerList .careerListMain .careerListBox {
  flex: 0 0 32%;
  background: black;
  padding: 30px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  #careerList .careerListMain .careerListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 768px) {
  #careerList .careerListMain .careerListBox {
    flex: 100%;
  }
}
@media (max-width: 480px) {
  #careerList .careerListMain .careerListBox {
    padding: 20px;
    margin-top: 20px;
  }
}
#careerList .careerListMain .careerListBox .careerListBoxTag {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
#careerList .careerListMain .careerListBox .careerListBoxTag .careerListBoxTagBox {
  padding: 8px 15px;
  background: #272727;
  font-size: 14px;
  color: white;
}
#careerList .careerListMain .careerListBox .careerListBoxTag .careerListBoxTagBox b {
  color: var(--primaryColor);
  margin-right: 5px;
}
#careerList .careerListMain .careerListBox h2 {
  font-size: 30px;
  font-weight: 400;
  color: white;
  font-family: myFont1;
  letter-spacing: 2px;
  margin-top: 30px;
}
#careerList .careerListMain .careerListBox p {
  font-size: 16px;
  color: white;
  line-height: 1.5;
  margin-top: 10px;
  opacity: 0.7;
}
@media (max-width: 480px) {
  #careerList .careerListMain .careerListBox p {
    font-size: 14px;
  }
}
#careerList .careerListMain .careerListBox .careerListBoxFooter {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  #careerList .careerListMain .careerListBox .careerListBoxFooter {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
#careerList .careerListMain .careerListBox .careerListBoxFooter .careerListBoxBtn {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 40px;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primaryColor);
  font-size: 14px;
  font-weight: 600;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 480px) {
  #careerList .careerListMain .careerListBox .careerListBoxFooter .careerListBoxBtn {
    width: 100%;
    order: 2;
    margin-top: 20px;
  }
}
#careerList .careerListMain .careerListBox .careerListBoxFooter .careerListBoxBtn:hover {
  transition: 0.3s;
  background: white;
  color: black;
}
#careerList .careerListMain .careerListBox .careerListBoxFooter .careerListBoxBtn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: black;
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}
#careerList .careerListMain .careerListBox .careerListBoxFooter .postDate {
  font-size: 14px;
  color: white;
  opacity: 0.7;
}
@media (max-width: 480px) {
  #careerList .careerListMain .careerListBox .careerListBoxFooter .postDate {
    order: 1;
    font-size: 12px;
  }
}

#workBanner {
  width: 100%;
  margin-top: 80px;
  padding: 100px 0px;
}
@media (max-width: 1800px) {
  #workBanner {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  #workBanner {
    padding: 50px 0px;
    margin-top: 60px;
  }
}
#workBanner .workBannerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#workBanner .workBannerMain h1 {
  font-size: 8em;
  font-family: myFont1;
  font-weight: 500;
  color: var(--primaryColor);
  text-align: center;
}
@media (max-width: 1800px) {
  #workBanner .workBannerMain h1 {
    font-size: 6em;
  }
}
@media (max-width: 1024px) {
  #workBanner .workBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #workBanner .workBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 480px) {
  #workBanner .workBannerMain h1 {
    font-size: 35px;
  }
}

#workList {
  width: 100%;
  padding: 0px 0px 100px 0px;
}
@media (max-width: 480px) {
  #workList {
    padding-bottom: 50px;
  }
}
#workList .workListMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
#workList .workListMain::after {
  content: "";
  height: 0;
  width: 31%;
}
#workList .workListMain .workListBox {
  flex: 0 0 31%;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  #workList .workListMain .workListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 768px) {
  #workList .workListMain .workListBox {
    flex: 100%;
  }
}
@media (max-width: 480px) {
  #workList .workListMain .workListBox:nth-of-type(1) {
    margin-top: 0;
  }
}
#workList .workListMain .workListBox .workListBoxThumbnail {
  width: 100%;
  height: 300px;
  background: black;
  overflow: hidden;
}
@media (max-width: 768px) {
  #workList .workListMain .workListBox .workListBoxThumbnail {
    height: 350px;
  }
}
@media (max-width: 480px) {
  #workList .workListMain .workListBox .workListBoxThumbnail {
    height: 250px;
  }
}
#workList .workListMain .workListBox .workListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#workList .workListMain .workListBox .workListBoxDetails {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
#workList .workListMain .workListBox .workListBoxDetails h2 {
  font-size: 25px;
  font-family: myFont1;
  font-weight: 500;
  color: white;
}
@media (max-width: 480px) {
  #workList .workListMain .workListBox .workListBoxDetails h2 {
    font-size: 25px;
  }
}
#workList .workListMain .workListBox .workListBoxDetails p {
  font-size: 16px;
  margin-top: 10px;
  color: white;
  opacity: 0.7;
}
#workList .workListMain .workListBox .workListBoxDetails a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  font-size: 16px;
  font-weight: 500;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  margin-top: 30px;
}
#workList .workListMain .workListBox .workListBoxDetails a:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: black;
}
#workList .workListMain .workListBox .workListBoxDetails a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--bgColo);
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}

#innerWork {
  width: 100%;
  padding: 50px 0px;
  margin-top: 80px;
}
@media (max-width: 480px) {
  #innerWork {
    margin-top: 60px;
  }
}
#innerWork .innerWorkMain {
  width: 100%;
  padding: 0px 15%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #innerWork .innerWorkMain {
    padding: 0px;
  }
}
#innerWork .innerWorkMain .innerWorkThumbnail {
  width: 100%;
  overflow: hidden;
  background: black;
}
#innerWork .innerWorkMain .innerWorkThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#innerWork .innerWorkMain h2 {
  font-size: 25px;
  font-family: myFont1;
  color: white;
  margin-top: 50px;
  font-weight: 400;
}
@media (max-width: 480px) {
  #innerWork .innerWorkMain h2 {
    margin-top: 30px;
  }
}
#innerWork .innerWorkMain span {
  color: var(--primaryColor);
  margin-top: 10px;
  font-size: 16px;
}
#innerWork .innerWorkMain p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  #innerWork .innerWorkMain p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #innerWork .innerWorkMain p:nth-of-type(1) {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  #innerWork .innerWorkMain p {
    font-size: 16px;
  }
}
#innerWork .innerWorkMain .workGallery {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 480px) {
  #innerWork .innerWorkMain .workGallery {
    margin-top: 60px;
  }
}
#innerWork .innerWorkMain .workGallery::after {
  content: "";
  height: 0;
  width: 32%;
}
#innerWork .innerWorkMain .workGallery .workGalleryBox {
  text-decoration: none;
  margin-top: 20px;
  flex: 0 0 32%;
  height: 220px;
  background: black;
  overflow: hidden;
}
@media (max-width: 768px) {
  #innerWork .innerWorkMain .workGallery .workGalleryBox {
    flex: 0 0 49%;
  }
}
@media (max-width: 480px) {
  #innerWork .innerWorkMain .workGallery .workGalleryBox {
    flex: 100%;
    height: 200px;
    margin-top: 6px;
  }
}
#innerWork .innerWorkMain .workGallery .workGalleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#innerWork .innerWorkMain .workGallery .workGalleryBox iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contactBanner {
  width: 100%;
  margin-top: 80px;
  padding: 100px 0px 0px 0px;
}
@media (max-width: 480px) {
  #contactBanner {
    padding: 50px 0px 0px 0px;
    margin-top: 60px;
  }
}
#contactBanner .contactBannerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contactBanner .contactBannerMain h1 {
  font-size: 8em;
  font-family: myFont1;
  font-weight: 500;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #contactBanner .contactBannerMain h1 {
    font-size: 6em;
  }
}
@media (max-width: 1024px) {
  #contactBanner .contactBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #contactBanner .contactBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 480px) {
  #contactBanner .contactBannerMain h1 {
    font-size: 35px;
  }
}
#contactBanner .contactBannerMain p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-top: 40px;
  opacity: 0.7;
}
#contactBanner .contactBannerMain p:nth-of-type(1) {
  margin-top: 60px;
}
@media (max-width: 480px) {
  #contactBanner .contactBannerMain p {
    font-size: 16px;
  }
}
#map {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 768px) {
  #map {
    padding: 100px 0px;
  }
}
#map .title {
  display: flex;
  align-items: center;
}
#map .title h2{
    font-size: 2em;
    color: white;
    font-family: myFont1;
    font-weight: 300;
    text-transform: uppercase;
}

#map .title span {
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.308);
  margin-right: 20px;
}
@media (max-width: 768px) {
  #map .title span {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #map .title span {
    width: 30px;
    margin-right: 10px;
  }
}

#map .mapHead{
margin-top:3rem;
}
#map .mapHead iframe{
width:100%;
}
/*# sourceMappingURL=style.css.map */