@import url("https://fonts.googleapis.com/css2?family=Andika:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --titleFont: "Andika", sans-serif;
  --generalFont: "Inter", sans-serif;
  --mainColor: #333;
  --alternateColor: #1e388d;
  --alternateColor2: #80b533;
  --menu: 10rem;
  --slide: 40rem;
  --facebook: #1877f2;
  --twitter: #000000;
  --youtube: #ff0000;
  --instagram: #c32aa3;
}
@media (min-width: 768px) {
  :root {
    --slide: 50rem;
  }
}
@media (min-width: 992px) {
  :root {
    --slide: 60rem;
  }
}
@media (min-width: 1600px) {
  :root {
    --slide: 80rem;
  }
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-size-adjust: 100%;
  margin-right: 0 !important;
  -ms-overflow-style: scrollbar;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
}
body {
  color: var(--mainColor);
  font-family: var(--generalFont);
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
}
body::-webkit-scrollbar {
  width: 1rem;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--alternateColor2);
}
::-moz-selection {
  background-color: var(--alternateColor2);
  color: #fff;
}
::selection {
  background-color: var(--alternateColor2);
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
figure,
address {
  margin: 0;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  display: inline-block;
}
i {
  display: inline-block;
  line-height: 1;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.equal [class^="col"] {
  display: flex;
}
.padding {
  padding: 10rem 0;
}
.mb1 {
  margin-bottom: 1rem;
}
.mb2 {
  margin-bottom: 2rem;
}
.mt1 {
  margin-top: 1rem;
}
.mt2 {
  margin-top: 2rem;
}
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background-color: #fff;
}
.menu {
  height: var(--menu);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 20rem;
  flex: 1;
  overflow: hidden;
}
.logo img {
  width: 15rem;
}
@media (min-width: 768px) {
  .logo img {
    width: 20rem;
  }
}
.menuLink {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5rem;
}
.menuLink li {
  cursor: pointer;
}
.menuLink a {
  color: var(--mainColor);
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.menuLink a::after {
  background-color: var(--alternateColor2);
  bottom: -1rem;
  content: "";
  height: 0.2rem;
  left: 0;
  position: absolute;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  transform: scaleX(0);
  transform-origin: right center;
}
.menuLink a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.menuLink a.active::after {
  transform: scaleX(1);
  transform-origin: left center;
  color: var(--alternateColor2);
  height: 0.2rem;
}
.menuLink a.active {
  color: var(--alternateColor2);
}
.menuLink a:hover {
  color: var(--alternateColor2);
}
.socialMedia {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  column-gap: 0.5rem;
}
.socialMedia a {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--mainColor);
  background-color: #fbfbfb;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: all 400ms ease;
}
.socialMedia a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  transition: all 400ms ease;
  z-index: -1;
}
.facebook:hover::after {
  background-color: var(--facebook);
}
.twitter:hover::after {
  background-color: var(--twitter);
}
.instagram:hover::after {
  background-color: var(--instagram);
}
.youtube:hover::after {
  background-color: var(--youtube);
}
.socialMedia a:hover::after {
  top: 0;
}
.socialMedia a:hover {
  color: #fff;
}
.socialMedia a i {
  transition: all 400ms ease;
  transform: rotate(0);
}
.socialMedia a:hover i {
  transform: rotate(360deg);
}
.slide {
  position: relative;
  background-image: url(../images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: var(--slide);
  margin-top: var(--menu);
}
.slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #151515;
  opacity: 0.4;
}
.slideSide {
  height: var(--slide);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.slideText {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.slideText h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .slideText h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .slideText h1 {
    font-size: 5rem;
  }
}
.slideText h1 span {
  display: block;
  font-size: 4rem;
  margin-top: 1rem;
  color: var(--alternateColor);
}
@media (min-width: 768px) {
  .slideText h1 span {
    font-size: 6rem;
  }
}
@media (min-width: 992px) {
  .slideText h1 span {
    font-size: 10rem;
  }
}
.slideText p {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .slideText p {
    font-size: 1.6rem;
    max-width: 55rem;
  }
}
@media (min-width: 992px) {
  .slideText p {
    font-size: 1.7rem;
  }
}
.slideUnder {
  background-color: #6080ff;
  height: 10rem;
  background-image: url(../images/asset.png);
  background-size: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .slideUnder {
    background-size: 45%;
  }
}
@media (min-width: 992px) {
  .slideUnder {
    height: 20rem;
  }
}
@media (min-width: 1600px) {
  .slideUnder {
    height: 25rem;
    background-size: 20%;
  }
}
.slideUnderImage {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -10rem;
  padding: 6rem;
}
@media (min-width: 375px) {
  .slideUnderImage {
    margin-top: -13rem;
    padding: 0;
    width: 20rem;
  }
}
@media (min-width: 425px) {
  .slideUnderImage {
    width: 25rem;
  }
}
@media (min-width: 576px) {
  .slideUnderImage {
    width: 20rem;
  }
}
@media (min-width: 768px) {
  .slideUnderImage {
    width: 28rem;
  }
}
@media (min-width: 992px) {
  .slideUnderImage {
    width: 35rem;
    margin-top: -16rem;
  }
}
@media (min-width: 1600px) {
  .slideUnderImage {
    margin-top: -25rem;
    width: 50rem;
    padding: 0;
  }
}
.mainHeader {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .mainHeader {
    max-width: 70%;
  }
}
@media (min-width: 1400px) {
  .mainHeader {
    max-width: 60%;
  }
}
@media (min-width: 1500px) {
  .mainHeader {
    max-width: 50%;
  }
}
.mainHeader h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
@media (min-width: 375px) {
  .mainHeader h2 {
    font-size: 3rem;
  }
}
@media (min-width: 576px) {
  .mainHeader h2 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .mainHeader h2 {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  .mainHeader h2 {
    font-size: 6rem;
  }
}
.about {
  position: relative;
}
.aboutImage {
  width: 100%;
  position: relative;
  border-radius: 0 1rem 1rem 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .aboutImage {
    margin-bottom: 0;
  }
}
.aboutImage img {
  border-radius: 0 1rem 1rem 1rem;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 992px) {
  .aboutContent {
    padding-right: 2rem;
  }
}
.aboutContent p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media (min-width: 1500px) {
  .aboutContent p {
    font-size: 1.7rem;
  }
}
.mobileRow {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .mobileRow {
    flex-direction: initial;
  }
}
.img1 {
  position: absolute;
  left: 0;
  top: 30%;
  animation: upNdown 2s infinite;
}
.img1 img {
  width: 55rem;
}
@media (min-width: 992px) {
  .img1 {
    top: 35%;
  }
  .img1 img {
    width: 25rem;
  }
}
@media (min-width: 1200px) {
  .img1 {
    top: 25%;
  }
  .img1 img {
    width: 35rem;
  }
}
@media (min-width: 1500px) {
  .img1 {
    top: 25%;
  }
  .img1 img {
    width: 45rem;
  }
}
@media (min-width: 1600px) {
  .img1 {
    left: 8%;
  }
}
@keyframes upNdown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}
.aboutLink {
  border-radius: 5rem;
  border: 0.2rem solid #e3e3e3;
  color: var(--mainColor);
  background-color: #fff;
  padding: 1.2rem 2rem;
  margin-top: 3rem;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 400ms ease;
}
.aboutLink i {
  transition: all 400ms ease;
}
.aboutLink:hover i {
  transform: rotate(45deg);
}
.aboutLink:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 100%;
  background-color: var(--alternateColor);
  transition: all 400ms ease;
  z-index: -1;
}
.aboutLink:hover::before {
  right: 0;
}
.aboutLink:hover {
  color: #fff;
  border: 0.2rem solid transparent;
}
.img2 {
  width: 100%;
  margin-top: 2rem;
}
.app {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .app {
    justify-content: space-between;
    flex-direction: initial;
  }
}
.appItem {
  height: 50rem;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 576px) {
  .appItem {
    height: 42rem;
  }
}
@media (min-width: 768px) {
  .appItem {
    height: 50rem;
  }
}
.appItemImage {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.appItemImage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.appItemCenter {
  padding: 2rem;
  background-color: var(--alternateColor2);
}
@media (min-width: 375px) {
  .appItemCenter {
    padding: 7rem 2rem 2rem 2rem;
  }
}
@media (min-width: 576px) {
  .appItemCenter {
    padding: 7rem 7rem 2rem 7rem;
  }
}
@media (min-width: 768px) {
  .appItemCenter {
    padding: 5rem 3rem;
  }
}
@media (min-width: 1600px) {
  .appItemCenter {
    background-size: 40%;
    padding: 5rem;
  }
}
.appItemCenter h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .appItemCenter h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .appItemCenter h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .appItemCenter h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  .appItemCenter h2 {
    font-size: 5.5rem;
  }
}
.appItemCenter p {
  color: #fff;
  opacity: 0.8;
  max-width: 50rem;
  margin-bottom: 2rem;
}
@media (min-width: 1500px) {
  .appItemCenter p {
    font-size: 1.7rem;
  }
}
.downloadButton {
  border-radius: 0.3rem;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 400ms ease;
}
.downloadButton:hover {
  background-color: #eaeaea;
}
.downloadButton:not(:last-child) {
  margin-bottom: 1rem;
}
.downloadButton figure {
  height: 4rem;
  width: 4rem;
  padding: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.downloadLink {
  font-size: 1.6rem;
  color: var(--mainColor);
  width: calc(100% - 4rem);
  padding-left: 1rem;
  font-weight: 500;
}
.qrCode {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .qrCode {
    margin-top: 0;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .qrCode {
    margin-top: 2rem;
  }
}
@media (min-width: 1200px) {
  .qrCode {
    margin-top: 0;
  }
}
.qrCode figure {
  height: 100%;
  width: 10rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.qrCode figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.qrCode .content {
  height: 100%;
  width: calc(100% - 10rem);
  padding-left: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}
.qrCode .content p {
  margin: 0;
  opacity: 1;
}
.mainHeaderCenter {
  text-align: center;
  max-width: 100%;
}
.footer {
  padding: 8rem 0 3rem 0;
}
.footerLogo {
  width: 20rem;
}
@media (min-width: 1400px) {
  .footerLogo {
    margin-top: -5rem;
    width: 25rem;
  }
}
.footerSocial {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
}
.footerSocial a {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0.2rem solid #eaeaea;
  color: var(--mainColor);
  font-size: 1.6rem;
  border-radius: 50%;
  transition: all 400ms ease;
}
.footerSocial a.facebook:hover {
  background-color: var(--facebook);
  border: 0.2rem solid var(--facebook);
  transform: rotate(360deg);
  color: #fff;
}
.footerSocial a.twitter:hover {
  background-color: var(--twitter);
  border: 0.2rem solid var(--twitter);
  transform: rotate(360deg);
  color: #fff;
}
.footerSocial a.instagram:hover {
  background-color: var(--instagram);
  border: 0.2rem solid var(--instagram);
  transform: rotate(360deg);
  color: #fff;
}
.footerSocial a.youtube:hover {
  background-color: var(--youtube);
  border: 0.2rem solid var(--youtube);
  transform: rotate(360deg);
  color: #fff;
}
.footerItem {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .footerItem {
    margin-bottom: 0;
  }
}
.footerItem h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footerItem ul li {
  padding: 0.5rem 0;
}
.footerItem ul li a {
  font-size: 1.4rem;
  color: var(--mainColor);
  transition: all 400ms ease;
}
.footerItem ul li:hover a {
  color: var(--alternateColor2);
}
@font-face {
  font-family: pill;
  src: url(../fonts/magnolia_sky.ttf);
}
.deep {
  border-top: 0.1rem dashed #eaeaea;
  padding-top: 2rem;
  margin-top: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .deep {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    row-gap: 0;
  }
}
.deepleft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.deepleft a {
  font-family: pill;
  font-size: 2.2rem;
  color: var(--mainColor);
  transition: color 400ms ease;
}
.deepleft a:hover,
.deepleft a:focus {
  color: #ed4a37;
}
.deepright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}
.creditlogo {
  width: 28rem;
}
.loader {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.loaderlogo {
  width: 20rem;
  animation: zoom 1s ease infinite;
}
@media (min-width: 768px) {
  .loaderlogo {
    width: 25rem;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.overflowHidden {
  height: 100% !important;
  overflow-y: hidden !important;
}
.pagebanner {
  background-color: var(--alternateColor);
  margin-top: var(--menu);
}
.pageentry {
  height: 18rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .pageentry {
    height: 15rem;
  }
}
.pageentry h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}
.pageentry ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}
.pageentry ul li,
.pageentry ul li a {
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
.pageentry ul li:hover,
.pageentry ul li:hover a {
  color: var(--alternateColor2);
}
.pageentry ul li.active,
.pageentry ul li.active:hover,
.pageentry ul li.active:focus {
  font-weight: 600;
  color: #fff !important;
}
.pageentry ul li {
  position: relative;
}
.pageentry ul li:not(:last-child)::after {
  content: "\EA54";
  position: absolute;
  font-family: "remixicon";
  left: 100%;
  color: #fff;
  font-size: 1.6rem;
}
.pageentry ul li:not(:last-child) {
  padding-right: 0.5rem;
}
.inlinePageHeader {
  margin-bottom: 2rem;
}
.inlinePageHeader h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .inlinePageHeader h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .inlinePageHeader h2 {
    font-size: 4.5rem;
  }
}
.cleanText h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.cleanText h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cleanText h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.cleanText h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.cleanText ul {
  margin-bottom: 1rem;
}
.cleanText ul li {
  font-size: 1.6rem;
  padding: 0.3rem 0;
}
.aboutText p span {
  font-weight: 700;
}
.inlinePageImage {
  margin-bottom: 2rem;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.inlinePageImage img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2/1;
}
@media (min-width: 768px) {
  .inlinePageImage img {
    aspect-ratio: 2.5/1;
  }
}
.affixDivItem {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.affixDivItemHead {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #eaeaea;
  width: 100%;
}
.affixDivItemHead h3 {
  font-size: 1.6rem;
  font-weight: 600;
}
.affixDivItem .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}
.affixDivItem .content a {
  width: 100%;
  display: block;
  transition: all 400ms ease;
  color: var(--mainColor);
  border-radius: 0.3rem;
  padding: 0.5rem;
}
.affixDivItem .content a:hover {
  background-color: var(--alternateColor2);
  color: #fff;
}
.affixDiv {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .affixDiv {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .affixDiv {
    position: sticky;
    top: calc(var(--menu) + 1rem);
  }
  .pl2 {
    padding-left: 2rem;
  }
}
.contentTags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  row-gap: 0.5rem;
}
.contentTags a {
  font-size: 1.2rem;
  border: 0.1rem solid #eaeaea;
  color: var(--mainColor);
  padding: 0.3rem 0.5rem;
  transition: all 400ms ease;
  border-radius: 0.3rem;
}
.contentTags a:hover {
  color: #fff;
  background-color: var(--alternateColor2);
  border: 0.1rem solid var(--alternateColor2);
}
.colReverse {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .colReverse {
    flex-direction: initial;
  }
}
.contactBoxHead {
  margin-bottom: 2rem;
}
.contactBoxHead h3 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contactBoxHead h3 {
    font-size: 3.5rem;
  }
}
.form-group {
  margin-bottom: 1rem;
}
label {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-control {
  font-size: 1.6rem;
  padding: 1rem;
  border: 0.1rem solid #eaeaea;
  transition: all 400ms ease;
}
.form-control:hover,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 0.1rem solid var(--mainColor);
}
.mailPost {
  padding: 1rem 2rem;
  background-color: var(--alternateColor2);
  color: #fff;
  border-radius: 0.3rem;
  outline: none;
  border: none;
  transition: all 400ms ease;
  margin-top: 1rem;
}
.mailPost:hover {
  background-color: var(--alternateColor);
  color: #fff;
}
#googleMaps {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.contactItem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contactItem:not(:last-child) {
  margin-bottom: 1rem;
}
.contactItemIcon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.3rem;
  background-color: var(--alternateColor2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #fff;
}
.contactItem .content {
  width: calc(100% - 4.5rem);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contactItem .content a {
  font-size: 1.6rem;
  color: var(--mainColor);
  transition: all 400ms ease;
}
.contactItem .content a:hover {
  color: var(--alternateColor2);
}
.menuIcon {
  flex-direction: column;
  width: 1.6rem;
  height: 4rem;
  row-gap: 0.35rem;
  justify-content: center;
}
.menuIcon span {
  width: 100%;
  height: 0.2rem;
  background-color: var(--mainColor);
  transition: all 400ms ease;
}
.pn span:nth-child(2) {
  transform: translateX(-1rem);
  opacity: 0;
}
.pn span:first-child {
  transform: rotate(45deg);
  transform-origin: 0;
}
.pn span:last-child {
  transform: rotate(-45deg);
  transform-origin: 0;
}
.mobilemenu {
  border-top: 0.2rem solid #eaeaea;
  padding: 0.5rem 0;
  display: none;
}
.mobilemenu a {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  padding: 1rem;
  color: var(--mainColor);
  font-weight: 500;
  border-radius: 0.3rem;
}
.mobilemenu a:hover {
  background-color: var(--alternateColor2);
  color: #fff;
}
#scrollTopBtn {
  position: fixed;
  bottom: -10rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.2rem solid transparent;
  background-clip: padding-box;
  cursor: pointer;
  z-index: 500;
  font-size: 1.2rem;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 400ms linear;
}
@media (min-width: 768px) {
  #scrollTopBtn {
    font-size: 2rem;
    width: 8rem;
    height: 8rem;
  }
}
#scrollTopBtn:after {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  left: 0.5rem;
  bottom: 0.5rem;
  border-radius: 50%;
  background-color: var(--alternateColor2);
  transition: all 400ms ease;
  color: #fff;
}
@media (min-width: 768px) {
  #scrollTopBtn:after {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
#scrollTopBtn iconify-icon {
  position: relative;
  z-index: 1;
}
#scrollTopBtn:hover:after {
  background-color: var(--alternateColor);
}
#scrollTopBtn i {
  z-index: 1;
  color: #fff;
}
.conic-border {
  background: conic-gradient(
    var(--alternateColor),
    54%,
    rgb(239, 244, 247) 54%
  );
}
.topActive {
  bottom: 2rem !important;
  opacity: 1 !important;
  pointer-events: all !important;
}
.emptyPages {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 576px) {
  .emptyPages {
    width: 50rem;
  }
}
.emptyPages figure {
  width: 25rem;
  margin-bottom: 1rem;
}
.emptyPages h2 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.emptyPages p {
  font-size: 1.6rem;
}
.emptyPages a {
  background-color: var(--alternateColor2);
  color: #fff;
  border-radius: 0.3rem;
  padding: 1.2rem 2rem;
  display: inline-block;
  margin-top: 1rem;
  transition: all 400ms ease;
}
.emptyPages a:hover {
  background-color: var(--alternateColor);
  color: #fff;
}
.brandside {
  margin: 0 auto;
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .brandside {
    max-width: 70%;
  }
}
.brandsBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brandsBox figure {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brandsBox figure img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  width: calc(100% / 1.8);
  transition: all 500ms ease;
  filter: grayscale(100%);
}
.brandsBox:hover figure img {
  filter: grayscale(0);
}
