* {
  padding: 0;
  margin: 0;
  direction: ltr;
  box-sizing: border-box;
  font-family: "Dosis", sans-serif;
}

@media (min-width: 1000px) {
  .container {
    max-width: 1000px !important;
  }
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #db5896;
  border: 2px solid #ba2b6f;
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
input[type=checkbox]:checked {
  background-color: #8b0e49;
  border-color: #8b0e49;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #655d8a;
  border-radius: 8px;
}

::-moz-selection {
  background-color: #655d8a;
  color: #fff;
}

::selection {
  background-color: #655d8a;
  color: #fff;
}

header {
  box-shadow: 4px -8px 5px 7px #000000;
  padding-bottom: 7.5px;
}
header .header-top {
  background-color: #655d8a;
}
header .header-top > div {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
header .header-top > div a {
  text-decoration: none;
  color: #fff;
  margin: 0 10px;
  font-size: 14px;
}
@media (max-width: 600px) {
  header .header-top > div > a {
    min-width: 120px;
  }
  header .header-top > div > a img {
    display: block;
    margin: 15px auto;
  }
}
header > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
}
@media (max-width: 860px) {
  header > div {
    justify-content: flex-start;
    padding-top: 15px;
  }
}
header > div > img {
  max-height: 70px;
  padding-top: 3.75px;
}
header > div > .menu-icon {
  font-size: 30px;
  color: #655d8a;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  right: 20px;
  display: none !important;
}
header > div > .menu-icon:hover {
  color: #000;
}
@media (max-width: 860px) {
  header > div > .menu-icon {
    display: block !important;
  }
}
@media (max-width: 860px) {
  header > div .landing-logo {
    width: 150px;
  }
}
header > div ul {
  flex: 1;
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-bottom: 0 !important;
}
@media (max-width: 860px) {
  header > div ul {
    flex-direction: column;
    position: absolute;
    top: -1000%;
    right: 10px;
    background-color: #655d8a;
    padding: 15px;
    min-width: 300px;
    transition: 0.3s;
    z-index: 10;
  }
  header > div ul.active {
    top: 100px;
  }
  header > div ul li a {
    align-items: flex-start !important;
  }
}
@media (max-width: 786px) {
  header > div ul {
    min-width: 90%;
  }
}
header > div ul li {
  max-height: 80px;
  padding: 7.5px 15px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
header > div ul li a {
  color: #655d8a;
  font-size: 20px;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
header > div ul li a img,
header > div ul li a i {
  width: 25px;
  font-size: 25px;
}
header > div ul li:hover {
  background-color: rgba(101, 93, 138, 0.2705882353);
}
header > div ul li.active {
  background-color: #655d8a;
}
header > div ul li.active a {
  color: #fff;
}
header > div ul li.active a i {
  color: #fff !important;
}
@media (max-width: 860px) {
  header > div ul li a {
    color: #fff;
  }
  header > div ul li.active {
    background-color: #4a226c;
  }
  header > div ul li.active:hover {
    background-color: #4a226c;
  }
  header > div ul li:hover {
    background-color: rgba(74, 34, 108, 0.3019607843);
  }
  header > div ul li:hover a {
    color: #fff;
  }
}
header > div .btns {
  margin-left: 45px;
  text-align: center;
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  header > div .btns {
    margin-right: 45px;
    margin-left: 0;
  }
}
@media (max-width: 450px) {
  header > div .btns {
    flex-direction: column;
    align-items: center;
  }
}
header > div .btns button {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 8px;
  border: 0.5px solid #655d8a;
  background-color: transparent;
  transition: 0.3s;
}
@media (max-width: 768px) {
  header > div .btns button {
    width: 85%;
    margin-bottom: 5px;
    font-size: 15px;
  }
}
header > div .btns button a {
  color: #655d8a;
  text-decoration: none;
}
header > div .btns button:hover {
  background-color: #655d8a;
}
header > div .btns button:hover a {
  color: #fff;
}
header > div .btns button.fill-btn {
  background-color: #655d8a;
}
header > div .btns button.fill-btn a {
  color: #fff;
}
header > div .btns button.fill-btn:hover {
  background-color: #fff;
}
header > div .btns button.fill-btn:hover a {
  color: #655d8a;
}
header > div .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
header > div .lang img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.landing-hero {
  height: 550px;
  margin-top: 1px;
  position: relative;
}
.landing-hero > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-hero > div:not(.bottom) {
  width: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .landing-hero > div:not(.bottom) {
    width: 100%;
  }
}
.landing-hero > div:not(.bottom) img {
  display: block;
}
.landing-hero > div:not(.bottom) img:first-of-type {
  margin-left: auto;
  margin-right: 60px;
  height: 250px;
}
@media (max-width: 530px) {
  .landing-hero > div:not(.bottom) img:first-of-type {
    width: 100%;
  }
}
.landing-hero > div:not(.bottom) img:last-of-type {
  width: 70px;
  margin: 45px 60px 15px auto;
}
.landing-hero > div:not(.bottom) h3 {
  text-align: right;
  text-transform: uppercase;
  color: #655d8a;
  font-weight: bold;
  font-size: 20px;
  margin-right: 60px;
}
.landing-hero > div:not(.bottom).img-abc {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .landing-hero > div:not(.bottom).img-abc {
    width: 100%;
  }
}
.landing-hero > div:not(.bottom).img-abc img {
  width: auto;
  margin: auto;
}
@media (max-width: 500px) {
  .landing-hero > div:not(.bottom).img-abc img {
    width: 90%;
  }
}
.landing-hero > .bottom {
  background: #655d8a url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 15px 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}
.landing-hero > .bottom p {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}
.landing-hero > .bottom p span {
  color: #ffdd00;
}
@media (max-width: 620px) {
  .landing-hero > .bottom p {
    font-size: 20px;
  }
}
.landing-hero.hero .bottom span {
  color: #db5896;
}

.landing-info-section {
  margin-top: 120px;
}
.landing-info-section .top {
  margin-bottom: 45px;
}
.landing-info-section .top > div {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  place-content: center;
  gap: 15px;
}
@media (max-width: 992px) {
  .landing-info-section .top > div {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 310px) {
  .landing-info-section .top > div {
    grid-template-columns: 100%;
  }
}
.landing-info-section .top > div .box {
  text-align: center;
}
.landing-info-section .top > div .box figure {
  width: 130px;
  height: 130px;
  margin: 15px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 3px;
  border-style: solid;
}
.landing-info-section .top > div .box figure img {
  width: 70%;
  height: 70%;
  -o-object-fit: fill;
     object-fit: fill;
}
.landing-info-section .top > div .box:first-of-type figure, .landing-info-section .top > div .box:nth-of-type(4) figure {
  background: #3bbcd6 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #1a9eb9;
}
.landing-info-section .top > div .box:nth-of-type(2) figure, .landing-info-section .top > div .box:nth-of-type(5) figure {
  background: #db5896 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #ba2b6f;
}
.landing-info-section .top > div .box:nth-of-type(3) figure, .landing-info-section .top > div .box:nth-of-type(6) figure {
  background: #eb8866 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #c15935;
}
.landing-info-section .top > div .box .text h4 {
  text-align: center;
  color: #655d8a;
  font-family: "Amatic SC", cursive;
  font-size: 40px;
}
.landing-info-section .top > div .box .text p {
  color: #9c9c9c;
  line-height: 26px;
}
.landing-info-section .top > div .box .text a {
  text-decoration: none;
  color: #655d8a;
  font-size: 16px;
  transition: 0.3s;
}
.landing-info-section .top > div .box .text a:hover {
  color: #000;
}
.landing-info-section .center > div {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.landing-info-section .center > div .text {
  flex: 1.1;
  text-align: center;
  padding-bottom: 15px;
}
.landing-info-section .center > div .text h3 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Amatic SC", cursive;
  line-height: 78px;
  letter-spacing: 0.6200000048px;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .landing-info-section .center > div .text h3 {
    font-size: 50px;
  }
}
.landing-info-section .center > div .text h3 span {
  color: #1a9eb9;
  font-family: "Amatic SC", cursive;
}
.landing-info-section .center > div .text p {
  color: #9c9c9c;
  font-size: 16px;
  line-height: 26px;
}
.landing-info-section .center > div .text button {
  padding: 7.5px 30px;
  background: #3bbcd6 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  color: #fff;
  font-size: 16px;
  outline: none;
  border: 2px solid #1a9eb9;
  border-radius: 8px;
  transition: 0.3s;
}
.landing-info-section .center > div .text button:hover {
  background: #ffde0a;
  border-color: transparent;
}
.landing-info-section .center > div figure {
  flex: 1;
  transform: translateY(35px);
}
@media (max-width: 992px) {
  .landing-info-section .center > div figure {
    display: none;
  }
}
.landing-info-section .center > div figure img {
  width: 100%;
}
.landing-info-section .bottom {
  padding-top: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.landing-info-section .bottom .layout {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}
.landing-info-section .bottom .layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 188, 214, 0.9);
}
.landing-info-section .bottom .layout img {
  width: 100%;
  height: 100%;
}
.landing-info-section .bottom > div:not(.layout) {
  position: relative;
  z-index: 5;
  padding-top: 45px;
  color: #fff;
}
.landing-info-section .bottom > div:not(.layout) h3 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.landing-info-section .bottom > div:not(.layout) h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #fff;
  width: 155px;
  height: 3px;
}
.landing-info-section .bottom > div:not(.layout) p {
  font-size: 16px;
  text-align: center;
}
.landing-info-section .bottom > div:not(.layout) .boxes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  place-items: center;
  margin-top: 60px;
}
.landing-info-section .bottom > div:not(.layout) .boxes .box {
  text-align: center;
}
.landing-info-section .bottom > div:not(.layout) .boxes .box h4 {
  font-size: 40px;
  font-family: "Amatic SC", cursive;
}
.landing-info-section .bottom > div:not(.layout) .boxes .box p {
  font-size: 16px;
}
.landing-info-section.info-section .center .text h3 {
  color: #655d8a;
  font-weight: initial;
}
.landing-info-section.info-section .center .text h3 span {
  color: #ba2b6f;
}
.landing-info-section.about-info-section {
  margin-top: 0;
}
.landing-info-section.about-info-section .center > div.container {
  display: block;
}
.landing-info-section.about-info-section .center > div.container > .top {
  display: flex;
  gap: 15px;
}
.landing-info-section.about-info-section .text {
  display: initial;
}
.landing-info-section.about-info-section .text h3 {
  color: #ba2b6f;
  font-weight: initial;
}
.landing-info-section.about-info-section .text h3 span {
  color: #655d8a !important;
  font-family: "Amatic SC", cursive;
}
.landing-info-section.about-info-section > .center > div > .top {
  align-items: center;
}
.landing-info-section.about-info-section > .center > div > .top > .text {
  padding-bottom: 0;
}

.landing-classroom {
  margin-top: 105px;
}
.landing-classroom .top {
  width: 50%;
}
@media (max-width: 768px) {
  .landing-classroom .top {
    width: 100%;
  }
}
.landing-classroom .top h3 {
  color: #575656;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.landing-classroom .top h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #1a9eb9;
  width: 155px;
  height: 3px;
}
.landing-classroom .top p {
  font-size: 16px;
  color: #9c9c9c;
  line-height: 26px;
  text-align: center;
}
.landing-classroom .details {
  margin-top: 45px;
  min-height: 580px;
}
@media (max-width: 400px) {
  .landing-classroom .details {
    min-height: 630px;
  }
}
@media (max-width: 300px) {
  .landing-classroom .details {
    min-height: 700px;
  }
}
.landing-classroom .details .headings {
  display: flex;
  justify-content: center;
  gap: 1px;
}
.landing-classroom .details .headings p {
  width: 16.6666666667%;
  border-width: 2px;
  border-style: solid;
  border-radius: 4px 4px 0px 0px;
  padding: 10px;
  margin-bottom: 1px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 410px) {
  .landing-classroom .details .headings p {
    width: 25%;
    font-size: 14px;
    padding: 10px 0;
  }
}
.landing-classroom .details .headings p:first-of-type {
  background: #db5896 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #ba2b6f;
}
.landing-classroom .details .headings p:first-of-type.active, .landing-classroom .details .headings p:first-of-type:hover {
  background-color: #ba2b6f;
}
.landing-classroom .details .headings p:nth-of-type(2) {
  background: #3bbcd6 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #1a9eb9;
}
.landing-classroom .details .headings p:nth-of-type(2).active, .landing-classroom .details .headings p:nth-of-type(2):hover {
  background-color: #1a9eb9;
}
.landing-classroom .details .headings p:nth-of-type(3) {
  background: #eb8866 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #c15935;
}
.landing-classroom .details .headings p:nth-of-type(3).active, .landing-classroom .details .headings p:nth-of-type(3):hover {
  background-color: #c15935;
}
.landing-classroom .details .headings p:nth-of-type(4) {
  background: #81b747 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #5d9422;
}
.landing-classroom .details .headings p:nth-of-type(4).active, .landing-classroom .details .headings p:nth-of-type(4):hover {
  background-color: #5d9422;
}
.landing-classroom .details .textes {
  position: relative;
}
.landing-classroom .details .textes .text {
  position: absolute;
  border-width: 2px;
  border-style: solid;
  border-radius: 8px;
  width: 100%;
  min-height: 500px;
  left: 0;
  padding: 15px;
  color: #fff;
  z-index: -1;
}
.landing-classroom .details .textes .text.active {
  z-index: 5;
}
.landing-classroom .details .textes .text > div {
  width: 60%;
}
@media (max-width: 600px) {
  .landing-classroom .details .textes .text > div {
    width: 100%;
  }
}
.landing-classroom .details .textes .text > div h4 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.landing-classroom .details .textes .text > div p {
  font-size: 16px;
}
.landing-classroom .details .textes .text > div button {
  padding: 10px 30px;
  border: 2px solid #fff;
  border-radius: 8px;
  outline: none;
  color: #fff;
  background-color: transparent;
  transition: 0.3s;
}
.landing-classroom .details .textes .text:first-of-type {
  background: #db5896 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #ba2b6f;
}
.landing-classroom .details .textes .text:first-of-type button:hover {
  background: #ba2b6f url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #ba2b6f;
}
.landing-classroom .details .textes .text:nth-of-type(2) {
  background: #3bbcd6 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #1a9eb9;
}
.landing-classroom .details .textes .text:nth-of-type(2) button:hover {
  background-color: #1a9eb9;
  border-color: #1a9eb9;
}
.landing-classroom .details .textes .text:nth-of-type(3) {
  background: #eb8866 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #c15935;
}
.landing-classroom .details .textes .text:nth-of-type(3) button:hover {
  background-color: #c15935;
  border-color: #c15935;
}
.landing-classroom .details .textes .text:nth-of-type(4) {
  background: #81b747 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #5d9422;
}
.landing-classroom .details .textes .text:nth-of-type(4) button:hover {
  background-color: #5d9422;
  border-color: #5d9422;
}
.landing-classroom .bottom {
  margin-top: 45px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .landing-classroom .bottom {
    flex-direction: column;
  }
}
.landing-classroom .bottom .left {
  flex: 1;
}
.landing-classroom .bottom .left h3 {
  color: #655d8a;
  font-size: 20px;
  font-weight: bold;
}
.landing-classroom .bottom .left p {
  color: #9c9c9c;
  line-height: 26px;
  font-size: 16px;
}
.landing-classroom .bottom .right {
  flex: 1;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 450px) {
  .landing-classroom .bottom .right {
    flex-direction: column;
  }
}
.landing-classroom .bottom .right div {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  width: 133px;
  height: 133px;
  display: grid;
  place-content: center;
}
.landing-classroom .bottom .right div:first-of-type {
  background: #3bbcd6 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #1a9eb9;
}
.landing-classroom .bottom .right div:nth-of-type(2) {
  background: #db5896 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #ba2b6f;
}
.landing-classroom .bottom .right div:nth-of-type(3) {
  background: #eb8866 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30);
  border-color: #c15935;
}
.landing-classroom .bottom .right div p {
  text-transform: uppercase;
  text-align: center;
}
.landing-classroom .bottom > p {
  position: absolute;
  left: 0;
  bottom: -120px;
  font-size: 20px;
  color: #9c9c9c;
  font-weight: bold;
  text-transform: uppercase;
}
.landing-classroom .bottom > p span {
  color: #3bbcd6;
}

.landing-parents-say {
  min-height: 400px;
  margin-top: 110px;
  position: relative;
}
.landing-parents-say .layout {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}
.landing-parents-say .layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(215, 88, 148, 0.7);
}
.landing-parents-say .layout img {
  width: 100%;
  height: 100%;
}
.landing-parents-say > div:not(.layout) {
  position: relative;
  z-index: 5;
  padding-top: 45px;
  color: #fff;
  min-height: 400px;
}
.landing-parents-say > div:not(.layout) > h3 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.landing-parents-say > div:not(.layout) > h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #fff;
  width: 155px;
  height: 3px;
}
.landing-parents-say > div:not(.layout) > p {
  font-size: 16px;
  text-align: center;
}
.landing-parents-say > div:not(.layout) .bottom {
  margin-top: 30px;
  text-align: center;
}
.landing-parents-say > div:not(.layout) .bottom h4 {
  font-size: 20px;
  font-weight: bold;
}
.landing-parents-say > div:not(.layout) .bottom p {
  font-size: 16px;
}

.landing-our-rooms {
  padding-top: 75px;
  background-image: url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-CLASSES.png?id=309);
  background-repeat: no-repeat;
  background-size: cover;
}
.landing-our-rooms > div h3 {
  color: #655d8a;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.landing-our-rooms > div h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #655d8a;
  width: 155px;
  height: 3px;
}
.landing-our-rooms > div .top {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .landing-our-rooms > div .top {
    flex-direction: column;
  }
}
.landing-our-rooms > div .top p {
  flex: 1;
  color: #9c9c9c;
  font-size: 20px;
  margin-bottom: 60px;
}
.landing-our-rooms > div .boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .landing-our-rooms > div .boxes {
    grid-template-columns: 1fr;
  }
}
.landing-our-rooms > div .boxes .box {
  display: flex;
  margin-top: 15px;
}
@media (max-width: 400px) {
  .landing-our-rooms > div .boxes .box {
    flex-direction: column;
  }
}
.landing-our-rooms > div .boxes .box > .left {
  flex: 1;
  position: relative;
  margin-right: -1px;
}
.landing-our-rooms > div .boxes .box > .left > img {
  width: 100%;
  height: 100%;
}
.landing-our-rooms > div .boxes .box > .left .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: rgba(0, 0, 0, 0.6980392157);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  color: #fff;
  padding-top: 15px;
}
.landing-our-rooms > div .boxes .box > .left .text p {
  text-align: center;
  font-size: 14px;
}
.landing-our-rooms > div .boxes .box > .right {
  flex: 1;
  padding: 15px;
  color: #fff;
}
@media (max-width: 400px) {
  .landing-our-rooms > div .boxes .box > .right {
    text-align: center;
  }
}
.landing-our-rooms > div .boxes .box > .right h4 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
}
.landing-our-rooms > div .boxes .box > .right p {
  font-size: 16px;
}
.landing-our-rooms > div .boxes .box > .right form {
  text-align: center;
}
.landing-our-rooms > div .boxes .box > .right form button {
  padding: 7.5px 30px;
  border: 2px solid #fff;
  border-radius: 8px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.landing-our-rooms > div .boxes .box > .right form button:hover {
  background-color: transparent;
}
.landing-our-rooms > div .boxes .box:first-of-type .right:not(.text .right) {
  background-color: #655d8a;
}
.landing-our-rooms > div .boxes .box:nth-of-type(2) .right:not(.text .right) {
  background-color: #db5896;
}
.landing-our-rooms > div .boxes .box:nth-of-type(3) .right:not(.text .right) {
  background-color: #eb8866;
}
.landing-our-rooms > div .boxes .box:nth-of-type(4) .right:not(.text .right) {
  background-color: #81b747;
}

.landing-your-children {
  margin-top: 45px;
  background-image: url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-list.jpg?id=311);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.landing-your-children.your-children {
  background: initial;
}
.landing-your-children > div > h3 {
  color: #575656;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.landing-your-children > div > h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #655d8a;
  width: 155px;
  height: 3px;
}
.landing-your-children > div .parent {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin-top: 75px;
}
@media (max-width: 768px) {
  .landing-your-children > div .parent {
    flex-direction: column;
  }
}
.landing-your-children > div .parent .left {
  flex: 1.2;
}
.landing-your-children > div .parent .left p {
  color: #655d8a;
  line-height: 26px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 45px;
}
.landing-your-children > div .parent .left form .box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.landing-your-children > div .parent .left form .box label {
  font-size: 16px;
  color: #9c9c9c;
  flex: 1;
}
.landing-your-children > div .parent .right {
  flex: 1;
}
.landing-your-children > div .parent .right .box {
  margin-bottom: 7.5px;
}
.landing-your-children > div .parent .right .box h4 {
  color: #fff;
  border-width: 2px;
  border-style: solid;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  padding: 10px;
  padding-left: 15px;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
}
.landing-your-children > div .parent .right .box h4 img {
  margin-inline-end: 15px;
}
.landing-your-children > div .parent .right .box .text {
  background-color: #fff;
  border-width: 2px;
  border-style: solid;
  border-top: none;
  text-align: center;
  padding: 7.5px;
  display: none;
}
.landing-your-children > div .parent .right .box .text p {
  font-size: 16px;
  color: #9c9c9c;
}
.landing-your-children > div .parent .right .box .text.active {
  display: block;
}
.landing-your-children > div .parent .right .box:first-of-type h4 {
  background-color: #db5896;
  border-color: #ba2b6f;
}
.landing-your-children > div .parent .right .box:first-of-type h4.active, .landing-your-children > div .parent .right .box:first-of-type h4:hover {
  background-color: #ba2b6f;
}
.landing-your-children > div .parent .right .box:first-of-type .text {
  border-color: #ba2b6f;
}
.landing-your-children > div .parent .right .box:nth-of-type(2) h4 {
  background-color: #3bbcd6;
  border-color: #1a9eb9;
}
.landing-your-children > div .parent .right .box:nth-of-type(2) h4.active, .landing-your-children > div .parent .right .box:nth-of-type(2) h4:hover {
  background-color: #1a9eb9;
}
.landing-your-children > div .parent .right .box:nth-of-type(2) .text {
  border-color: #1a9eb9;
}
.landing-your-children > div .parent .right .box:nth-of-type(3) h4 {
  background-color: #81b747;
  border-color: #5d9422;
}
.landing-your-children > div .parent .right .box:nth-of-type(3) h4.active, .landing-your-children > div .parent .right .box:nth-of-type(3) h4:hover {
  background-color: #5d9422;
}
.landing-your-children > div .parent .right .box:nth-of-type(3) .text {
  border-color: #5d9422;
}
.landing-your-children > div .bottom {
  padding: 60px 0;
}
.landing-your-children > div .bottom p {
  text-align: center;
  font-size: 39px;
  font-weight: bold;
  line-height: 45px;
  color: #655d8a;
}
.landing-your-children.your-children .box {
  margin-bottom: 7.5px;
}
.landing-your-children.your-children .box h4 {
  color: #fff;
  border-width: 2px;
  border-style: solid;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  padding: 10px;
  padding-left: 15px;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
}
.landing-your-children.your-children .box .text {
  border-width: 2px;
  border-style: solid;
  border-top: none;
  text-align: center;
  padding: 7.5px;
  display: none;
}
.landing-your-children.your-children .box .text p {
  font-size: 16px;
  color: #9c9c9c;
}
.landing-your-children.your-children .box .text.active {
  display: block;
}
.landing-your-children.your-children .box:first-of-type h4 {
  background-color: #db5896;
  border-color: #ba2b6f;
}
.landing-your-children.your-children .box:first-of-type h4.active, .landing-your-children.your-children .box:first-of-type h4:hover {
  background-color: #ba2b6f;
}
.landing-your-children.your-children .box:first-of-type .text {
  border-color: #ba2b6f;
}
.landing-your-children.your-children .box:nth-of-type(2) h4 {
  background-color: #3bbcd6;
  border-color: #1a9eb9;
}
.landing-your-children.your-children .box:nth-of-type(2) h4.active, .landing-your-children.your-children .box:nth-of-type(2) h4:hover {
  background-color: #1a9eb9;
}
.landing-your-children.your-children .box:nth-of-type(2) .text {
  border-color: #1a9eb9;
}
.landing-your-children.your-children .box:nth-of-type(3) h4 {
  background-color: #81b747;
  border-color: #5d9422;
}
.landing-your-children.your-children .box:nth-of-type(3) h4.active, .landing-your-children.your-children .box:nth-of-type(3) h4:hover {
  background-color: #5d9422;
}
.landing-your-children.your-children .box:nth-of-type(3) .text {
  border-color: #5d9422;
}

.landing-gallary {
  margin-top: -17px;
  background: #82b849 url(http://demo.cmssuperheroes.com/themeforest/wp-kindergarten/wp-content/uploads/2015/04/bg-vector.png?id=30) !important;
  padding: 30px 0;
}
.landing-gallary h3 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.landing-gallary h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #fff;
  width: 155px;
  height: 3px;
}
.landing-gallary .imgs {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 786px) {
  .landing-gallary .imgs {
    flex-direction: column;
  }
}
.landing-gallary .imgs figure {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 786px) {
  .landing-gallary .imgs figure {
    width: 200px;
  }
}
.landing-gallary .imgs figure img {
  width: 100%;
  height: 100%;
}
.landing-gallary .bottom {
  text-align: center;
  margin-top: 15px;
}
.landing-gallary .bottom a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  display: block;
  width: 50%;
  margin: auto;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .landing-gallary .bottom a {
    width: 80%;
  }
}
.landing-gallary .bottom a:hover {
  background-color: #fff;
  color: #5d9422;
  border-color: #5d9422;
}
.landing-gallary.gallary {
  background-color: transparent;
  padding-top: 0;
  margin-top: 0;
}
.landing-gallary.gallary .gallary-top {
  background-color: #655d8a;
  color: #fff;
  padding: 30px;
  text-align: center;
}
.landing-gallary.gallary .gallary-top p {
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 0;
  margin: auto;
  letter-spacing: 1px;
}

.landing-kindergarten {
  margin: 45px 0;
}
.landing-kindergarten > div h3 {
  color: #575656;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.landing-kindergarten > div h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #655d8a;
  width: 155px;
  height: 3px;
}
.landing-kindergarten > div .boxes {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  place-content: center;
  gap: 30px;
}
@media (max-width: 1000px) {
  .landing-kindergarten > div .boxes {
    grid-template-columns: repeat(2, 300px);
  }
}
@media (max-width: 650px) {
  .landing-kindergarten > div .boxes {
    grid-template-columns: 1fr;
  }
}
.landing-kindergarten > div .boxes .box .top {
  position: relative;
}
.landing-kindergarten > div .boxes .box .top span {
  background-color: #ffdd00;
  color: #655d8a;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 30px;
  position: absolute;
  top: 0;
  left: 20px;
}
.landing-kindergarten > div .boxes .box .top iframe {
  width: 100%;
  height: 200px;
}
.landing-kindergarten > div .boxes .box .text h4 {
  color: #655d8a;
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0;
}
.landing-kindergarten > div .boxes .box .text p {
  color: #9c9c9c;
  font-size: 16px;
}
.landing-kindergarten > div .boxes .box .text button {
  border: none;
  outline: none;
  background-color: transparent;
  color: #655d8a;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s;
}
.landing-kindergarten > div .boxes .box .text button:hover {
  color: #000;
}

.general-conditions .text {
  margin-top: 30px;
}
.general-conditions .text .top {
  text-align: center;
  margin-bottom: 30px;
}
.general-conditions .text .top h3 {
  color: #db5896;
  font-size: 40px;
  margin: 30px 0;
  font-family: "Amatic SC", cursive;
}
.general-conditions .text .top p {
  color: #655d8a;
  font-size: 16px;
  font-family: Dosis;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
}
.general-conditions .text > p {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0em;
  position: relative;
  padding-left: 30px;
}
.general-conditions .text > p::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #db5896;
  border-radius: 50%;
}
.general-conditions .bottom {
  margin-top: 30px;
}
.general-conditions .bottom p {
  color: #655d8a;
  font-size: 20px;
  text-align: center;
}
.general-conditions .bottom p span {
  color: #db5896;
}

.dashboard {
  margin-top: 30px;
}
.dashboard > div .radio {
  display: flex;
  gap: 15px;
}
.dashboard > div .radio > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dashboard > div .radio > div input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  outline: 1px solid #575656;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: transparent;
}
.dashboard > div .radio > div input:checked {
  background-color: #655d8a;
}
.dashboard > div h3 {
  font-size: 20px;
  text-align: center;
  font-family: Cairo;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0em;
}
.dashboard > div > form {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  width: 65%;
  margin: 15px auto;
}
@media (max-width: 992px) {
  .dashboard > div > form {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .dashboard > div > form {
    width: 100%;
  }
}
.dashboard > div > form .malty-box,
.dashboard > div > form .malty-box .boxes,
.dashboard > div > form .box {
  position: relative;
  width: 100%;
}
.dashboard > div > form .malty-box input,
.dashboard > div > form .malty-box textarea,
.dashboard > div > form .malty-box .boxes input,
.dashboard > div > form .malty-box .boxes textarea,
.dashboard > div > form .box input,
.dashboard > div > form .box select,
.dashboard > div > form .box textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #655d8a;
  border-radius: 8px;
  outline: none;
  color: #655d8a;
}
.dashboard > div > form .malty-box input[type=file],
.dashboard > div > form .malty-box textarea[type=file],
.dashboard > div > form .malty-box .boxes input[type=file],
.dashboard > div > form .malty-box .boxes textarea[type=file],
.dashboard > div > form .box input[type=file],
.dashboard > div > form .box textarea[type=file] {
  position: relative;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.dashboard > div > form .malty-box input[type=file]::before, .dashboard > div > form .malty-box input[type=file]::after,
.dashboard > div > form .malty-box textarea[type=file]::before,
.dashboard > div > form .malty-box textarea[type=file]::after,
.dashboard > div > form .malty-box .boxes input[type=file]::before,
.dashboard > div > form .malty-box .boxes input[type=file]::after,
.dashboard > div > form .malty-box .boxes textarea[type=file]::before,
.dashboard > div > form .malty-box .boxes textarea[type=file]::after,
.dashboard > div > form .box input[type=file]::before,
.dashboard > div > form .box input[type=file]::after,
.dashboard > div > form .box textarea[type=file]::before,
.dashboard > div > form .box textarea[type=file]::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.dashboard > div > form .malty-box input[type=file]::before,
.dashboard > div > form .malty-box textarea[type=file]::before,
.dashboard > div > form .malty-box .boxes input[type=file]::before,
.dashboard > div > form .malty-box .boxes textarea[type=file]::before,
.dashboard > div > form .box input[type=file]::before,
.dashboard > div > form .box textarea[type=file]::before {
  content: "Download";
  right: 10px;
  width: 95px;
  height: 50%;
  padding: 5px;
  color: #fff;
  background-color: #655d8a;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.dashboard > div > form .malty-box input[type=file]::after,
.dashboard > div > form .malty-box textarea[type=file]::after,
.dashboard > div > form .malty-box .boxes input[type=file]::after,
.dashboard > div > form .malty-box .boxes textarea[type=file]::after,
.dashboard > div > form .box input[type=file]::after,
.dashboard > div > form .box textarea[type=file]::after {
  content: "";
  right: 15px;
  width: 22px;
  height: 22px;
  background-image: url(../images/frame.png);
  background-repeat: no-repeat;
}
.dashboard > div > form .malty-box textarea,
.dashboard > div > form .malty-box .boxes textarea,
.dashboard > div > form .box textarea {
  height: 190px;
  resize: none;
}
.dashboard > div > form .malty-box .fill,
.dashboard > div > form .malty-box .boxes .fill,
.dashboard > div > form .box .fill {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #655d8a;
  border-radius: 8px;
}
.dashboard > div > form .malty-box label,
.dashboard > div > form .malty-box .boxes label,
.dashboard > div > form .box label {
  position: absolute;
  top: -13px;
  left: 15px;
  background-color: #fff;
  color: #655d8a;
  font-weight: bold;
  z-index: 5;
  font-family: "Cairo";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
}
.dashboard > div > form .malty-box .checks,
.dashboard > div > form .malty-box .boxes .checks,
.dashboard > div > form .box .checks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
.dashboard > div > form .malty-box .checks .check,
.dashboard > div > form .malty-box .boxes .checks .check,
.dashboard > div > form .box .checks .check {
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  align-items: center;
}
.dashboard > div > form .malty-box .checks .check label,
.dashboard > div > form .malty-box .boxes .checks .check label,
.dashboard > div > form .box .checks .check label {
  position: static;
  color: #000;
  flex: 1;
}
.dashboard > div > form .malty-box .checks .check input[type=checkbox],
.dashboard > div > form .malty-box .boxes .checks .check input[type=checkbox],
.dashboard > div > form .box .checks .check input[type=checkbox] {
  width: auto;
  padding: 10px;
  border-radius: 0;
}
.dashboard > div > form .malty-box button,
.dashboard > div > form .malty-box .boxes button,
.dashboard > div > form .box button {
  border: 1px solid #655d8a;
  border-radius: 8px;
  outline: none;
  color: #655d8a;
  padding: 7.5px;
  background-color: transparent;
  font-size: 16px;
  font-weight: bold;
  width: 45%;
  transition: 0.3s;
}
@media (max-width: 400px) {
  .dashboard > div > form .malty-box button,
  .dashboard > div > form .malty-box .boxes button,
  .dashboard > div > form .box button {
    width: 48%;
    font-size: 14px;
  }
  .dashboard > div > form .malty-box button img,
  .dashboard > div > form .malty-box .boxes button img,
  .dashboard > div > form .box button img {
    width: 16px !important;
  }
}
.dashboard > div > form .malty-box button:last-of-type,
.dashboard > div > form .malty-box .boxes button:last-of-type,
.dashboard > div > form .box button:last-of-type {
  background-color: #655d8a;
  color: #fff;
}
.dashboard > div > form .malty-box button:hover,
.dashboard > div > form .malty-box .boxes button:hover,
.dashboard > div > form .box button:hover {
  opacity: 0.7;
}
.dashboard > div > form .malty-box button img,
.dashboard > div > form .malty-box .boxes button img,
.dashboard > div > form .box button img {
  width: 20px;
  margin: 0 7.5px;
}
.dashboard > div > form .malty-box,
.dashboard > div > form .malty-box .boxes {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .dashboard > div > form .malty-box,
  .dashboard > div > form .malty-box .boxes {
    flex-direction: column;
  }
}
.dashboard > div > form .malty-box .box,
.dashboard > div > form .malty-box .boxes .box {
  flex: 1;
}
.dashboard > div > form .malty-box {
  margin-top: 75px;
}
.dashboard > div > form .malty-box h5 {
  position: absolute;
  top: -43px;
  font-size: 16px;
  font-weight: bold;
  color: #655d8a;
}
.dashboard > div > form .malty-box p {
  position: absolute;
  top: -80px;
  font-size: 20px;
  font-weight: bold;
}

footer {
  margin-top: 45px;
  padding: 45px 15px;
  background-color: #655d8a;
  color: #fff;
}
footer > div {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  footer > div {
    flex-direction: column;
    gap: 45px;
  }
}
footer > div .left {
  flex: 1;
}
footer > div .right {
  flex: 1.5;
}
footer > div .left,
footer > div .right {
  display: flex;
  gap: 15px;
}
@media (max-width: 500px) {
  footer > div .left,
  footer > div .right {
    flex-direction: column;
    align-items: center;
  }
}
footer > div .left h3,
footer > div .right h3 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  font-family: "Amatic SC", cursive;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  margin-bottom: 45px;
  text-align: initial;
  font-size: 30px;
}
footer > div .left h3::after,
footer > div .right h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #fff;
  width: 155px;
  height: 3px;
}
footer > div .left h3::after,
footer > div .right h3::after {
  display: none;
}
@media (max-width: 500px) {
  footer > div .left h3,
  footer > div .right h3 {
    text-align: center;
  }
}
footer > div .left .one,
footer > div .left .tow,
footer > div .left .three,
footer > div .right .one,
footer > div .right .tow,
footer > div .right .three {
  flex: 1;
}
@media (max-width: 500px) {
  footer > div .left .one,
  footer > div .left .tow,
  footer > div .left .three,
  footer > div .right .one,
  footer > div .right .tow,
  footer > div .right .three {
    text-align: center;
  }
}
footer > div .left .one p,
footer > div .left .tow p,
footer > div .left .three p,
footer > div .right .one p,
footer > div .right .tow p,
footer > div .right .three p {
  font-size: 16px;
}
footer > div .left .one h5,
footer > div .left .tow h5,
footer > div .left .three h5,
footer > div .right .one h5,
footer > div .right .tow h5,
footer > div .right .three h5 {
  font-weight: bold;
}
footer > div .left .one ul,
footer > div .left .tow ul,
footer > div .left .three ul,
footer > div .right .one ul,
footer > div .right .tow ul,
footer > div .right .three ul {
  list-style-type: none;
  padding: 0;
}
footer > div .left .one ul li,
footer > div .left .tow ul li,
footer > div .left .three ul li,
footer > div .right .one ul li,
footer > div .right .tow ul li,
footer > div .right .three ul li {
  margin: 15px 0;
}
footer > div .left .one a,
footer > div .left .tow a,
footer > div .left .three a,
footer > div .right .one a,
footer > div .right .tow a,
footer > div .right .three a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
footer > div .left .one a:hover,
footer > div .left .tow a:hover,
footer > div .left .three a:hover,
footer > div .right .one a:hover,
footer > div .right .tow a:hover,
footer > div .right .three a:hover {
  border-bottom: 2px solid #fff;
}
@media (max-width: 992px) {
  footer.footer > div {
    align-items: center;
  }
}
footer.footer .one > img {
  width: 60px;
}
footer.footer h4 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}
footer.footer a {
  display: flex;
  gap: 7.5px;
  align-items: center;
  text-decoration: none;
  color: #fff;
  display: block;
  margin: 10px;
  transition: 0.3s;
}
footer.footer a:hover {
  color: rgba(255, 255, 255, 0.3);
}
footer.footer a i {
  margin-right: 7.5px;
}
footer.footer .contact {
  display: flex;
}
footer.footer .contact a {
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 4.2857142857px;
  display: grid;
  place-content: center;
}
footer.footer .contact a:hover {
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.scroll-zero {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #fff;
  display: grid;
  place-content: center;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  background: rgb(223, 205, 239);
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
.scroll-zero:hover {
  border: 1px solid #655d8a;
}
.scroll-zero.active {
  display: grid;
}

@media (max-width: 350px) {
  .landing-header > div {
    flex-direction: column;
  }
}/*# sourceMappingURL=style-ltr.css.map */
