@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: #000f59;
  --alternateColor2: #6080ff;
  --menu: 8rem;
  --slide: 50rem;
  --facebook: #1877f2;
  --twitter: #000000;
  --youtube: #ff0000;
  --instagram: #c32aa3;
  --coloryellow: #f4ba4c;
  --colorbrown: #592d14;
}
@media (min-width: 768px) {
  :root {
    --slide: 50rem;
    --menu: 11rem;
  }
}
@media (min-width: 992px) {
  :root {
    --slide: 55rem;
  }
}
@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: var(--colorbrown);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--coloryellow);
}
::-moz-selection {
  background-color: var(--coloryellow);
  color: #333;
}
::selection {
  background-color: var(--coloryellow);
  color: #333;
}
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;
}
i {
  display: inline-block;
  line-height: 1;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.equal [class^="col"] {
  display: flex;
}
.padding {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .padding {
    padding: 8rem 0;
  }
}
@media (min-width: 1200px) {
  .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;
}
.headerside {
  height: var(--menu);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headersideleft {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logo {
  width: 7rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 768px) {
  .logo {
    width: 10rem;
  }
}
.menulinks {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 4rem;
  height: 100%;
  padding-left: 5rem;
}
.mainlinks {
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #333;
  transition: all 300ms ease;
  font-weight: 500;
}
.mainlinks:hover {
  color: var(--coloryellow);
}
.dropdownlinks {
  height: 100%;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.dropdownlinks p {
  margin: 0;
  font-size: 1.6rem;
  transition: all 300ms ease;
  font-weight: 500;
}
.dropdownlinks i {
  display: inline-block;
  transition: all 300ms ease;
  margin-left: 0.3rem;
  font-size: 1.6rem;
}
.dropdownlinks:hover p {
  color: var(--coloryellow);
}
.dropdownlinks:hover i {
  transform: rotate(-45deg);
  color: var(--coloryellow);
}
.dropdownmenu {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -5rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
  border-radius: 0 0 1rem 1rem;
}
.dropdownlinks:hover .dropdownmenu {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.dropdownmenu a {
  display: block;
  width: 100%;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  color: #333;
  transition: all 300ms ease;
  padding: 1rem;
}
.dropdownmenu a:not(:last-child) {
  margin-bottom: 0.2rem;
}
.dropdownmenu a:hover {
  background-color: var(--coloryellow);
  color: #333;
}
.headersideright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
}
.headerlink {
  border-radius: 5rem;
  padding: 0.6rem 1.2rem;
  transition: all 300ms ease;
  font-size: 1.2rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .headerlink {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}
.headerlinkfirst {
  border: 0.2rem solid var(--colorbrown);
  background-color: var(--colorbrown);
  color: #fff;
}
.headerlinkfirst:hover {
  background-color: #fff;
  color: var(--colorbrown);
}
.headerlinksecond {
  border: 0.2rem solid var(--coloryellow);
  background-color: var(--coloryellow);
  color: #333;
}
.headerlinksecond:hover {
  background-color: #fff;
  color: var(--coloryellow);
}
.slidevideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slidelink {
  font-size: 1.4rem;
  color: var(--mainColor);
  border-radius: 5rem;
  background-color: var(--coloryellow);
  padding: 1.2rem 2.4rem;
  display: inline-block;
  margin-top: 1rem;
  transition: all 300ms ease;
  line-height: 1;
}
@media (min-width: 768px) {
  .slidelink {
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
  }
}
.slidelink:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.slide {
  position: relative;
  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.7;
}
.slideSide {
  height: var(--slide);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.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: 4.5rem;
  }
}
.slideText h1 span {
  display: block;
  font-size: 3.5rem;
  margin-top: 1rem;
  color: var(--coloryellow);
}
@media (min-width: 350px) {
  .slideText h1 span {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .slideText h1 span {
    font-size: 6rem;
  }
}
@media (min-width: 992px) {
  .slideText h1 span {
    font-size: 9rem;
  }
}
.slideText p {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 300;
}
@media (min-width: 350px) {
  .slideText p {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .slideText p {
    font-size: 1.6rem;
    max-width: 55rem;
  }
}
@media (min-width: 1200px) {
  .slideText p {
    max-width: 70rem;
  }
}
.slideUnder {
  background-color: var(--coloryellow);
  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: 1200px) {
  .slideUnder {
    background-size: 30%;
    height: 15rem;
  }
}
@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: 23rem;
    margin-top: -9rem;
  }
}
@media (min-width: 992px) {
  .slideUnderImage {
    width: 28rem;
    margin-top: -13rem;
  }
}
@media (min-width: 1200px) {
  .slideUnderImage {
    margin-top: -5rem;
  }
}
@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;
  }
}
.app {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .app {
    justify-content: space-between;
    flex-direction: initial;
  }
}
.appItem {
  height: 35rem;
  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(--coloryellow);
  background-image: url(../images/app2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@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: 1400px) {
  .appItemCenter {
    padding: 5rem;
  }
}
@media (min-width: 1600px) {
  .appItemCenter {
    background-size: 40%;
    padding: 5rem;
  }
}
.appItemCenter .row {
  width: 100%;
}
.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: 4.5rem;
  }
}
.appItemCenter p {
  color: #fff;
  opacity: 0.8;
  max-width: 50rem;
  margin-bottom: 2rem;
}
.downloadButton {
  border-radius: 0.3rem;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 400ms ease;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .downloadButton {
    margin-bottom: 0;
  }
}
.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;
  font-size: 1.5rem;
}
.mainHeaderCenter {
  text-align: center;
  max-width: 100%;
}
.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: 10rem;
  animation: zoom 1s ease infinite;
}
@media (min-width: 1200px) {
  .loaderlogo {
    width: 15rem;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.overflowHidden {
  height: 100% !important;
  overflow-y: hidden !important;
}
.pagebanner {
  background-image: url(../images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
  margin-top: var(--menu);
}
.pageentry {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  justify-content: center;
}
@media (min-width: 1200px) {
  .pageentry {
    padding: 8rem 0;
  }
}
.pageentry h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .pageentry h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pageentry h1 {
    font-size: 3.5rem;
  }
}
.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.4rem;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 768px) {
  .pageentry ul li,
  .pageentry ul li a {
    font-size: 1.5rem;
  }
}
.pageentry ul li:hover,
.pageentry ul li:hover a {
  color: var(--coloryellow);
}
.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;
  }
}
.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;
}
.form-group {
  margin-bottom: 1rem;
}
label {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  label {
    font-size: 1.5rem;
  }
}
.form-control {
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.1rem solid #eaeaea;
  transition: all 400ms ease;
}
@media (min-width: 992px) {
  .form-control {
    font-size: 1.6rem;
  }
}
.form-control:hover,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 0.1rem solid var(--mainColor);
}
.mailPost {
  padding: 1rem 2rem;
  background-color: var(--coloryellow);
  color: #333;
  border-radius: 0.3rem;
  outline: none;
  border: none;
  transition: all 400ms ease;
  margin-top: 1rem;
}
.mailPost:hover {
  background-color: var(--colorbrown);
  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(--coloryellow);
  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.5rem;
  color: var(--mainColor);
  transition: all 400ms ease;
}
.contactItem .content a:hover {
  color: var(--coloryellow);
}
.menuIcon {
  flex-direction: column;
  width: 1.5rem;
  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(--coloryellow);
  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(--colorbrown);
}
#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;
}
.footer {
  background-color: var(--mainColor);
  padding: 0 0 3rem 0;
  background-image: url(../images/asset.png);
  background-size: 30%;
}
.footercontent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footerlogo {
  width: 10rem;
  border: 1rem solid #fff;
  border-radius: 50%;
  margin-top: -4.5rem;
}
@media (min-width: 768px) {
  .footerlogo {
    width: 15rem;
    margin-top: -5.5rem;
  }
}
.footercontent ul {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
  margin-top: 2rem;
}
.footercontent ul li {
  position: relative;
}
.footercontent ul li:not(:last-child)::after {
  content: "\F3C1";
  font-family: "remixicon";
  position: absolute;
  right: -1.7rem;
  font-size: 0.4rem;
  color: #fff;
  top: 0.9rem;
  opacity: 0.3;
}
.footercontent ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 300ms ease;
  font-size: 1.4rem;
}
.footercontent ul li:hover a {
  color: rgba(255, 255, 255, 1);
}
.smallboxes {
  width: 100%;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border: 0.2rem solid #fbfbfb;
}
.smallboxesicons {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--coloryellow);
  margin-bottom: 2rem;
}
.smallboxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}
.smallboxes .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.smallboxes .content p {
  font-size: 1.4rem;
  opacity: 0.8;
  flex: 1;
  font-weight: 300;
}
.smallboxesicons img {
  width: 3rem;
}
.swipericons .swiper-slide {
  display: flex;
  height: auto;
}
.iconcarousel {
  background-image: radial-gradient(#f4ba4c 1px, transparent 1px),
    radial-gradient(#f4ba4c 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  background-color: #ffffff;
}
.about {
  position: relative;
  background-image: radial-gradient(#f4ba4c 1px, transparent 1px),
    radial-gradient(#f4ba4c 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  background-color: #ffffff;
}
.aboutImage {
  width: 100%;
  position: relative;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .aboutImage {
    margin-bottom: 0;
  }
}
.aboutImage img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
}
.aboutContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .aboutContent {
    padding-right: 2rem;
    height: 100%;
  }
}
.aboutContent p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.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: 35%;
    left: 5%;
  }
  .img1 img {
    width: 35rem;
  }
}
@media (min-width: 1600px) {
  .img1 {
    left: 8%;
  }
}
@keyframes upNdown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}
.aboutlink {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  background-color: var(--coloryellow);
  color: #333;
  display: inline-block;
  margin-top: 1rem;
  transition: all 300ms ease;
  align-self: flex-start;
}
.aboutlink:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.cleanText p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cleanText ul,
.cleanText ol {
  padding: 1rem 2rem;
  list-style-type: disc;
}
.cleanText li {
  padding: 0.5rem 0;
  font-size: 1.5rem;
}
.cleanText li p {
  margin: 0 !important;
}
.cleanText a {
  text-decoration: underline;
  color: var(--colorbrown);
  transition: all 300ms ease;
}
.cleanText a:hover {
  color: var(--coloryellow);
}
.cleanText h1,
.cleanText h2,
.cleanText h3,
.cleanText h4,
.cleanText h5,
.cleanText h6 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.contactPage {
  background-image: radial-gradient(#f4ba4c 1px, transparent 1px),
    radial-gradient(#f4ba4c 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  background-color: #ffffff;
}
.corporateBox {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .corporateBox {
    margin-bottom: 0;
  }
}
.corporateBox a {
  width: 100%;
  display: block;
  padding: 1rem 2rem;
  color: #333;
  font-size: 1.5rem;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.corporateBox a:hover {
  background-color: var(--coloryellow);
  color: #333;
}
.corporateBox a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.corporateBox a.active,
.corporateBox a.active:hover,
.corporateBox a.active:focus {
  background-color: var(--coloryellow) !important;
  color: #333 !important;
}
.crpt {
  background-color: #fbfbfb;
}
@media (min-width: 768px) {
  .crpttext {
    padding-left: 2rem;
  }
}
.branchtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 2rem auto;
}
@media (min-width: 768px) {
  .branchtitle {
    width: 50rem;
  }
}
@media (min-width: 992px) {
  .branchtitle {
    width: 70rem;
  }
}
.branchtitle span {
  background-color: var(--coloryellow);
  color: #333;
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.branchtitle h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .branchtitle h2 {
    font-size: 2.5rem;
  }
}
.branchtitle p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.branchrow {
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 1500px) {
  .branchrow {
    width: 90rem;
  }
}
.branchbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.branchboximage {
  border-radius: 1rem;
  overflow: hidden;
}
.branchboximage img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.branchbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  flex: 1;
}
.branchbox .content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.branchbox .content p {
  font-size: 1.5rem;
  opacity: 0.8;
  flex: 1;
}
.branchbox .content a {
  color: #333;
  transition: all 300ms ease;
  font-size: 1.5rem;
  font-weight: 500;
}
.branchbox .content a:hover {
  color: var(--coloryellow);
}
#mobilemenuicon {
  background-color: transparent;
  border: none;
}
.mobilemenumain {
  border-top: 0.2rem solid var(--colorbrown);
  display: none;
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 0;
}
.mobilemenucontent a {
  padding: 1rem;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  transition: all 300ms ease;
  display: block;
  width: 100%;
  color: #333;
}
.mobilemenucontent a:hover {
  background-color: var(--coloryellow);
  color: #333;
}
.mobilemenucontent a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.fra {
  background-color: #fbfbfb;
}
.formpostboxes {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 576px) {
  .formpostboxes {
    padding: 3rem;
  }
}
@media (min-width: 992px) {
  .formpostboxes {
    width: 70rem;
    padding: 5rem;
  }
}
.required {
  font-size: 1.4rem;
  color: var(--coloryellow);
  font-weight: 700;
}
.brandtel {
  font-weight: 400 !important;
  display: inline-block;
  margin-bottom: 1rem;
}
.blogindex {
  position: relative;
  background-image: radial-gradient(#f4ba4c 1px, transparent 1px),
    radial-gradient(#f4ba4c 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  background-color: #ffffff;
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogboximage {
  border-radius: 1rem;
  overflow: hidden;
}
.blogboximage img {
  transition: all 300ms ease;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.09, 1.09);
  filter: brightness(50%);
}
.blogbox .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blogbox .content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.blogbox .content h3 a {
  color: #333;
  transition: all 300ms ease;
}
.blogbox:hover .content h3 a {
  color: var(--coloryellow);
}
.blogbox .content p {
  font-size: 1.5rem;
  opacity: 0.8;
  flex: 1;
}
.bloglink {
  color: var(--colorbrown);
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 300ms ease;
}
.bloglink:hover {
  color: var(--coloryellow);
}
.bloginlineimages {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .bloginlineimages {
    position: sticky;
    top: 12rem;
    margin-bottom: 0;
  }
}
.bloginlinetext {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .bloginlinetext {
    padding-left: 2rem;
  }
}
@media (min-width: 1200px) {
  .bloginlinetext {
    padding-left: 5rem;
  }
}
.bloginlinetexttitle {
  margin-bottom: 1rem;
}
.bloginlinetexttitle h2 {
  font-size: 1.6rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .bloginlinetexttitle h2 {
    font-size: 2rem;
  }
}
