@charset "UTF-8";

html {
  font-size: 0.6875rem;
}

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

body {
  font-family: "Poppins", sans-serif;
}

ul {
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

hr {
  border: 0;
  border-top: 1px solid #efefef;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.fixed-top-left {
  position: fixed;
  top: 0;
  left: 0;
}

.fixed-top-right {
  position: fixed;
  top: 0;
  right: 0;
}

.fixed-bottom-left {
  position: fixed;
  bottom: 0;
  left: 0;
}

.fixed-bottom-right {
  position: fixed;
  bottom: 0;
  right: 0;
}

.deskBlock {
  display: none;
}

.mobBlock {
  display: block;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

section {
  margin-bottom: 4rem;
}

.deskBlock {
  display: none;
}

.mobBlock {
  display: block;
}

.font-bold {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.table-boder {
  border: 1px solid #ccc;
  padding: 2rem 2rem;
}

.table-boder i {
  display: flex;
  justify-content: end;
}

@media (min-width: 0) {
  .responsive-test {
    color: red;
  }
}

@media (min-width: 461px) {
  .responsive-test {
    color: blue;
  }
}

@media (min-width: 768px) {
  .responsive-test {
    color: green;
  }
}

@media (min-width: 992px) {
  .responsive-test {
    color: purple;
  }
}

@media (min-width: 1200px) {
  .responsive-test {
    color: orange;
  }
}

@media (min-width: 1400px) {
  .responsive-test {
    color: pink;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.gap-0>* {
  padding: 0 0;
}

.gap-0 {
  margin-left: 0;
  margin-right: 0;
}

.gap-1>* {
  padding: 0 10px;
}

.gap-1 {
  margin-left: -10px;
  margin-right: -10px;
}

.gap-2>* {
  padding: 0 20px;
}

.gap-2 {
  margin-left: -20px;
  margin-right: -20px;
}

.gap-3>* {
  padding: 0 30px;
}

.gap-3 {
  margin-left: -30px;
  margin-right: -30px;
}

.justify-flex-start {
  justify-content: flex-start;
}

.justify-flex-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

@media (min-width: 0) {
  .col-xs-1 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 8.3333333333%;
  }

  .col-xs-2 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }

  .col-xs-3 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }

  .col-xs-4 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 33.3333333333%;
  }

  .col-xs-5 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }

  .col-xs-6 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }

  .col-xs-7 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 58.3333333333%;
  }

  .col-xs-8 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 66.6666666667%;
  }

  .col-xs-9 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 75%;
  }

  .col-xs-10 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 83.3333333333%;
  }

  .col-xs-11 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 91.6666666667%;
  }

  .col-xs-12 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}

@media (min-width: 461px) {
  .col-sm-1 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }

  .col-sm-4 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }

  .col-sm-7 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 75%;
  }

  .col-sm-10 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 8.3333333333%;
  }

  .col-md-2 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }

  .col-md-3 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 33.3333333333%;
  }

  .col-md-5 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }

  .col-md-7 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 58.3333333333%;
  }

  .col-md-8 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 66.6666666667%;
  }

  .col-md-9 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 75%;
  }

  .col-md-10 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 83.3333333333%;
  }

  .col-md-11 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 91.6666666667%;
  }

  .col-md-12 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }

  .col-lg-4 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }

  .col-lg-7 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 75%;
  }

  .col-lg-10 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }

  .col-xl-4 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }

  .col-xl-7 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 75%;
  }

  .col-xl-10 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}

.text-primary {
  color: #326dee;
}

.bg-primary {
  background-color: #326dee;
}

.text-primary-light-1 {
  color: #477cf0;
}

.text-hover-primary-light-1 {
  color: #477cf0;
}

.bg-primary-light-1 {
  background-color: #477cf0;
}

.text-primary-light-2 {
  color: #5b8af1;
}

.text-hover-primary-light-2 {
  color: #5b8af1;
}

.bg-primary-light-2 {
  background-color: #5b8af1;
}

.text-primary-light-3 {
  color: #7099f3;
}

.text-hover-primary-light-3 {
  color: #7099f3;
}

.bg-primary-light-3 {
  background-color: #7099f3;
}

.text-primary-light-4 {
  color: #84a7f5;
}

.text-hover-primary-light-4 {
  color: #84a7f5;
}

.bg-primary-light-4 {
  background-color: #84a7f5;
}

.text-primary-light-5 {
  color: #99b6f7;
}

.text-hover-primary-light-5 {
  color: #99b6f7;
}

.bg-primary-light-5 {
  background-color: #99b6f7;
}

.text-primary-light-6 {
  color: #adc5f8;
}

.text-hover-primary-light-6 {
  color: #adc5f8;
}

.bg-primary-light-6 {
  background-color: #adc5f8;
}

.text-primary-light-7 {
  color: #c2d3fa;
}

.text-hover-primary-light-7 {
  color: #c2d3fa;
}

.bg-primary-light-7 {
  background-color: #c2d3fa;
}

.text-primary-light-8 {
  color: #d6e2fc;
}

.text-hover-primary-light-8 {
  color: #d6e2fc;
}

.bg-primary-light-8 {
  background-color: #d6e2fc;
}

.text-primary-light-9 {
  color: #ebf0fd;
}

.text-hover-primary-light-9 {
  color: #ebf0fd;
}

.bg-primary-light-9 {
  background-color: #ebf0fd;
}

.text-primary-dark-1 {
  color: #2d62d6;
}

.text-hover-primary-dark-1 {
  color: #2d62d6;
}

.bg-primary-dark-1 {
  background-color: #2d62d6;
}

.text-primary-dark-2 {
  color: #2857be;
}

.text-hover-primary-dark-2 {
  color: #2857be;
}

.bg-primary-dark-2 {
  background-color: #2857be;
}

.text-primary-dark-3 {
  color: #234ca7;
}

.text-hover-primary-dark-3 {
  color: #234ca7;
}

.bg-primary-dark-3 {
  background-color: #234ca7;
}

.text-primary-dark-4 {
  color: #1e418f;
}

.text-hover-primary-dark-4 {
  color: #1e418f;
}

.bg-primary-dark-4 {
  background-color: #1e418f;
}

.text-primary-dark-5 {
  color: #193777;
}

.text-hover-primary-dark-5 {
  color: #193777;
}

.bg-primary-dark-5 {
  background-color: #193777;
}

.text-primary-dark-6 {
  color: #142c5f;
}

.text-hover-primary-dark-6 {
  color: #142c5f;
}

.bg-primary-dark-6 {
  background-color: #142c5f;
}

.text-primary-dark-7 {
  color: #0f2147;
}

.text-hover-primary-dark-7 {
  color: #0f2147;
}

.bg-primary-dark-7 {
  background-color: #0f2147;
}

.text-primary-dark-8 {
  color: #0a1630;
}

.text-hover-primary-dark-8 {
  color: #0a1630;
}

.bg-primary-dark-8 {
  background-color: #0a1630;
}

.text-primary-dark-9 {
  color: #050b18;
}

.text-hover-primary-dark-9 {
  color: #050b18;
}

.bg-primary-dark-9 {
  background-color: #050b18;
}

.text-secondary {
  color: #1ac888;
}

.bg-secondary {
  background-color: #1ac888;
}

.text-secondary-light-1 {
  color: #31ce94;
}

.text-hover-secondary-light-1 {
  color: #31ce94;
}

.bg-secondary-light-1 {
  background-color: #31ce94;
}

.text-secondary-light-2 {
  color: #48d3a0;
}

.text-hover-secondary-light-2 {
  color: #48d3a0;
}

.bg-secondary-light-2 {
  background-color: #48d3a0;
}

.text-secondary-light-3 {
  color: #5fd9ac;
}

.text-hover-secondary-light-3 {
  color: #5fd9ac;
}

.bg-secondary-light-3 {
  background-color: #5fd9ac;
}

.text-secondary-light-4 {
  color: #76deb8;
}

.text-hover-secondary-light-4 {
  color: #76deb8;
}

.bg-secondary-light-4 {
  background-color: #76deb8;
}

.text-secondary-light-5 {
  color: #8de4c4;
}

.text-hover-secondary-light-5 {
  color: #8de4c4;
}

.bg-secondary-light-5 {
  background-color: #8de4c4;
}

.text-secondary-light-6 {
  color: #a3e9cf;
}

.text-hover-secondary-light-6 {
  color: #a3e9cf;
}

.bg-secondary-light-6 {
  background-color: #a3e9cf;
}

.text-secondary-light-7 {
  color: #baefdb;
}

.text-hover-secondary-light-7 {
  color: #baefdb;
}

.bg-secondary-light-7 {
  background-color: #baefdb;
}

.text-secondary-light-8 {
  color: #d1f4e7;
}

.text-hover-secondary-light-8 {
  color: #d1f4e7;
}

.bg-secondary-light-8 {
  background-color: #d1f4e7;
}

.text-secondary-light-9 {
  color: #e8faf3;
}

.text-hover-secondary-light-9 {
  color: #e8faf3;
}

.bg-secondary-light-9 {
  background-color: #e8faf3;
}

.text-secondary-dark-1 {
  color: #17b47a;
}

.text-hover-secondary-dark-1 {
  color: #17b47a;
}

.bg-secondary-dark-1 {
  background-color: #17b47a;
}

.text-secondary-dark-2 {
  color: #15a06d;
}

.text-hover-secondary-dark-2 {
  color: #15a06d;
}

.bg-secondary-dark-2 {
  background-color: #15a06d;
}

.text-secondary-dark-3 {
  color: #128c5f;
}

.text-hover-secondary-dark-3 {
  color: #128c5f;
}

.bg-secondary-dark-3 {
  background-color: #128c5f;
}

.text-secondary-dark-4 {
  color: #107852;
}

.text-hover-secondary-dark-4 {
  color: #107852;
}

.bg-secondary-dark-4 {
  background-color: #107852;
}

.text-secondary-dark-5 {
  color: #0d6444;
}

.text-hover-secondary-dark-5 {
  color: #0d6444;
}

.bg-secondary-dark-5 {
  background-color: #0d6444;
}

.text-secondary-dark-6 {
  color: #0a5036;
}

.text-hover-secondary-dark-6 {
  color: #0a5036;
}

.bg-secondary-dark-6 {
  background-color: #0a5036;
}

.text-secondary-dark-7 {
  color: #083c29;
}

.text-hover-secondary-dark-7 {
  color: #083c29;
}

.bg-secondary-dark-7 {
  background-color: #083c29;
}

.text-secondary-dark-8 {
  color: #05281b;
}

.text-hover-secondary-dark-8 {
  color: #05281b;
}

.bg-secondary-dark-8 {
  background-color: #05281b;
}

.text-secondary-dark-9 {
  color: #03140e;
}

.text-hover-secondary-dark-9 {
  color: #03140e;
}

.bg-secondary-dark-9 {
  background-color: #03140e;
}

.text-error {
  color: #d32752;
}

.bg-error {
  background-color: #d32752;
}

.text-error-light-1 {
  color: #d73d63;
}

.text-hover-error-light-1 {
  color: #d73d63;
}

.bg-error-light-1 {
  background-color: #d73d63;
}

.text-error-light-2 {
  color: #dc5275;
}

.text-hover-error-light-2 {
  color: #dc5275;
}

.bg-error-light-2 {
  background-color: #dc5275;
}

.text-error-light-3 {
  color: #e06886;
}

.text-hover-error-light-3 {
  color: #e06886;
}

.bg-error-light-3 {
  background-color: #e06886;
}

.text-error-light-4 {
  color: #e57d97;
}

.text-hover-error-light-4 {
  color: #e57d97;
}

.bg-error-light-4 {
  background-color: #e57d97;
}

.text-error-light-5 {
  color: #e993a9;
}

.text-hover-error-light-5 {
  color: #e993a9;
}

.bg-error-light-5 {
  background-color: #e993a9;
}

.text-error-light-6 {
  color: #eda9ba;
}

.text-hover-error-light-6 {
  color: #eda9ba;
}

.bg-error-light-6 {
  background-color: #eda9ba;
}

.text-error-light-7 {
  color: #f2becb;
}

.text-hover-error-light-7 {
  color: #f2becb;
}

.bg-error-light-7 {
  background-color: #f2becb;
}

.text-error-light-8 {
  color: #f6d4dc;
}

.text-hover-error-light-8 {
  color: #f6d4dc;
}

.bg-error-light-8 {
  background-color: #f6d4dc;
}

.text-error-light-9 {
  color: #fbe9ee;
}

.text-hover-error-light-9 {
  color: #fbe9ee;
}

.bg-error-light-9 {
  background-color: #fbe9ee;
}

.text-error-dark-1 {
  color: #be234a;
}

.text-hover-error-dark-1 {
  color: #be234a;
}

.bg-error-dark-1 {
  background-color: #be234a;
}

.text-error-dark-2 {
  color: #a91f42;
}

.text-hover-error-dark-2 {
  color: #a91f42;
}

.bg-error-dark-2 {
  background-color: #a91f42;
}

.text-error-dark-3 {
  color: #941b39;
}

.text-hover-error-dark-3 {
  color: #941b39;
}

.bg-error-dark-3 {
  background-color: #941b39;
}

.text-error-dark-4 {
  color: #7f1731;
}

.text-hover-error-dark-4 {
  color: #7f1731;
}

.bg-error-dark-4 {
  background-color: #7f1731;
}

.text-error-dark-5 {
  color: #6a1429;
}

.text-hover-error-dark-5 {
  color: #6a1429;
}

.bg-error-dark-5 {
  background-color: #6a1429;
}

.text-error-dark-6 {
  color: #541021;
}

.text-hover-error-dark-6 {
  color: #541021;
}

.bg-error-dark-6 {
  background-color: #541021;
}

.text-error-dark-7 {
  color: #3f0c19;
}

.text-hover-error-dark-7 {
  color: #3f0c19;
}

.bg-error-dark-7 {
  background-color: #3f0c19;
}

.text-error-dark-8 {
  color: #2a0810;
}

.text-hover-error-dark-8 {
  color: #2a0810;
}

.bg-error-dark-8 {
  background-color: #2a0810;
}

.text-error-dark-9 {
  color: #150408;
}

.text-hover-error-dark-9 {
  color: #150408;
}

.bg-error-dark-9 {
  background-color: #150408;
}

.text-info {
  color: #f6c31c;
}

.bg-info {
  background-color: #f6c31c;
}

.text-info-light-1 {
  color: #f7c933;
}

.text-hover-info-light-1 {
  color: #f7c933;
}

.bg-info-light-1 {
  background-color: #f7c933;
}

.text-info-light-2 {
  color: #f8cf49;
}

.text-hover-info-light-2 {
  color: #f8cf49;
}

.bg-info-light-2 {
  background-color: #f8cf49;
}

.text-info-light-3 {
  color: #f9d560;
}

.text-hover-info-light-3 {
  color: #f9d560;
}

.bg-info-light-3 {
  background-color: #f9d560;
}

.text-info-light-4 {
  color: #fadb77;
}

.text-hover-info-light-4 {
  color: #fadb77;
}

.bg-info-light-4 {
  background-color: #fadb77;
}

.text-info-light-5 {
  color: #fbe18e;
}

.text-hover-info-light-5 {
  color: #fbe18e;
}

.bg-info-light-5 {
  background-color: #fbe18e;
}

.text-info-light-6 {
  color: #fbe7a4;
}

.text-hover-info-light-6 {
  color: #fbe7a4;
}

.bg-info-light-6 {
  background-color: #fbe7a4;
}

.text-info-light-7 {
  color: #fcedbb;
}

.text-hover-info-light-7 {
  color: #fcedbb;
}

.bg-info-light-7 {
  background-color: #fcedbb;
}

.text-info-light-8 {
  color: #fdf3d2;
}

.text-hover-info-light-8 {
  color: #fdf3d2;
}

.bg-info-light-8 {
  background-color: #fdf3d2;
}

.text-info-light-9 {
  color: #fef9e8;
}

.text-hover-info-light-9 {
  color: #fef9e8;
}

.bg-info-light-9 {
  background-color: #fef9e8;
}

.text-info-dark-1 {
  color: #ddb019;
}

.text-hover-info-dark-1 {
  color: #ddb019;
}

.bg-info-dark-1 {
  background-color: #ddb019;
}

.text-info-dark-2 {
  color: #c59c16;
}

.text-hover-info-dark-2 {
  color: #c59c16;
}

.bg-info-dark-2 {
  background-color: #c59c16;
}

.text-info-dark-3 {
  color: #ac8914;
}

.text-hover-info-dark-3 {
  color: #ac8914;
}

.bg-info-dark-3 {
  background-color: #ac8914;
}

.text-info-dark-4 {
  color: #947511;
}

.text-hover-info-dark-4 {
  color: #947511;
}

.bg-info-dark-4 {
  background-color: #947511;
}

.text-info-dark-5 {
  color: #7b620e;
}

.text-hover-info-dark-5 {
  color: #7b620e;
}

.bg-info-dark-5 {
  background-color: #7b620e;
}

.text-info-dark-6 {
  color: #624e0b;
}

.text-hover-info-dark-6 {
  color: #624e0b;
}

.bg-info-dark-6 {
  background-color: #624e0b;
}

.text-info-dark-7 {
  color: #4a3b08;
}

.text-hover-info-dark-7 {
  color: #4a3b08;
}

.bg-info-dark-7 {
  background-color: #4a3b08;
}

.text-info-dark-8 {
  color: #312706;
}

.text-hover-info-dark-8 {
  color: #312706;
}

.bg-info-dark-8 {
  background-color: #312706;
}

.text-info-dark-9 {
  color: #191403;
}

.text-hover-info-dark-9 {
  color: #191403;
}

.bg-info-dark-9 {
  background-color: #191403;
}

.text-blue {
  color: #1919e6;
}

.bg-blue {
  background-color: #1919e6;
}

.text-blue-light-1 {
  color: #3030e9;
}

.text-hover-blue-light-1 {
  color: #3030e9;
}

.bg-blue-light-1 {
  background-color: #3030e9;
}

.text-blue-light-2 {
  color: #4747eb;
}

.text-hover-blue-light-2 {
  color: #4747eb;
}

.bg-blue-light-2 {
  background-color: #4747eb;
}

.text-blue-light-3 {
  color: #5e5eee;
}

.text-hover-blue-light-3 {
  color: #5e5eee;
}

.bg-blue-light-3 {
  background-color: #5e5eee;
}

.text-blue-light-4 {
  color: #7575f0;
}

.text-hover-blue-light-4 {
  color: #7575f0;
}

.bg-blue-light-4 {
  background-color: #7575f0;
}

.text-blue-light-5 {
  color: #8c8cf3;
}

.text-hover-blue-light-5 {
  color: #8c8cf3;
}

.bg-blue-light-5 {
  background-color: #8c8cf3;
}

.text-blue-light-6 {
  color: #a3a3f5;
}

.text-hover-blue-light-6 {
  color: #a3a3f5;
}

.bg-blue-light-6 {
  background-color: #a3a3f5;
}

.text-blue-light-7 {
  color: #babaf8;
}

.text-hover-blue-light-7 {
  color: #babaf8;
}

.bg-blue-light-7 {
  background-color: #babaf8;
}

.text-blue-light-8 {
  color: #d1d1fa;
}

.text-hover-blue-light-8 {
  color: #d1d1fa;
}

.bg-blue-light-8 {
  background-color: #d1d1fa;
}

.text-blue-light-9 {
  color: #e8e8fd;
}

.text-hover-blue-light-9 {
  color: #e8e8fd;
}

.bg-blue-light-9 {
  background-color: #e8e8fd;
}

.text-blue-dark-1 {
  color: #1717cf;
}

.text-hover-blue-dark-1 {
  color: #1717cf;
}

.bg-blue-dark-1 {
  background-color: #1717cf;
}

.text-blue-dark-2 {
  color: #1414b8;
}

.text-hover-blue-dark-2 {
  color: #1414b8;
}

.bg-blue-dark-2 {
  background-color: #1414b8;
}

.text-blue-dark-3 {
  color: #1212a1;
}

.text-hover-blue-dark-3 {
  color: #1212a1;
}

.bg-blue-dark-3 {
  background-color: #1212a1;
}

.text-blue-dark-4 {
  color: #0f0f8a;
}

.text-hover-blue-dark-4 {
  color: #0f0f8a;
}

.bg-blue-dark-4 {
  background-color: #0f0f8a;
}

.text-blue-dark-5 {
  color: #0d0d73;
}

.text-hover-blue-dark-5 {
  color: #0d0d73;
}

.bg-blue-dark-5 {
  background-color: #0d0d73;
}

.text-blue-dark-6 {
  color: #0a0a5c;
}

.text-hover-blue-dark-6 {
  color: #0a0a5c;
}

.bg-blue-dark-6 {
  background-color: #0a0a5c;
}

.text-blue-dark-7 {
  color: #080845;
}

.text-hover-blue-dark-7 {
  color: #080845;
}

.bg-blue-dark-7 {
  background-color: #080845;
}

.text-blue-dark-8 {
  color: #05052e;
}

.text-hover-blue-dark-8 {
  color: #05052e;
}

.bg-blue-dark-8 {
  background-color: #05052e;
}

.text-blue-dark-9 {
  color: #030317;
}

.text-hover-blue-dark-9 {
  color: #030317;
}

.bg-blue-dark-9 {
  background-color: #030317;
}

.text-red {
  color: #e61919;
}

.bg-red {
  background-color: #e61919;
}

.text-red-light-1 {
  color: #e93030;
}

.text-hover-red-light-1 {
  color: #e93030;
}

.bg-red-light-1 {
  background-color: #e93030;
}

.text-red-light-2 {
  color: #eb4747;
}

.text-hover-red-light-2 {
  color: #eb4747;
}

.bg-red-light-2 {
  background-color: #eb4747;
}

.text-red-light-3 {
  color: #ee5e5e;
}

.text-hover-red-light-3 {
  color: #ee5e5e;
}

.bg-red-light-3 {
  background-color: #ee5e5e;
}

.text-red-light-4 {
  color: #f07575;
}

.text-hover-red-light-4 {
  color: #f07575;
}

.bg-red-light-4 {
  background-color: #f07575;
}

.text-red-light-5 {
  color: #f38c8c;
}

.text-hover-red-light-5 {
  color: #f38c8c;
}

.bg-red-light-5 {
  background-color: #f38c8c;
}

.text-red-light-6 {
  color: #f5a3a3;
}

.text-hover-red-light-6 {
  color: #f5a3a3;
}

.bg-red-light-6 {
  background-color: #f5a3a3;
}

.text-red-light-7 {
  color: #f8baba;
}

.text-hover-red-light-7 {
  color: #f8baba;
}

.bg-red-light-7 {
  background-color: #f8baba;
}

.text-red-light-8 {
  color: #fad1d1;
}

.text-hover-red-light-8 {
  color: #fad1d1;
}

.bg-red-light-8 {
  background-color: #fad1d1;
}

.text-red-light-9 {
  color: #fde8e8;
}

.text-hover-red-light-9 {
  color: #fde8e8;
}

.bg-red-light-9 {
  background-color: #fde8e8;
}

.text-red-dark-1 {
  color: #cf1717;
}

.text-hover-red-dark-1 {
  color: #cf1717;
}

.bg-red-dark-1 {
  background-color: #cf1717;
}

.text-red-dark-2 {
  color: #b81414;
}

.text-hover-red-dark-2 {
  color: #b81414;
}

.bg-red-dark-2 {
  background-color: #b81414;
}

.text-red-dark-3 {
  color: #a11212;
}

.text-hover-red-dark-3 {
  color: #a11212;
}

.bg-red-dark-3 {
  background-color: #a11212;
}

.text-red-dark-4 {
  color: #8a0f0f;
}

.text-hover-red-dark-4 {
  color: #8a0f0f;
}

.bg-red-dark-4 {
  background-color: #8a0f0f;
}

.text-red-dark-5 {
  color: #730d0d;
}

.text-hover-red-dark-5 {
  color: #730d0d;
}

.bg-red-dark-5 {
  background-color: #730d0d;
}

.text-red-dark-6 {
  color: #5c0a0a;
}

.text-hover-red-dark-6 {
  color: #5c0a0a;
}

.bg-red-dark-6 {
  background-color: #5c0a0a;
}

.text-red-dark-7 {
  color: #450808;
}

.text-hover-red-dark-7 {
  color: #450808;
}

.bg-red-dark-7 {
  background-color: #450808;
}

.text-red-dark-8 {
  color: #2e0505;
}

.text-hover-red-dark-8 {
  color: #2e0505;
}

.bg-red-dark-8 {
  background-color: #2e0505;
}

.text-red-dark-9 {
  color: #170303;
}

.text-hover-red-dark-9 {
  color: #170303;
}

.bg-red-dark-9 {
  background-color: #170303;
}

.text-yellow {
  color: #e6e619;
}

.bg-yellow {
  background-color: #e6e619;
}

.text-yellow-light-1 {
  color: #e9e930;
}

.text-hover-yellow-light-1 {
  color: #e9e930;
}

.bg-yellow-light-1 {
  background-color: #e9e930;
}

.text-yellow-light-2 {
  color: #ebeb47;
}

.text-hover-yellow-light-2 {
  color: #ebeb47;
}

.bg-yellow-light-2 {
  background-color: #ebeb47;
}

.text-yellow-light-3 {
  color: #eeee5e;
}

.text-hover-yellow-light-3 {
  color: #eeee5e;
}

.bg-yellow-light-3 {
  background-color: #eeee5e;
}

.text-yellow-light-4 {
  color: #f0f075;
}

.text-hover-yellow-light-4 {
  color: #f0f075;
}

.bg-yellow-light-4 {
  background-color: #f0f075;
}

.text-yellow-light-5 {
  color: #f3f38c;
}

.text-hover-yellow-light-5 {
  color: #f3f38c;
}

.bg-yellow-light-5 {
  background-color: #f3f38c;
}

.text-yellow-light-6 {
  color: #f5f5a3;
}

.text-hover-yellow-light-6 {
  color: #f5f5a3;
}

.bg-yellow-light-6 {
  background-color: #f5f5a3;
}

.text-yellow-light-7 {
  color: #f8f8ba;
}

.text-hover-yellow-light-7 {
  color: #f8f8ba;
}

.bg-yellow-light-7 {
  background-color: #f8f8ba;
}

.text-yellow-light-8 {
  color: #fafad1;
}

.text-hover-yellow-light-8 {
  color: #fafad1;
}

.bg-yellow-light-8 {
  background-color: #fafad1;
}

.text-yellow-light-9 {
  color: #fdfde8;
}

.text-hover-yellow-light-9 {
  color: #fdfde8;
}

.bg-yellow-light-9 {
  background-color: #fdfde8;
}

.text-yellow-dark-1 {
  color: #cfcf17;
}

.text-hover-yellow-dark-1 {
  color: #cfcf17;
}

.bg-yellow-dark-1 {
  background-color: #cfcf17;
}

.text-yellow-dark-2 {
  color: #b8b814;
}

.text-hover-yellow-dark-2 {
  color: #b8b814;
}

.bg-yellow-dark-2 {
  background-color: #b8b814;
}

.text-yellow-dark-3 {
  color: #a1a112;
}

.text-hover-yellow-dark-3 {
  color: #a1a112;
}

.bg-yellow-dark-3 {
  background-color: #a1a112;
}

.text-yellow-dark-4 {
  color: #8a8a0f;
}

.text-hover-yellow-dark-4 {
  color: #8a8a0f;
}

.bg-yellow-dark-4 {
  background-color: #8a8a0f;
}

.text-yellow-dark-5 {
  color: #73730d;
}

.text-hover-yellow-dark-5 {
  color: #73730d;
}

.bg-yellow-dark-5 {
  background-color: #73730d;
}

.text-yellow-dark-6 {
  color: #5c5c0a;
}

.text-hover-yellow-dark-6 {
  color: #5c5c0a;
}

.bg-yellow-dark-6 {
  background-color: #5c5c0a;
}

.text-yellow-dark-7 {
  color: #454508;
}

.text-hover-yellow-dark-7 {
  color: #454508;
}

.bg-yellow-dark-7 {
  background-color: #454508;
}

.text-yellow-dark-8 {
  color: #2e2e05;
}

.text-hover-yellow-dark-8 {
  color: #2e2e05;
}

.bg-yellow-dark-8 {
  background-color: #2e2e05;
}

.text-yellow-dark-9 {
  color: #171703;
}

.text-hover-yellow-dark-9 {
  color: #171703;
}

.bg-yellow-dark-9 {
  background-color: #171703;
}

.text-green {
  color: #19e635;
}

.bg-green {
  background-color: #19e635;
}

.text-green-light-1 {
  color: #30e949;
}

.text-hover-green-light-1 {
  color: #30e949;
}

.bg-green-light-1 {
  background-color: #30e949;
}

.text-green-light-2 {
  color: #47eb5d;
}

.text-hover-green-light-2 {
  color: #47eb5d;
}

.bg-green-light-2 {
  background-color: #47eb5d;
}

.text-green-light-3 {
  color: #5eee72;
}

.text-hover-green-light-3 {
  color: #5eee72;
}

.bg-green-light-3 {
  background-color: #5eee72;
}

.text-green-light-4 {
  color: #75f086;
}

.text-hover-green-light-4 {
  color: #75f086;
}

.bg-green-light-4 {
  background-color: #75f086;
}

.text-green-light-5 {
  color: #8cf39a;
}

.text-hover-green-light-5 {
  color: #8cf39a;
}

.bg-green-light-5 {
  background-color: #8cf39a;
}

.text-green-light-6 {
  color: #a3f5ae;
}

.text-hover-green-light-6 {
  color: #a3f5ae;
}

.bg-green-light-6 {
  background-color: #a3f5ae;
}

.text-green-light-7 {
  color: #baf8c2;
}

.text-hover-green-light-7 {
  color: #baf8c2;
}

.bg-green-light-7 {
  background-color: #baf8c2;
}

.text-green-light-8 {
  color: #d1fad7;
}

.text-hover-green-light-8 {
  color: #d1fad7;
}

.bg-green-light-8 {
  background-color: #d1fad7;
}

.text-green-light-9 {
  color: #e8fdeb;
}

.text-hover-green-light-9 {
  color: #e8fdeb;
}

.bg-green-light-9 {
  background-color: #e8fdeb;
}

.text-green-dark-1 {
  color: #17cf30;
}

.text-hover-green-dark-1 {
  color: #17cf30;
}

.bg-green-dark-1 {
  background-color: #17cf30;
}

.text-green-dark-2 {
  color: #14b82a;
}

.text-hover-green-dark-2 {
  color: #14b82a;
}

.bg-green-dark-2 {
  background-color: #14b82a;
}

.text-green-dark-3 {
  color: #12a125;
}

.text-hover-green-dark-3 {
  color: #12a125;
}

.bg-green-dark-3 {
  background-color: #12a125;
}

.text-green-dark-4 {
  color: #0f8a20;
}

.text-hover-green-dark-4 {
  color: #0f8a20;
}

.bg-green-dark-4 {
  background-color: #0f8a20;
}

.text-green-dark-5 {
  color: #0d731b;
}

.text-hover-green-dark-5 {
  color: #0d731b;
}

.bg-green-dark-5 {
  background-color: #0d731b;
}

.text-green-dark-6 {
  color: #0a5c15;
}

.text-hover-green-dark-6 {
  color: #0a5c15;
}

.bg-green-dark-6 {
  background-color: #0a5c15;
}

.text-green-dark-7 {
  color: #084510;
}

.text-hover-green-dark-7 {
  color: #084510;
}

.bg-green-dark-7 {
  background-color: #084510;
}

.text-green-dark-8 {
  color: #052e0b;
}

.text-hover-green-dark-8 {
  color: #052e0b;
}

.bg-green-dark-8 {
  background-color: #052e0b;
}

.text-green-dark-9 {
  color: #031705;
}

.text-hover-green-dark-9 {
  color: #031705;
}

.bg-green-dark-9 {
  background-color: #031705;
}

.text-orange {
  color: #ffa600;
}

.bg-orange {
  background-color: #ffa600;
}

.text-orange-light-1 {
  color: #ffaf1a;
}

.text-hover-orange-light-1 {
  color: #ffaf1a;
}

.bg-orange-light-1 {
  background-color: #ffaf1a;
}

.text-orange-light-2 {
  color: #ffb833;
}

.text-hover-orange-light-2 {
  color: #ffb833;
}

.bg-orange-light-2 {
  background-color: #ffb833;
}

.text-orange-light-3 {
  color: #ffc14d;
}

.text-hover-orange-light-3 {
  color: #ffc14d;
}

.bg-orange-light-3 {
  background-color: #ffc14d;
}

.text-orange-light-4 {
  color: #ffca66;
}

.text-hover-orange-light-4 {
  color: #ffca66;
}

.bg-orange-light-4 {
  background-color: #ffca66;
}

.text-orange-light-5 {
  color: #ffd380;
}

.text-hover-orange-light-5 {
  color: #ffd380;
}

.bg-orange-light-5 {
  background-color: #ffd380;
}

.text-orange-light-6 {
  color: #ffdb99;
}

.text-hover-orange-light-6 {
  color: #ffdb99;
}

.bg-orange-light-6 {
  background-color: #ffdb99;
}

.text-orange-light-7 {
  color: #ffe4b3;
}

.text-hover-orange-light-7 {
  color: #ffe4b3;
}

.bg-orange-light-7 {
  background-color: #ffe4b3;
}

.text-orange-light-8 {
  color: #ffedcc;
}

.text-hover-orange-light-8 {
  color: #ffedcc;
}

.bg-orange-light-8 {
  background-color: #ffedcc;
}

.text-orange-light-9 {
  color: #fff6e6;
}

.text-hover-orange-light-9 {
  color: #fff6e6;
}

.bg-orange-light-9 {
  background-color: #fff6e6;
}

.text-orange-dark-1 {
  color: #e69500;
}

.text-hover-orange-dark-1 {
  color: #e69500;
}

.bg-orange-dark-1 {
  background-color: #e69500;
}

.text-orange-dark-2 {
  color: #cc8500;
}

.text-hover-orange-dark-2 {
  color: #cc8500;
}

.bg-orange-dark-2 {
  background-color: #cc8500;
}

.text-orange-dark-3 {
  color: #b37400;
}

.text-hover-orange-dark-3 {
  color: #b37400;
}

.bg-orange-dark-3 {
  background-color: #b37400;
}

.text-orange-dark-4 {
  color: #996400;
}

.text-hover-orange-dark-4 {
  color: #996400;
}

.bg-orange-dark-4 {
  background-color: #996400;
}

.text-orange-dark-5 {
  color: #805300;
}

.text-hover-orange-dark-5 {
  color: #805300;
}

.bg-orange-dark-5 {
  background-color: #805300;
}

.text-orange-dark-6 {
  color: #664200;
}

.text-hover-orange-dark-6 {
  color: #664200;
}

.bg-orange-dark-6 {
  background-color: #664200;
}

.text-orange-dark-7 {
  color: #4d3200;
}

.text-hover-orange-dark-7 {
  color: #4d3200;
}

.bg-orange-dark-7 {
  background-color: #4d3200;
}

.text-orange-dark-8 {
  color: #332100;
}

.text-hover-orange-dark-8 {
  color: #332100;
}

.bg-orange-dark-8 {
  background-color: #332100;
}

.text-orange-dark-9 {
  color: #1a1100;
}

.text-hover-orange-dark-9 {
  color: #1a1100;
}

.bg-orange-dark-9 {
  background-color: #1a1100;
}

.text-purple {
  color: #9900ff;
}

.bg-purple {
  background-color: #9900ff;
}

.text-purple-light-1 {
  color: #a31aff;
}

.text-hover-purple-light-1 {
  color: #a31aff;
}

.bg-purple-light-1 {
  background-color: #a31aff;
}

.text-purple-light-2 {
  color: #ad33ff;
}

.text-hover-purple-light-2 {
  color: #ad33ff;
}

.bg-purple-light-2 {
  background-color: #ad33ff;
}

.text-purple-light-3 {
  color: #b84dff;
}

.text-hover-purple-light-3 {
  color: #b84dff;
}

.bg-purple-light-3 {
  background-color: #b84dff;
}

.text-purple-light-4 {
  color: #c266ff;
}

.text-hover-purple-light-4 {
  color: #c266ff;
}

.bg-purple-light-4 {
  background-color: #c266ff;
}

.text-purple-light-5 {
  color: #cc80ff;
}

.text-hover-purple-light-5 {
  color: #cc80ff;
}

.bg-purple-light-5 {
  background-color: #cc80ff;
}

.text-purple-light-6 {
  color: #d699ff;
}

.text-hover-purple-light-6 {
  color: #d699ff;
}

.bg-purple-light-6 {
  background-color: #d699ff;
}

.text-purple-light-7 {
  color: #e0b3ff;
}

.text-hover-purple-light-7 {
  color: #e0b3ff;
}

.bg-purple-light-7 {
  background-color: #e0b3ff;
}

.text-purple-light-8 {
  color: #ebccff;
}

.text-hover-purple-light-8 {
  color: #ebccff;
}

.bg-purple-light-8 {
  background-color: #ebccff;
}

.text-purple-light-9 {
  color: #f5e6ff;
}

.text-hover-purple-light-9 {
  color: #f5e6ff;
}

.bg-purple-light-9 {
  background-color: #f5e6ff;
}

.text-purple-dark-1 {
  color: #8a00e6;
}

.text-hover-purple-dark-1 {
  color: #8a00e6;
}

.bg-purple-dark-1 {
  background-color: #8a00e6;
}

.text-purple-dark-2 {
  color: #7a00cc;
}

.text-hover-purple-dark-2 {
  color: #7a00cc;
}

.bg-purple-dark-2 {
  background-color: #7a00cc;
}

.text-purple-dark-3 {
  color: #6b00b3;
}

.text-hover-purple-dark-3 {
  color: #6b00b3;
}

.bg-purple-dark-3 {
  background-color: #6b00b3;
}

.text-purple-dark-4 {
  color: #5c0099;
}

.text-hover-purple-dark-4 {
  color: #5c0099;
}

.bg-purple-dark-4 {
  background-color: #5c0099;
}

.text-purple-dark-5 {
  color: #4d0080;
}

.text-hover-purple-dark-5 {
  color: #4d0080;
}

.bg-purple-dark-5 {
  background-color: #4d0080;
}

.text-purple-dark-6 {
  color: #3d0066;
}

.text-hover-purple-dark-6 {
  color: #3d0066;
}

.bg-purple-dark-6 {
  background-color: #3d0066;
}

.text-purple-dark-7 {
  color: #2e004d;
}

.text-hover-purple-dark-7 {
  color: #2e004d;
}

.bg-purple-dark-7 {
  background-color: #2e004d;
}

.text-purple-dark-8 {
  color: #1f0033;
}

.text-hover-purple-dark-8 {
  color: #1f0033;
}

.bg-purple-dark-8 {
  background-color: #1f0033;
}

.text-purple-dark-9 {
  color: #0f001a;
}

.text-hover-purple-dark-9 {
  color: #0f001a;
}

.bg-purple-dark-9 {
  background-color: #0f001a;
}

.text-gray {
  color: #808080;
}

.bg-gray {
  background-color: #808080;
}

.text-gray-light-1 {
  color: #8d8d8d;
}

.text-hover-gray-light-1 {
  color: #8d8d8d;
}

.bg-gray-light-1 {
  background-color: #8d8d8d;
}

.text-gray-light-2 {
  color: #999999;
}

.text-hover-gray-light-2 {
  color: #999999;
}

.bg-gray-light-2 {
  background-color: #999999;
}

.text-gray-light-3 {
  color: #a6a6a6;
}

.text-hover-gray-light-3 {
  color: #a6a6a6;
}

.bg-gray-light-3 {
  background-color: #a6a6a6;
}

.text-gray-light-4 {
  color: #b3b3b3;
}

.text-hover-gray-light-4 {
  color: #b3b3b3;
}

.bg-gray-light-4 {
  background-color: #b3b3b3;
}

.text-gray-light-5 {
  color: silver;
}

.text-hover-gray-light-5 {
  color: silver;
}

.bg-gray-light-5 {
  background-color: silver;
}

.text-gray-light-6 {
  color: #cccccc;
}

.text-hover-gray-light-6 {
  color: #cccccc;
}

.bg-gray-light-6 {
  background-color: #cccccc;
}

.text-gray-light-7 {
  color: #d9d9d9;
}

.text-hover-gray-light-7 {
  color: #d9d9d9;
}

.bg-gray-light-7 {
  background-color: #d9d9d9;
}

.text-gray-light-8 {
  color: #e6e6e6;
}

.text-hover-gray-light-8 {
  color: #e6e6e6;
}

.bg-gray-light-8 {
  background-color: #e6e6e6;
}

.text-gray-light-9 {
  color: #f2f2f2;
}

.text-hover-gray-light-9 {
  color: #f2f2f2;
}

.bg-gray-light-9 {
  background-color: #f2f2f2;
}

.text-gray-dark-1 {
  color: #737373;
}

.text-hover-gray-dark-1 {
  color: #737373;
}

.bg-gray-dark-1 {
  background-color: #737373;
}

.text-gray-dark-2 {
  color: #666666;
}

.text-hover-gray-dark-2 {
  color: #666666;
}

.bg-gray-dark-2 {
  background-color: #666666;
}

.text-gray-dark-3 {
  color: #5a5a5a;
}

.text-hover-gray-dark-3 {
  color: #5a5a5a;
}

.bg-gray-dark-3 {
  background-color: #5a5a5a;
}

.text-gray-dark-4 {
  color: #4d4d4d;
}

.text-hover-gray-dark-4 {
  color: #4d4d4d;
}

.bg-gray-dark-4 {
  background-color: #4d4d4d;
}

.text-gray-dark-5 {
  color: #404040;
}

.text-hover-gray-dark-5 {
  color: #404040;
}

.bg-gray-dark-5 {
  background-color: #404040;
}

.text-gray-dark-6 {
  color: #333333;
}

.text-hover-gray-dark-6 {
  color: #333333;
}

.bg-gray-dark-6 {
  background-color: #333333;
}

.text-gray-dark-7 {
  color: #262626;
}

.text-hover-gray-dark-7 {
  color: #262626;
}

.bg-gray-dark-7 {
  background-color: #262626;
}

.text-gray-dark-8 {
  color: #1a1a1a;
}

.text-hover-gray-dark-8 {
  color: #1a1a1a;
}

.bg-gray-dark-8 {
  background-color: #1a1a1a;
}

.text-gray-dark-9 {
  color: #0d0d0d;
}

.text-hover-gray-dark-9 {
  color: #0d0d0d;
}

.bg-gray-dark-9 {
  background-color: #0d0d0d;
}

.text-black {
  color: black;
}

.bg-black {
  background-color: black;
}

.text-white {
  color: white;
}

.bg-white {
  background-color: white;
}

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot?o5cgh0');
  src: url('../fonts/icomoon.eot?o5cgh0#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?o5cgh0') format('truetype'),
    url('../fonts/icomoon.woff?o5cgh0') format('woff'),
    url('../fonts/icomoon.svg?o5cgh0#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icons8-barbeque-100:before {
  content: "\eb41";
}

.icon-icons8-dinner-100:before {
  content: "\eb42";
}

.icon-icons8-horizontal-line-50:before {
  content: "\eb43";
}

.icon-icons8-theater-100:before {
  content: "\eb44";
}

.icon-icons8-wi-fi-50-_1:before {
  content: "\eb45";
}

.icon-icons8-wi-fi-50:before {
  content: "\eb46";
}

.icon-icons8-temple-50:before {
  content: "\eb47";
}

.icon-icons8-airport-50:before {
  content: "\eb3f";
}

.icon-icons8-data-backup-50-_1:before {
  content: "\eb40";
}

.icon-icons8-airport-50-_1:before {
  content: "\eb0f";
}

.icon-icons8-bench-50:before {
  content: "\eb10";
}

.icon-icons8-bench-50-_1:before {
  content: "\eb11";
}

.icon-icons8-cafe-50:before {
  content: "\eb12";
}

.icon-icons8-cafe-50-_1:before {
  content: "\eb13";
}

.icon-icons8-cafe-50-_2:before {
  content: "\eb14";
}

.icon-icons8-cctv-camera-50:before {
  content: "\eb15";
}

.icon-icons8-cctv-camera-50-_1:before {
  content: "\eb16";
}

.icon-icons8-children-50:before {
  content: "\eb17";
}

.icon-icons8-children-50-_1:before {
  content: "\eb18";
}

.icon-icons8-cricket-50:before {
  content: "\eb19";
}

.icon-icons8-cricket-50-_1:before {
  content: "\eb1a";
}

.icon-icons8-cricket-50-_2:before {
  content: "\eb1b";
}

.icon-icons8-cricket-50-_3:before {
  content: "\eb1c";
}

.icon-icons8-cricket-50-_4:before {
  content: "\eb1d";
}

.icon-icons8-cricket-50-_5:before {
  content: "\eb1e";
}

.icon-icons8-electricity-50:before {
  content: "\eb1f";
}

.icon-icons8-fountain-50:before {
  content: "\eb20";
}

.icon-icons8-fountain-50-_1:before {
  content: "\eb21";
}

.icon-icons8-fountain-50-_2:before {
  content: "\eb22";
}

.icon-icons8-fountain-50-_3:before {
  content: "\eb23";
}

.icon-icons8-hall-50:before {
  content: "\eb24";
}

.icon-icons8-investment-portfolio-50:before {
  content: "\eb25";
}

.icon-icons8-netatmo-rain-module-50-_1:before {
  content: "\eb26";
}

.icon-icons8-railway-station-50:before {
  content: "\eb27";
}

.icon-icons8-reading-50:before {
  content: "\eb28";
}

.icon-icons8-reading-50-_1:before {
  content: "\eb29";
}

.icon-icons8-renewable-energy-50:before {
  content: "\eb2a";
}

.icon-icons8-right-arrow-50:before {
  content: "\eb2b";
}

.icon-icons8-right-arrow-50-_1:before {
  content: "\eb2c";
}

.icon-icons8-rollerblade-50:before {
  content: "\eb2d";
}

.icon-icons8-rollerblade-50-_1:before {
  content: "\eb2e";
}

.icon-icons8-rupee-50:before {
  content: "\eb2f";
}

.icon-icons8-school-building-50:before {
  content: "\eb30";
}

.icon-icons8-school-building-50-_1:before {
  content: "\eb31";
}

.icon-icons8-sculpture-50:before {
  content: "\eb32";
}

.icon-icons8-sculpture-50-_1:before {
  content: "\eb33";
}

.icon-icons8-slide-50:before {
  content: "\eb34";
}

.icon-icons8-slide-50-_1:before {
  content: "\eb35";
}

.icon-icons8-subway-50:before {
  content: "\eb36";
}

.icon-icons8-wall-mount-camera-50:before {
  content: "\eb37";
}

.icon-icons8-wall-mount-camera-50-_1:before {
  content: "\eb38";
}

.icon-icons8-wall-mount-camera-50-_2:before {
  content: "\eb39";
}

.icon-icons8-wall-mount-camera-100:before {
  content: "\eb3a";
}

.icon-icons8-water-glass-50:before {
  content: "\eb3b";
}

.icon-icons8-yoga-50:before {
  content: "\eb3c";
}

.icon-icons8-yoga-50-_1:before {
  content: "\eb3d";
}

.icon-icons8-yoga-50-_2:before {
  content: "\eb3e";
}

.icon-adobeacrobatreader:before {
  content: "\eb0e";
  color: #ee3f24;
}

.icon-gradle:before {
  content: "\ea6f";
}

.icon-gumtree:before {
  content: "\ea70";
  color: #72ef36;
}

.icon-facebook3:before {
  content: "\e9e7";
}

.icon-share1:before {
  content: "\e9e8";
}

.icon-bird:before {
  content: "\e9e9";
}

.icon-chat1:before {
  content: "\e9ea";
}

.icon-envelope2:before {
  content: "\e9eb";
}

.icon-phone3:before {
  content: "\e9ec";
}

.icon-phone4:before {
  content: "\e9ed";
}

.icon-phone5:before {
  content: "\e9ee";
}

.icon-mobile3:before {
  content: "\e9ef";
}

.icon-camera5:before {
  content: "\e9f0";
}

.icon-pictures:before {
  content: "\e9f1";
}

.icon-camera6:before {
  content: "\e9f2";
}

.icon-movie1:before {
  content: "\e9f3";
}

.icon-tv:before {
  content: "\e9f4";
}

.icon-camera7:before {
  content: "\e9f5";
}

.icon-volume:before {
  content: "\e9f6";
}

.icon-music1:before {
  content: "\e9f7";
}

.icon-headphone:before {
  content: "\e9f8";
}

.icon-gamepad1:before {
  content: "\e9f9";
}

.icon-earth1:before {
  content: "\e9fa";
}

.icon-globe1:before {
  content: "\e9fb";
}

.icon-search4:before {
  content: "\e9fc";
}

.icon-zoomout1:before {
  content: "\e9fd";
}

.icon-zoomin1:before {
  content: "\e9fe";
}

.icon-pin1:before {
  content: "\e9ff";
}

.icon-file1:before {
  content: "\ea00";
}

.icon-quote:before {
  content: "\ea01";
}

.icon-user2:before {
  content: "\ea02";
}

.icon-user3:before {
  content: "\ea03";
}

.icon-user4:before {
  content: "\ea04";
}

.icon-cart1:before {
  content: "\ea05";
}

.icon-gift2:before {
  content: "\ea06";
}

.icon-lamp:before {
  content: "\ea07";
}

.icon-settings:before {
  content: "\ea08";
}

.icon-unlocked:before {
  content: "\ea09";
}

.icon-key:before {
  content: "\ea0c";
}

.icon-food:before {
  content: "\ea0e";
}

.icon-drink:before {
  content: "\ea0f";
}

.icon-mug1:before {
  content: "\ea10";
}

.icon-cup:before {
  content: "\ea11";
}

.icon-drink1:before {
  content: "\ea12";
}

.icon-mug2:before {
  content: "\ea13";
}

.icon-lollipop:before {
  content: "\ea14";
}

.icon-scissors1:before {
  content: "\ea1d";
}

.icon-cloud6:before {
  content: "\ea1e";
}

.icon-lightning5:before {
  content: "\ea1f";
}

.icon-night:before {
  content: "\ea20";
}

.icon-sunny:before {
  content: "\ea21";
}

.icon-droplet:before {
  content: "\ea22";
}

.icon-umbrella1:before {
  content: "\ea23";
}

.icon-truck1:before {
  content: "\ea24";
}

.icon-car1:before {
  content: "\ea25";
}

.icon-gaspump:before {
  content: "\ea26";
}

.icon-factory:before {
  content: "\ea27";
}

.icon-tree2:before {
  content: "\ea28";
}

.icon-leaf3:before {
  content: "\ea29";
}

.icon-flower:before {
  content: "\ea2a";
}

.icon-direction:before {
  content: "\ea2b";
}

.icon-arrow-up3:before {
  content: "\ea2c";
}

.icon-arrow-down3:before {
  content: "\ea2d";
}

.icon-arrow-left3:before {
  content: "\ea2e";
}

.icon-arrow-right3:before {
  content: "\ea2f";
}

.icon-arrow-top-right:before {
  content: "\ea30";
}

.icon-arrow-top-left:before {
  content: "\ea31";
}

.icon-arrow-bottom-right:before {
  content: "\ea33";
}

.icon-arrow-bottom-left:before {
  content: "\ea35";
}

.icon-mobile4:before {
  content: "\e000";
}

.icon-document:before {
  content: "\e005";
}

.icon-search5:before {
  content: "\e007";
}

.icon-browser:before {
  content: "\e00c";
}

.icon-calendar1:before {
  content: "\e00d";
}

.icon-pictures1:before {
  content: "\e010";
}

.icon-video:before {
  content: "\e011";
}

.icon-camera8:before {
  content: "\e012";
}

.icon-wallet:before {
  content: "\e016";
}

.icon-gift3:before {
  content: "\e017";
}

.icon-bargraph:before {
  content: "\e018";
}

.icon-edit:before {
  content: "\e01c";
}

.icon-hourglass:before {
  content: "\e01f";
}

.icon-megaphone:before {
  content: "\e021";
}

.icon-map2:before {
  content: "\e025";
}

.icon-basket:before {
  content: "\e027";
}

.icon-envelope3:before {
  content: "\e028";
}

.icon-streetsign:before {
  content: "\e029";
}

.icon-attachment:before {
  content: "\e02e";
}

.icon-pricetags:before {
  content: "\e02f";
}

.icon-lightbulb:before {
  content: "\e030";
}

.icon-pencil:before {
  content: "\e032";
}

.icon-tools:before {
  content: "\e033";
}

.icon-scissors2:before {
  content: "\e035";
}

.icon-paintbrush:before {
  content: "\e036";
}

.icon-magnifying-glass:before {
  content: "\e037";
}

.icon-strategy:before {
  content: "\e03b";
}

.icon-recycle:before {
  content: "\e03e";
}

.icon-profile-male:before {
  content: "\e040";
}

.icon-profile-female:before {
  content: "\e041";
}

.icon-bike:before {
  content: "\e042";
}

.icon-wine:before {
  content: "\e043";
}

.icon-hotairballoon:before {
  content: "\e044";
}

.icon-globe2:before {
  content: "\e045";
}

.icon-map-pin:before {
  content: "\e047";
}

.icon-chat2:before {
  content: "\e049";
}

.icon-hazardous:before {
  content: "\e04f";
}

.icon-global:before {
  content: "\e052";
}

.icon-facebook4:before {
  content: "\e05d";
}

.icon-twitter2:before {
  content: "\e05e";
}

.icon-googleplus:before {
  content: "\e05f";
}

.icon-linkedin1:before {
  content: "\e062";
}

.icon-dribbble3:before {
  content: "\e063";
}

.icon-video1:before {
  content: "\ea37";
}

.icon-search6:before {
  content: "\ea39";
}

.icon-camera9:before {
  content: "\ea3b";
}

.icon-location3:before {
  content: "\ea3d";
}

.icon-bubble3:before {
  content: "\ea3f";
}

.icon-mail1:before {
  content: "\ea45";
}

.icon-photo1:before {
  content: "\ea46";
}

.icon-note:before {
  content: "\ea47";
}

.icon-paperplane:before {
  content: "\ea48";
}

.icon-music2:before {
  content: "\ea49";
}

.icon-shop:before {
  content: "\ea4a";
}

.icon-truck2:before {
  content: "\ea4b";
}

.icon-world:before {
  content: "\ea4c";
}

.icon-mail-envelope-closed:before {
  content: "\eaa3";
}

.icon-flag1:before {
  content: "\eaa4";
}

.icon-flag2:before {
  content: "\eaa5";
}

.icon-search7:before {
  content: "\eaa6";
}

.icon-search8:before {
  content: "\eaa8";
}

.icon-basketball:before {
  content: "\eaa9";
}

.icon-basketball1:before {
  content: "\eaaa";
}

.icon-tennis-ball:before {
  content: "\ea4d";
}

.icon-tennis-ball1:before {
  content: "\ea4e";
}

.icon-soccer-ball:before {
  content: "\eaab";
}

.icon-soccer-ball1:before {
  content: "\eaac";
}

.icon-soccer-court:before {
  content: "\eaad";
}

.icon-soccer-court1:before {
  content: "\eaae";
}

.icon-football:before {
  content: "\eaaf";
}

.icon-football1:before {
  content: "\eab0";
}

.icon-basketball2:before {
  content: "\eab1";
}

.icon-basketball3:before {
  content: "\eab2";
}

.icon-baseball-set:before {
  content: "\eab3";
}

.icon-baseball-set1:before {
  content: "\eab4";
}

.icon-tennis-ball2:before {
  content: "\ea4f";
}

.icon-tennis-ball3:before {
  content: "\ea50";
}

.icon-weights:before {
  content: "\eab5";
}

.icon-weights1:before {
  content: "\eab6";
}

.icon-tennis-racket:before {
  content: "\ea51";
}

.icon-tennis-racket1:before {
  content: "\ea52";
}

.icon-basketball-hoop:before {
  content: "\eab7";
}

.icon-basketball-hoop1:before {
  content: "\eab8";
}

.icon-table-tennis:before {
  content: "\ea53";
}

.icon-table-tennis1:before {
  content: "\ea54";
}

.icon-hockey-stick:before {
  content: "\eab9";
}

.icon-hockey-stick1:before {
  content: "\eaba";
}

.icon-shuttlecock:before {
  content: "\eabb";
}

.icon-shuttlecock1:before {
  content: "\eabc";
}

.icon-golf:before {
  content: "\ea55";
}

.icon-golf1:before {
  content: "\ea56";
}

.icon-bowling-pins:before {
  content: "\eabd";
}

.icon-bowling-pins1:before {
  content: "\eabe";
}

.icon-ice-skate:before {
  content: "\eabf";
}

.icon-ice-skate1:before {
  content: "\eac0";
}

.icon-cloud7:before {
  content: "\eac1";
}

.icon-cloud8:before {
  content: "\eac2";
}

.icon-cloud-sun:before {
  content: "\eac3";
}

.icon-cloud-sun1:before {
  content: "\eac4";
}

.icon-cloud-moon:before {
  content: "\eac5";
}

.icon-cloud-moon1:before {
  content: "\eac6";
}

.icon-cloud-sun-rain:before {
  content: "\eac7";
}

.icon-cloud-sun-rain1:before {
  content: "\eac8";
}

.icon-sun3:before {
  content: "\eac9";
}

.icon-sun4:before {
  content: "\eaca";
}

.icon-rainbow:before {
  content: "\eacb";
}

.icon-rainbow1:before {
  content: "\eacc";
}

.icon-umbrella2:before {
  content: "\eacd";
}

.icon-umbrella3:before {
  content: "\eace";
}

.icon-file-pdf1:before {
  content: "\eacf";
}

.icon-document-file-pdf:before {
  content: "\ead0";
}

.icon-document-file-pdf1:before {
  content: "\ead1";
}

.icon-tablet:before {
  content: "\ead2";
}

.icon-window:before {
  content: "\ead3";
}

.icon-monitor:before {
  content: "\ead4";
}

.icon-ipod:before {
  content: "\ead5";
}

.icon-tv1:before {
  content: "\ead6";
}

.icon-camera11:before {
  content: "\ead7";
}

.icon-camera12:before {
  content: "\ead8";
}

.icon-film2:before {
  content: "\ead9";
}

.icon-microphone:before {
  content: "\eada";
}

.icon-microphone1:before {
  content: "\eadb";
}

.icon-drink2:before {
  content: "\eadc";
}

.icon-drink3:before {
  content: "\eadd";
}

.icon-drink4:before {
  content: "\eade";
}

.icon-drink5:before {
  content: "\eae0";
}

.icon-coffee3:before {
  content: "\ea57";
}

.icon-mug3:before {
  content: "\eae1";
}

.icon-icecream:before {
  content: "\eae2";
}

.icon-cake1:before {
  content: "\eae3";
}

.icon-checkmark1:before {
  content: "\eae4";
}

.icon-checkmark2:before {
  content: "\eae5";
}

.icon-cancel2:before {
  content: "\eae6";
}

.icon-cancel3:before {
  content: "\eae7";
}

.icon-health:before {
  content: "\eae8";
}

.icon-suitcase:before {
  content: "\eae9";
}

.icon-headphones2:before {
  content: "\eaea";
}

.icon-wallet1:before {
  content: "\eaeb";
}

.icon-location5:before {
  content: "\eaec";
}

.icon-gamepad2:before {
  content: "\eaed";
}

.icon-phone6:before {
  content: "\ea58";
}

.icon-sale:before {
  content: "\eaee";
}

.icon-direction1:before {
  content: "\eaef";
}

.icon-map3:before {
  content: "\eaf0";
}

.icon-football2:before {
  content: "\eaf1";
}

.icon-bowling:before {
  content: "\eaf2";
}

.icon-bowlingpin:before {
  content: "\eaf3";
}

.icon-baseball:before {
  content: "\eaf4";
}

.icon-soccer:before {
  content: "\eaf5";
}

.icon-microwave:before {
  content: "\eaf6";
}

.icon-magnifier:before {
  content: "\eaf7";
}

.icon-archive:before {
  content: "\eaf8";
}

.icon-chat3:before {
  content: "\eaf9";
}

.icon-comments2:before {
  content: "\eafa";
}

.icon-library1:before {
  content: "\eafb";
}

.icon-hourglass1:before {
  content: "\eafc";
}

.icon-pencil1:before {
  content: "\eafd";
}

.icon-rotate:before {
  content: "\eafe";
}

.icon-rotate1:before {
  content: "\eaff";
}

.icon-reply1:before {
  content: "\eb00";
}

.icon-forward3:before {
  content: "\eb01";
}

.icon-cloudy4:before {
  content: "\eb02";
}

.icon-car2:before {
  content: "\eb03";
}

.icon-bike1:before {
  content: "\eb04";
}

.icon-truck4:before {
  content: "\eb05";
}

.icon-bus:before {
  content: "\eb06";
}

.icon-bike2:before {
  content: "\eb07";
}

.icon-plane1:before {
  content: "\eb08";
}

.icon-paperplane1:before {
  content: "\eb09";
}

.icon-ticket:before {
  content: "\ea59";
}

.icon-ticket1:before {
  content: "\ea5a";
}

.icon-ticket2:before {
  content: "\ea5b";
}

.icon-fast_forward:before {
  content: "\e904";
}

.icon-fast_rewind:before {
  content: "\e905";
}

.icon-movie:before {
  content: "\e906";
}

.icon-play_arrow:before {
  content: "\e907";
}

.icon-play_circle_filled:before {
  content: "\e908";
}

.icon-play_circle_outline:before {
  content: "\e909";
}

.icon-playlist_add:before {
  content: "\e90a";
}

.icon-video_library:before {
  content: "\e90b";
}

.icon-music_video:before {
  content: "\e90c";
}

.icon-missed_video_call:before {
  content: "\e90d";
}

.icon-vpn_key:before {
  content: "\e90e";
}

.icon-brightness_high:before {
  content: "\e90f";
}

.icon-brightness_low:before {
  content: "\e910";
}

.icon-brightness_medium:before {
  content: "\e911";
}

.icon-toys:before {
  content: "\e913";
}

.icon-brightness_2:before {
  content: "\e914";
}

.icon-brightness_3:before {
  content: "\e915";
}

.icon-brightness_4:before {
  content: "\e916";
}

.icon-filter_hdr:before {
  content: "\e917";
}

.icon-filter_vintage:before {
  content: "\e918";
}

.icon-flare:before {
  content: "\e919";
}

.icon-panorama:before {
  content: "\e91a";
}

.icon-switch_video:before {
  content: "\e91b";
}

.icon-wb_sunny:before {
  content: "\e91c";
}

.icon-movie_filter:before {
  content: "\e91d";
}

.icon-directions:before {
  content: "\e91e";
}

.icon-directions_bike:before {
  content: "\e91f";
}

.icon-directions_car:before {
  content: "\e920";
}

.icon-directions_subway:before {
  content: "\e922";
}

.icon-directions_walk:before {
  content: "\e923";
}

.icon-local_bar:before {
  content: "\e924";
}

.icon-local_cafe:before {
  content: "\e925";
}

.icon-local_florist:before {
  content: "\e926";
}

.icon-local_grocery_store:before {
  content: "\e927";
}

.icon-local_restaurant:before {
  content: "\e928";
}

.icon-local_taxi:before {
  content: "\e929";
}

.icon-location_history:before {
  content: "\e92a";
}

.icon-pin_drop:before {
  content: "\e92b";
}

.icon-directions_run:before {
  content: "\e92c";
}

.icon-restaurant:before {
  content: "\e92d";
}

.icon-cancel:before {
  content: "\e92e";
}

.icon-check1:before {
  content: "\e92f";
}

.icon-drive_eta:before {
  content: "\e930";
}

.icon-phone_forwarded:before {
  content: "\e931";
}

.icon-phone_in_talk:before {
  content: "\e932";
}

.icon-tap_and_play:before {
  content: "\e933";
}

.icon-personal_video:before {
  content: "\e934";
}

.icon-wc:before {
  content: "\e935";
}

.icon-cake:before {
  content: "\e936";
}

.icon-location_city:before {
  content: "\e937";
}

.icon-party_mode:before {
  content: "\e938";
}

.icon-public:before {
  content: "\e939";
}

.icon-3d_rotation:before {
  content: "\e93a";
}

.icon-account_balance:before {
  content: "\e93b";
}

.icon-account_circle:before {
  content: "\e93c";
}

.icon-add_shopping_cart:before {
  content: "\e93d";
}

.icon-delete:before {
  content: "\e93e";
}

.icon-face:before {
  content: "\e93f";
}

.icon-home4:before {
  content: "\e940";
}

.icon-play_for_work:before {
  content: "\e944";
}

.icon-add_ic_call:before {
  content: "\e946";
}

.icon-mark_as_unread:before {
  content: "\e94a";
}

.icon-phone_enabled:before {
  content: "\e94b";
}

.icon-replay_circle_filled:before {
  content: "\e94c";
}

.icon-home_work:before {
  content: "\e94d";
}

.icon-sports_golf:before {
  content: "\e94e";
}

.icon-sports_tennis:before {
  content: "\e94f";
}

.icon-eco:before {
  content: "\e950";
}

.icon-museum:before {
  content: "\e951";
}

.icon-bathtub:before {
  content: "\e952";
}

.icon-deck:before {
  content: "\e953";
}

.icon-sports_baseball:before {
  content: "\e954";
}

.icon-theater_comedy:before {
  content: "\e955";
}

.icon-festival:before {
  content: "\e956";
}

.icon-child_care:before {
  content: "\e957";
}

.icon-fitness_center:before {
  content: "\e95a";
}

.icon-golf_course:before {
  content: "\e95b";
}

.icon-hot_tub:before {
  content: "\e95c";
}

.icon-pool:before {
  content: "\e95d";
}

.icon-grass:before {
  content: "\e95e";
}

.icon-local_fire_department:before {
  content: "\e95f";
}

.icon-location_pin:before {
  content: "\e961";
}

.icon-night_shelter:before {
  content: "\e962";
}

.icon-pedal_bike:before {
  content: "\e963";
}

.icon-person_add_alt_1:before {
  content: "\e964";
}

.icon-self_improvement:before {
  content: "\e969";
}

.icon-south:before {
  content: "\e96a";
}

.icon-support_agent:before {
  content: "\e96c";
}

.icon-tapas:before {
  content: "\e96d";
}

.icon-wine_bar:before {
  content: "\e96f";
}

.icon-elderly:before {
  content: "\e970";
}

.icon-follow_the_signs:before {
  content: "\e972";
}

.icon-chat:before {
  content: "\e973";
}

.icon-home5:before {
  content: "\e974";
}

.icon-phone2:before {
  content: "\e975";
}

.icon-camera1:before {
  content: "\e976";
}

.icon-mapmarker:before {
  content: "\e977";
}

.icon-map1:before {
  content: "\e978";
}

.icon-barbell:before {
  content: "\e979";
}

.icon-th-menu:before {
  content: "\ea6d";
}

.icon-home10:before {
  content: "\ea6e";
}

.icon-location4:before {
  content: "\ea71";
}

.icon-chart-pie:before {
  content: "\ea72";
}

.icon-download1:before {
  content: "\ea73";
}

.icon-phone8:before {
  content: "\ea74";
}

.icon-social-twitter:before {
  content: "\ea75";
}

.icon-social-facebook:before {
  content: "\ea76";
}

.icon-home-outline:before {
  content: "\e97a";
}

.icon-phone-outline:before {
  content: "\ea7d";
}

.icon-tree1:before {
  content: "\e97b";
}

.icon-leaf2:before {
  content: "\e97c";
}

.icon-feather1:before {
  content: "\ea7e";
}

.icon-coffee1:before {
  content: "\e97d";
}

.icon-facebook6:before {
  content: "\ea81";
}

.icon-file-text:before {
  content: "\ea85";
}

.icon-linkedin3:before {
  content: "\ea87";
}

.icon-mic-off:before {
  content: "\e97e";
}

.icon-music3:before {
  content: "\ea8e";
}

.icon-phone9:before {
  content: "\ea97";
}

.icon-pie-chart1:before {
  content: "\ea98";
}

.icon-send1:before {
  content: "\ea99";
}

.icon-share3:before {
  content: "\ea9a";
}

.icon-share-2:before {
  content: "\ea9d";
}

.icon-truck3:before {
  content: "\ea9f";
}

.icon-twitter4:before {
  content: "\eaa0";
}

.icon-upload:before {
  content: "\eaa1";
}

.icon-leaf4:before {
  content: "\ea5c";
}

.icon-paper-plane1:before {
  content: "\ea5d";
}

.icon-phone7:before {
  content: "\ea5e";
}

.icon-pie-chart:before {
  content: "\ea5f";
}

.icon-tree3:before {
  content: "\ea60";
}

.icon-dribbble4:before {
  content: "\ea61";
}

.icon-facebook-with-circle:before {
  content: "\ea62";
}

.icon-facebook5:before {
  content: "\ea63";
}

.icon-linkedin-with-circle:before {
  content: "\ea64";
}

.icon-linkedin2:before {
  content: "\ea65";
}

.icon-pinterest-with-circle:before {
  content: "\ea66";
}

.icon-pinterest1:before {
  content: "\ea67";
}

.icon-twitter-with-circle:before {
  content: "\ea68";
}

.icon-twitter3:before {
  content: "\ea69";
}

.icon-youtube-with-circle:before {
  content: "\ea6a";
}

.icon-youtube1:before {
  content: "\ea6b";
}

.icon-chart-pie1:before {
  content: "\eb0a";
}

.icon-coffee4:before {
  content: "\eb0b";
}

.icon-download2:before {
  content: "\eb0c";
}

.icon-headphones3:before {
  content: "\eb0d";
}

.icon-travel-walk:before {
  content: "\ea6c";
}

.icon-search3:before {
  content: "\e9df";
}

.icon-envelope1:before {
  content: "\e9e0";
}

.icon-bubble1:before {
  content: "\e9e1";
}

.icon-image1:before {
  content: "\e9e2";
}

.icon-video-camera1:before {
  content: "\e9e3";
}

.icon-cart:before {
  content: "\e9e4";
}

.icon-film1:before {
  content: "\e9e5";
}

.icon-home9:before {
  content: "\e9e6";
}

.icon-cloud:before {
  content: "\e97f";
}

.icon-chart:before {
  content: "\e980";
}

.icon-file:before {
  content: "\e981";
}

.icon-picture:before {
  content: "\e982";
}

.icon-camera2:before {
  content: "\e983";
}

.icon-search1:before {
  content: "\e984";
}

.icon-dribbble1:before {
  content: "\e985";
}

.icon-play1:before {
  content: "\e986";
}

.icon-pause1:before {
  content: "\e987";
}

.icon-home6:before {
  content: "\e988";
}

.icon-earth:before {
  content: "\e989";
}

.icon-location1:before {
  content: "\e98a";
}

.icon-headphones1:before {
  content: "\e98b";
}

.icon-checkmark:before {
  content: "\e98c";
}

.icon-cancel1:before {
  content: "\e98d";
}

.icon-gift1:before {
  content: "\e98e";
}

.icon-coffee2:before {
  content: "\e98f";
}

.icon-compass1:before {
  content: "\e990";
}

.icon-forward:before {
  content: "\e991";
}

.icon-camera3:before {
  content: "\e992";
}

.icon-sunrise:before {
  content: "\e993";
}

.icon-sun:before {
  content: "\e994";
}

.icon-moon:before {
  content: "\e995";
}

.icon-sun1:before {
  content: "\e996";
}

.icon-snowflake:before {
  content: "\e997";
}

.icon-cloudy:before {
  content: "\e998";
}

.icon-cloud1:before {
  content: "\e999";
}

.icon-weather:before {
  content: "\e99a";
}

.icon-weather1:before {
  content: "\e99b";
}

.icon-weather2:before {
  content: "\e99c";
}

.icon-lines:before {
  content: "\e99d";
}

.icon-cloud2:before {
  content: "\e99e";
}

.icon-lightning:before {
  content: "\e99f";
}

.icon-lightning1:before {
  content: "\e9a5";
}

.icon-rainy:before {
  content: "\e9a6";
}

.icon-rainy1:before {
  content: "\e9a7";
}

.icon-windy:before {
  content: "\e9a8";
}

.icon-windy1:before {
  content: "\e9a9";
}

.icon-snowy:before {
  content: "\e9aa";
}

.icon-snowy1:before {
  content: "\e9ab";
}

.icon-snowy2:before {
  content: "\e9ac";
}

.icon-weather3:before {
  content: "\e9ad";
}

.icon-cloudy1:before {
  content: "\e9ae";
}

.icon-cloud3:before {
  content: "\e9af";
}

.icon-lightning2:before {
  content: "\e9b0";
}

.icon-sun2:before {
  content: "\e9b1";
}

.icon-moon1:before {
  content: "\e9b2";
}

.icon-cloudy2:before {
  content: "\e9b3";
}

.icon-cloud4:before {
  content: "\e9b4";
}

.icon-cloud5:before {
  content: "\e9b5";
}

.icon-lightning3:before {
  content: "\e9b6";
}

.icon-rainy2:before {
  content: "\e9b7";
}

.icon-rainy3:before {
  content: "\e9b8";
}

.icon-windy2:before {
  content: "\e9b9";
}

.icon-windy3:before {
  content: "\e9ba";
}

.icon-snowy3:before {
  content: "\e9bb";
}

.icon-snowy4:before {
  content: "\e9bc";
}

.icon-weather4:before {
  content: "\e9bd";
}

.icon-cloudy3:before {
  content: "\e9be";
}

.icon-lightning4:before {
  content: "\e9bf";
}

.icon-compass2:before {
  content: "\e9c0";
}

.icon-Celsius:before {
  content: "\e9c1";
}

.icon-Fahrenheit:before {
  content: "\e9c2";
}

.icon-out:before {
  content: "\e9c3";
}

.icon-in:before {
  content: "\e9c4";
}

.icon-in-alt:before {
  content: "\e9c5";
}

.icon-home7:before {
  content: "\e9c6";
}

.icon-feather:before {
  content: "\e9c7";
}

.icon-expand:before {
  content: "\e9c8";
}

.icon-maximize:before {
  content: "\e9ca";
}

.icon-search2:before {
  content: "\e9cb";
}

.icon-zoomin:before {
  content: "\e9cc";
}

.icon-zoomout:before {
  content: "\e9cd";
}

.icon-add:before {
  content: "\e9ce";
}

.icon-subtract:before {
  content: "\e9cf";
}

.icon-forward1:before {
  content: "\e9d0";
}

.icon-rewind:before {
  content: "\e9d1";
}

.icon-clock:before {
  content: "\e9d2";
}

.icon-comments1:before {
  content: "\e9d3";
}

.icon-forkandspoon:before {
  content: "\e9d4";
}

.icon-forkandknife:before {
  content: "\e9d5";
}

.icon-dribbble2:before {
  content: "\e9d6";
}

.icon-pin:before {
  content: "\e9d7";
}

.icon-pin-alt:before {
  content: "\e9d8";
}

.icon-camera4:before {
  content: "\e9d9";
}

.icon-brightness:before {
  content: "\e9da";
}

.icon-brightness-half:before {
  content: "\e9db";
}

.icon-moon2:before {
  content: "\e9dc";
}

.icon-add1:before {
  content: "\e9dd";
}

.icon-home8:before {
  content: "\e9de";
}

.icon-camera10:before {
  content: "\eaa2";
}

.icon-home:before {
  content: "\e900";
}

.icon-home2:before {
  content: "\e901";
}

.icon-home3:before {
  content: "\e902";
}

.icon-office:before {
  content: "\e903";
}

.icon-play:before {
  content: "\e912";
}

.icon-library:before {
  content: "\e921";
}

.icon-lifebuoy:before {
  content: "\e941";
}

.icon-phone:before {
  content: "\e942";
}

.icon-phone-hang-up:before {
  content: "\e943";
}

.icon-envelop:before {
  content: "\e945";
}

.icon-location:before {
  content: "\e947";
}

.icon-location2:before {
  content: "\e948";
}

.icon-compass:before {
  content: "\e949";
}

.icon-mobile:before {
  content: "\e958";
}

.icon-mobile2:before {
  content: "\e959";
}

.icon-download:before {
  content: "\e960";
}

.icon-undo:before {
  content: "\e965";
}

.icon-redo:before {
  content: "\e966";
}

.icon-undo2:before {
  content: "\e967";
}

.icon-redo2:before {
  content: "\e968";
}

.icon-bubble:before {
  content: "\e96b";
}

.icon-bubble2:before {
  content: "\e96e";
}

.icon-user:before {
  content: "\e971";
}

.icon-glass:before {
  content: "\e9a0";
}

.icon-glass2:before {
  content: "\e9a1";
}

.icon-mug:before {
  content: "\e9a2";
}

.icon-spoon-knife:before {
  content: "\e9a3";
}

.icon-leaf:before {
  content: "\e9a4";
}

.icon-sphere:before {
  content: "\e9c9";
}

.icon-plus:before {
  content: "\ea0a";
}

.icon-minus:before {
  content: "\ea0b";
}

.icon-cancel-circle:before {
  content: "\ea0d";
}

.icon-play2:before {
  content: "\ea15";
}

.icon-pause:before {
  content: "\ea16";
}

.icon-stop:before {
  content: "\ea17";
}

.icon-previous:before {
  content: "\ea18";
}

.icon-next:before {
  content: "\ea19";
}

.icon-backward:before {
  content: "\ea1a";
}

.icon-forward2:before {
  content: "\ea1b";
}

.icon-play3:before {
  content: "\ea1c";
}

.icon-arrow-up:before {
  content: "\ea32";
}

.icon-arrow-right:before {
  content: "\ea34";
}

.icon-arrow-down:before {
  content: "\ea36";
}

.icon-arrow-left:before {
  content: "\ea38";
}

.icon-arrow-up2:before {
  content: "\ea3a";
}

.icon-arrow-right2:before {
  content: "\ea3c";
}

.icon-arrow-down2:before {
  content: "\ea3e";
}

.icon-arrow-left2:before {
  content: "\ea40";
}

.icon-circle-up:before {
  content: "\ea41";
}

.icon-circle-right:before {
  content: "\ea42";
}

.icon-circle-down:before {
  content: "\ea43";
}

.icon-circle-left:before {
  content: "\ea44";
}

.icon-paragraph-left:before {
  content: "\ea77";
}

.icon-paragraph-center:before {
  content: "\ea78";
}

.icon-paragraph-right:before {
  content: "\ea79";
}

.icon-paragraph-justify:before {
  content: "\ea7a";
}

.icon-indent-increase:before {
  content: "\ea7b";
}

.icon-indent-decrease:before {
  content: "\ea7c";
}

.icon-embed:before {
  content: "\ea7f";
}

.icon-embed2:before {
  content: "\ea80";
}

.icon-share2:before {
  content: "\ea82";
}

.icon-mail:before {
  content: "\ea83";
}

.icon-mail2:before {
  content: "\ea84";
}

.icon-mail4:before {
  content: "\ea86";
}

.icon-google:before {
  content: "\ea88";
}

.icon-google2:before {
  content: "\ea89";
}

.icon-google3:before {
  content: "\ea8a";
}

.icon-google-plus:before {
  content: "\ea8b";
}

.icon-google-plus2:before {
  content: "\ea8c";
}

.icon-google-plus3:before {
  content: "\ea8d";
}

.icon-google-drive:before {
  content: "\ea8f";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-facebook2:before {
  content: "\ea91";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-whatsapp:before {
  content: "\ea93";
}

.icon-spotify:before {
  content: "\ea94";
}

.icon-telegram:before {
  content: "\ea95";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-rss:before {
  content: "\ea9b";
}

.icon-rss2:before {
  content: "\ea9c";
}

.icon-youtube2:before {
  content: "\ea9e";
}

.icon-dribbble:before {
  content: "\eaa7";
}

.icon-file-pdf:before {
  content: "\eadf";
}

.icon-plus1:before {
  content: "\f067";
}

.icon-glass1:before {
  content: "\f000";
}

.icon-music:before {
  content: "\f001";
}

.icon-search:before {
  content: "\f002";
}

.icon-envelope-o:before {
  content: "\f003";
}

.icon-user1:before {
  content: "\f007";
}

.icon-film:before {
  content: "\f008";
}

.icon-check:before {
  content: "\f00c";
}

.icon-close:before {
  content: "\f00d";
}

.icon-remove:before {
  content: "\f00d";
}

.icon-times:before {
  content: "\f00d";
}

.icon-search-plus:before {
  content: "\f00e";
}

.icon-search-minus:before {
  content: "\f010";
}

.icon-power-off:before {
  content: "\f011";
}

.icon-signal:before {
  content: "\f012";
}

.icon-cog:before {
  content: "\f013";
}

.icon-gear:before {
  content: "\f013";
}

.icon-trash-o:before {
  content: "\f014";
}

.icon-home1:before {
  content: "\f015";
}

.icon-file-o:before {
  content: "\f016";
}

.icon-road:before {
  content: "\f018";
}

.icon-play-circle-o:before {
  content: "\f01d";
}

.icon-flag:before {
  content: "\f024";
}

.icon-headphones:before {
  content: "\f025";
}

.icon-camera:before {
  content: "\f030";
}

.icon-align-left:before {
  content: "\f036";
}

.icon-align-center:before {
  content: "\f037";
}

.icon-align-right:before {
  content: "\f038";
}

.icon-align-justify:before {
  content: "\f039";
}

.icon-list:before {
  content: "\f03a";
}

.icon-dedent:before {
  content: "\f03b";
}

.icon-outdent:before {
  content: "\f03b";
}

.icon-indent:before {
  content: "\f03c";
}

.icon-video-camera:before {
  content: "\f03d";
}

.icon-image:before {
  content: "\f03e";
}

.icon-photo:before {
  content: "\f03e";
}

.icon-picture-o:before {
  content: "\f03e";
}

.icon-map-marker:before {
  content: "\f041";
}

.icon-tint:before {
  content: "\f043";
}

.icon-chevron-left:before {
  content: "\f053";
}

.icon-chevron-right:before {
  content: "\f054";
}

.icon-arrow-left1:before {
  content: "\f060";
}

.icon-arrow-right1:before {
  content: "\f061";
}

.icon-arrow-up1:before {
  content: "\f062";
}

.icon-arrow-down1:before {
  content: "\f063";
}

.icon-mail-forward:before {
  content: "\f064";
}

.icon-share:before {
  content: "\f064";
}

.icon-gift:before {
  content: "\f06b";
}

.icon-leaf1:before {
  content: "\f06c";
}

.icon-plane:before {
  content: "\f072";
}

.icon-calendar:before {
  content: "\f073";
}

.icon-shopping-cart:before {
  content: "\f07a";
}

.icon-twitter-square:before {
  content: "\f081";
}

.icon-facebook-square:before {
  content: "\f082";
}

.icon-camera-retro:before {
  content: "\f083";
}

.icon-comments:before {
  content: "\f086";
}

.icon-linkedin-square:before {
  content: "\f08c";
}

.icon-phone1:before {
  content: "\f095";
}

.icon-phone-square:before {
  content: "\f098";
}

.icon-twitter1:before {
  content: "\f099";
}

.icon-facebook1:before {
  content: "\f09a";
}

.icon-facebook-f:before {
  content: "\f09a";
}

.icon-github:before {
  content: "\f09b";
}

.icon-credit-card:before {
  content: "\f09d";
}

.icon-arrow-circle-left:before {
  content: "\f0a8";
}

.icon-arrow-circle-right:before {
  content: "\f0a9";
}

.icon-arrow-circle-up:before {
  content: "\f0aa";
}

.icon-arrow-circle-down:before {
  content: "\f0ab";
}

.icon-globe:before {
  content: "\f0ac";
}

.icon-cut:before {
  content: "\f0c4";
}

.icon-scissors:before {
  content: "\f0c4";
}

.icon-paperclip:before {
  content: "\f0c6";
}

.icon-bars:before {
  content: "\f0c9";
}

.icon-navicon:before {
  content: "\f0c9";
}

.icon-reorder:before {
  content: "\f0c9";
}

.icon-truck:before {
  content: "\f0d1";
}

.icon-pinterest:before {
  content: "\f0d2";
}

.icon-google-plus-square:before {
  content: "\f0d4";
}

.icon-caret-down:before {
  content: "\f0d7";
}

.icon-caret-up:before {
  content: "\f0d8";
}

.icon-caret-left:before {
  content: "\f0d9";
}

.icon-caret-right:before {
  content: "\f0da";
}

.icon-sort-desc:before {
  content: "\f0dd";
}

.icon-sort-down:before {
  content: "\f0dd";
}

.icon-sort-asc:before {
  content: "\f0de";
}

.icon-sort-up:before {
  content: "\f0de";
}

.icon-envelope:before {
  content: "\f0e0";
}

.icon-linkedin:before {
  content: "\f0e1";
}

.icon-comment-o:before {
  content: "\f0e5";
}

.icon-umbrella:before {
  content: "\f0e9";
}

.icon-user-md:before {
  content: "\f0f0";
}

.icon-stethoscope:before {
  content: "\f0f1";
}

.icon-coffee:before {
  content: "\f0f4";
}

.icon-building-o:before {
  content: "\f0f7";
}

.icon-hospital-o:before {
  content: "\f0f8";
}

.icon-ambulance:before {
  content: "\f0f9";
}

.icon-medkit:before {
  content: "\f0fa";
}

.icon-plus-square:before {
  content: "\f0fe";
}

.icon-mobile1:before {
  content: "\f10b";
}

.icon-mobile-phone:before {
  content: "\f10b";
}

.icon-quote-left:before {
  content: "\f10d";
}

.icon-quote-right:before {
  content: "\f10e";
}

.icon-spinner:before {
  content: "\f110";
}

.icon-mail-reply:before {
  content: "\f112";
}

.icon-reply:before {
  content: "\f112";
}

.icon-gamepad:before {
  content: "\f11b";
}

.icon-flag-o:before {
  content: "\f11d";
}

.icon-flag-checkered:before {
  content: "\f11e";
}

.icon-chevron-circle-left:before {
  content: "\f137";
}

.icon-chevron-circle-right:before {
  content: "\f138";
}

.icon-chevron-circle-up:before {
  content: "\f139";
}

.icon-chevron-circle-down:before {
  content: "\f13a";
}

.icon-share-square:before {
  content: "\f14d";
}

.icon-youtube-square:before {
  content: "\f166";
}

.icon-youtube:before {
  content: "\f167";
}

.icon-instagram1:before {
  content: "\f16d";
}

.icon-long-arrow-left:before {
  content: "\f177";
}

.icon-long-arrow-right:before {
  content: "\f178";
}

.icon-sun-o:before {
  content: "\f185";
}

.icon-moon-o:before {
  content: "\f186";
}

.icon-pagelines:before {
  content: "\f18c";
}

.icon-arrow-circle-o-right:before {
  content: "\f18e";
}

.icon-arrow-circle-o-left:before {
  content: "\f190";
}

.icon-graduation-cap:before {
  content: "\f19d";
}

.icon-mortar-board:before {
  content: "\f19d";
}

.icon-fax:before {
  content: "\f1ac";
}

.icon-building:before {
  content: "\f1ad";
}

.icon-automobile:before {
  content: "\f1b9";
}

.icon-car:before {
  content: "\f1b9";
}

.icon-tree:before {
  content: "\f1bb";
}

.icon-file-pdf-o:before {
  content: "\f1c1";
}

.icon-paper-plane:before {
  content: "\f1d8";
}

.icon-send:before {
  content: "\f1d8";
}

.icon-paper-plane-o:before {
  content: "\f1d9";
}

.icon-send-o:before {
  content: "\f1d9";
}

.icon-cart-plus:before {
  content: "\f217";
}

.icon-cart-arrow-down:before {
  content: "\f218";
}

.icon-facebook-official:before {
  content: "\f230";
}

.icon-whatsapp1:before {
  content: "\f232";
}

.icon-map-signs:before {
  content: "\f277";
}

.icon-map-o:before {
  content: "\f278";
}

.icon-map:before {
  content: "\f279";
}

.icon-commenting:before {
  content: "\f27a";
}

.icon-commenting-o:before {
  content: "\f27b";
}

.icon-credit-card-alt:before {
  content: "\f283";
}

.icon-shopping-bag:before {
  content: "\f290";
}

.icon-shopping-basket:before {
  content: "\f291";
}

.icon-envira:before {
  content: "\f299";
}

.icon-volume-control-phone:before {
  content: "\f2a0";
}



.simple-navbar,
.responsive-navbar,
.simple-navbar-fixed {
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.simple-navbar .navbar-content,
.responsive-navbar .navbar-content,
.simple-navbar-fixed .navbar-content,
.simple-navbar .navbar-content-centered,
.responsive-navbar .navbar-content-centered,
.simple-navbar-fixed .navbar-content-centered {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.simple-navbar .navbar-content .nav-logo,
.responsive-navbar .navbar-content .nav-logo,
.simple-navbar-fixed .navbar-content .nav-logo,
.simple-navbar .navbar-content-centered .nav-logo,
.responsive-navbar .navbar-content-centered .nav-logo,
.simple-navbar-fixed .navbar-content-centered .nav-logo {
  width: 16rem;
}

.simple-navbar .navbar-content-centered,
.responsive-navbar .navbar-content-centered,
.simple-navbar-fixed .navbar-content-centered {
  justify-content: center;
}

.simple-navbar-fixed {
  width: 100%;
}

.responsive-navbar {
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 9;
  width: 100%;
}

.responsive-navbar .navbar-content,
.responsive-navbar .navbar-content-centered {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.responsive-navbar .navbar-content .nav-logo,
.responsive-navbar .navbar-content-centered .nav-logo {
  width: 6rem;
}

.responsive-navbar .navbar-content-centered {
  justify-content: center;
}

.responsive-navbar .nav-links a {
  margin-right: 1rem;
}

.responsive-navbar .nav-links a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

.responsive-navbar .nav-links .nav-link {
  margin-left: 1rem;
}

.form {
  width: 100%;
  padding: 1rem;
}

.form .form-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.form .form-input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
}

.form .form-phone-group {
  display: flex;
}

.form .form-phone-group select {
  margin-right: 1rem;
}

.form button {
  width: 100%;
}

.form ::-moz-placeholder {
  font-size: 1.5rem;
}

.form :-ms-input-placeholder {
  font-size: 1.5rem;
}

.form ::placeholder {
  font-size: 1.5rem;
}

.form .form-input {
  border: 0.01rem solid #ccc;
  outline: none;
}

.form-border-bottom {
  width: 100%;
  padding: 1rem;
}

.form-border-bottom .form-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.form-border-bottom .form-input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
}

.form-border-bottom .form-phone-group {
  display: flex;
}

.form-border-bottom .form-phone-group select {
  margin-right: 1rem;
}

.form-border-bottom button {
  width: 100%;
}

.form-border-bottom ::-moz-placeholder {
  font-size: 1.5rem;
}

.form-border-bottom :-ms-input-placeholder {
  font-size: 1.5rem;
}

.form-border-bottom ::placeholder {
  font-size: 1.5rem;
}

.form-border-bottom .form-input {
  border-radius: 0;
  border: none;
  border-bottom: 0.01rem solid #ccc;
  outline: none;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99;
  cursor: pointer;
}

.btn.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(75, 79, 80, 0.4588235294);
}

.btn.overlay .btn.center-align {
  transition: 0.5s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.card-plain {
  position: relative;
  display: block;
  padding: 1rem;
  border-radius: 0;
  border: 0.01rem solid #ddd;
}

.card-plain p,
.card-plain h1,
.card-plain h2,
.card-plain h3,
.card-plain h4,
.card-plain h5,
.card-plain h6 {
  margin-bottom: 1rem;
}

.card-plain .card-img {
  margin-bottom: 1rem;
}

.card-plain .card-img img {
  border-radius: 0.5rem;
}

.card-plain .card-icon-round {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto;
  margin-top: -2.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.card-plain .card-title {
  font-size: 1.5rem;
  padding-bottom: 1rem 0;
  font-weight: bold;
}

.card-plain .card-body {
  font-size: 1.5rem;
}

.card-plain .card-body a {
  text-decoration: underline;
}

.card-plain .card-body button {
  width: 100%;
}

.card {
  position: relative;
  display: block;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.card p,
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
  margin-bottom: 1rem;
}

.card .card-img {
  margin-bottom: 1rem;
}

.card .card-img img {
  border-radius: 0.5rem;
}

.card .card-icon-round {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto;
  margin-top: -2.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.card .card-title {
  font-size: 1.5rem;
  padding-bottom: 1rem 0;
  font-weight: bold;
}

.card .card-body {
  font-size: 1.5rem;
}

.card .card-body a {
  text-decoration: underline;
}

.card .card-body button {
  width: 100%;
}

.card .card-title {
  margin-bottom: 1rem;
}

.card .card-content {
  font-size: 1.5rem;
}

.card-colored {
  position: relative;
  display: block;
  padding: 1rem;
  text-align: center;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.card-colored p,
.card-colored h1,
.card-colored h2,
.card-colored h3,
.card-colored h4,
.card-colored h5,
.card-colored h6 {
  margin-bottom: 1rem;
}

.card-colored .card-img {
  margin-bottom: 1rem;
}

.card-colored .card-img img {
  border-radius: 0.5rem;
}

.card-colored .card-icon-round {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto;
  margin-top: -2.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.card-colored .card-title {
  font-size: 1.5rem;
  padding-bottom: 1rem 0;
  font-weight: bold;
}

.card-colored .card-body {
  font-size: 1.5rem;
}

.card-colored .card-body a {
  text-decoration: underline;
}

.card-colored .card-body button {
  width: 100%;
}

.card-colored hr {
  margin: 1rem 0;
}

.btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #eee;
}

.btn-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #326dee;
}

.btn-primary:hover {
  background-color: #4a7ef0;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #326dee;
  border-radius: 2.5rem;
}

.btn-rounded-primary:hover {
  background-color: #4a7ef0;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #326dee;
  border-radius: 0;
}

.btn-sharp-primary:hover {
  background-color: #4a7ef0;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #326dee;
}

.btn-outlined-primary:hover {
  background-color: #326dee;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #326dee;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-primary:hover {
  background-color: #326dee;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #326dee;
  border-radius: 0;
}

.btn-sharp-outlined-primary:hover {
  background-color: #326dee;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #fae7bf;
}

.btn-complement-primary:hover {
  color: #fae7bf;
  background-color: #326dee;
  transition: 0.3s ease;
}

.btn-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #1ac888;
}

.btn-secondary:hover {
  background-color: #1ddf97;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #1ac888;
  border-radius: 2.5rem;
}

.btn-rounded-secondary:hover {
  background-color: #1ddf97;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #1ac888;
  border-radius: 0;
}

.btn-sharp-secondary:hover {
  background-color: #1ddf97;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #1ac888;
}

.btn-outlined-secondary:hover {
  background-color: #1ac888;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #1ac888;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-secondary:hover {
  background-color: #1ac888;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #1ac888;
  border-radius: 0;
}

.btn-sharp-outlined-secondary:hover {
  background-color: #1ac888;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #f08bb0;
}

.btn-complement-secondary:hover {
  color: #f08bb0;
  background-color: #1ac888;
  transition: 0.3s ease;
}

.btn-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #d32752;
}

.btn-error:hover {
  background-color: #da3961;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #d32752;
  border-radius: 2.5rem;
}

.btn-rounded-error:hover {
  background-color: #da3961;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #d32752;
  border-radius: 0;
}

.btn-sharp-error:hover {
  background-color: #da3961;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #d32752;
}

.btn-outlined-error:hover {
  background-color: #d32752;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #d32752;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-error:hover {
  background-color: #d32752;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #d32752;
  border-radius: 0;
}

.btn-sharp-outlined-error:hover {
  background-color: #d32752;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #a5eedc;
}

.btn-complement-error:hover {
  color: #a5eedc;
  background-color: #d32752;
  transition: 0.3s ease;
}

.btn-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #f6c31c;
}

.btn-info:hover {
  background-color: #f7c935;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #f6c31c;
  border-radius: 2.5rem;
}

.btn-rounded-info:hover {
  background-color: #f7c935;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #f6c31c;
  border-radius: 0;
}

.btn-sharp-info:hover {
  background-color: #f7c935;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #f6c31c;
}

.btn-outlined-info:hover {
  background-color: #f6c31c;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #f6c31c;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-info:hover {
  background-color: #f6c31c;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #f6c31c;
  border-radius: 0;
}

.btn-sharp-outlined-info:hover {
  background-color: #f6c31c;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #afc1fc;
}

.btn-complement-info:hover {
  color: #afc1fc;
  background-color: #f6c31c;
  transition: 0.3s ease;
}

.btn-blue {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #1919e6;
}

.btn-blue:hover {
  background-color: #3030e9;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-blue {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #1919e6;
  border-radius: 2.5rem;
}

.btn-rounded-blue:hover {
  background-color: #3030e9;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-blue {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #1919e6;
  border-radius: 0;
}

.btn-sharp-blue:hover {
  background-color: #3030e9;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-blue {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #1919e6;
}

.btn-outlined-blue:hover {
  background-color: #1919e6;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-blue {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #1919e6;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-blue:hover {
  background-color: #1919e6;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-blue {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #1919e6;
  border-radius: 0;
}

.btn-sharp-outlined-blue:hover {
  background-color: #1919e6;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-blue {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #f5f5a3;
}

.btn-complement-blue:hover {
  color: #f5f5a3;
  background-color: #1919e6;
  transition: 0.3s ease;
}

.btn-red {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #e61919;
}

.btn-red:hover {
  background-color: #e93030;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-red {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #e61919;
  border-radius: 2.5rem;
}

.btn-rounded-red:hover {
  background-color: #e93030;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-red {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #e61919;
  border-radius: 0;
}

.btn-sharp-red:hover {
  background-color: #e93030;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-red {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #e61919;
}

.btn-outlined-red:hover {
  background-color: #e61919;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-red {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #e61919;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-red:hover {
  background-color: #e61919;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-red {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #e61919;
  border-radius: 0;
}

.btn-sharp-outlined-red:hover {
  background-color: #e61919;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-red {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #a3f5f5;
}

.btn-complement-red:hover {
  color: #a3f5f5;
  background-color: #e61919;
  transition: 0.3s ease;
}

.btn-yellow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #e6e619;
}

.btn-yellow:hover {
  background-color: #e9e930;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-yellow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #e6e619;
  border-radius: 2.5rem;
}

.btn-rounded-yellow:hover {
  background-color: #e9e930;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-yellow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #e6e619;
  border-radius: 0;
}

.btn-sharp-yellow:hover {
  background-color: #e9e930;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-yellow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #e6e619;
}

.btn-outlined-yellow:hover {
  background-color: #e6e619;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-yellow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #e6e619;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-yellow:hover {
  background-color: #e6e619;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-yellow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #e6e619;
  border-radius: 0;
}

.btn-sharp-outlined-yellow:hover {
  background-color: #e6e619;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-yellow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #a3a3f5;
}

.btn-complement-yellow:hover {
  color: #a3a3f5;
  background-color: #e6e619;
  transition: 0.3s ease;
}

.btn-green {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #19e635;
}

.btn-green:hover {
  background-color: #30e949;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-green {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #19e635;
  border-radius: 2.5rem;
}

.btn-rounded-green:hover {
  background-color: #30e949;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-green {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #19e635;
  border-radius: 0;
}

.btn-sharp-green:hover {
  background-color: #30e949;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-green {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #19e635;
}

.btn-outlined-green:hover {
  background-color: #19e635;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-green {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #19e635;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-green:hover {
  background-color: #19e635;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-green {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #19e635;
  border-radius: 0;
}

.btn-sharp-outlined-green:hover {
  background-color: #19e635;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-green {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #f5a3ea;
}

.btn-complement-green:hover {
  color: #f5a3ea;
  background-color: #19e635;
  transition: 0.3s ease;
}

.btn-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #ffa600;
}

.btn-orange:hover {
  background-color: #ffaf1a;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #ffa600;
  border-radius: 2.5rem;
}

.btn-rounded-orange:hover {
  background-color: #ffaf1a;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #ffa600;
  border-radius: 0;
}

.btn-sharp-orange:hover {
  background-color: #ffaf1a;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #ffa600;
}

.btn-outlined-orange:hover {
  background-color: #ffa600;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #ffa600;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-orange:hover {
  background-color: #ffa600;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #ffa600;
  border-radius: 0;
}

.btn-sharp-outlined-orange:hover {
  background-color: #ffa600;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #99bdff;
}

.btn-complement-orange:hover {
  color: #99bdff;
  background-color: #ffa600;
  transition: 0.3s ease;
}

.btn-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #9900ff;
}

.btn-purple:hover {
  background-color: #a31aff;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #9900ff;
  border-radius: 2.5rem;
}

.btn-rounded-purple:hover {
  background-color: #a31aff;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #9900ff;
  border-radius: 0;
}

.btn-sharp-purple:hover {
  background-color: #a31aff;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #9900ff;
}

.btn-outlined-purple:hover {
  background-color: #9900ff;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #9900ff;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-purple:hover {
  background-color: #9900ff;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #9900ff;
  border-radius: 0;
}

.btn-sharp-outlined-purple:hover {
  background-color: #9900ff;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #c2ff99;
}

.btn-complement-purple:hover {
  color: #c2ff99;
  background-color: #9900ff;
  transition: 0.3s ease;
}

.btn-gray {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #808080;
}

.btn-gray:hover {
  background-color: #8d8d8d;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-gray {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #808080;
  border-radius: 2.5rem;
}

.btn-rounded-gray:hover {
  background-color: #8d8d8d;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-gray {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #808080;
  border-radius: 0;
}

.btn-sharp-gray:hover {
  background-color: #8d8d8d;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-gray {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #808080;
}

.btn-outlined-gray:hover {
  background-color: #808080;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-gray {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #808080;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-gray:hover {
  background-color: #808080;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-gray {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid #808080;
  border-radius: 0;
}

.btn-sharp-outlined-gray:hover {
  background-color: #808080;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-gray {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #cdcdcd;
}

.btn-complement-gray:hover {
  color: #cdcdcd;
  background-color: #808080;
  transition: 0.3s ease;
}

.btn-black {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: black;
}

.btn-black:hover {
  background-color: #0d0d0d;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-black {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: black;
  border-radius: 2.5rem;
}

.btn-rounded-black:hover {
  background-color: #0d0d0d;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-black {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: black;
  border-radius: 0;
}

.btn-sharp-black:hover {
  background-color: #0d0d0d;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-black {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid black;
}

.btn-outlined-black:hover {
  background-color: black;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-black {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid black;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-black:hover {
  background-color: black;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-black {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid black;
  border-radius: 0;
}

.btn-sharp-outlined-black:hover {
  background-color: black;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-black {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: #4d4d4d;
}

.btn-complement-black:hover {
  color: #4d4d4d;
  background-color: black;
  transition: 0.3s ease;
}

.btn-white {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: white;
}

.btn-white:hover {
  background-color: white;
  color: #fff;
  transition: 0.3s ease;
}

.btn-rounded-white {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: white;
  border-radius: 2.5rem;
}

.btn-rounded-white:hover {
  background-color: white;
  color: #fff;
  transition: 0.3s ease;
}

.btn-sharp-white {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: white;
  border-radius: 0;
}

.btn-sharp-white:hover {
  background-color: white;
  color: #fff;
  transition: 0.3s ease;
}

.btn-outlined-white {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid white;
}

.btn-outlined-white:hover {
  background-color: white;
  color: white;
  transition: 0.3s ease;
}

.btn-rounded-outlined-white {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid white;
  border-radius: 2.5rem;
}

.btn-rounded-outlined-white:hover {
  background-color: white;
  color: white;
  transition: 0.3s ease;
}

.btn-sharp-outlined-white {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 0.01rem solid white;
  border-radius: 0;
}

.btn-sharp-outlined-white:hover {
  background-color: white;
  color: white;
  transition: 0.3s ease;
}

.btn-complement-white {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  background-color: white;
}

.btn-complement-white:hover {
  color: white;
  background-color: white;
  transition: 0.3s ease;
}

.toggle-right {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}

.toggle-left {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  justify-content: flex-start;
}

.toggle-right-primary {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #4a7ef0;
}

.toggle-left-primary {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #4a7ef0;
  justify-content: flex-start;
}

.toggle-right-secondary {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #1ddf97;
}

.toggle-left-secondary {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #1ddf97;
  justify-content: flex-start;
}

.toggle-right-error {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #da3961;
}

.toggle-left-error {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #da3961;
  justify-content: flex-start;
}

.toggle-right-info {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #f7c935;
}

.toggle-left-info {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #f7c935;
  justify-content: flex-start;
}

.toggle-right-blue {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #3030e9;
}

.toggle-left-blue {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #3030e9;
  justify-content: flex-start;
}

.toggle-right-red {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #e93030;
}

.toggle-left-red {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #e93030;
  justify-content: flex-start;
}

.toggle-right-yellow {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #e9e930;
}

.toggle-left-yellow {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #e9e930;
  justify-content: flex-start;
}

.toggle-right-green {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #30e949;
}

.toggle-left-green {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #30e949;
  justify-content: flex-start;
}

.toggle-right-orange {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #ffaf1a;
}

.toggle-left-orange {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #ffaf1a;
  justify-content: flex-start;
}

.toggle-right-purple {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #a31aff;
}

.toggle-left-purple {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #a31aff;
  justify-content: flex-start;
}

.toggle-right-gray {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #8d8d8d;
}

.toggle-left-gray {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #8d8d8d;
  justify-content: flex-start;
}

.toggle-right-black {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #0d0d0d;
}

.toggle-left-black {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: #0d0d0d;
  justify-content: flex-start;
}

.toggle-right-white {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: white;
}

.toggle-left-white {
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  color: white;
  justify-content: flex-start;
}

.sidenav-right {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
}

.sidenav-right a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right a:hover {
  color: #ddd;
}

.sidenav-right .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
}

.sidenav-left a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left a:hover {
  color: #ddd;
}

.sidenav-left .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-light {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #fff;
}

.sidenav-right-light a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-light a:hover {
  color: #ddd;
}

.sidenav-right-light .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-light a {
  color: #000;
}

.sidenav-left-light {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #fff;
}

.sidenav-left-light a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-light a:hover {
  color: #ddd;
}

.sidenav-left-light .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-light a {
  color: #000;
}

.sidenav-right-dark {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #000;
}

.sidenav-right-dark a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-dark a:hover {
  color: #ddd;
}

.sidenav-right-dark .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-dark a {
  color: #fff;
  border-bottom: 0.01rem solid rgba(233, 233, 230, 0.4901960784);
}

.sidenav-left-dark {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #000;
}

.sidenav-left-dark a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-dark a:hover {
  color: #ddd;
}

.sidenav-left-dark .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-dark a {
  color: #fff;
  border-bottom: 0.01rem solid rgba(233, 233, 230, 0.4901960784);
}

.sidenav-right-primary {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #4a7ef0;
}

.sidenav-right-primary a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-primary a:hover {
  color: #ddd;
}

.sidenav-right-primary .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-primary {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #4a7ef0;
}

.sidenav-left-primary a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-primary a:hover {
  color: #ddd;
}

.sidenav-left-primary .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-secondary {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #1ddf97;
}

.sidenav-right-secondary a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-secondary a:hover {
  color: #ddd;
}

.sidenav-right-secondary .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-secondary {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #1ddf97;
}

.sidenav-left-secondary a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-secondary a:hover {
  color: #ddd;
}

.sidenav-left-secondary .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-error {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #da3961;
}

.sidenav-right-error a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-error a:hover {
  color: #ddd;
}

.sidenav-right-error .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-error {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #da3961;
}

.sidenav-left-error a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-error a:hover {
  color: #ddd;
}

.sidenav-left-error .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-info {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #f7c935;
}

.sidenav-right-info a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-info a:hover {
  color: #ddd;
}

.sidenav-right-info .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-info {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #f7c935;
}

.sidenav-left-info a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-info a:hover {
  color: #ddd;
}

.sidenav-left-info .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-blue {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #3030e9;
}

.sidenav-right-blue a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-blue a:hover {
  color: #ddd;
}

.sidenav-right-blue .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-blue {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #3030e9;
}

.sidenav-left-blue a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-blue a:hover {
  color: #ddd;
}

.sidenav-left-blue .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-red {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #e93030;
}

.sidenav-right-red a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-red a:hover {
  color: #ddd;
}

.sidenav-right-red .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-red {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #e93030;
}

.sidenav-left-red a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-red a:hover {
  color: #ddd;
}

.sidenav-left-red .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-yellow {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #e9e930;
}

.sidenav-right-yellow a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-yellow a:hover {
  color: #ddd;
}

.sidenav-right-yellow .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-yellow {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #e9e930;
}

.sidenav-left-yellow a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-yellow a:hover {
  color: #ddd;
}

.sidenav-left-yellow .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-green {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #30e949;
}

.sidenav-right-green a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-green a:hover {
  color: #ddd;
}

.sidenav-right-green .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-green {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #30e949;
}

.sidenav-left-green a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-green a:hover {
  color: #ddd;
}

.sidenav-left-green .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-orange {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #ffaf1a;
}

.sidenav-right-orange a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-orange a:hover {
  color: #ddd;
}

.sidenav-right-orange .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-orange {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #ffaf1a;
}

.sidenav-left-orange a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-orange a:hover {
  color: #ddd;
}

.sidenav-left-orange .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-purple {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #a31aff;
}

.sidenav-right-purple a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-purple a:hover {
  color: #ddd;
}

.sidenav-right-purple .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-purple {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #a31aff;
}

.sidenav-left-purple a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-purple a:hover {
  color: #ddd;
}

.sidenav-left-purple .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-gray {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #8d8d8d;
}

.sidenav-right-gray a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-gray a:hover {
  color: #ddd;
}

.sidenav-right-gray .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-gray {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #8d8d8d;
}

.sidenav-left-gray a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-gray a:hover {
  color: #ddd;
}

.sidenav-left-gray .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-black {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: #0d0d0d;
}

.sidenav-right-black a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-black a:hover {
  color: #ddd;
}

.sidenav-right-black .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-black {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: #0d0d0d;
}

.sidenav-left-black a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-black a:hover {
  color: #ddd;
}

.sidenav-left-black .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-right-white {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  background-color: white;
}

.sidenav-right-white a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-right-white a:hover {
  color: #ddd;
}

.sidenav-right-white .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.sidenav-left-white {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 9rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background: #000;
  left: 0;
  background-color: white;
}

.sidenav-left-white a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.1411764706);
  transition: 0.3s;
  text-align: center;
  color: #000;
}

.sidenav-left-white a:hover {
  color: #ddd;
}

.sidenav-left-white .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  margin-left: 9rem;
  border: none;
}

.accordion-container-shadow .accordion {
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.5rem;
  transition: 0.4s;
  margin: 0;
}

.accordion-container-shadow .active,
.accordion-container-shadow .accordion:hover {
  color: #000;
}

.accordion-container-shadow .panel {
  padding: 2rem;
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 1.5rem;
}

.accordion-container-shadow .accordion:after {
  content: "➕";
  /* Unicode character for "plus" sign (+) */
  font-size: 1.5rem;
  color: #777;
  float: right;
  margin-left: 0.5rem;
}

.accordion-container-shadow .active:after {
  content: "➖";
  /* Unicode character for "minus" sign (-) */
}

.accordion-container-shadow .accordion {
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.accordion-container-bordered .accordion {
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.5rem;
  transition: 0.4s;
  margin: 0;
}

.accordion-container-bordered .active,
.accordion-container-bordered .accordion:hover {
  color: #000;
}

.accordion-container-bordered .panel {
  padding: 2rem;
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 1.5rem;
}

.accordion-container-bordered .accordion:after {
  content: "➕";
  /* Unicode character for "plus" sign (+) */
  font-size: 1.5rem;
  color: #777;
  float: right;
  margin-left: 0.5rem;
}

.accordion-container-bordered .active:after {
  content: "➖";
  /* Unicode character for "minus" sign (-) */
}

.accordion-container-bordered .accordion {
  border: 0.01rem solid #ccc;
}

.accordion-container-bordered .panel {
  border: 0.01rem solid #ccc;
}

.accordionWrapper .accordionItem {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.accordionWrapper .accordionItemHeading {
  cursor: pointer;
  margin: 0 0 1rem 0;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.accordionWrapper .close .accordionItemContent {
  height: 0;
  transition: height 1s ease-out;
  transform: scaleY(0);
  float: left;
  display: block;
}

.accordionWrapper .open .accordionItemContent {
  padding: 2rem;
  border: 1px solid #ddd;
  width: 100%;
  margin: 0 0 1rem 0;
  display: block;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}

.accordionWrapper .open .accordionItemHeading {
  margin: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.accordion__item {
  padding: 1rem;
  position: relative;
  width: 100%;
  cursor: pointer;
}

.accordion__item:after {
  position: absolute;
  right: 1rem;
  content: "+";
  font-size: 2.4rem;
  top: 0rem;
}

.accordion__item.open:after {
  content: "-";
}

.accordion__item p {
  margin-top: 1rem;
}

.accordion__item:not(.open) p {
  display: none;
}

.carousel {
  width: 100%;
  height: 32rem;
  overflow: hidden;
  position: relative;
}

.carousel .controls {
  opacity: 1;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  justify-content: space-between;
  width: 100%;
  z-index: 9;
  transition: all ease 0.5s;
}

.carousel .controls .control {
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.5;
  transition: ease 0.3s;
  cursor: pointer;
}

.carousel .controls .control:hover {
  opacity: 1;
}

.carousel .slides {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  transition: 1s ease-in-out all;
  z-index: -9;
}

.carousel .slides .slide {
  min-width: 100%;
  min-height: 32rem;
  height: auto;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 10rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  /* Modal Content */
}

.modal .modal-content {
  position: relative;
  margin: auto;
  border: 0.01rem solid #888;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 44rem;
  /* The Close Button */
}

.modal .modal-content .close {
  color: white;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1rem;
  background: red;
}

.modal .modal-content .close:hover,
.modal .modal-content .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal .modal-content .modal-content-form {
  padding: 2rem;
}

.modal .modal-content .modal-content-form-icon {
  display: flex;
}

.modal .modal-content .modal-content-form-icon h3 {
  margin-bottom: 1rem;
}

.modal .modal-content .modal-content-form-icon .modal-icon-part {
  text-align: center;
  background: #eee;
  padding: 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
}

.modal .modal-content .modal-content-form-icon .modal-icon-part .icon-group {
  margin-bottom: 2rem;
}

.modal .modal-content .modal-content-form-icon .modal-icon-part .icon-group img {
  margin-bottom: 1rem;
}

.modal .modal-content .modal-content-form-icon .modal-form-part {
  padding: 2rem;
}

.modal .modal-content .modal-content {
  background: #8d8888;
  color: white;
  width: 100%;
  border-radius: 0 0 0.5rem 0.5rem;
  text-align: center;
  padding: 1rem;
}

.modal.popup-modal .modal-content {
  width: 90%;
}

.modal.popup-modal .modal-content .popup-container {
  display: flex;
  flex-direction: column;
}

.modal.popup-modal .modal-content .popup-container .pop-img {
  width: 100%;
}

@media (min-width: 768px) {
  .modal.popup-modal .modal-content {
    width: 60vw;
    height: 60vh;
    display: flex;
  }

  .modal.popup-modal .modal-content .popup-container {
    display: flex;
    flex-direction: row;
  }

  .modal.popup-modal .modal-content .popup-container .pop-img {
    width: 50%;
  }

  .modal.popup-modal .modal-content .popup-container .pop-img img {
    width: 100%;
    height: 100%;
  }

  .modal.popup-modal .modal-content .popup-container .modal-content-form {
    width: 50%;
  }
}

.table-bordered {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid black;
  border-collapse: collapse;
}

.table-bordered th,
.table-bordered td {
  padding: 1rem;
  text-align: center;
}

.table-box {
  border-radius: 0.5rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 100%;
}

.table-box .table-rounded {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  padding: 0;
}

.table-box .table-rounded th,
.table-box .table-rounded td {
  padding: 1rem;
  text-align: center;
}

.table-box .table-rounded-bordered {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  padding: 0;
}

.table-box .table-rounded-bordered th,
.table-box .table-rounded-bordered td {
  padding: 1rem;
  text-align: center;
}

.table-box .table-rounded-bordered th,
.table-box .table-rounded-bordered td {
  border-bottom: 0.01rem solid white;
  border-right: 0.01rem solid white;
  border-collapse: collapse;
}

.table-box .table-rounded-bordered tr td:last-child,
.table-box .table-rounded-bordered tr th:last-child {
  border-right: none;
}

.table-box .table-rounded-bordered tr:last-child td {
  border-bottom: none;
}

.table-bordered-primary {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #326dee;
  border-collapse: collapse;
}

.table-bordered-primary th,
.table-bordered-primary td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-secondary {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #1ac888;
  border-collapse: collapse;
}

.table-bordered-secondary th,
.table-bordered-secondary td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-error {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #d32752;
  border-collapse: collapse;
}

.table-bordered-error th,
.table-bordered-error td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-info {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #f6c31c;
  border-collapse: collapse;
}

.table-bordered-info th,
.table-bordered-info td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-blue {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #1919e6;
  border-collapse: collapse;
}

.table-bordered-blue th,
.table-bordered-blue td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-red {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #e61919;
  border-collapse: collapse;
}

.table-bordered-red th,
.table-bordered-red td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-yellow {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #e6e619;
  border-collapse: collapse;
}

.table-bordered-yellow th,
.table-bordered-yellow td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-green {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #19e635;
  border-collapse: collapse;
}

.table-bordered-green th,
.table-bordered-green td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-orange {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #ffa600;
  border-collapse: collapse;
}

.table-bordered-orange th,
.table-bordered-orange td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-purple {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #9900ff;
  border-collapse: collapse;
}

.table-bordered-purple th,
.table-bordered-purple td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-gray {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid #808080;
  border-collapse: collapse;
}

.table-bordered-gray th,
.table-bordered-gray td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-black {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid black;
  border-collapse: collapse;
}

.table-bordered-black th,
.table-bordered-black td {
  padding: 1rem;
  text-align: center;
}

.table-bordered-white {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.01rem solid white;
  border-collapse: collapse;
}

.table-bordered-white th,
.table-bordered-white td {
  padding: 1rem;
  text-align: center;
}

.responsive-table table {
  border: 0.01rem solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.responsive-table table tr {
  background-color: white;
  border: 0.01rem solid #ddd;
  padding: 0.35rem;
}

.responsive-table table th,
.responsive-table table td {
  padding: 0.625rem;
  text-align: center;
  font-size: 1.5rem;
}

.responsive-table table th {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .responsive-table table {
    border: 0;
  }

  .responsive-table table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 0.01rem;
    margin: -0.01rem;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 0.01rem;
  }

  .responsive-table table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625rem;
  }

  .responsive-table table td {
    border-bottom: 0.01rem solid #ddd;
    display: block;
    font-size: 1.5rem;
    text-align: center;
  }

  .responsive-table table td::before {
    /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .responsive-table table td:last-child {
    border-bottom: 0;
  }
}

.floating-btn {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  z-index: 99;
  width: 5rem;
  height: 5rem;
  padding: 1.5rem;
}

.floating-btn-rounded {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  z-index: 99;
  width: 5rem;
  height: 5rem;
  padding: 1.5rem;
  border-radius: 50%;
}

/* use class="blink" */
@-webkit-keyframes blinker {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.2;
  }
}

.blink {
  text-decoration: blink;
  -webkit-animation: blinker 1s infinite ease-in-out alternate;
}

/* use class="color-change" */
@-webkit-keyframes color-change {
  0% {
    color: black;
  }

  25% {
    color: red;
  }

  50% {
    color: yellow;
  }

  75% {
    color: blue;
  }

  100% {
    color: green;
  }
}

.color-change {
  text-decoration: blink;
  -webkit-animation: color-change 3s infinite ease-in-out alternate;
}

/* use class="bg-change" */
@-webkit-keyframes bg-change {
  0% {
    background-color: black;
  }

  25% {
    background-color: red;
  }

  50% {
    background-color: yellow;
  }

  75% {
    background-color: blue;
  }

  100% {
    background-color: green;
  }
}

.bg-change {
  text-decoration: blink;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: bg-change 3s infinite ease-in-out alternate;
}

/* use class="zoom-in" */
@-webkit-keyframes zoom {
  0% {
    font-size: 1rem;
  }

  100% {
    font-size: 1.2rem;
  }
}

.zoom {
  text-decoration: blink;
  -webkit-animation: zoom 2s infinite ease-in-out alternate;
}

/* use class="elastic" */
@-webkit-keyframes elastic {
  0% {
    font-size: 1rem;
  }

  50% {
    font-size: 1.2rem;
  }

  100% {
    font-size: 1rem;
  }
}

.elastic {
  text-decoration: blink;
  -webkit-animation: elastic 3s infinite ease-in-out alternate;
}

.clip-triangle {
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.clip-trapezoid {
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.clip-parallelogram {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.clip-rhombus {
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.clip-pentagon {
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.clip-hexagon {
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.clip-hexagon-sharp-top {
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.clip-heptagon {
  -webkit-clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.clip-octagon {
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.clip-nonagon {
  -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}

.clip-decagon {
  -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
}

.clip-bevel {
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.clip-rabbet {
  -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.clip-left-arrow {
  -webkit-clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
  clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
}

.clip-right-arrow {
  -webkit-clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
}

.clip-left-point {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

.clip-right-point {
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.clip-left-chevron {
  -webkit-clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}

.clip-right-chevron {
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

.clip-star {
  -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.clip-cross {
  -webkit-clip-path: polygon(10% 25%, 35% 25%, 35% 0%, 65% 0%, 65% 25%, 90% 25%, 90% 50%, 65% 50%, 65% 100%, 35% 100%, 35% 50%, 10% 50%);
  clip-path: polygon(10% 25%, 35% 25%, 35% 0%, 65% 0%, 65% 25%, 90% 25%, 90% 50%, 65% 50%, 65% 100%, 35% 100%, 35% 50%, 10% 50%);
}

.clip-message {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.clip-close {
  -webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

.clip-frame {
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 25% 100%, 25% 25%, 75% 25%, 75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 25% 100%, 25% 25%, 75% 25%, 75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
}

.clip-inset {
  -webkit-clip-path: inset(5% 20% 15% 10%);
  clip-path: inset(5% 20% 15% 10%);
}

.clip-circle {
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}

.clip-ellipse {
  -webkit-clip-path: ellipse(25% 40% at 50% 50%);
  clip-path: ellipse(25% 40% at 50% 50%);
}

.clip-bottom-zigzag {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 70% 70%, 40% 50%, 0 70%);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 70% 70%, 40% 50%, 0 70%);
}

.clip-bottom-wave {
  -webkit-clip-path: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
  shape-outside: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
}

.clip-up-arrow {
  -webkit-clip-path: polygon(0 50%, 50% 0, 100% 50%, 80% 50%, 80% 100%, 20% 100%, 20% 50%);
  clip-path: polygon(0 50%, 50% 0, 100% 50%, 80% 50%, 80% 100%, 20% 100%, 20% 50%);
}

.clip-bottom-triangle {
  -webkit-clip-path: polygon(100% 0, 100% 38%, 50% 70%, 0 38%, 0 0);
  clip-path: polygon(100% 0, 100% 38%, 50% 70%, 0 38%, 0 0);
}

.clip-bottom-slope-left {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 40%, 0 70%);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 70%);
}

.clip-bottom-slope-right {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 40%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 40%);
}

.clip-home {
  -webkit-clip-path: polygon(50% 0, 100% 50%, 80% 50%, 80% 100%, 20% 100%, 20% 50%, 0% 50%);
  clip-path: polygon(50% 0, 100% 50%, 80% 50%, 80% 100%, 20% 100%, 20% 50%, 0% 50%);
}

.clip-bottom-triangle-inside {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 53% 31%, 53% 31%, 0% 50%);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 53% 31%, 53% 31%, 0% 50%);
}

.speed-dial {
  position: fixed;
  bottom: 10%;
  right: 5%;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.speed-dial .speed-dial-icon i {
  padding: 16px;
  background: cornflowerblue;
  color: #fff;
  font-size: 20px;
  border-radius: 8px;
  text-align: center;
}

.speed-dial .speed-dial-item {
  flex-direction: column;
  gap: 20px;
  display: none;
  text-align: center;
}

.speed-dial .speed-dial-item i {
  padding: 18px;
  background: #ffffff;
  width: auto;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ccc;
}

.speed-dial i.close {
  display: none;
}

.speed-dial.open i.open {
  display: none;
}

.speed-dial.open i.close {
  display: block;
}

/* Google fonts */
@-webkit-keyframes slideIn {
  0% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-lightbox {
  width: 100%;
}

.gallery-lightbox__box {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 1.2rem;
  overflow: hidden;
}

.gallery-lightbox__box img {
  cursor: pointer;
  border-radius: 0.6rem;
}

.gallery-lightbox__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background-color: rgba(15, 32, 46, 0.9);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
}

.gallery-lightbox__popup.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__popup.active .fullview img {
  -webkit-animation: slideIn 1s forwards ease-in-out;
  animation: slideIn 1s forwards ease-in-out;
  width: 100%;
  height: 100%;
}

.gallery-lightbox__popup--options {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-bottom: 4rem;
}

.gallery-lightbox__popup--options a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 2.5rem;
  margin-right: 2rem;
}

.gallery-lightbox__popup--options a:last-child {
  margin-right: 0;
}

.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.gallery-lightbox__popup--content .fullview {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
  border-radius: 0.6rem;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.gallery-lightbox__popup--content p {
  text-align: center;
  margin-top: 4rem;
  color: #f5f5f5;
  font-size: 1.8rem;
}

.gallery-lightbox__popup--content.fullscreen .fullview {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
}

.gallery-lightbox__popup--navigation {
  margin: 8rem 0;
  display: flex;
  align-items: center;
}

button.arrow {
  background-color: transparent;
  border: 0.2rem solid #f5f5f5;
  color: #f5f5f5;
  padding: 0.8rem;
  font-size: 2.5rem;
  cursor: pointer;
  border-radius: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2rem;
}

@media screen and (min-width: 901px) {
  .gallery-lightbox__popup--content {
    width: 80%;
    height: 100%;
    overflow: hidden;
  }

  button.arrow {
    position: absolute;
    top: 40%;
  }

  button.arrow--left {
    position: absolute;
    left: 2rem;
  }

  button.arrow--right {
    position: absolute;
    right: 2rem;
  }
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 4rem;
}

.p-4 {
  padding: 6rem;
}

.p-5 {
  padding: 8rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 4rem;
}

.pl-4 {
  padding-left: 6rem;
}

.pl-5 {
  padding-left: 8rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 4rem;
}

.pr-4 {
  padding-right: 6rem;
}

.pr-5 {
  padding-right: 8rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 4rem;
}

.pt-4 {
  padding-top: 6rem;
}

.pt-5 {
  padding-top: 8rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 4rem;
}

.pb-4 {
  padding-bottom: 6rem;
}

.pb-5 {
  padding-bottom: 8rem;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 4rem;
}

.m-4 {
  margin: 6rem;
}

.m-5 {
  margin: 8rem;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 4rem;
}

.ml-4 {
  margin-left: 6rem;
}

.ml-5 {
  margin-left: 8rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 4rem;
}

.mr-4 {
  margin-right: 6rem;
}

.mr-5 {
  margin-right: 8rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 4rem;
}

.mt-4 {
  margin-top: 6rem;
}

.mt-5 {
  margin-top: 8rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 6rem;
}

.mb-5 {
  margin-bottom: 8rem;
}

.o-10 {
  opacity: 0.1;
}

.o-20 {
  opacity: 0.2;
}

.o-30 {
  opacity: 0.3;
}

.o-40 {
  opacity: 0.4;
}

.o-50 {
  opacity: 0.5;
}

.o-60 {
  opacity: 0.6;
}

.o-70 {
  opacity: 0.7;
}

.o-80 {
  opacity: 0.8;
}

.o-90 {
  opacity: 0.9;
}

.o-100 {
  opacity: 1;
}

.br {
  border-radius: 0.5rem;
}

.br-none {
  border-radius: 0;
}

.br-xs {
  border-radius: 0.125rem;
}

.br-sm {
  border-radius: 0.25rem;
}

.br-lg {
  border-radius: 1rem;
}

.br-full {
  border-radius: 50%;
}

.display-n {
  display: none;
}

.display-b {
  display: block;
}

.display-f {
  display: flex;
}

.display-i {
  display: inline;
}

.display-i-b {
  display: inline-block;
}

.font-sm {
  font-size: 0.75rem;
}

.font-md {
  font-size: 1rem;
}

.font-lg {
  font-size: 1.5rem;
}

.font-xl {
  font-size: 2rem;
}

.font-xxl {
  font-size: 3rem;
}

.font-larger {
  font-size: 4rem;
}

.main-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.banner-section {
  margin-bottom: 4rem;
  position: relative;
}

.banner-section img {
  width: 100%;
}

.banner-section .banner-form-part {
  width: 100%;
  position: static;
}

.banner-section .banner-form-part .banner-form-title {
  padding: 1rem;
}

.banner-section .banner-form-part .banner-form-offers {
  padding: 1rem;
}

.banner-section .banner-offer-part {
  width: 100%;
  position: static;
}

.banner-section .banner-offer-part .banner-offer-title {
  text-align: center;
  padding: 1rem;
}

.banner-section .banner-offer-part .banner-offers {
  padding: 1rem;
}

.overview-section .overview-content img {
  width: 100%;
}

.cta-type1 img {
  width: 25rem;
  margin-top: -23rem;
}

.cta-section-2 img {
  margin-top: -21rem;
}

.cta-section-3 .cta-content {
  background-color: rgba(0, 0, 0, 0.8);
}

.floorplan-section .floorplan-content .floorplan-img {
  position: relative;
  width: 100%;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #ccc;
}

.floorplan-section .floorplan-content .floorplan-img img {
  border-radius: 0.5rem;
}

.floorplan-section .floorplan-content .floorplan-img:hover .btn.overlay {
  opacity: 1;
}

.video-section .video-content .video-card {
  display: flex;
  justify-content: center;
}

.developer-section {
  font-size: 1.5rem;
}

.location-section img {
  border-radius: 0.5rem;
}

.location-section iframe {
  border-radius: 0.5rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.location-section .location-content {
  font-size: 1.5rem;
}

.footer-section {
  text-align: center;
  font-size: 1.5rem;
}

.thankyou-section {
  background-image: url("img/banner/banner1.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.thankyou-section .thankyou-banner-section {
  position: relative;
}

.thankyou-section .thankyou-banner-section .thankyou-part {
  position: absolute;
  top: 20%;
  left: 0%;
  right: 0%;
  margin-top: 4rem;
  padding: 1rem;
  border-radius: 0.5rem;
}

.thankyou-section .thankyou-banner-section .thankyou-part .thankyou-title {
  padding: 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.thankyou-section .thankyou-banner-section .thankyou-part .thankyou-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4rem 0;
}

.thankyou-section .thankyou-banner-section .thankyou-part .thankyou-content .thankyou-social-links {
  display: flex;
  justify-content: center;
}

.price-card-type1 {
  padding: 0;
  background: #ffffff;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border: 0.01rem solid rgb(221, 221, 221);
  position: relative;
}

.price-card-type1 .card-img img {
  border-radius: 0;
}

.price-card-type1 .price-card-body {
  padding: 1rem;
}

.price-card-type1 .price-card-body .price-card-title {
  font-weight: bold;
}

.price-card-type1 .price-card-body button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.price-card-type1 .price-card-body .card-list-item {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.price-card-type1 .price-card-body .card-list-item .card-item-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: baseline;
}

.price-card-type1 .price-card-body .card-list-item .card-item-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-card-list {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
}

.price-card-list .price-item-card {
  width: 100%;
}

.price-card-list .price-item-card .price-card-type2 {
  background: #ffffff;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  justify-content: space-between;
  border-radius: 0.5rem;
  border: 0.01rem solid rgb(221, 221, 221);
  flex-direction: column-reverse;
}

.price-card-list .price-item-card .price-card-type2 .price-card-img {
  padding: 2rem;
  width: 100%;
  position: relative;
}

.price-card-list .price-item-card .price-card-type2 .price-card-img img {
  width: 100%;
  height: 100%;
  filter: blur(0.2rem);
}

.price-card-list .price-item-card .price-card-type2 .price-card-img i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.price-card-list .price-item-card .price-card-type2 .price-item {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.price-card-list .price-item-card .price-card-type2 .price-item .price-list {
  display: flex;
  justify-content: space-around;
}

@media (min-width: 992px) {
  .price-card-list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }

  .price-card-list .price-item-card {
    width: 25%;
  }

  .price-card-list .price-item-card .price-card-type2 {
    flex-direction: unset;
  }

  .price-card-list .price-item-card .price-card-type2 .price-card-img {
    display: none;
  }

  .price-card-list .price-item-card.active-price-card {
    width: 40%;
  }

  .price-card-list .price-item-card.active-price-card .price-card-type2 .price-card-img {
    display: block !important;
  }
}

/* amenities type 1 */
.amenities-card1 .card {
  background-repeat: no-repeat;
  background-size: cover;
}

/* amenities type 2 */
.amenities-card2 .card .card-img {
  transform: translateY(-6rem);
  width: 10rem;
  height: 10rem;
  margin: 0 auto;
  padding: 4rem;
  box-shadow: 0.1rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.amenities-card2 .card .card-body {
  margin-top: -6rem;
}

/* amenities type 3 */
.amenities-card3 .card-plain {
  border-radius: 0;
}

.amenities-card3 .card-plain .card-img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  margin: 0 auto;
}

.amenities-card3 .card-plain .card-img .card-icon {
  padding: 38%;
}

/* amenities type 4 */
.amenities-card4 .card-colored .card-img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  padding: 1.6rem;
  margin: 0 auto;
  transform: translateY(-4rem);
}

.amenities-card4 .card-colored .card-title {
  margin: -3rem 0 1rem 0;
}

.tabs-container .nav-tabs {
  float: left;
  width: 100%;
  margin: 0;
  list-style-type: none;
  border-bottom: 0.01rem solid #ddd;
}

.tabs-container .nav-tabs>li {
  float: left;
  margin-bottom: -0.1rem;
}

.tabs-container .nav-tabs>li>a {
  float: left;
  margin-right: 0.2rem;
  padding: 1rem 2rem;
  border: 0.01rem solid transparent;
}

.tabs-container .nav-tabs>li>a:hover {
  border-color: #eee #eee #ddd;
}

.tabs-container .nav-tabs>li.active>a,
.tabs-container .nav-tabs>li.active>a:hover,
.tabs-container .nav-tabs>li.active>a:focus {
  cursor: default;
  border: 0.01rem solid #ddd;
  border-bottom-color: transparent;
}

.tabs-container .tab-content {
  float: left;
  width: 100%;
  border: 0.01rem solid #ddd;
}

.tabs-container .tab-content>.tab-pane {
  display: none;
}

.tabs-container .tab-content>.tab-pane.active {
  display: block;
  padding: 2rem;
}

.tabs-container .tab-content>.active {
  display: block;
}

.floor-container {
  position: relative;
}

.floor-container .image {
  display: block;
  width: 100%;
  height: auto;
}

.floor-container .floor-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.4);
}

.floor-container .floor-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.floor-container:hover .floor-overlay {
  opacity: 1;
}

@media (min-width: 768px) {
  .deskBlock {
    display: block;
  }

  .mobBlock {
    display: none;
  }

  section {
    margin-bottom: 9rem;
  }

  .banner-section {
    margin-bottom: 9rem;
  }



  .banner-section .banner-offer-part {
    max-width: 25vw;
    position: absolute;
    top: 0;
    left: 0;
  }

  .modal-content-form-icon {
    flex-direction: column-reverse;
  }

  .modal-content-form-icon .modal-icon-part {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
}

@media (min-width: 0) {

  th,
  td {
    padding: 0.3333333333rem;
  }
}

/*# sourceMappingURL=style.css.map */
