@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
}
:root {
  --text1-color: #fff;
  --text2-color: #14105b;
  --btn-color: #009fb7;
  --bg-color: #f3f7ff;
  --box-color: #eee;
  --hover-color: #26b8ac;
  --topic-color: #fb5004;
  --brand-color: #007bff; /* rgba(0, 123, 255, 1) */
  --aboutus-color: #40d8a8;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0.5rem;
  font-size: 66%;
}
body {
  background: var(--bg-color);
  width: 100%;
  height: 100vh;
}
h2 {
  position: relative;
  font-size: 6vmin;
  letter-spacing: 3px;
  color: var(--text1-color);
  -webkit-text-stroke: 0.05vmin var(--text2-color);
}
h2::before {
  content: attr(data-text);
  position: absolute;
  width: 0;
  height: 100%;
  color: var(--hover-color);
  -webkit-text-stroke: 0.04vmin var(--text2-color);
  border-right: 2px solid var(--hover-color);
  overflow: hidden;
  animation: text-animate 8s linear infinite;
}
@keyframes text-animate {
  0%,
  10%,
  100% {
    width: 0;
  }
  70%,
  90% {
    width: 100%;
    border-color: transparent;
  }
}
h1 {
  font-size: 6vmin;
  color: var(--topic-color);
}
hr {
  box-shadow: 0 0 10px -5px var(--text2-color) inset !important;
  width: 100%;
  height: 1.5px;
}
/* *****START .btn***** */
.btn {
  display: inline-block;
  padding: 0.8rem 3.8rem;
  font-size: 1.8rem;
  border: 0.1rem solid var(--btn-color);
  outline: 0;
  background: var(--btn-color);
  border-radius: 1rem;
  cursor: pointer;
  text-align: center;
  color: var(--text1-color);
}
.btn:hover {
  background: none;
  color: var(--btn-color);
}
/* *****END .btn***** */
/* *****START .underline***** */
.underline {
  width: 38vmin;
  height: 4px;
  background: #fb5004;
  margin: 5px auto;
  border-radius: 5px;
  transition: all ease-in-out 5s;
}
.underline.show {
  width: 80%;
  border: 2px solid #fc036b;
  border-radius: 50%;
  box-shadow: 0 4px 5px rgba(63, 129, 235, 1);
}
/* *****END .underline***** */
/* *****START .heading***** */
.heading {
  margin: 1rem auto;
  /* text-align: center; */
  color: var(--text2-color);
  overflow: hidden;
}
/* *****END .heading***** */
/* *****START .section-area***** */
.section-area {
  padding: 3rem 9%;
}
/* *****END .section-area***** */
/* *****START header***** */
.nav-container {
  position: relative;
  /* height: 40vh; */
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 10px 130px 130px 130px rgb(175, 255, 235);
}
.webtop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.nav-container .webtop img {
  position: relative;
  top: -18vh;
  left: 0;
  /* height: 50vh; */
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
}
.top-line {
  position: fixed;
  background: rgb(255, 119, 0);
  height: 3.5px;
  width: 100%;
  z-index: 102;
  top: 0;
  left: 0;
  right: 0;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 101;
  width: 100%;
  height: 12vh;
  display: flex;
  align-items: center;
}
header .header-main {
  position: relative;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1rem 1%;
  height: 12vh;
  width: 100%;
}
header .logo {
  display: flex;
  position: relative;
  color: var(--text1-color);
  padding: 0.4rem;
  align-items: center;
  justify-content: center;
  width: 20%;
}
header .logo .com-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.7% !important;
  height: 100%;
  z-index: 1;
  transform: scale(1.8);
  /* border-radius: 50%;
    overflow: hidden; */
}
header .logo .com-icon img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  padding-top: 2.5px;
}
header .logo .com-icon img:hover {
  transform: scale(1.2);
  transition: 0.5s;
}
header .logo .com-name {
  font-size: 4vmin !important;
  color: #e8b900;
  font-weight: 800;
  letter-spacing: 3px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  width: 100;
  z-index: 1;
}
header .logo .com-name:hover {
  cursor: pointer;
  transition: 0.5s;
  /* background: -webkit-linear-gradient(transparent, transparent),
    -webkit-linear-gradient(top, rgba(213,173,109,1) 0%, rgba(213,173,109,1) 26%,
     rgba(226,186,120,1) 35%, rgba(163,126,67,1) 45%, rgba(145,112,59,1) 61%, rgba(213,173,109,1) 100%);
    background: -o-linear-gradient(transparent, transparent);
    background-clip: text;
    -webkit-text-fill-color: transparent; */
  color: var(--brand-color);
}
header .logo span {
  position: absolute;
  top: 1.5px;
  left: 0;
  width: 100%;
  height: 90%;
  display: block;
}
header .logo span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to left,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
  animation: logo 3s linear infinite;
}
header .logo span:first-child {
  transform: rotate(0deg);
}
header .logo span:nth-child(2n) {
  transform: rotate(180deg);
}
@keyframes logo {
  0% {
    transform: scale(0);
    transform-origin: left;
  }
  50% {
    transform: scale(1);
    transform-origin: left;
  }
  50.1% {
    transform: scale(1);
    transform-origin: right;
  }
  100% {
    transform: scale(0);
    transform-origin: right;
  }
}
header .navbar-one {
  width: 70%;
}
header .navbar-one ul {
  display: flex;
  text-decoration: none;
  list-style: none;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  transform: translateX(-11%);
}
header .navbar-one ul li a {
  margin: 0 0.8rem;
  font-size: 3.4vmin;
  color: var(--text1-color);
  padding: 0.4rem;
  font-weight: 800;
}
.blue-text {
  color: #14105b !important;
}
header .navbar-one a.active {
  color: var(--brand-color);
}
header .navbar-one a:hover {
  color: var(--brand-color);
}
header .navbar-two ul {
  text-decoration: none;
  list-style: none;
}
.vcg-search-input {
  margin-left: 8px;
}
header .search-btns {
  position: absolute;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 12vh !important;
  right: 4.5% !important;
  width: 4%;
}
header #glass-btn {
  position: absolute;
  font-size: 4.5vmin !important;
  color: var(--text1-color);
  cursor: pointer;
  display: flex !important;
  margin-top: 3.5px;
  align-items: center !important;
  justify-content: center;
}
header #glass-btn:hover {
  color: var(--brand-color) !important;
  transition: 0.5s;
}
header .control-btns {
  position: absolute;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 12vh !important;
  right: 0 !important;
  width: 4%;
  padding-right: 1%;
}
header #burger-btn {
  position: absolute;
  font-size: 7.3vmin !important;
  color: var(--text1-color);
  cursor: pointer;
  display: flex !important;
  margin-top: 3.5px;
  align-items: center !important;
  justify-content: center;
}
header #burger-btn:hover {
  color: var(--brand-color) !important;
  transition: 0.5s;
}
header #cross-btn {
  font-size: 4.5vmin;
  color: var(--text2-color);
  cursor: pointer;
  display: none;
}
header #cross-btn:hover {
  color: red !important;
  transition: 0.5s;
}
/* *****END header***** */
/* *****START about***** */
/* .about{
    width: 100%;
    overflow: hidden;
} */
.about {
  position: relative;
  top: 20vh;
  margin-bottom: 10rem;
}
.about .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}
.about .box .image img {
  /* width: 60rem;
    height: 100%; */
  width: 400px;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 0 10px #000;
}
.about .box .content h1 {
  color: var(--text2-color);
  font-size: 4.2vmin;
  text-align: center;
}
.about .box .content p {
  color: var(--text2-color);
  font-size: 3.3vmin;
  margin: 2rem 0;
}
/* *****END about***** */
/* *****START contact***** */
.contact .box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  /* gap: 1rem; */
  text-align: center;
  margin: 2rem auto;
}
.contact .box i {
  font-size: 4.5vmin;
  color: var(--btn-color);
}
.contact .box div {
  font-size: 3.4vmin;
  color: var(--text2-color);
  margin: 1rem 0;
}
.contact .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 2rem; */
  margin: 1rem 0;
}
.form-c {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.input-container {
  position: relative;
  margin-bottom: 25px;
  width: 35rem;
}

.input-field {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  box-sizing: border-box;
  margin-top: 5px;
}

textarea.input-field {
  min-height: 120px;
  resize: vertical;
}

.input-label {
  position: absolute;
  left: 10px;
  top: 20px;
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.2s ease;
  background-color: white;
  padding: 0 5px;
}

.input-field:focus {
  outline: none;
  border-color: #4a90e2;
}

.input-field:focus + .input-label,
.input-field:not(:placeholder-shown) + .input-label {
  top: -10px;
  font-size: 20px;
  color: #4a90e2;
}

/* Hide the placeholder when focused */
.input-field:focus::placeholder {
  color: transparent;
}

input[type="submit"],
input[type="reset"] {
  padding: 10px 20px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
  font-size: 16px;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #3a7bc8;
}
/* *****END contact***** */
/* *****START footer***** */
.footer {
  background: var(--aboutus-color);
  display: grid;
  /* grid-template-columns: repeat(auto-fit,minmax(20%,2fr)); */
  gap: 2rem;
  text-align: center;
  padding: 4rem;
}
.footer h1 {
  font-size: 5.5vmin;
  margin: 2rem 0;
  color: var(--text1-color);
}
.footer p {
  font-size: 1.6rem;
  margin: 1rem 0;
  color: var(--text1-color);
}
.footer i {
  font-size: 2.6rem;
  margin: 1rem 0.5rem;
  color: var(--text1-color);
  border-radius: 50%;
}
.footer i:hover {
  box-shadow: 0 0 10px #ffeb3b, 0 0 20px #ffeb3b;
  transform: scale(1.25);
  transition: box-shadow 0.3s ease;
}
.footer .fa-facebook {
  color: blue;
}
.footer .fa-instagram {
  color: #e018f2ff;
}
.footer .fa-youtube {
  color: #f21818ff;
}
.footer .fa-square-linkedin {
  color: #006effff;
}
/* *****END footer***** */
/* start progress-bar */
.progress-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-color);
}
.progress-bar-inner {
  position: relative;
  width: 0%;
  padding: 0px;
  /* background: #ffce00; */
  background: var(--aboutus-color);
  color: var(--text1-color);
  font-weight: 800;
  text-align: center;
}
/* End progress-bar */
/* *****START whatsapp***** */
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 100px;
  padding: 35px;
  z-index: 10;
}
.whatsapp .whatsapp-btn {
  font-size: 8vmin;
  color: #00ff00;
}
.bxl-whatsapp {
  cursor: pointer;
}
.whatsapp span {
  position: absolute;
  bottom: 15px;
  right: 24px;
  font-size: 3vmin;
  font-weight: 800;
  color: #00ff00;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
/* *****END whatsapp***** */
/* *****START of ScrollTop***** */
.scroll-to-top {
  position: fixed;
  right: 60px;
  width: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
  cursor: pointer;
  font-size: 32px;
  height: 50px;
  padding: 7px;
  z-index: 2;
}
.scroll-to-top:hover {
  opacity: 0.5;
}
.scroll-to-top span {
  display: flex;
  justify-content: center;
}
.scroll-to-top span svg {
  cursor: pointer;
}
/* *****END of ScrollTop***** */

/* ***************START width>=1025px*************** */
@media (min-width: 1025px) {
  /* header{
        background: var(--text2-color);
        filter: opacity(0.95);
    } */
  header #glass-btn.show-glass {
    display: none !important;
  }
  header #burger-btn.hide-burger {
    display: none !important;
  }
  header #cross-btn {
    display: none;
  }
  header #cross-btn.show-cross {
    display: block !important;
    font-size: 6.5vmin;
    margin-top: 3.5px;
  }
  .change-headermain {
    height: 12vh !important;
    background: linear-gradient(
      to left,
      #a5fecb,
      #65c7f7,
      #20bdff,
      #7056f4,
      #5433ff 20%,
      transparent 20%,
      transparent 100%
    ) !important;
    filter: opacity(0.95);
  }
  header .navbar-one.active-navbar-one {
    display: none;
  }
  header .navbar-two {
    border: 3px lightgrey inset !important;
    outline: 1px rgba(255, 255, 255, 1) inset !important;
    display: none;
  }
  header .navbar-two ul {
    flex-direction: column;
    width: 100%;
    padding: 10% 0;
  }
  header .navbar-two ul li {
    display: flex;
    position: relative !important;
    width: 100%;
    justify-content: space-between;
    align-items: center !important;
  }
  header .navbar-two ul li a {
    margin-left: calc(100% - 90%);
    font-size: 3.8vmin;
    color: var(--text2-color);
    font-weight: 900;
    letter-spacing: 3px;
    padding: 13px 0;
    width: 100%;
  }
  header .navbar-two.active-navbar-two {
    position: absolute;
    top: 12vh;
    right: 0;
    bottom: 0;
    width: 20%;
    height: 88vh;
    background: linear-gradient(
      179.98deg,
      rgba(104, 213, 255, 1) 0.12%,
      rgba(45, 179, 222, 1) 18.53%,
      #799de0 61.88%,
      #4f83e4 93.88%
    );
    filter: opacity(0.95);
    animation: rightmove 0.5s ease-in-out;
    display: block;
  }
  @keyframes rightmove {
    from {
      right: -100%;
    }
    to {
      right: 0;
    }
  }
  .navbar-two .fa-chevron-right {
    color: var(--text2-color);
    margin-right: calc(100% - 90%);
    font-size: 4vmin;
    cursor: pointer;
  }
  .navbar-two li:hover .fa-chevron-right {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right:hover {
    color: #e0bc00 !important;
  }
  header .navbar-two ul li a.active {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active:hover {
    color: #e0bc00;
  }
  header .navbar-two ul li a:hover {
    color: var(--text1-color);
  }
  header .navbar-two ul li:hover {
    background: linear-gradient(
      65.5deg,
      rgba(23, 205, 205, 1) -15.1%,
      rgba(23, 25, 95, 1) 71.5%
    );
    transition: 0.5s ease-out;
  }
  header .navbar-two ul li a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: var(--text1-color);
    border-radius: 3px;
    box-shadow: inset 0 -2px 4px rgba(48, 48, 48, 0.15);
    animation: fill 1s ease-in-out forwards;
  }
  @keyframes fill {
    from {
      width: 0%;
      opacity: 0;
    }
    to {
      width: 100%;
      opacity: 1;
    }
  }
  .navbar-two hr {
    position: absolute;
    height: 0.5px;
    width: 80%;
    border-radius: 100%;
    background: rgb(82, 82, 82);
    bottom: -1.5px;
    left: calc(100% - 90%);
    right: calc(100% - 90%);
    transition: background 0.1s ease-in-out;
  }
  .navbar-two li:hover hr {
    display: none;
  }
  /* Start text-animation */
  .about .heading h2 {
    left: 43%;
    width: 20%;
  }
  .contact .heading h2 {
    left: 43%;
    width: 18%;
  }
  /* End text-animation */
}
/* ***************End width>=1025px*************** */

/* ***************Start width<=1024px*************** */
@media (max-width: 1024px) {
  .nav-container {
    position: relative;
    height: 5vh;
    background: var(--aboutus-color);
  }
  .nav-container .webtop img {
    top: 3vh;
  }
  header {
    height: 10vh;
    display: flex;
    align-items: center !important;
    /* background: transparent; */
    /* background: var(--text2-color);
        filter: opacity(0.9); */
  }
  header .header-main {
    height: 10vh;
    display: flex !important;
    align-items: center !important;
    padding: 1rem 1.5%;
  }
  header .logo {
    width: 76%;
  }
  header .logo.show-logo {
    display: flex !important;
    width: 85%;
  }
  header .logo .com-icon {
    width: 8.5% !important;
  }
  header .logo .com-icon.comicon-big {
    width: 9.5% !important;
  }
  header .logo .com-name {
    font-size: 6.5vmin !important;
  }
  header .logo .com-name.comname-big {
    font-size: 8vmin !important;
  }
  header .search-btns {
    position: absolute;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 12vh !important;
    right: 12% !important;
    width: 12%;
    height: 5vh !important;
  }
  header #glass-btn {
    font-size: 6.3vmin !important;
  }
  header #glass-btn.show-glass {
    display: none !important;
  }
  header .control-btns {
    position: absolute;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 12%;
    height: 5vh !important;
    padding-right: 1.5%;
    transition: all 0.5s ease-in-out;
  }
  header .control-btns.ctrl-btns {
    height: 5vh !important;
    background: transparent !important;
    align-items: center !important;
    justify-content: center !important;
  }
  header #burger-btn {
    display: block;
    font-size: 10.5vmin !important;
  }
  header #burger-btn.hide-burger {
    display: none !important;
  }
  header #cross-btn {
    display: none !important;
  }
  header #cross-btn.show-cross {
    display: block !important;
    font-size: 8.7vmin !important;
    margin-top: 3.5px !important;
    margin-right: 15px !important;
  }
  .change-header {
    height: 13vh !important;
    transition: all 0.8s ease-in-out;
    background: linear-gradient(
      to left,
      #a5fecb,
      #65c7f7,
      #20bdff,
      #7056f4,
      #5433ff
    ) !important;
    filter: opacity(0.99);
    display: flex !important;
    align-items: center !important;
  }
  .change-headermain {
    height: 13vh !important;
    transition: all 0.8s ease-in-out;
    background: linear-gradient(
      to left,
      #a5fecb,
      #65c7f7,
      #20bdff,
      #7056f4,
      #5433ff
    ) !important;
    filter: opacity(0.99);
    display: flex !important;
    align-items: center !important;
  }
  header .navbar-one {
    display: none !important;
  }
  header .navbar-two {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 13vh;
    right: 0;
    text-align: center;
    width: 100%;
    height: 87vh;
    background: linear-gradient(
      179.98deg,
      rgba(104, 213, 255, 1) 0.12%,
      rgba(45, 179, 222, 1) 18.53%,
      #799de0 61.88%,
      #4f83e4 93.88%
    );
    filter: opacity(0.99) !important;
    display: none;
    overflow: auto;
  }
  header .navbar-two.active-navbar-two {
    position: absolute;
    animation: upmove 0.5s ease-in-out;
    top: 13vh;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
  }
  @keyframes upmove {
    from {
      top: 100vh;
    }
    to {
      top: 13vh;
    }
  }
  header .navbar-two {
    border: 3px lightgrey inset !important;
    outline: 1px rgba(255, 255, 255, 1) inset !important;
  }
  header .navbar-two ul {
    flex-direction: column;
    width: 100%;
    padding: 5% 0 10%;
  }
  header .navbar-two ul li {
    display: flex;
    position: relative !important;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  header .navbar-two ul li a {
    display: block;
    font-size: 7vmin !important;
    color: var(--text2-color);
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    padding: 21px 0 !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .header .navbar-two ul li a {
    margin-left: calc(100% - 90%);
  }
  header .navbar-two ul li a.active {
    color: var(--text1-color);
  }
  header .navbar-two ul li a:hover {
    color: var(--text1-color);
  }
  header .navbar-two ul li:hover {
    background: linear-gradient(
      65.5deg,
      rgba(23, 205, 205, 1) -15.1%,
      rgba(23, 25, 95, 1) 71.5%
    );
    transition: 0.5s ease-out;
  }
  header .navbar-two ul li a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    box-shadow: inset 0 -2px 4px rgba(48, 48, 48, 0.15);
    animation: fill 1s ease-in-out forwards;
  }
  @keyframes fill {
    from {
      width: 0%;
      opacity: 0;
    }
    to {
      width: 100%;
      opacity: 1;
    }
  }
  .navbar-two .fa-chevron-right {
    color: var(--text2-color);
    margin-right: calc(100% - 90%);
    font-size: 8vmin;
    cursor: pointer;
  }
  .navbar-two .fa-chevron-right:hover {
    color: #e0bc00 !important;
  }
  .navbar-two li:hover .fa-chevron-right {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active:hover {
    color: #e0bc00;
  }
  .navbar-two hr {
    position: absolute;
    height: 0.5px;
    width: 80%;
    border-radius: 100%;
    background: rgb(82, 82, 82);
    bottom: -1.5px;
    left: calc(100% - 90%);
    right: calc(100% - 90%);
    transition: background 0.1s ease-in-out;
  }
  .navbar-two li:hover hr {
    display: none;
  }
  .about {
    position: relative;
    top: 5vh;
    margin-bottom: 5rem;
  }
  .about .box {
    flex-wrap: wrap;
    text-align: center;
  }
  .about .box .image img {
    width: 90%;
  }
  .contact {
    width: 100%;
  }
  .contact .box {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .contact .row {
    flex-flow: column;
  }
  .contact .row iframe {
    width: 100%;
  }
  .input-container {
    width: 100%;
  }
  /* Start text-animation */
  h2 {
    letter-spacing: 1px;
  }
  .about .heading h2 {
    left: 31%;
  }
  .contact .heading h2 {
    left: 36%;
  }
  .footer {
    height: 45vh;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }
  /* *****START of Whatsapp & ScrollTop***** */
  .whatsapp {
    padding-right: 27px;
    right: 24px;
    bottom: 100px;
  }
  .whatsapp .whatsapp-btn {
    font-size: 17vmin;
  }
  .whatsapp span {
    bottom: 15px;
    /* right: 24px; */
    font-size: 5vmin;
  }
  .scroll-to-top {
    position: fixed;
    right: 60.5px !important;
  }
  /* *****END of Whatsapp & ScrollTop***** */
  /* End text-animation */
}
/* ***************End width<=1024px*************** */

/* ***************Start width<=550px*************** */
@media (max-width: 640px) {
  .ploan .row {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .ploan .row .box .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  .ploan .row .box .content h1 {
    font-size: 2rem;
  }
  .ploan .row .box .content p {
    font-size: 1.5rem;
  }
}
/* ***************End width<=550px*************** */
