* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
}
section {
  height: 100vh;
  width: 100%;
  background-color: #d1eaff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0px 0px 20px #00000010;
  background-color: white;
  border-radius: 8px;
  margin-bottom: 20px;
  flex-direction: column;
}
.form-group {
  width: 100%;
  margin-top: 20px;
  font-size: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 5px;
  font-size: 18px;
  border: 1px solid rgba(128, 128, 128, 0.199);
  margin-top: 5px;
}
textarea {
  resize: vertical;
}
button[type="submit"] {
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 24px;
  border-radius: 8px;
  font-family: sans-serif;
  color: rgb(27, 166, 247);
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease background-color;
}
button[type="submit"]:hover {
  background-color: rgb(68, 68, 68);
}
#status {
  width: 90%;
  max-width: 500px;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}
#status.success {
  background-color: rgb(211, 250, 153);
  animation: status 4s ease forwards;
}
#status.error {
  background-color: rgb(250, 129, 92);
  color: white;
  animation: status 4s ease forwards;
}
@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.navbar {
  background: #6395ff;
  margin-top: 0px;
  margin-left: -30px;
  margin-right: -30px;
}
a {
  text-decoration: none;
}

div#top_nav {
  text-align: center;
}

div#top_nav li {
  display: inline;
  padding: 15px;
}

div#top_nav a {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}

div#top_nav a:hover {
  color: #000;
}

div#top_nav a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.15s ease-in-out 0s;
  transition: all 0.15s ease-in-out 0s;
}

div#top_nav a:hover:before,
div#top_nav a.active:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.active {
  color: #f7f7f7f5;
}
#contact {
  color: #01b6ad;
}
.app-logo {
  margin-top: 20px;
}
.app-logo img {
  width: 140px;
}
.logo {
  margin-left: 60px;
  margin-bottom: 15px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.navbar {
  display: flex;
  align-items: center;
  padding: 20px;
}
nav {
  flex: 1;
  text-align: right;
}
nav ul {
  display: inline-block;
  list-style-type: none;
}
nav ul li {
  display: inline-block;
  margin-right: 20px;
}
ul li {
  color: #fff;
}
a {
  text-decoration: none;
  color: #555;
}
p {
  color: #555;
}
/* .container {
  max-width: 1300px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
} */
.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}
.col-2 {
  flex-basis: 50%;
  min-width: 300px;
  justify-content: space-around;
}
.col-2 img {
  max-width: 100%;
  padding: 50px 0;
}
.col-2 h1 {
  font-size: 50px;
  line-height: 60px;
  margin: 25px 0;
}
.eai {
  text-decoration: underline;
}
#contact1 {
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 107px;
  margin-left: 0px;
  margin-right: 0px;
  margin: 10px 0;
  border-radius: 5px;
  text-decoration: bold;
  text-align: center;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
#contact2 {
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 100px;
  margin-left: 0px;
  margin-right: 0px;
  margin: 10px 0;
  border-radius: 5px;
  text-decoration: bold;
  text-align: center;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
.ttle {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  line-height: 60px;
  color: rgb(0, 0, 0);
}
.ttle::after {
  content: "";
  background: #1e90ff;
  width: 80px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.btn {
  display: inline-block;
  background: #fa7d29;
  color: #fff;
  padding: 8px 30px;
  margin: 30px 0;
  border-radius: 30px;
  transition: background 0.5s;
}
.btn:hover {
  background: #563434;
}
.header {
  background: #ffffff;
}
.header .row {
  margin-top: 70px;
}

.categories {
  margin: 70px 0;
}
.col-3 {
  flex-basis: 30%;
  min-width: 250px;
  margin-bottom: 30px;
}
.col-3 img {
  width: 100%;
}
.small-container {
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}
.col-4 {
  flex-basis: 25%;
  padding: 30px;
  min-width: 200px;
  margin-bottom: 50px;
  transition: transform 0.5s;
}
.col-3 img {
  width: 100%;
}

.title {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  line-height: 60px;
  color: #555;
}
.title::after {
  content: "";
  background: #1e90ff;
  width: 80px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
h4 {
  color: #555;
  font-weight: normal;
}
.col-3 p {
  font-size: 14px;
}
.rating .fa {
  color: #424141;
}
.col-2 .fa {
  margin-left: 15px;
  size: 100px;
  margin-bottom: -100px;
}
.col-3:hover {
  transform: translateY(-5px);
  transition: transform 0.5s;
}
#boxes {
  background-color: rgb(0, 155, 155);
  padding: 98.9px;
  margin-left: 0px;
  margin-right: 0px;
  margin: 10px 0;
  border-radius: 5px;
  text-decoration: bold;
  text-align: center;
}
#boxes h5 {
  font-family: "Lato", sans-serif;
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin-left: 0px;
  margin-right: 0px;
  text-align: left;
}
#boxes1 {
  background-color: deepskyblue;
  padding: 100.7px;
  margin-left: 0px;
  margin-right: 0px;
  margin: 10px 0;
  border-radius: 5px;
  text-decoration: bold;
  text-align: center;
}
#boxes1 h5 {
  font-family: "Lato", sans-serif;
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin-left: 0px;
  margin-right: 0px;
  text-align: left;
}
#boxes3 {
  background-color: orange;
  padding: 100px;
  margin-left: 0px;
  margin-right: 0px;
  margin: 10px 0;
  border-radius: 5px;
  text-decoration: bold;
  text-align: center;
}

#boxes3 h5 {
  font-family: "Lato", sans-serif;
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin-left: 0px;
  margin-right: 0px;
  text-align: left;
}
.program {
  text-align: center;
  text-decoration: bold;
}
.inter {
  text-align: center;
  text-decoration: bold;
}
.elite {
  text-align: right;
  text-decoration: bold;
}
.navbar {
  background: #6395ff;
  margin-bottom: -50px;
  margin-left: -30px;
  margin-right: -30px;
}
a {
  text-decoration: none;
}

div#top_nav {
  text-align: center;
}

div#top_nav li {
  display: inline;
  padding: 15px;
}

div#top_nav a {
  display: inline-block;
  position: relative;
}

div#top_nav a:hover {
  color: #000;
}

div#top_nav a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.15s ease-in-out 0s;
  transition: all 0.15s ease-in-out 0s;
}

div#top_nav a:hover:before,
div#top_nav a.active:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.active {
  color: #f7f7f7f5;
}

#contact {
  color: #01b6ad;
}
.talk {
  text-align: center;
  text-decoration: bold;
  margin-bottom: 80px;
}
.unsplash {
  text-align: left;
}
.col2 {
  background-color: orange;
  padding: 100px;
  margin-left: 0px;
  margin-right: 0px;
  margin: 10px 0;
  border-radius: 5px;
  text-decoration: bold;
  text-align: center;
}
.col2 p {
  text-align: center;
  margin-left: 20px;
  color: #b4b4b4f5;
}
.col2 img {
  width: 100%;
}

/*------ offer --------*/
.offer {
  background: #00aeae;
  margin-left: -120px;
  margin-right: -117px;
  padding: 80 0;
}
small {
  color: #fff;
}
.col-2 .offer img {
  padding: 50px;
}
.offer-text {
  color: #fff;
}
/*---------testemonial----------*/

.testemonial {
  padding-top: 100px;
}
.testemonial .col-3 {
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.5s;
}
.testemonial .col-3 img {
  width: 50px;
  margin-top: 20px;
  border-radius: 50%;
}
.testemonial .col-3:hover {
  transform: translateY(-10px);
}
.fa.fa-quote-left {
  font-size: 34px;
  color: #1e90ff;
}
.col-3 p {
  font-size: 12px;
  margin: 12px 0;
  color: #777;
}

.testemonial .col-3 h3 {
  font-weight: 600;
  color: #555;
  font-size: 16px;
}

.footer {
  background-color: #6395ff;
  font-size: 14px;
  padding: 60px 0 20px;
}
.footer p {
  color: #fff;
}
.footer h3 {
  color: #fff;
  margin-bottom: 20px;
}
.footer-col-1,
.footer-col-2,
.footer-col-3 {
  min-width: 250px;
  margin-bottom: 20px;
}
.footer-col-1 {
  flex-basis: 30%;
}
.footer-col-2 {
  flex: 1;
  text-align: center;
}
.footer-col-2 img {
  width: 180px;
  margin-bottom: 20px;
}
.footer-col-3,
.footer-col-4 {
  flex-basis: 12%;
  text-align: center;
  color: #555555;
}
.li {
  color: #fff;
}
ul {
  list-style-type: none;
}
.app-logo {
  margin-top: 20px;
}
.app-logo img {
  width: 140px;
}
.footer hr {
  border: none;
  background: #b5b5b5;
  height: 1px;
  margin: 20px 0;
}
.copyright {
  text-align: center;
}

.menu-icon {
  width: 28px;
  margin-left: 20px;
  display: none;
}
/*-------- media query for menu ----------*/

@media only screen and (max-width: 800px) {
  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    background: #333;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.5s;
  }
  nav ul li {
    display: block;
    margin-right: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  nav ul li a {
    color: #fff;
  }
  .menu-icon {
    display: block;
    cursor: pointer;
  }
}
.forms {
  margin-left: 600px;
  margin-top: 100px;
  max-height: 1000px;
}
.google-container{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
  }
  
  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    margin-top: 100px;
  }

