* {
  padding: 0;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

html {
  scroll-behavior: smooth;
}

.loader {
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, right top, from(#432f77), to(#5050ca));
  background: linear-gradient(90deg, #432f77 0%, #5050ca 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  z-index: 9999;
}

.loader .text {
  font-size: 2.5em;
  font-weight: bold;
  color: white;
  margin-top: 5vh;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.water {
  margin-top: 15vh;
  width: 300px;
  height: 400px;
  border-bottom-left-radius: 10%;
  border-bottom-right-radius: 10%;
  background-color: white;
  position: relative;
  -webkit-box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, 0.5), 0 4px 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, 0.5), 0 4px 10px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.water:before, .water:after {
  content: '';
  position: absolute;
  width: 400px;
  height: 380px;
  top: -150px;
  left: -10%;
  background-color: rgba(135, 206, 235, 0.7);
}

.water:before {
  border-radius: 45%;
  -webkit-animation: wave 5s linear infinite;
          animation: wave 5s linear infinite;
}

.water:after {
  border-radius: 35%;
  background: rgba(135, 206, 235, 0.7);
  -webkit-animation: wave 5s linear infinite;
          animation: wave 5s linear infinite;
}

@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.navbar {
  width: 100%;
  height: 15vh;
  position: fixed;
  color: white;
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 0.01em solid #b1b1b1;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  font-family: "Montserrat", sans-serif;
}

.navbar .logo {
  width: 20%;
  height: 15vh;
  float: left;
}

.navbar .logo .contain {
  width: 100%;
  height: 15vh;
  margin-left: 5%;
}

.navbar .logo .contain img {
  width: 100%;
  height: 15vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .options {
  width: 80%;
  height: 15vh;
  float: left;
  z-index: 600;
}

.navbar .options .openMenu, .navbar .options .closeMenu {
  display: none;
}

.navbar .options ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 15vh;
  cursor: pointer;
}

.navbar .options ul a {
  color: white;
  text-decoration: none;
}

.navbar .options ul li {
  list-style: none;
  display: inline;
  text-transform: capitalize;
  position: relative;
  height: 5vh;
}

.navbar .options ul li::before {
  content: "";
  width: 0%;
  height: 0.3vh;
  bottom: 0;
  background: #5050CA;
  position: absolute;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.navbar .options ul li:hover:before {
  width: 100%;
  background: white;
}

.scrolling-active {
  width: 100%;
  height: 10vh;
  position: fixed;
  z-index: 99;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  background: -webkit-gradient(linear, left top, right top, from(#654998), color-stop(45%, #5150c8), color-stop(80%, #8786d9), to(#8786d9));
  background: linear-gradient(90deg, #654998 0%, #5150c8 45%, #8786d9 80%, #8786d9 100%);
}

.scrolling-active .logo {
  height: 10vh;
}

.scrolling-active .logo .contain {
  height: 10vh;
  width: 100%;
}

.scrolling-active .logo .contain img {
  height: 10vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.scrolling-active .options {
  height: 10vh;
}

.scrolling-active .options ul {
  height: 10vh;
}

.nav-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 850px) {
  .navbar .logo {
    width: 15%;
  }
  .navbar .options {
    width: 85%;
  }
}

@media screen and (max-width: 1000px) {
  .navbar .logo {
    width: 50%;
  }
  .navbar .logo .contain {
    width: 35%;
    margin-left: 15%;
  }
  .navbar .options {
    float: right;
    width: 15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .options .mainMenu {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: top 1s ease;
    transition: top 1s ease;
    display: none;
    font-size: 1.5em;
    line-height: 180%;
    z-index: 10000;
  }
  .navbar .options .mainMenu .closeMenu {
    display: block;
  }
  .navbar .options .openMenu {
    display: block;
    font-size: 2.5em;
  }
  .scrolling-active .logo .contain {
    width: 20%;
    margin-left: 20%;
  }
}

.mainimg {
  height: 127vh;
  width: 100%;
  background-image: url("../Images/background/Main Img1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.mainimg .mobile {
  height: 800px;
  width: 450px;
  margin-top: 23vh;
  margin-left: 7%;
  float: left;
}

.mainimg .mobile img {
  height: 100%;
  width: 100%;
}

.mainimg .content {
  width: 50%;
  height: 70vh;
  margin-top: 45vh;
  margin-left: 3.5%;
  float: left;
  line-height: 200%;
  color: white;
  z-index: 100;
}

.mainimg .content .title {
  font-size: 5.5em;
  font-family: "Josefin Sans", sans-serif;
}

.mainimg .content .cap {
  font-size: 2.5em;
}

.mainimg .content button {
  padding: 1em 1em;
  font-size: 1.2em;
  border-radius: 1em;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.mainimg .content button:hover {
  background: #5050CA;
  color: white;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(255, 255, 255, 0.75);
          box-shadow: 0px 10px 30px 0px rgba(255, 255, 255, 0.75);
}

@media screen and (max-width: 1155px) {
  .mainimg .mobile {
    height: 800px;
    width: 400px;
  }
  .mainimg .content {
    width: 45%;
    margin-left: 2%;
  }
}

@media screen and (max-width: 920px) {
  .mainimg .mobile {
    margin-left: 3%;
  }
}

@media screen and (max-width: 800px) {
  .mainimg {
    height: 100vh;
  }
  .mainimg .mobile {
    display: none;
  }
  .mainimg .content {
    width: 90%;
    margin-left: 5%;
    margin-top: 20vh;
    text-align: center;
  }
}

.about {
  width: 100%;
  height: 300vh;
  margin-top: 17vh;
  text-align: center;
}

.about .icon {
  width: 5%;
  height: 10vh;
  margin-left: 47.5%;
}

.about .icon img {
  width: 100%;
  height: 10vh;
}

.about .title {
  text-transform: uppercase;
  width: 25%;
  margin-top: 3vh;
  position: relative;
  margin-left: 37.5%;
  color: #0C0C82;
  font-family: "Montserrat", sans-serif;
}

.about .title::before {
  content: '';
  height: 0.5vh;
  width: 22%;
  background: #0C0C82;
  position: absolute;
  top: 35%;
  left: 0;
}

.about .title::after {
  content: '';
  height: 0.5vh;
  width: 22%;
  background: #0C0C82;
  position: absolute;
  top: 35%;
  right: 0;
}

.about .caption {
  margin: 5vh 0;
}

.about .panel {
  width: 100%;
  height: 80vh;
  margin-top: 12vh;
}

.about .panel .text {
  width: 50%;
  height: 80vh;
  background: #F5F6FF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.about .panel .text .abouttitle {
  font-size: 2em;
  font-family: "Josefin Sans", sans-serif;
}

.about .panel .text .content {
  font-size: 1em;
  padding: 0 2em;
  line-height: 150%;
}

.about .panel .img {
  width: 50%;
  height: 80vh;
}

.about .panel .img img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.about .panel .mob {
  background-image: url("../Images/About Us/Dairy.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about .panel .mob .mobile {
  height: 100vh;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(15%, -10%);
          transform: translate(15%, -10%);
}

.about .panel .mob .mobile img {
  width: 100%;
  height: 100vh;
  -o-object-fit: fill;
     object-fit: fill;
}

.about .panel1 .text, .about .panel3 .text {
  float: left;
}

.about .panel1 .img, .about .panel3 .img {
  float: right;
}

.about .panel2 .text {
  float: right;
}

.about .panel2 .img {
  float: left;
}

@media screen and (max-width: 1235px) {
  .about .icon {
    width: 10%;
    margin-left: 45%;
  }
  .about .title {
    width: 35%;
    margin-left: 32.5%;
  }
}

@media screen and (max-width: 1000px) {
  .about .panel .mob .mobile {
    width: 75%;
    -webkit-transform: translate(10%, -10%);
            transform: translate(10%, -10%);
  }
}

@media screen and (max-width: 800px) {
  .about {
    margin-top: 5vh;
  }
  .about .title {
    width: 50%;
    margin-left: 25%;
  }
}

@media screen and (max-width: 640px) {
  .about {
    height: 320vh;
  }
  .about .panel {
    margin: 0;
    height: auto;
  }
  .about .panel .text {
    width: 100%;
    height: auto;
  }
  .about .panel .img {
    width: 100%;
    height: 70vh;
  }
  .about .panel .mobile {
    display: none;
  }
  .about .panel1 .img {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .about {
    height: 330vh;
  }
  .about .icon {
    width: 20%;
    margin-left: 40%;
  }
  .about .title {
    width: 90%;
    margin-left: 5%;
  }
}

@media screen and (max-width: 420px) {
  .about {
    height: 340vh;
  }
}

.features {
  height: 175vh;
  width: 100%;
  text-align: center;
}

.features .title {
  text-transform: uppercase;
  width: 25%;
  margin-top: 5vh;
  position: relative;
  margin-left: 37.5%;
  color: #554EC0;
  font-family: "Montserrat", sans-serif;
}

.features .title::before {
  content: '';
  height: 0.5vh;
  width: 30%;
  background: #554EC0;
  position: absolute;
  top: 35%;
  left: 0;
}

.features .title::after {
  content: '';
  height: 0.5vh;
  width: 30%;
  background: #554EC0;
  position: absolute;
  top: 35%;
  right: 0;
}

.features .caption {
  margin: 3vh 0;
}

.features .content {
  height: 150vh;
  width: 80%;
  margin-top: 5vh;
  margin-left: 10%;
  overflow: hidden;
}

.features .content .panel {
  height: 25vh;
  width: 60%;
  background-image: url("../Images/background/divbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  margin-top: 2.5vh;
  border-radius: 2em;
}

.features .content .panel .topic {
  font-size: 1.4em;
  font-family: "Josefin Sans", sans-serif;
}

.features .content .panel .text {
  width: 70%;
  margin-left: 15%;
}

.features .content .panel1, .features .content .panel3, .features .content .panel5 {
  margin-left: 25%;
  position: relative;
}

.features .content .panel1::before, .features .content .panel3::before, .features .content .panel5::before {
  content: '';
  position: absolute;
  width: 20vh;
  height: 20vh;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-70%);
          transform: translateX(-70%);
  border: 0.7em solid black;
  background: white;
  background-repeat: no-repeat;
  background-size: cover;
}

.features .content .panel1::before {
  background-image: url("../Images/features/fastandsimple.png");
}

.features .content .panel3::before {
  background-image: url("../Images/features/awesomeexperience.png");
}

.features .content .panel2, .features .content .panel4 {
  margin-left: 10%;
  position: relative;
}

.features .content .panel2::before, .features .content .panel4::before {
  content: '';
  position: absolute;
  width: 20vh;
  height: 20vh;
  border-radius: 50%;
  right: 0;
  top: 0;
  -webkit-transform: translateX(70%);
          transform: translateX(70%);
  border: 0.7em solid black;
  background: white;
  background-repeat: no-repeat;
  background-size: cover;
}

.features .content .panel2::before {
  background-image: url("../Images/features/onlinesupport.png");
}

.features .content .panel4::before {
  background-image: url("../Images/features/onlinepayment.png");
}

.features .content .panel5::before {
  background-image: url("../Images/features/language.png");
}

@media screen and (max-width: 760px) {
  .features .title {
    width: 40%;
    margin-left: 30%;
  }
  .features .content {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 590px) {
  .features .content .panel {
    width: 75%;
  }
  .features .content .panel2, .features .content .panel4 {
    margin-left: 0;
  }
}

@media screen and (max-width: 440px) {
  .features {
    height: 270vh;
  }
  .features .title {
    width: 90%;
    margin-left: 5%;
  }
  .features .content {
    height: 235vh;
  }
  .features .content .panel1, .features .content .panel3, .features .content .panel5, .features .content .panel2, .features .content .panel4 {
    width: 100%;
    margin-left: 0;
    margin-top: 15vh;
    height: 30vh;
    text-align: center;
  }
  .features .content .panel1 .topic, .features .content .panel3 .topic, .features .content .panel5 .topic, .features .content .panel2 .topic, .features .content .panel4 .topic {
    margin-top: 7vh;
  }
  .features .content .panel1 .text, .features .content .panel3 .text, .features .content .panel5 .text, .features .content .panel2 .text, .features .content .panel4 .text {
    width: 100%;
    margin-left: 0;
  }
  .features .content .panel2::before, .features .content .panel4::before {
    left: 0;
  }
  .features .content .panel1::before, .features .content .panel3::before, .features .content .panel5::before, .features .content .panel2::before, .features .content .panel4::before {
    -webkit-transform: translate(80%, -60%);
            transform: translate(80%, -60%);
  }
}

@media screen and (max-width: 350px) {
  .features {
    height: 290vh;
  }
}

.screenshots {
  height: 120vh;
  width: 100%;
  margin-top: 10vh;
  background: linear-gradient(155deg, #544fc3 0%, #62499c 100%);
}

.screenshots .title {
  text-transform: uppercase;
  width: 30%;
  position: relative;
  margin-left: 35%;
  text-align: center;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.screenshots .title::before {
  content: '';
  height: 0.5vh;
  width: 20%;
  background: white;
  position: absolute;
  top: 35%;
  left: 0;
}

.screenshots .title::after {
  content: '';
  height: 0.5vh;
  width: 20%;
  background: white;
  position: absolute;
  top: 35%;
  right: 0;
}

.screenshots .leftscreen {
  width: 27%;
  margin-left: 3.25%;
  height: 100vh;
  float: left;
  margin-top: 4vh;
}

.screenshots .leftscreen .mobile {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4.2% 92.5% 3.3%;
      grid-template-columns: 4.2% 92.5% 3.3%;
  -ms-grid-rows: 9.2% 82.5% 8.3%;
      grid-template-rows: 9.2% 82.5% 8.3%;
}

.screenshots .leftscreen .mobile img {
  width: 100%;
  height: 100vh;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/5;
}

.screenshots .leftscreen .mobile .screen {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  overflow: hidden;
}

.screenshots .leftscreen .wrapper {
  width: 100%;
  height: 100%;
}

.screenshots .leftscreen .slides-container {
  height: 100%;
  -webkit-transition: 900ms cubic-bezier(0.48, 0.15, 0.18, 1);
  transition: 900ms cubic-bezier(0.48, 0.15, 0.18, 1);
  position: relative;
}

.screenshots .leftscreen .slide-image {
  height: 100%;
  width: 100%;
  float: left;
  position: absolute;
}

.screenshots .leftscreen .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.screenshots .leftscreen .navigation-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 16px 0;
  display: none;
}

.screenshots .leftscreen .single-dot {
  background: #333;
  height: 19px;
  width: 19px;
  border-radius: 50%;
  margin: 0 9px;
  cursor: pointer;
  -webkit-transition: 400ms;
  transition: 400ms;
}

.screenshots .leftscreen .single-dot.active {
  background: #eee;
  height: 25px;
  width: 25px;
  margin: 0 6px;
}

.screenshots .textpanel {
  width: 30%;
  height: 90vh;
  float: left;
  margin-top: 15vh;
  margin-left: 3.25%;
}

.screenshots .textpanel .tpanel {
  width: 100%;
  height: 21.25vh;
  border-right: 0.01em solid rgba(225, 225, 225, 0.7);
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 0 2em;
}

.screenshots .textpanel .tpanel .paneltitle {
  font-size: 1.3em;
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  color: rgba(225, 225, 225, 0.7);
  font-family: "Josefin Sans", sans-serif;
}

.screenshots .textpanel .tpanel .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 6vh;
  width: 6vh;
  background: rgba(225, 225, 225, 0.7);
  border-radius: 50%;
  position: absolute;
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  font-size: 1.5em;
  color: #412B78;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.screenshots .textpanel .tpanel .caption {
  padding: 1em 0;
  clear: both;
  color: rgba(225, 225, 225, 0.7);
}

.screenshots .textpanel:last-child .tpanel {
  border: none;
  text-align: left;
  border-left: 0.01em solid rgba(225, 225, 225, 0.7);
}

.screenshots .textpanel:last-child .tpanel .number {
  position: absolute;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.screenshots .textpanel .tpanel:nth-child(4), .screenshots .textpanel .tpanel:last-child {
  border: none;
}

.screenshots .textpanel .tpanel:hover .paneltitle {
  color: white;
}

.screenshots .textpanel .tpanel:hover .number {
  background: white;
}

.screenshots .textpanel .tpanel:hover .caption {
  color: white;
}

@media screen and (max-width: 915px) {
  .screenshots .title {
    width: 50%;
    margin-left: 25%;
  }
  .screenshots .leftscreen {
    width: 40%;
  }
  .screenshots .textpanel:nth-child(2) {
    margin-left: 0;
  }
  .screenshots .textpanel {
    width: 26.5%;
  }
}

@media screen and (max-width: 815px) {
  .screenshots .textpanel .tpanel .caption {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .screenshots .leftscreen {
    width: 50%;
    margin-top: 2vh;
    margin-left: 25%;
  }
  .screenshots .leftscreen .navigation-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .screenshots .textpanel {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .screenshots .title {
    width: 70%;
    margin-left: 15%;
  }
  .screenshots .leftscreen {
    width: 70%;
    margin-left: 15%;
  }
}

@media screen and (max-width: 380px) {
  .screenshots .leftscreen {
    width: 85%;
    margin-left: 7.5%;
  }
}

.appguide {
  margin-bottom: 3vh;
}

.appguide .title {
  text-transform: uppercase;
  width: 20%;
  margin-top: 3vh;
  position: relative;
  margin-left: 40%;
  text-align: center;
  color: #432D79;
  font-family: "Montserrat", sans-serif;
}

.appguide .title::before {
  content: '';
  height: 0.5vh;
  width: 24%;
  background: #432D79;
  position: absolute;
  top: 35%;
  left: 0;
}

.appguide .title::after {
  content: '';
  height: 0.5vh;
  width: 24%;
  background: #432D79;
  position: absolute;
  top: 35%;
  right: 0;
}

.appguide .ytvideo {
  height: 50vh;
  width: 100%;
}

.appguide .ytvideo .video {
  height: 40vh;
  margin-top: 2vh;
  width: 50%;
  margin-left: 25%;
  border-radius: 1em;
}

.appguide .ytvideo .video img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .appguide .title {
    width: 30%;
    margin-left: 35%;
  }
  .appguide .ytvideo .video {
    width: 70%;
    margin-left: 15%;
  }
}

@media screen and (max-width: 450px) {
  .appguide .title {
    width: 60%;
    margin-left: 20%;
  }
  .appguide .ytvideo .video {
    width: 95%;
    margin-left: 2.5%;
  }
}

.footer {
  height: 45vh;
  width: 100%;
  background: linear-gradient(45deg, #544fc2 0%, #634a9a 100%);
  text-align: center;
  color: white;
}

.footer a {
  text-decoration: none;
  color: white;
}

.footer acronym {
  text-decoration: none;
  cursor: pointer;
}

.footer .division {
  height: 90%;
  width: 33.3%;
  float: left;
}

.footer .division .logo {
  width: 100%;
  height: 15vh;
  margin-top: 0.5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 3em;
  font-family: "Josefin Sans", sans-serif;
}

.footer .division .logo .img {
  width: 20%;
  height: 95%;
}

.footer .division .logo .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .division .title {
  width: 100%;
  height: 10vh;
  font-weight: bold;
  font-size: 1.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Montserrat", sans-serif;
}

.footer .division .socialmedia {
  width: 50%;
  margin-left: 25%;
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .division .socialmedia .fab {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.02em solid white;
  border-radius: 50%;
  padding: 0.5em;
  font-size: 1.3em;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.footer .division .socialmedia .fa-facebook-f {
  padding: 0.5em 0.65em;
}

.footer .division .socialmedia .fa-youtube {
  padding: 0.5em 0.4em;
}

.footer .division .socialmedia .fa-linkedin-in {
  padding: 0.5em 0.55em;
}

.footer .division .socialmedia .fab:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(255, 255, 255, 0.65);
          box-shadow: 0px 0px 15px 5px rgba(255, 255, 255, 0.65);
}

.footer .division .socialmedia .fa-facebook-f:hover {
  background: #38548E;
}

.footer .division .socialmedia .fa-twitter:hover {
  background: #1DA9DB;
}

.footer .division .socialmedia .fa-linkedin-in:hover {
  background: #0A66C2;
}

.footer .division .socialmedia .fa-youtube:hover {
  background: #FA0000;
}

.footer .division .socialmedia .fa-instagram:hover {
  background: linear-gradient(235deg, #8f4ec1 0%, #ed080e 69%, #eec600 100%);
}

.footer .division .info {
  height: 10vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.footer .division .info .email {
  font-size: 0.8em;
  color: #b8b8b8;
}

.footer .division .links ul {
  text-align: left;
  margin-left: 40%;
  list-style: none;
}

.footer .division .links li {
  line-height: 150%;
}

.footer .division .links li:hover {
  color: #bdbdbd;
}

.footer .division .links li:before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  margin-left: -20px;
  margin-right: 10px;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .footer {
    height: 170vh;
  }
  .footer .division {
    width: 100%;
    height: 35%;
  }
  .footer .division .links {
    height: 10vh;
  }
  .footer .division .links ul {
    margin-left: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .division .links ul li:before {
    content: "";
  }
  .footer .d3 {
    height: 25vh;
  }
}

.contactus {
  background-color: #ffffff;
  width: 70%;
  min-width: 420px;
  padding: 35px 50px;
  margin: 10vh auto;
  border-radius: 10px;
  -webkit-box-shadow: 20px 30px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 20px 30px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 15vh;
}

.contactus h1 {
  font-size: 30px;
  text-align: center;
  color: #1c093c;
  font-family: "Josefin Sans", sans-serif;
}

.contactus p {
  position: relative;
  margin: auto;
  width: 100%;
  text-align: center;
  color: #606060;
  font-size: 14px;
  font-weight: 400;
}

.contactus form {
  width: 100%;
  position: relative;
  margin: 30px auto 0 auto;
}

.contactus .row {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px 30px;
  margin-bottom: 20px;
}

.contactus label {
  color: #1c093c;
  font-size: 14px;
}

.contactus textarea,
.contactus input {
  width: 100%;
  font-weight: 400;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1.2px solid #c4cae0;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
}

.contactus textarea {
  resize: none;
  font-family: "Inter", sans-serif;
}

.contactus textarea:focus, .contactus input:focus {
  outline: none;
  border-color: #6f6df4;
}

.contactus button {
  border: none;
  padding: 10px 20px;
  background: linear-gradient(130deg, #6f6df4, #4c46f5);
  color: #ffffff;
  border-radius: 3px;
  cursor: pointer;
}

.pricing {
  padding: 0em;
  width: 100%;
}

.pricing .title {
  text-transform: uppercase;
  width: 25%;
  margin-top: 3vh;
  position: relative;
  margin-left: 37.5%;
  color: #0C0C82;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.pricing .title::before {
  content: '';
  height: 0.5vh;
  width: 22%;
  background: #0C0C82;
  position: absolute;
  top: 35%;
  left: 0;
}

.pricing .title::after {
  content: '';
  height: 0.5vh;
  width: 22%;
  background: #0C0C82;
  position: absolute;
  top: 35%;
  right: 0;
}

.pricing .section {
  padding: 0em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 5vh;
}

.pricing .section .plan {
  padding: 1em;
  width: 35%;
  border-radius: 0.3em;
  overflow: hidden;
  padding: 1em;
  background: #554EC0;
  color: white;
}

.pricing .section .plan .planTitle {
  padding: 1em;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: bold;
}

.pricing .section .plan table {
  width: 80%;
  margin: auto;
  font-weight: bold;
}

.pricing .section .plan .fa-check {
  color: #A4EB02;
}

.pricing .section .plan .fa-times {
  color: #DC271D;
}
/*# sourceMappingURL=style.css.map */