@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@font-face {
  font-family: myFont1;
  src: url(../font/Chillax-Bold.otf);
}

@font-face {
  font-family: myFont2;
  src: url(../font/Chillax-Extralight.otf);
}

@font-face {
  font-family: myFont3;
  src: url(../font/Chillax-Light.otf);
}

@font-face {
  font-family: myFont4;
  src: url(../font/Chillax-Medium.otf);
}

@font-face {
  font-family: myFont5;
  src: url(../font/Chillax-Regular.otf);
}

@font-face {
  font-family: myFont6;
  src: url(../font/Chillax-Semibold.otf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --primaryColor: #2b26ff;
  --secondaryColor: #33cccc;
  --secondaryTextColor: rgb(141, 141, 141);
}

body {
  font-family: 'Space Grotesk', sans-serif;
}

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

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: #757575;
  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 {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Space Grotesk', sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: 'Space Grotesk', 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: 'Space Grotesk', sans-serif;
}

::-moz-selection {
  color: var(--primaryColor);
  background: #9c9c9c;
}

::selection {
  color: var(--primaryColor);
  background: #9c9c9c;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main:not(.en) [data-lang='en'],
main:not(.ger) [data-lang='ger'] {
  display: none;
}

main.en [data-lang='en'],
main.ger [data-lang='ger'] {
  display: block;
}

.pageTransition {
  position: fixed;
  background-color: #fff;
  z-index: 40;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0%;
  display: block;
}

.pageTransition .pageTransitionLogo {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 300px;
}

.pageTransition .pageTransitionLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.sidemenu {
  width: 100%;
  position: fixed;
  z-index: 200;
  background: white;
  top: -100%;
  left: 0;
  -webkit-transition: .3s all;
  transition: .3s all;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

.sidemenu .closeSidemenu {
  position: absolute;
  right: 5%;
  top: 20px;
  cursor: pointer;
  font-size: 25px;
}

.sidemenu .sidemenuLink {
  width: 100%;
  padding: 50px 100px;
}

@media (max-width: 480px) {
  .sidemenu .sidemenuLink {
    padding: 50px 20px;
  }
}

.sidemenu .sidemenuLink ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidemenu .sidemenuLink ul li {
  list-style: none;
}

.sidemenu .sidemenuLink ul li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: black;
  font-size: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0px;
  overflow: hidden;
  position: relative;
  -webkit-transition: .5s all;
  transition: .5s all;
}
@media(max-width:480px){
	.sidemenu .sidemenuLink ul li a {
  		font-size: 25px;
	}
}

.sidemenu .sidemenuLink ul li a::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: white;
  -webkit-transition: 2s all;
  transition: 2s all;
}

.sidemenu .sidemenuLink ul li .navLinkAnchorActive {
  height: 70px;
}
@media(max-width:480px){
	.sidemenu .sidemenuLink ul li .navLinkAnchorActive {
  		height: 50px;
		margin-top :10px;
	}
}

.sidemenu .sidemenuLink ul li .navLinkAnchorActive::after {
  height: 0;
  -webkit-transition: 2s all;
  transition: 2s all;
}

.sidemenu .sidemenuLink ul li .sidemenuLinkActive {
  color: var(--primaryColor);
}

.sidemenuActive {
  top: 0;
}

nav {
  position: fixed;
  z-index: 50;
  width: 100%;
  -webkit-transition: .5s ease-out all;
  transition: .5s ease-out all;
  top: 0;
  background: white;
  left: 0;
  border-bottom: 1px solid #aaa;
}
.slideUp {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: -webkit-transform .5s ease-out;
  transition: -webkit-transform .5s ease-out;
  transition: transform .5s ease-out;
  transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}
.slideDown {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .5s ease-out;
  transition: -webkit-transform .5s ease-out;
  transition: transform .5s ease-out;
  transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}
nav .navMain {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  nav .navMain {
    height: 60px;
  }
}

nav .navMain .navLogo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
@media(max-width:480px){
	nav .navMain .navLogo{
		width: 200px;
	}
}
nav .navMain .navLogo img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

nav .navMain .navLogo h1 {
  color: black;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 480px) {
  nav .navMain .navLogo h1 {
    font-size: 20px;
  }
}

nav .navMain .navBar {
  height: 100%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 100px;
}

@media (max-width: 1024px) {
  nav .navMain .navBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 50px;
  }
}

@media (max-width: 480px) {
  nav .navMain .navBar {
    margin-left: 20px;
  }
}

nav .navMain .navBar .navBarBox {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

@media (max-width: 480px) {
  nav .navMain .navBar .navBarBox {
    width: 30px;
  }
}

nav .navMain .navBar .navBarBox span {
  height: 2px;
  background: black;
  border-radius: 50px;
  margin-top: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

nav .navMain .navBar .navBarBox span:nth-of-type(1) {
  margin-top: 0;
}

nav .navMain .navLink {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  nav .navMain .navLink {
    display: none;
  }
}

nav .navMain .navLink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

nav .navMain .navLink ul li {
  list-style: none;
}

nav .navMain .navLink ul li a {
  text-decoration: none;
  color: var(--secondaryTextColor);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .navMain .navLink ul li a::after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: black;
  bottom: -10px;
  opacity: 0;
  -webkit-transition: .3s all;
  transition: .3s all;
}

nav .navMain .navLink ul li a:hover {
  color: black;
}

nav .navMain .navLink ul li a:hover::after {
  opacity: 1;
  bottom: 0px;
}

nav .navMain .navLink ul li a i {
  margin-left: 5px;
  font-size: 20px;
}

nav .navMain .navLink ul li .navLinkDropdown {
  position: relative;
}

nav .navMain .navLink ul li .navLinkDropdown a::after {
  display: none;
}

nav .navMain .navLink ul li .navLinkDropdown:hover .navLinkPopup {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

nav .navMain .navLink ul li .navLinkDropdown .navLinkPopup {
  position: absolute;
  background: white;
  border-radius: 5px;
  border: 1px solid #aaa;
  top: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
  opacity: 0;
  visibility: hidden;
}

nav .navMain .navLink ul li .navLinkDropdown .navLinkPopup a {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 30px 50px;
  font-size: 20px;
  white-space: pre;
  border-top: 1px solid #aaa;
}

nav .navMain .navLink ul li .navLinkDropdown .navLinkPopup a:nth-of-type(1) {
  border-top: none;
}

nav .navMain .navLink ul li .navLinkDropdown .navLinkPopup a:hover {
  background: #eeeeee3a;
  -webkit-transition: .3s;
  transition: .3s;
  color: black;
}

nav .navMain .navLink ul li .navLinkDropdown .navLinkPopup a::after {
  display: none;
}

nav .navMain .navLink ul li .navLinkActive {
  color: black;
}

nav .navMain .navLink ul li .navLinkActive::after {
  opacity: 1;
  bottom: 0px;
}

nav .navMain .navLink ul li .navContact {
  text-decoration: none;
  padding: 12px 30px;
  border: 1px solid var(--primaryColor);
  color: black;
  background: var(--primaryColor);
  border-radius: 50px 50px 5px 50px;
  font-size: 14px;
  -webkit-box-shadow: 10px 20px 30px -15px var(--primaryColor);
          box-shadow: 10px 20px 30px -15px var(--primaryColor);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

nav .navMain .navLink ul li .navContact:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: var(--secondaryColor);
  color: black;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--secondaryColor);
}

nav .navMain .navContact {
  width: 150px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  nav .navMain .navContact {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  nav .navMain .navContact {
    display: none;
  }
}

nav .navMain .navContact a {
  text-decoration: none;
  padding: 12px 30px;
  border: 1px solid var(--primaryColor);
  color: white;
  background: var(--primaryColor);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: uppercase;
  -webkit-transition: .3s;
  transition: .3s;
  letter-spacing: 2px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .navMain .navContact a::after {
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 100%;
  background: white;
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

nav .navMain .navContact a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: black;
}

nav .navMain .navContact a:hover::after {
  top: -50px;
}

.navHide {
  top: -100%;
  -webkit-transition: .5s ease-in all;
  transition: .5s ease-in all;
}

main {
  overflow: hidden;
}

#banner {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 70px;
  background-image: url(../images/banner.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  position: relative;
}

@media (max-width: 480px) {
  #banner {
    margin-top: 60px;
  }
}

#banner::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.728);
}

#banner .bannerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 0px;
}

@media (max-width: 480px) {
  #banner .bannerMain {
    padding: 50px 0px 100px 0px;
  }
}

#banner .bannerMain .bannerThumbnail {
  width: 200px;
}

#banner .bannerMain .bannerThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#banner .bannerMain .bannerContent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerContent {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#banner .bannerMain .bannerContent h1 {
  color: white;
  font-size: 6em;
  line-height: 1.2;
  text-align: center;
  width: 70%;
  font-weight: 500;
}

@media (max-width: 1800px) {
  #banner .bannerMain .bannerContent h1 {
    font-size: 5em;
  }
}

@media (max-width: 1024px) {
  #banner .bannerMain .bannerContent h1 {
    font-size: 4em;
    width: 90%;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerContent h1 {
    font-size: 2.2em;
    width: 100%;
    text-align: left;
  }
}

#banner .bannerMain .bannerContent p {
  font-size: 16px;
  color: white;
  margin-top: 30px;
  width: 35%;
  line-height: 1.7;
  opacity: .8;
  text-align: center;
}

@media (max-width: 1024px) {
  #banner .bannerMain .bannerContent p {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerContent p {
    width: 80%;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerContent p {
    width: 100%;
    text-align: left;
  }
}

#banner .bannerMain .bannerContent a {
  padding: 12px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  border-radius: 10px;
  background: white;
  color: black;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#banner .bannerMain .bannerContent a::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 100%;
  background: var(--primaryColor);
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

#banner .bannerMain .bannerContent a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: white;
}

#banner .bannerMain .bannerContent a:hover::after {
  top: -50px;
}

.heighQuality {
  display: none;
}

.fixedVideoPopup {
  position: fixed;
  width: 100px;
  height: 80px;
  border-radius: 20px 20px 5px 20px;
  overflow: hidden;
  z-index: 120;
  bottom: 20px;
  right: 20px;
  background: black;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}

@media (max-width: 480px) {
  .fixedVideoPopup {
    display: none;
  }
}

.fixedVideoPopup video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.fixedVideoPopup .fixedVideoPopupText {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.404);
}

.fixedVideoPopup .fixedVideoPopupText h2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.fixedVideoPopup .closeFixedVideoPopup {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.295);
  color: white;
  font-size: 25px;
  border-radius: 5px;
  top: 20px;
  right: 20px;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.fixedVideoPopup .closeFixedVideoPopup:hover {
  background: black;
  -webkit-transition: .3s;
  transition: .3s;
}

.fixedVideoPopupHover:hover {
  width: 180px;
  height: 200px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.fixedVideoPopupActive {
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  bottom: 50%;
  right: 50%;
  width: 70%;
  height: 75%;
  border-radius: 20px;
  -webkit-transition: 1s;
  transition: 1s;
}

@media (max-width: 1024px) {
  .fixedVideoPopupActive {
    width: 80%;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .fixedVideoPopupActive {
    width: 90%;
  }
}

.fixedVideoPopupActive .closeFixedVideoPopup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fixedVideoPopupActive .fixedVideoPopupText {
  display: none;
}

#about {
  width: 100%;
  padding: 200px 0px;
}

@media (max-width: 1024px) {
  #about {
    padding: 100px 0px;
  }
}

#about .aboutMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  #about .aboutMain {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#about .aboutMain .aboutThmbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  background-image: url(../images/icon/liquid-cheese.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  height: 800px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1800px) {
  #about .aboutMain .aboutThmbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}

@media (max-width: 1024px) {
  #about .aboutMain .aboutThmbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    height: 700px;
  }
}

@media (max-width: 768px) {
  #about .aboutMain .aboutThmbnail {
    height: 650px;
  }
}

@media (max-width: 480px) {
  #about .aboutMain .aboutThmbnail {
    height: 350px;
  }
}

#about .aboutMain .aboutThmbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  overflow: hidden;
}

#about .aboutMain .aboutThmbnail img {
  width: 900px;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  overflow: hidden;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}

@media (max-width: 1024px) {
  #about .aboutMain .aboutThmbnail img {
    width: 100%;
    height: 600px;
  }
}

@media (max-width: 480px) {
  #about .aboutMain .aboutThmbnail img {
    height: 350px;
  }
}

#about .aboutMain .aboutThmbnail .heighQuality {
  display: none;
}

#about .aboutMain .aboutDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #about .aboutMain .aboutDetails {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

#about .aboutMain .aboutDetails h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#about .aboutMain .aboutDetails h2 {
  color: black;
  font-size: 4em;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #about .aboutMain .aboutDetails h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #about .aboutMain .aboutDetails h2 {
    font-size: 2.2em;
  }
}

#about .aboutMain .aboutDetails p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#about .aboutMain .aboutDetails a {
  padding: 10px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primaryColor);
  margin-top: 60px;
  border-radius: 5px;
  color: var(--primaryColor);
  font-size: 16px;
  text-decoration: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about .aboutMain .aboutDetails a::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 100%;
  background: var(--primaryColor);
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

#about .aboutMain .aboutDetails a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: white;
}

#about .aboutMain .aboutDetails a:hover::after {
  top: -50px;
}

#about .aboutMain .aboutDetails .aboutSpec {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #about .aboutMain .aboutDetails .aboutSpec {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

#about .aboutMain .aboutDetails .aboutSpec .aboutSpecBox {
  width: 150px;
  border-radius: 10px;
  margin-top: 20px;
  -webkit-box-shadow: 0px 0px 43px 7px rgba(0, 0, 0, 0.032);
          box-shadow: 0px 0px 43px 7px rgba(0, 0, 0, 0.032);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
}

@media (max-width: 480px) {
  #about .aboutMain .aboutDetails .aboutSpec .aboutSpecBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

#about .aboutMain .aboutDetails .aboutSpec .aboutSpecBox .aboutSpecBoxIcon {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

#about .aboutMain .aboutDetails .aboutSpec .aboutSpecBox .aboutSpecBoxIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#about .aboutMain .aboutDetails .aboutSpec .aboutSpecBox .aboutSpecBoxText {
  width: 100%;
  padding: 10px;
}

#about .aboutMain .aboutDetails .aboutSpec .aboutSpecBox .aboutSpecBoxText h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

#services {
  width: 100%;
  padding: 200px 0px;
  background: #000;
  position: relative;
  z-index: 0;
}

@media (max-width: 1024px) {
  #services {
    padding: 100px 0px;
  }
}

#services .servicesMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 20%;
}

@media (max-width: 1024px) {
  #services .servicesMain {
    padding-left: 0%;
  }
}

#services .servicesMain .serviceshead {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#services .servicesMain .serviceshead h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#services .servicesMain .serviceshead h2 {
  color: white;
  font-size: 4em;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #services .servicesMain .serviceshead h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #services .servicesMain .serviceshead h2 {
    font-size: 2.2em;
  }
}

#services .servicesMain .serviceshead p {
  font-size: 16px;
  color: white;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
  width: 45%;
}

@media (max-width: 1800px) {
  #services .servicesMain .serviceshead p {
    width: 50%;
  }
}

@media (max-width: 1024px) {
  #services .servicesMain .serviceshead p {
    width: 70%;
  }
}

@media (max-width: 480px) {
  #services .servicesMain .serviceshead p {
    width: 100%;
  }
}

#services .servicesMain .serviceshead a {
  padding: 10px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid white;
  margin-top: 60px;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-family: myFont5;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#services .servicesMain .serviceshead a::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 100%;
  background: var(--primaryColor);
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

#services .servicesMain .serviceshead a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: white;
}

#services .servicesMain .serviceshead a:hover::after {
  top: -50px;
}

#services .servicesMain .servicesDetails {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 100px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

@media (max-width: 1024px) {
  #services .servicesMain .servicesDetails {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

#services .servicesMain .servicesDetails .servicesBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  border: 5px solid white;
  border-radius: 10px;
}

@media (max-width: 1800px) {
  #services .servicesMain .servicesDetails .servicesBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}

@media (max-width: 1024px) {
  #services .servicesMain .servicesDetails .servicesBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #services .servicesMain .servicesDetails .servicesBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
  #services .servicesMain .servicesDetails .servicesBox:nth-of-type(1) {
    margin-top: 0;
  }
}

#services .servicesMain .servicesDetails .servicesBox:hover .servicesBoxThumbnail {
  background-size: 80px;
  -webkit-transition: .3s;
  transition: .3s;
}

#services .servicesMain .servicesDetails .servicesBox:hover .servicesBoxDetails i {
  background: white;
  color: black;
  -webkit-transition: .3s;
  transition: .3s;
}

#services .servicesMain .servicesDetails .servicesBox:nth-of-type(1) .servicesBoxThumbnail {
  background-image: url(../images/icon/hollowed-boxes.svg);
}

#services .servicesMain .servicesDetails .servicesBox:nth-of-type(2):hover .servicesBoxThumbnail {
  background-size: 40px;
}

#services .servicesMain .servicesDetails .servicesBox:nth-of-type(2) .servicesBoxThumbnail {
  background-image: url(../images/icon/alternating-arrowhead.svg);
  background-size: 50px;
}

#services .servicesMain .servicesDetails .servicesBox .servicesBoxThumbnail {
  width: 100%;
  height: 300px;
  background: #fff;
  overflow: hidden;
  background-size: 100px;
  border-radius: 0px 0px;
  -webkit-transition: .3s;
  transition: .3s;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesDetails .servicesBox .servicesBoxThumbnail {
    height: 250px;
  }
}

#services .servicesMain .servicesDetails .servicesBox .servicesBoxThumbnail svg {
  position: absolute;
  bottom: 0;
  left: 0;
}

#services .servicesMain .servicesDetails .servicesBox .servicesBoxThumbnail img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 1s;
  transition: 1s;
}

#services .servicesMain .servicesDetails .servicesBox .servicesBoxDetails {
  padding: 10px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 1s;
  transition: 1s;
  background: white;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesDetails .servicesBox .servicesBoxDetails {
    padding: 10px;
  }
}

#services .servicesMain .servicesDetails .servicesBox .servicesBoxDetails h2 {
  font-size: 30px;
  font-weight: 500;
  color: black;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesDetails .servicesBox .servicesBoxDetails h2 {
    font-size: 22px;
  }
}

#services .servicesMain .servicesDetails .servicesBox .servicesBoxDetails i {
  font-size: 2.5em;
  -webkit-transition: .3s;
  transition: .3s;
  background: var(--primaryColor);
  color: white;
  margin-top: 30px;
  border-radius: 10px;
  padding: 0px 20px;
  width: 50%;
  text-align: right;
  transition: .3s;
  border: 2px solid var(--primaryColor);
}

@media (max-width: 768px) {
  #services .servicesMain .servicesDetails .servicesBox .servicesBoxDetails i {
    font-size: 2em;
  }
}

#services .element1 {
  position: absolute;
  z-index: -1;
  width: 100px;
  height: 100px;
  right: 50px;
  top: 50px;
  background: #ffffff1d;
}

@media (max-width: 480px) {
  #services .element1 {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px;
  }
}

#services .element2 {
  position: absolute;
  z-index: -1;
  width: 200px;
  height: 200px;
  right: 100px;
  top: 100px;
  background: #ffffff39;
}

@media (max-width: 480px) {
  #services .element2 {
    width: 120px;
    height: 120px;
    top: 50px;
    right: 50px;
  }
}

#services .element3 {
  position: absolute;
  z-index: -1;
  width: 100px;
  height: 100px;
  left: 50px;
  bottom: 50px;
  background: #ffffff1d;
}

@media (max-width: 480px) {
  #services .element3 {
    width: 80px;
    height: 80px;
    left: 20px;
    bottom: 20px;
  }
}

#services .element4 {
  position: absolute;
  z-index: -1;
  width: 200px;
  height: 200px;
  left: 100px;
  bottom: 100px;
  background: #ffffff39;
}

@media (max-width: 480px) {
  #services .element4 {
    width: 120px;
    height: 120px;
    left: 50px;
    bottom: 50px;
  }
}

#testimonials {
  width: 100%;
  padding: 200px 0px;
}

@media (max-width: 1024px) {
  #testimonials {
    padding: 100px 0px;
  }
}

#testimonials .testimonialsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#testimonials .testimonialsMain .testimonialsDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@media (max-width: 1024px) {
  #testimonials .testimonialsMain .testimonialsDetails {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 80px;
  }
}

#testimonials .testimonialsMain .testimonialsDetails h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#testimonials .testimonialsMain .testimonialsDetails h2 {
  color: black;
  font-size: 4em;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsDetails h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #testimonials .testimonialsMain .testimonialsDetails h2 {
    font-size: 2.2em;
  }
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel {
  width: 100%;
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox {
  width: 100%;
  background: black;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
}

@media (max-width: 480px) {
  #testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox {
    padding: 20px;
  }
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox p {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 400;
  color: white;
}

@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox p {
    font-size: 20px;
  }
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox .testimonialsProfile {
  width: 100%;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.418);
  border-radius: 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox .testimonialsProfile .testimonialsProfileThumbnail {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox .testimonialsProfile .testimonialsProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox .testimonialsProfile .testimonialsProfileName {
  width: calc(100% - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox .testimonialsProfile .testimonialsProfileName h3 {
  color: white;
  font-weight: 500;
  font-size: 20px;
  margin-right: 5px;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .testimonialsCarouselBox .testimonialsProfile .testimonialsProfileName span {
  color: white;
  font-size: 12px;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .owl-nav, #testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsCarousel .owl-dots {
  display: none;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsControls {
  width: 100%;
  margin-top: 20px;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsControls .custom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsControls .custom-nav button {
  width: 50px;
  height: 35px;
  background: #f5f5f5;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 25px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

#testimonials .testimonialsMain .testimonialsDetails .testimonialsDetailsMain .testimonialsControls .custom-nav button:hover {
  -webkit-transition: .3s;
  transition: .3s;
  background: black;
  color: white;
}

#testimonials .testimonialsMain .testimonialsThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsThumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}

@media (max-width: 1024px) {
  #testimonials .testimonialsMain .testimonialsThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0px 100px;
  }
}

@media (max-width: 768px) {
  #testimonials .testimonialsMain .testimonialsThumbnail {
    padding: 0;
  }
}

#testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox {
  width: 300px;
  height: 300px;
  background: black;
  overflow: hidden;
}

@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  #testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox {
    width: 150px;
    height: 150px;
  }
}

#testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox:nth-of-type(1) {
  border-radius: 10px;
  background: #5800FF;
  background-image: url(../images/icon/wavey-fingerprint.svg);
  background-size: 800px;
}

#testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox:nth-of-type(2) {
  border-radius: 100% 100% 100% 10px;
  border: 5px solid lime;
}

#testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox:nth-of-type(3) {
  border-radius: 100% 10px 100% 100%;
  border: 5px solid lime;
}

#testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox:nth-of-type(4) {
  border-radius: 10px;
  background: #FF1700;
  background-image: url(../images/icon/diagonal-stripes.svg);
  background-size: 40px;
}

#testimonials .testimonialsMain .testimonialsThumbnail .testimonialsThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#blogs {
  width: 100%;
  padding: 200px 0px;
}

@media (max-width: 1800px) {
  #blogs {
    padding-top: 100px;
  }
}

@media (max-width: 1024px) {
  #blogs {
    padding: 100px 0px;
  }
}

@media (max-width: 480px) {
  #blogs {
    padding-top: 0px;
  }
}

#blogs .blogsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#blogs .blogsMain h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#blogs .blogsMain h2 {
  color: black;
  font-size: 4em;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1800px) {
  #blogs .blogsMain h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #blogs .blogsMain h2 {
    font-size: 2.2em;
  }
}

#blogs .blogsMain .viewMore {
  padding: 10px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primaryColor);
  margin-top: 60px;
  border-radius: 5px;
  color: var(--primaryColor);
  font-size: 16px;
  text-decoration: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  #blogs .blogsMain .viewMore {
    margin-top: 40px;
  }
}

#blogs .blogsMain .viewMore::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 100%;
  background: var(--primaryColor);
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

#blogs .blogsMain .viewMore:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: white;
}

#blogs .blogsMain .viewMore:hover::after {
  top: -50px;
}

#blogs .blogsMain .blogsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #blogs .blogsMain .blogsList {
    margin-top: 20px;
  }
}

#blogs .blogsMain .blogsList .dummyDiv {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  height: 0;
}

#blogs .blogsMain .blogsList .blogsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  margin-top: 50px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 1024px) {
  #blogs .blogsMain .blogsList .blogsBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #blogs .blogsMain .blogsList .blogsBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#blogs .blogsMain .blogsList .blogsBox:hover {
  margin-top: 30px;
  -webkit-transition: .3s;
  transition: .3s;
}

#blogs .blogsMain .blogsList .blogsBox:hover .blogsBoxThumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: .3s;
  transition: .3s;
}

#blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail {
  width: 100%;
  height: 240px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

#blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .3s;
  transition: .3s;
}

#blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail svg {
  position: absolute;
  left: 0;
  bottom: 0;
}

#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails .date {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondaryColor);
}

#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  max-height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}

#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails p {
  font-size: 16px;
  color: var(--secondaryTextColor);
  line-height: 1.5;
  margin-top: 20px;
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#contact {
  width: 100%;
  padding: 200px 0px 100px 0px;
  background-color: black;
  position: relative;
  z-index: 0;
  background-image: url(../images/icon/tortoise-shell.svg);
  background-attachment: fixed;
}

@media (max-width: 1024px) {
  #contact {
    padding: 150px 0px 100px 0px;
  }
}

#contact::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -2;
  left: 0;
  background: rgba(68, 255, 43, 0.058);
}

#contact svg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#contact .contactMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .contactMain .contactDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1800px) {
  #contact .contactMain .contactDetails {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
  }
}

@media (max-width: 1024px) {
  #contact .contactMain .contactDetails {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#contact .contactMain .contactDetails h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contact .contactMain .contactDetails h2 {
  color: white;
  font-size: 4em;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #contact .contactMain .contactDetails h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #contact .contactMain .contactDetails h2 {
    font-size: 2.2em;
  }
}

#contact .contactMain .contactDetails p {
  font-size: 16px;
  color: white;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
  width: 65%;
}

@media (max-width: 480px) {
  #contact .contactMain .contactDetails p {
    width: 100%;
  }
}

#contact .contactMain .contactDetails .contactDetailsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  background: black;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxHead .contactDetailsBoxHeadIcon {
  width: 35px;
  height: 35px;
  background: #222222;
  overflow: hidden;
  background-image: url(../images/icon/liquid-cheese2.svg);
  background-size: 100px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxHead .contactDetailsBoxHeadIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxHead h4 {
  width: calc(100% - 55px);
  color: white;
  font-size: 18px;
  font-weight: 500;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxBody {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid #5e5e5e;
  padding-top: 20px;
  gap: 10px;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxBody h3 {
  color: white;
  font-weight: 500;
  line-height: 1.5;
  font-size: 18px;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxBody a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  line-height: 1.5;
  font-size: 18px;
}

#contact .contactMain .contactDetails .contactDetailsList .contactDetailsBox .contactDetailsBoxBody a:hover {
  text-decoration: underline;
}

#contact .contactMain .contactForm {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}

@media (max-width: 1800px) {
  #contact .contactMain .contactForm {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}

@media (max-width: 1024px) {
  #contact .contactMain .contactForm {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

#contact .contactMain .contactForm form {
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #contact .contactMain .contactForm form {
    padding: 20px;
  }
}

#contact .contactMain .contactForm form h2 {
  color: black;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2;
}

#contact .contactMain .contactForm form .formGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#contact .contactMain .contactForm form .formGroup:nth-of-type(1) {
  margin-top: 40px;
}

#contact .contactMain .contactForm form .formGroup label {
  font-size: 16px;
  font-weight: 500;
}

#contact .contactMain .contactForm form .formGroup input {
  width: 100%;
  margin-top: 5px;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0px 20px;
  font-weight: 500;
  font-size: 16px;
  outline: none;
  background: white;
}

#contact .contactMain .contactForm form .formGroup input:focus {
  border: 1px solid #000;
}

#contact .contactMain .contactForm form .formGroup textarea {
  width: 100%;
  margin-top: 5px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  outline: none;
  background: white;
}

#contact .contactMain .contactForm form .formGroup textarea:focus {
  border: 1px solid #000;
}

#contact .contactMain .contactForm form .formBtnarea {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .contactMain .contactForm form .formBtnarea button {
  padding: 12px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primaryColor);
  border-radius: 10px;
  background: var(--primaryColor);
  color: white;
  font-size: 18px;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .contactMain .contactForm form .formBtnarea button::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 100%;
  background: white;
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

#contact .contactMain .contactForm form .formBtnarea button:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: black;
}

#contact .contactMain .contactForm form .formBtnarea button:hover::after {
  top: -50px;
}

footer {
  width: 100%;
  padding: 100px 0px 0px 0px;
  background: #151515;
}

footer .footerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footerMain .footerLogo h2 {
  color: white;
  font-size: 2em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
}

footer .footerMain .footerLink {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

footer .footerMain .footerLink ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}

@media (max-width: 480px) {
  footer .footerMain .footerLink ul {
    gap: 40px 60px;
  }
}

footer .footerMain .footerLink ul li {
  list-style: none;
}

footer .footerMain .footerLink ul li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: white;
  font-weight: 300;
}

footer .footerMain p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 30px;
  width: 50%;
  color: var(--secondaryTextColor);
  text-align: center;
}

@media (max-width: 1024px) {
  footer .footerMain p {
    width: 100%;
  }
}

footer .footerSocialLink {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 80px;
}

footer .footerSocialLink .footerSocialLinkBox1 {
  background: black;
  width: 40%;
  border-top-right-radius: 50px;
  position: relative;
}

@media (max-width: 1024px) {
  footer .footerSocialLink .footerSocialLinkBox1 {
    width: 35%;
  }
}

@media (max-width: 480px) {
  footer .footerSocialLink .footerSocialLinkBox1 {
    width: 10%;
  }
}

footer .footerSocialLink .footerSocialLinkBox1::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #151515;
  right: -20px;
  bottom: 0;
  border-bottom-left-radius: 50%;
}

footer .footerSocialLink .footerSocialLinkBox1::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: black;
  right: -20px;
  bottom: 0;
}

footer .footerSocialLink .footerSocialLinkBox2 {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0px;
}

@media (max-width: 1024px) {
  footer .footerSocialLink .footerSocialLinkBox2 {
    width: 30%;
  }
}

@media (max-width: 480px) {
  footer .footerSocialLink .footerSocialLinkBox2 {
    width: 80%;
  }
}

footer .footerSocialLink .footerSocialLinkBox2 a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}

footer .footerSocialLink .footerSocialLinkBox3 {
  background: black;
  width: 40%;
  border-top-left-radius: 50px;
  position: relative;
}

@media (max-width: 1024px) {
  footer .footerSocialLink .footerSocialLinkBox3 {
    width: 35%;
  }
}

@media (max-width: 480px) {
  footer .footerSocialLink .footerSocialLinkBox3 {
    width: 10%;
  }
}

footer .footerSocialLink .footerSocialLinkBox3::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #151515;
  left: -20px;
  bottom: 0;
  border-bottom-right-radius: 50%;
}

footer .footerSocialLink .footerSocialLinkBox3::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: black;
  left: -20px;
  bottom: 0;
}

#footerStrip {
  width: 100%;
  background: black;
  padding: 20px 0px;
}

#footerStrip .footerStripMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  #footerStrip .footerStripMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#footerStrip .footerStripMain p {
  font-size: 12px;
  color: var(--secondaryTextColor);
}
@media(max-width:480px){
	#footerStrip .footerStripMain p{
		text-align: center;
	}
}
#footerStrip .footerStripMain .desined {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--secondaryTextColor);
}

@media (max-width: 480px) {
  #footerStrip .footerStripMain .desined {
    margin-top: 10px;
  }
}

#footerStrip .footerStripMain .desined i {
  color: white;
  margin: 0px 10px;
  font-size: 16px;
}

#footerStrip .footerStripMain .desined a {
  text-decoration: none;
}

#footerStrip .footerStripMain .desined a .footerStripLogo {
  width: 60px;
}

#footerStrip .footerStripMain .desined a .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

#aboutBanner {
  width: 100%;
  padding: 100px 0px;
  margin-top: 70px;
  background: #3E00FF;
  position: relative;
  z-index: 0;
}

@media (max-width: 480px) {
  #aboutBanner {
    margin-top: 60px;
    padding: 50px 0px 0px 0px;
  }
}

#aboutBanner svg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#aboutBanner .aboutBannerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#aboutBanner .aboutBannerMain h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#aboutBanner .aboutBannerMain h1 {
  color: transparent;
  font-size: 6em;
  line-height: 1.2;
  text-align: center;
  width: 70%;
  margin-top: 50px;
  font-weight: 600;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: white;
}

@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 5em;
  }
}

@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 4em;
    width: 90%;
  }
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 2.2em;
    width: 100%;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: white;
    line-height: 1.5;
    margin-top: 30px;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerVideo {
  width: 80%;
  height: 70vh;
  background: black;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 80px;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerVideo {
    height: 350px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerVideo {
    height: 220px;
    margin-top: 40px;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerVideo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#aboutBanner .element1 {
  position: absolute;
  z-index: -1;
  width: 60px;
  height: 60px;
  left: 130px;
  top: 50px;
  background: #0000000d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 480px) {
  #aboutBanner .element1 {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px;
  }
}

#aboutBanner .element2 {
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  left: 100px;
  top: 100px;
  background: #0000000c;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 480px) {
  #aboutBanner .element2 {
    width: 120px;
    height: 120px;
    top: 50px;
    right: 50px;
  }
}

#aboutBanner .element3 {
  position: absolute;
  z-index: -1;
  width: 60px;
  height: 60px;
  right: 80px;
  top: 45%;
  background: #0000000d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 480px) {
  #aboutBanner .element3 {
    width: 80px;
    height: 80px;
    left: 20px;
    bottom: 20px;
  }
}

#aboutBanner .element4 {
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  right: 50px;
  top: 48%;
  background: #0000000c;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 480px) {
  #aboutBanner .element4 {
    width: 120px;
    height: 120px;
    left: 50px;
    bottom: 50px;
  }
}

#innerAbout {
  width: 100%;
  padding: 200px 0px 100px 0px;
}

@media (max-width: 1024px) {
  #innerAbout {
    padding: 100px 0px;
  }
}

#innerAbout .innerAboutMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#innerAbout .innerAboutMain .innerAboutDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #innerAbout .innerAboutMain .innerAboutDetails {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 50px;
  }
}

#innerAbout .innerAboutMain .innerAboutDetails h2 {
  color: black;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #innerAbout .innerAboutMain .innerAboutDetails h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #innerAbout .innerAboutMain .innerAboutDetails h2 {
    font-size: 2.2em;
  }
}

#innerAbout .innerAboutMain .innerAboutDetails p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#innerAbout .innerAboutMain .innerAboutDetails ul {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

#innerAbout .innerAboutMain .innerAboutDetails ul li {
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  background: #efffe9;
  border-radius: 50px;
  padding: 10px 30px;
}

#innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

#innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec .innerAboutSpecBox {
  width: 150px;
  border-radius: 10px;
  margin-top: 20px;
  -webkit-box-shadow: 0px 0px 43px 7px rgba(0, 0, 0, 0.032);
          box-shadow: 0px 0px 43px 7px rgba(0, 0, 0, 0.032);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
}

@media (max-width: 480px) {
  #innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec .innerAboutSpecBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

#innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec .innerAboutSpecBox .innerAboutSpecBoxIcon {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

#innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec .innerAboutSpecBox .innerAboutSpecBoxIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec .innerAboutSpecBox .innerAboutSpecBoxText {
  width: 100%;
  padding: 10px;
}

#innerAbout .innerAboutMain .innerAboutDetails .innerAboutSpec .innerAboutSpecBox .innerAboutSpecBoxText h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

#innerAbout .innerAboutMain .innerAboutThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media (max-width: 1024px) {
  #innerAbout .innerAboutMain .innerAboutThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 480px) {
  #innerAbout .innerAboutMain .innerAboutThumbnail {
    gap: 10px;
  }
}

#innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol1 {
  width: 100%;
}

#innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol1 .innerAboutThumbnailBox {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}

@media (max-width: 768px) {
  #innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol1 .innerAboutThumbnailBox {
    height: 200px;
  }
}

#innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol1 .innerAboutThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol2 .innerAboutThumbnailBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48.5%;
          flex: 0 0 48.5%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}

@media (max-width: 768px) {
  #innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol2 .innerAboutThumbnailBox {
    height: 200px;
  }
}

@media (max-width: 480px) {
  #innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol2 .innerAboutThumbnailBox {
    height: 160px;
  }
}

#innerAbout .innerAboutMain .innerAboutThumbnail .innerAboutThumbnailCol2 .innerAboutThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#visionMission {
  width: 100%;
  padding: 400px 0px 200px 0px;
  background: #000;
  position: relative;
  z-index: 0;
}

@media (max-width: 1024px) {
  #visionMission {
    padding: 200px 0px 100px 0px;
  }
}

@media (max-width: 480px) {
  #visionMission {
    padding-top: 150px;
  }
}

#visionMission svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#visionMission .visionMissionMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 20%;
}

@media (max-width: 1024px) {
  #visionMission .visionMissionMain {
    padding: 0px;
  }
}

#visionMission .visionMissionMain h2 {
  color: white;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #visionMission .visionMissionMain h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #visionMission .visionMissionMain h2 {
    font-size: 2.2em;
  }
}

#visionMission .visionMissionMain .visionMissionList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
  background: white;
  border-radius: 10px;
  padding: 20px;
}

@media (max-width: 480px) {
  #visionMission .visionMissionMain .visionMissionList .visionMissionBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px;
  }
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxThumbnail {
  width: 200px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 480px) {
  #visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxThumbnail {
    width: 100%;
    height: 200px;
  }
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxContent {
  width: calc(100% - 230px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxContent {
    width: 100%;
    margin-top: 20px;
    padding: 0px 10px 10px 10px;
  }
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxContent .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #3E00FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxContent .icon span {
  font-size: 25px;
  color: #3E00FF;
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxContent .visionMissionBoxDetails {
  width: 100%;
  margin-top: 20px;
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxContent .visionMissionBoxDetails h3 {
  font-size: 30px;
  font-weight: 600;
}

#visionMission .visionMissionMain .visionMissionList .visionMissionBox .visionMissionBoxContent .visionMissionBoxDetails p {
  font-size: 16px;
  color: black;
  margin-top: 10px;
  line-height: 1.7;
  opacity: .8;
}

#team {
  width: 100%;
  background: #000;
  padding: 200px 0px;
  position: relative;
  z-index: 0;
}

@media (max-width: 1024px) {
  #team {
    padding: 100px 0px;
  }
}

#team::after {
  position: absolute;
  content: '';
  width: 95%;
  height: 10px;
  top: 0;
  left: 2.5%;
  border-radius: 10px;
  background: linear-gradient(45deg, #ff2121, #ffa600, yellow, lime, #0099ff, blue);
}

#team .teamMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#team .teamMain .teamThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #team .teamMain .teamThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#team .teamMain .teamThumbnail .teamThumbnailBox {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#team .teamMain .teamThumbnail .teamThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1024px) {
  #team .teamMain .teamThumbnail .webImg {
    display: none;
  }
}

#team .teamMain .teamThumbnail .mobileImg {
  display: none;
}

@media (max-width: 1024px) {
  #team .teamMain .teamThumbnail .mobileImg {
    display: block;
  }
}

#team .teamMain .teamDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #team .teamMain .teamDetails {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

#team .teamMain .teamDetails h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#team .teamMain .teamDetails h2 {
  color: white;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 30px;
}

@media (max-width: 1800px) {
  #team .teamMain .teamDetails h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #team .teamMain .teamDetails h2 {
    font-size: 2.2em;
  }
}

#team .teamMain .teamDetails span {
  font-size: 20px;
  color: white;
  font-weight: 300;
}

#team .teamMain .teamDetails .aboutSocialLinks{
	width :100%;
	margin-top: 20px;
	display: flex;
	align-items :center;
	gap :20px;
}

#team .teamMain .teamDetails .aboutSocialLinks a{
	text-decoration: none;
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #323232;
	font-size: 18px;
	color: white;
	border-radius: 5px;
	border :1px solid #323232;
	transition: .3s;
}

#team .teamMain .teamDetails .aboutSocialLinks a:hover{
	border :1px solid #ddd;
	transition: .3s;
}

#team .teamMain .teamDetails ul {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

#team .teamMain .teamDetails ul li {
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  background: #323232;
  border-radius: 50px;
  padding: 10px 30px;
  color: white;
}

#team .teamMain .teamDetails p {
  font-size: 16px;
  color: white;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#team .teamMain .teamDetails p:nth-of-type(1) {
  margin-top: 50px;
}

#team .teamMain .teamList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  #team .teamMain .teamList {
    margin-top: 30px;
  }
}

#team .teamMain .teamList .dummyDiv {
  height: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
}

@media (max-width: 1024px) {
  #team .teamMain .teamList .dummyDiv {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

#team .teamMain .teamList .teamBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}

@media (max-width: 1024px) {
  #team .teamMain .teamList .teamBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

@media (max-width: 768px) {
  #team .teamMain .teamList .teamBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #team .teamMain .teamList .teamBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

#team .teamMain .teamList .teamBox .teamBoxProfile {
  width: 100%;
  height: 400px;
  background: #202020;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  #team .teamMain .teamList .teamBox .teamBoxProfile {
    height: 300px;
  }
}

#team .teamMain .teamList .teamBox .teamBoxProfile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#team .teamMain .teamList .teamBox .teamBoxDetails {
  width: 100%;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: black;
}

#team .teamMain .teamList .teamBox .teamBoxDetails h3 {
  font-size: 25px;
  text-align: center;
  color: white;
  font-weight: 600;
}

#team .teamMain .teamList .teamBox .teamBoxDetails p {
  text-align: center;
  color: var(--secondaryTextColor);
  font-size: 18px;
  margin-top: 5px;
}

#philosophy {
  width: 100%;
  padding: 200px 0px;
}

@media (max-width: 1024px) {
  #philosophy {
    padding: 100px 0px;
  }
}

#philosophy .philosophyMian {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#philosophy .philosophyMian h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#philosophy .philosophyMian h2 {
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 30px;
}

@media (max-width: 1800px) {
  #philosophy .philosophyMian h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #philosophy .philosophyMian h2 {
    font-size: 2.2em;
  }
}

#philosophy .philosophyMian p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#philosophy .philosophyMian p .PhilosophySpan {
  font-size: 18px;
  font-weight: 600;
}

#servicePage {
  width: 100%;
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  #servicePage {
    margin-top: 60px;
  }
}

#servicePage .servicePageBox {
  width: 100%;
  padding: 100px 0px;
  position: relative;
  z-index: 0;
}

@media (max-width: 480px) {
  #servicePage .servicePageBox {
    padding: 50px 0px;
  }
}

#servicePage .servicePageBox::after {
  position: absolute;
  z-index: -1;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#servicePage .servicePageBox:nth-of-type(1) {
  background-image: url(../images/service3.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFFFC7;
}

#servicePage .servicePageBox:nth-of-type(1)::after {
  background-color: #ffffc7fb;
}

#servicePage .servicePageBox:nth-of-type(2) {
  background-image: url(../images/service2.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #C0FEFC;
}

#servicePage .servicePageBox:nth-of-type(2)::after {
  background: #c0fefcf4;
}

#servicePage .servicePageBox .servicePageBoxMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    height: 400px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 480px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxThumbnail {
    height: 220px;
  }
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 0px;
}

@media (max-width: 1800px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    padding: 0px;
  }
}

@media (max-width: 1024px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails {
    margin-top: 20px;
  }
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails h2 {
  color: black;
  font-size: 4em;
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 1800px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails h2 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails h2 {
    font-size: 2.2em;
    line-height: 1.5;
  }
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

@media (max-width: 480px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails p {
    margin-top: 10px;
  }
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  background: white;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 768px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: .3s;
  transition: .3s;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox:nth-of-type(1) {
  background: #98b4d9;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox:nth-of-type(2) {
  background: #93d1d2;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox:nth-of-type(3) {
  background: #d66c55;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox .servicePageBoxDetailsSubBoxThumbnail {
  width: 100%;
  height: 100px;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox .servicePageBoxDetailsSubBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox h3 {
  color: black;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}

@media (max-width: 1800px) {
  #servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .servicePageBoxDetailsSubs .servicePageBoxDetailsSubBox h3 {
    font-size: 18px;
  }
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .viewMore {
  padding: 10px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primaryColor);
  margin-top: 60px;
  border-radius: 5px;
  color: var(--primaryColor);
  font-size: 16px;
  text-decoration: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .viewMore::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 100%;
  background: var(--primaryColor);
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .viewMore:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: white;
}

#servicePage .servicePageBox .servicePageBoxMain .servicePageBoxDetails .viewMore:hover::after {
  top: -50px;
}

#serviceBanner {
  width: 100%;
  padding: 100px 0px;
  margin-top: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(#E4FBFF), to(white));
  background: linear-gradient(#E4FBFF, white);
  position: relative;
  z-index: 0;
}

@media (max-width: 480px) {
  #serviceBanner {
    margin-top: 60px;
    padding: 50px 0px 0px 0px;
  }
}

#serviceBanner .serviceBannerMain {
  width: 100%;
  padding: 0px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #serviceBanner .serviceBannerMain {
    padding: 0%;
  }
}

#serviceBanner .serviceBannerMain h1 {
  color: black;
  font-size: 6em;
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 1800px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 5em;
  }
}

@media (max-width: 1024px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 4em;
  }
}

@media (max-width: 480px) {
  #serviceBanner .serviceBannerMain h1 {
    font-size: 2.6em;
    line-height: 1.5;
  }
}

#serviceBanner .serviceBannerMain p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#serviceList {
  width: 100%;
  padding: 100px 0px 200px 0px;
}

@media (max-width: 1024px) {
  #serviceList {
    padding: 50px 0px 100px 0px;
  }
}

#serviceList .serviceListHead {
  width: 100%;
  padding: 0px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #serviceList .serviceListHead {
    padding: 0%;
  }
}

#serviceList .serviceListHead h4 {
  font-size: 3em;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
}

@media (max-width: 480px) {
  #serviceList .serviceListHead h4 {
    font-size: 2em;
  }
}

#serviceList .serviceListHead p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
  width: 100%;
}

#serviceList .serviceListMain {
  width: 100%;
  padding: 0px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 100px 0px;
  margin-top: 50px;
  position: relative;
}

@media (max-width: 1024px) {
  #serviceList .serviceListMain {
    padding: 0%;
  }
}

#serviceList .serviceListMain::after {
  content: '';
  height: 0;
  width: 32%;
}

#serviceList .serviceListMain .serviceListBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #serviceList .serviceListMain .serviceListBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #serviceList .serviceListMain .serviceListBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxThumbnail {
  width: 100%;
  height: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails h2 {
  font-size: 25px;
  font-weight: 600;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails p {
  font-size: 16px;
  color: black;
  margin-top: 10px;
  line-height: 1.7;
  opacity: .8;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails a {
  padding: 10px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primaryColor);
  margin-top: 40px;
  border-radius: 5px;
  color: var(--primaryColor);
  font-size: 16px;
  text-decoration: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails a::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 100%;
  background: var(--primaryColor);
  z-index: -1;
  -webkit-transition: .5s ease all;
  transition: .5s ease all;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  color: white;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails a:hover::after {
  top: -50px;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails ul li {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails ul li span {
  width: 30px;
  color: var(--primaryColor);
  font-size: 22px;
}

#serviceList .serviceListMain .serviceListBox .serviceListBoxDetails ul li h3 {
  width: calc(100% - 35px);
  font-size: 18px;
  font-weight: 500;
}

#serviceList h5 {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  margin-top: 100px;
  padding: 0px 10%;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  #serviceList h5 {
    padding: 0%;
  }
}

@media (max-width: 480px) {
  #serviceList h5 {
    margin-top: 0px;
  }
}

#serviceList .supportArea {
  width: 100%;
  padding: 0px 10%;
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #serviceList .supportArea {
    padding: 0%;
  }
}

#serviceList .supportArea h6 {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  color: #009688;
}

#serviceList .supportArea ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

#serviceList .supportArea ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 2px dashed #eee;
  padding-top: 30px;
}

#serviceList .supportArea ul li:nth-of-type(1) {
  border-top: none;
  padding-top: 0;
}

#serviceList .supportArea ul li .head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#serviceList .supportArea ul li .head .headCount {
  width: 50px;
  font-size: 2em;
  color: var(--primaryColor);
  font-weight: 600;
}

#serviceList .supportArea ul li .head .headTitle {
  width: calc(100% - 60px);
}

#serviceList .supportArea ul li .head .headTitle h2 {
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 480px) {
  #serviceList .supportArea ul li .head .headTitle h2 {
    font-size: 25px;
  }
}

#serviceList .supportArea ul li .description {
  width: 100%;
  padding-left: 60px;
}

#serviceList .supportArea ul li .description p {
  margin-top: 20px;
}

@media (max-width: 480px) {
  #serviceList .supportArea ul li .description p {
    margin-top: 10px;
  }
}

#benefits {
  width: 100%;
  padding: 200px 0px;
  background: #eeeeee6c;
}

@media (max-width: 1024px) {
  #benefits {
    padding: 100px 0%;
  }
}

#benefits .benefitsMain {
  width: 100%;
  padding: 0px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #benefits .benefitsMain {
    padding: 0%;
  }
}

#benefits .benefitsMain .benefitsThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  position: relative;
  z-index: 0;
}

@media (max-width: 1024px) {
  #benefits .benefitsMain .benefitsThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    height: 500px;
  }
}

@media (max-width: 480px) {
  #benefits .benefitsMain .benefitsThumbnail {
    height: 300px;
  }
}

#benefits .benefitsMain .benefitsThumbnail .element {
  position: absolute;
  content: '';
  z-index: 1;
  width: 70px;
  height: 100px;
  border-radius: 50px;
  background: #38E54D;
  bottom: -20px;
  right: -25px;
  border: 10px solid #f8f8f8;
}

#benefits .benefitsMain .benefitsThumbnail .element2 {
  position: absolute;
  content: '';
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 20px;
  background: #FF6D28;
  top: -30px;
  left: -35px;
  border: 10px solid #f8f8f8;
}

#benefits .benefitsMain .benefitsThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

#benefits .benefitsMain .benefitsDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 0px;
}

@media (max-width: 1024px) {
  #benefits .benefitsMain .benefitsDetails {
    padding: 0%;
    margin-top: 50px;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#benefits .benefitsMain .benefitsDetails h2 {
  color: black;
  font-size: 3em;
  font-weight: 500;
  line-height: 1.2;
  width: 90%;
}

@media (max-width: 1024px) {
  #benefits .benefitsMain .benefitsDetails h2 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #benefits .benefitsMain .benefitsDetails h2 {
    font-size: 2.2em;
  }
}

#benefits .benefitsMain .benefitsDetails p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#benefits .benefitsMain .benefitsDetails ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

#benefits .benefitsMain .benefitsDetails ul li {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#benefits .benefitsMain .benefitsDetails ul li span {
  width: 30px;
  color: var(--primaryColor);
  font-size: 22px;
}

#benefits .benefitsMain .benefitsDetails ul li h3 {
  width: calc(100% - 35px);
  font-size: 18px;
  font-weight: 500;
}

#whyChoose {
  width: 100%;
  padding: 200px 0px;
  background: #fff;
}

@media (max-width: 1024px) {
  #whyChoose {
    padding: 100px 0%;
  }
}

#whyChoose .whyChooseMain {
  width: 100%;
  padding: 0px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #whyChoose .whyChooseMain {
    padding: 0%;
  }
}

#whyChoose .whyChooseMain .whyChooseThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  position: relative;
  z-index: 0;
}

@media (max-width: 1024px) {
  #whyChoose .whyChooseMain .whyChooseThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 500px;
  }
}

@media (max-width: 480px) {
  #whyChoose .whyChooseMain .whyChooseThumbnail {
    height: 300px;
  }
}

#whyChoose .whyChooseMain .whyChooseThumbnail .element {
  position: absolute;
  content: '';
  z-index: 1;
  width: 70px;
  height: 100px;
  border-radius: 50px;
  background: #FF6D28;
  bottom: -20px;
  left: -25px;
  border: 10px solid #fff;
}

#whyChoose .whyChooseMain .whyChooseThumbnail .element2 {
  position: absolute;
  content: '';
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 20px;
  background: #FF6D28;
  top: -30px;
  left: -35px;
  border: 10px solid #f8f8f8;
}

#whyChoose .whyChooseMain .whyChooseThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

#whyChoose .whyChooseMain .whyChooseDetails {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 0px;
}

@media (max-width: 1024px) {
  #whyChoose .whyChooseMain .whyChooseDetails {
    padding: 0%;
    margin-top: 50px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#whyChoose .whyChooseMain .whyChooseDetails h2 {
  color: black;
  font-size: 3em;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 480px) {
  #whyChoose .whyChooseMain .whyChooseDetails h2 {
    font-size: 2.2em;
  }
}

#whyChoose .whyChooseMain .whyChooseDetails p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#whyChoose .whyChooseMain .whyChooseDetails ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

#whyChoose .whyChooseMain .whyChooseDetails ul li {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#whyChoose .whyChooseMain .whyChooseDetails ul li span {
  width: 30px;
  color: var(--primaryColor);
  font-size: 22px;
}

#whyChoose .whyChooseMain .whyChooseDetails ul li h3 {
  width: calc(100% - 35px);
  font-size: 18px;
  font-weight: 500;
}

#serviceContent {
  width: 100%;
  padding: 100px 0px 200px 0px;
}

@media (max-width: 1024px) {
  #serviceContent {
    padding: 0% 0px 100px 0px;
  }
}

@media (max-width: 480px) {
  #serviceContent {
    padding-top: 50px;
  }
}

#serviceContent .serviceContentMain {
  width: 100%;
  padding: 0px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #serviceContent .serviceContentMain {
    padding: 0%;
  }
}

#serviceContent .serviceContentMain h2 {
  font-size: 2.5em;
  font-weight: 600;
  margin-top: 80px;
}

@media (max-width: 480px) {
  #serviceContent .serviceContentMain h2 {
    font-size: 25px;
  }
}

#serviceContent .serviceContentMain h2:nth-of-type(1) {
  margin-top: 0;
}

#serviceContent .serviceContentMain p {
  font-size: 16px;
  color: black;
  margin-top: 20px;
  line-height: 1.7;
  opacity: .8;
}

#serviceContent .serviceContentMain ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

#serviceContent .serviceContentMain ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 2px dashed #eee;
  padding-top: 30px;
}

#serviceContent .serviceContentMain ul li:nth-of-type(1) {
  border-top: none;
  padding-top: 0;
}

#serviceContent .serviceContentMain ul li .head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#serviceContent .serviceContentMain ul li .head .headCount {
  width: 50px;
  font-size: 2em;
  color: var(--primaryColor);
  font-weight: 600;
}

#serviceContent .serviceContentMain ul li .head .headTitle {
  width: calc(100% - 60px);
}

#serviceContent .serviceContentMain ul li .head .headTitle h2 {
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 480px) {
  #serviceContent .serviceContentMain ul li .head .headTitle h2 {
    font-size: 25px;
  }
}

#serviceContent .serviceContentMain ul li .description {
  width: 100%;
  padding-left: 60px;
}

#serviceContent .serviceContentMain ul li .description p {
  margin-top: 20px;
}

@media (max-width: 480px) {
  #serviceContent .serviceContentMain ul li .description p {
    margin-top: 10px;
  }
}

#subServiceDetails {
  width: 100%;
  padding: 100px 0px;
  margin-top: 70px;
}

@media (max-width: 480px) {
  #subServiceDetails {
    margin-top: 60px;
    padding: 50px 0px;
  }
}

#subServiceDetails .subServiceDetailsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 10%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #subServiceDetails .subServiceDetailsMain {
    padding: 0%;
  }
}

#subServiceDetails .subServiceDetailsMain .subServiceDetailsThumbnail {
  width: 100%;
  height: 400px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #subServiceDetails .subServiceDetailsMain .subServiceDetailsThumbnail {
    height: 350px;
  }
}

@media (max-width: 480px) {
  #subServiceDetails .subServiceDetailsMain .subServiceDetailsThumbnail {
    height: 220px;
  }
}

#subServiceDetails .subServiceDetailsMain .subServiceDetailsThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#subServiceDetails .subServiceDetailsMain h1 {
  color: black;
  font-size: 6em;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 50px;
}

@media (max-width: 1800px) {
  #subServiceDetails .subServiceDetailsMain h1 {
    font-size: 5em;
  }
}

@media (max-width: 1024px) {
  #subServiceDetails .subServiceDetailsMain h1 {
    font-size: 4em;
  }
}

@media (max-width: 480px) {
  #subServiceDetails .subServiceDetailsMain h1 {
    font-size: 2.2em;
    margin-top: 30px;
  }
}

#subServiceDetails .subServiceDetailsMain p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

@media (max-width: 480px) {
  #subServiceDetails .subServiceDetailsMain p {
    margin-top: 10px;
  }
}

#subServiceDetails .subServiceDetailsMain ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

#subServiceDetails .subServiceDetailsMain ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 2px solid #eee;
  padding-top: 30px;
}

#subServiceDetails .subServiceDetailsMain ul li:nth-of-type(1) {
  border-top: none;
  padding-top: 0;
}

#subServiceDetails .subServiceDetailsMain ul li .head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#subServiceDetails .subServiceDetailsMain ul li .head .headCount {
  width: 30px;
  font-size: 2em;
  color: var(--primaryColor);
  font-weight: 600;
}

#subServiceDetails .subServiceDetailsMain ul li .head .headTitle {
  width: calc(100% - 40px);
}

#subServiceDetails .subServiceDetailsMain ul li .head .headTitle h2 {
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 480px) {
  #subServiceDetails .subServiceDetailsMain ul li .head .headTitle h2 {
    font-size: 25px;
  }
}

#subServiceDetails .subServiceDetailsMain ul li .description {
  width: 100%;
  padding-left: 40px;
}

#subServiceDetails .subServiceDetailsMain ul li .description p {
  margin-top: 20px;
}

@media (max-width: 480px) {
  #subServiceDetails .subServiceDetailsMain ul li .description p {
    margin-top: 10px;
  }
}

#blogBanner {
  width: 100%;
  background: #b698f6;
  background: -webkit-gradient(linear, left top, right top, from(#b698f6), to(#95c5ea));
  background: linear-gradient(90deg, #b698f6 0%, #95c5ea 100%);
  background: -webkit-linear-gradient(90deg, #b698f6 0%, #95c5ea 100%);
  padding: 100px 0px;
  margin-top: 70px;
}

@media (max-width: 480px) {
  #blogBanner {
    margin-top: 60px;
    padding: 50px 0px 50px 0px;
  }
}

#blogBanner .blogBannerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#blogBanner .blogBannerMain h6 {
  padding: 5px 20px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ff66, #c8ff7d);
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#blogBanner .blogBannerMain h1 {
  color: white;
  font-size: 6em;
  line-height: 1.2;
  text-align: center;
  width: 70%;
  margin-top: 50px;
  font-weight: 600;
}

@media (max-width: 1800px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 5em;
  }
}

@media (max-width: 1024px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 4em;
    width: 90%;
  }
}

@media (max-width: 480px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 2.2em;
    width: 100%;
    line-height: 1.5;
    margin-top: 30px;
  }
}

#blogList {
  width: 100%;
  padding: 100px 0px;
}

@media (max-width: 480px) {
  #blogList {
    padding: 50px 0px 50px 0px;
  }
}

#blogList .blogListMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#blogList .blogListMain .dummyDiv {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  height: 0;
}

#blogList .blogListMain .blogListBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  margin-top: 50px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 1024px) {
  #blogList .blogListMain .blogListBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #blogList .blogListMain .blogListBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#blogList .blogListMain .blogListBox:hover {
  margin-top: 30px;
  -webkit-transition: .3s;
  transition: .3s;
}

#blogList .blogListMain .blogListBox:hover .blogsBoxThumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: .3s;
  transition: .3s;
}

#blogList .blogListMain .blogListBox .blogsBoxThumbnail {
  width: 100%;
  height: 240px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

#blogList .blogListMain .blogListBox .blogsBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .3s;
  transition: .3s;
}

#blogList .blogListMain .blogListBox .blogsBoxThumbnail svg {
  position: absolute;
  left: 0;
  bottom: 0;
}

#blogList .blogListMain .blogListBox .blogsBoxDetails {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#blogList .blogListMain .blogListBox .blogsBoxDetails .date {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondaryColor);
}

#blogList .blogListMain .blogListBox .blogsBoxDetails h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  max-height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}

#blogList .blogListMain .blogListBox .blogsBoxDetails p {
  font-size: 16px;
  color: var(--secondaryTextColor);
  line-height: 1.5;
  margin-top: 20px;
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#innerBlogDetails {
  width: 100%;
  padding: 100px 0px;
  margin-top: 70px;
}

@media (max-width: 480px) {
  #innerBlogDetails {
    margin-top: 60px;
    padding: 50px 0px;
  }
}

#innerBlogDetails .innerBlogDetailsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 10%;
}

@media (max-width: 1024px) {
  #innerBlogDetails .innerBlogDetailsMain {
    padding: 0px;
  }
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsThumbnail {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent h1 {
  color: black;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent h1 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent h1 {
    font-size: 2.2em;
  }
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}

#map {
  width: 100%;
  height: 500px;
}

@media (max-width: 480px) {
  #map {
    height: 300px;
  }
}

#map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=style.css.map */