@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: #197f42;

  --alternateColor2: #1fa253;

  --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 {
  width: 100%;
  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;
}

.logo img {
  width: 15rem;
}

@media (min-width: 768px) {
  .logo img {
    width: 18rem;
  }
}

.menuLink {
  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  column-gap: 5rem;
}

.menuLink a {
  color: var(--mainColor);
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  font-size: 1.5rem;
}

.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: 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.7;
}

.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: var(--alternateColor);
  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;
  }
}
.app {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .app {
    justify-content: space-between;
    flex-direction: initial;
  }
}
.appItem {
  height: 40rem;
  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);
  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: 0 5rem;
  }
}
@media (min-width: 768px) {
  .appItemCenter {
    padding: 5rem 3rem;
  }
}
@media (min-width: 1200px) {
  .appItemCenter {
    padding: 0 8rem;
  }
}
@media (min-width: 1600px) {
  .appItemCenter {
    background-size: 40%;
  }
}
.appItemCenter h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .appItemCenter h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .appItemCenter h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .appItemCenter h2 {
    font-size: 3rem;
  }
}
.appItemCenter p {
  color: #fff;
  opacity: 0.8;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .appItemCenter p {
    font-size: 1.5rem;
  }
}
.appcontent {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.appcontent figure {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.appcontent .content {
  width: calc(100% - 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
  border-left: 0.1rem solid #f1f1f1;
  margin-left: 1rem;
}
.appcontent .content span {
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 700;
}
.appcontent .content a {
  font-size: 1.4rem;
  color: var(--mainColor);
  font-weight: 600;
  margin: 0;
  transition: all 300ms ease;
}
.appcontent:hover .content a {
  color: var(--alternateColor);
}
.appItemCenter .row {
  width: 100%;
}
.mainHeaderCenter {
  text-align: center;
  max-width: 100%;
}
.footer {
  padding: 5rem 0 2rem 0;
  border-top: 1rem solid var(--alternateColor);
}
.footerLogo {
  width: 20rem;
}
.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.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--alternateColor);
  letter-spacing: 0.1rem;
}
.footerItem ul li {
  padding: 0.5rem 0;
}
.footerItem ul li a {
  font-size: 1.4rem;
  color: var(--mainColor);
  transition: all 400ms ease;
}
@media (min-width: 1500px) {
  .footerItem ul li a {
    font-size: 1.5rem;
  }
}
.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;
  justify-content: space-between;
  align-items: center;
}
.deepleft,
.deepmid,
.deepright {
  width: calc(100% / 2);
}
@media (min-width: 768px) {
  .deepleft,
  .deepmid,
  .deepright {
    width: calc(100% / 3);
  }
}
.deepmid {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 768px) {
  .deepmid {
    justify-content: center;
    align-items: center;
  }
}
.deepright figure {
  width: 20rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.deepright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.deep a {
  font-family: pill;
  font-size: 1.6rem;
  color: var(--mainColor);
  transition: color 400ms ease;
}
@media (min-width: 576px) {
  .deep a {
    font-size: 2rem;
  }
}
.deep a:hover,
.deep a:focus {
  color: #ed4a37;
}
.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;
}
.spinners {
  width: 5rem;
  height: 5rem;
  border: 0.3rem solid #fff;
  border-bottom-color: var(--alternateColor);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.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 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  justify-content: center;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .pageentry {
    padding: 6rem 0;
  }
}
.pageentry h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 1500px) {
  .pageentry h1 {
    font-size: 2.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;
  transition: all 300ms ease;
}
@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(--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: 1.6rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .inlinePageHeader h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .inlinePageHeader h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1500px) {
  .inlinePageHeader h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1600px) {
  .inlinePageHeader h2 {
    font-size: 3rem;
  }
}
.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.5rem;
  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: 1rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .affixDivItem .content a {
    font-size: 1.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: 2rem;
  font-weight: 800;
}
.form-group {
  margin-bottom: 1rem;
}
label {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-control {
  font-size: 1.5rem;
  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(--alternateColor);
}
.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;
}
#maps {
  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: 1.4rem;
  }
}

#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;
}

.cleanText p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cleanText p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .cleanText p {
    font-size: 1.6rem;
  }
}
.cleanText blockquote {
  border-left: 0.5rem solid var(--alternateColor);
  padding: 1rem;
  background-color: #ddffea;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .cleanText blockquote {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .cleanText blockquote {
    font-size: 1.6rem;
  }
}
.cleanText h1,
.cleanText h2,
.cleanText h3,
.cleanText h4,
.cleanText h5,
.cleanText h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .cleanText h1,
  .cleanText h2,
  .cleanText h3,
  .cleanText h4,
  .cleanText h5,
  .cleanText h6 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1600px) {
  .cleanText h1,
  .cleanText h2,
  .cleanText h3,
  .cleanText h4,
  .cleanText h5,
  .cleanText h6 {
    font-size: 2rem;
  }
}
.cleanText ul,
.cleanText ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.cleanText ul li,
.cleanText ol li {
  padding: 0.5rem 0;
  position: relative;
}
.cleanText ul li::before,
.cleanText ol li::before {
  content: "\EA6C";
  position: absolute;
  left: -2rem;
  font-family: "remixicon";
  color: var(--alternateColor);
}
.homeblogtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .homeblogtitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.homeblogtitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .homeblogtitleleft {
    margin-bottom: 0;
  }
}
.homeblogtitleleft h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.homeblogtitleleft p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .homeblogtitleleft p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .homeblogtitleleft p {
    font-size: 1.6rem;
  }
}
.homeblogtitleright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.homeblogtitleright a {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  background-color: var(--alternateColor);
  transition: all 300ms ease;
  color: #fff;
}
@media (min-width: 768px) {
  .homeblogtitleright a {
    font-size: 1.5rem;
  }
}
.homeblogtitleright a i {
  display: inline-block;
  transition: all 300ms ease;
}
.homeblogtitleright a:hover {
  background-color: var(--alternateColor2);
  color: #fff;
}
.homeblogtitleright a:hover i {
  transform: translateX(0.5rem);
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.blogboximage {
  border-radius: 0.5rem;
  overflow: hidden;
  max-height: 25rem;
}
.blogboximage a {
  width: 100%;
}
.blogboximage img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease-in-out;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.blogbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  flex: 1;
}
.blogdate {
  background-color: var(--alternateColor);
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}
.blogdate p {
  font-size: 1.2rem !important;
  margin: 0;
  color: #fff;
}
.blogbox .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .blogbox .content h3 {
    font-size: 1.6rem;
  }
}
.blogbox .content h3 a {
  color: var(--mainColor);
  transition: color 300ms ease;
}
.blogbox:hover .content h3 a {
  color: var(--alternateColor);
}
.blogbox .content p {
  font-size: 1.4rem;
  flex: 1;
}
@media (min-width: 1200px) {
  .blogbox .content p {
    font-size: 1.5rem;
  }
}
.bloglink {
  font-size: 1.4rem;
  color: var(--alternateColor);
  transition: all 300ms ease;
  font-weight: 500;
  display: inline-block;
}
.bloglink i {
  display: inline-block;
  transition: all 300ms ease;
}
.bloglink:hover {
  color: var(--alternateColor2);
}
.bloglink:hover i {
  transform: translateX(0.5rem);
}
.homeaboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .homeaboutcontent {
    margin-top: 0;
    padding-left: 5rem;
  }
}
.homeaboutcontenttitle {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.homeaboutcontenttitle h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.homeaboutcontenttitle p {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--alternateColor);
}
@media (min-width: 768px) {
  .homeaboutcontenttitle p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .homeaboutcontenttitle p {
    font-size: 1.6rem;
  }
}
.homeaboutlink {
  background-color: var(--alternateColor);
  color: #fff;
  font-size: 1.4rem;
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 1rem;
}
.homeaboutlink:hover {
  color: #fff;
  background-color: var(--alternateColor2);
}
.homeaboutlink i {
  display: inline-block;
  transition: all 300ms ease;
}
.homeaboutlink:hover i {
  transform: translateX(0.5rem);
}
.homeaboutimageside {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  column-gap: 1rem;
}
.homeaboutimage {
  border-radius: 1rem;
  overflow: hidden;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .homeaboutimage {
    height: 100%;
  }
}
.homeaboutimage img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .homeimage2 {
    margin-top: 10rem;
  }
}
