@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
img {
  max-width: 100%;
}
i.icon {
  margin-right: 0.5rem;
}
main {
  background: #f0f2f7;
}
.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
}
nav {
  width: 100%;
  height: 120px;
  box-shadow: 0px 15px 10px -15px #111;
  z-index: 999;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
}
.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-media a {
  display: inline-block;
  color: white;
  margin-right: 0.6rem;
  font-size: 1.2rem;
}

.social-media a:hover {
  color: rgb(144, 244, 135);
}
.content img {
  max-width: 100%;
  height: auto;
}
header {
  height: calc(100vh - 164.19px);
}
.header-info {
  background: #333;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem;
}
/**Navigation start**/
.menu-btn {
  display: none;
}
.nav-icon {
  display: block;
  width: 36px;
  height: 4px;
  background: green;
  position: relative;
  transition: background 0.2s ease-out;
  border-radius: 2px;
}

.nav-icon:before {
  background: green;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: 10px;
  border-radius: 2px;
}

.nav-icon:after {
  background: green;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: -10px;
  border-radius: 2px;
}

.menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}
.menu-icon {
  padding: 28px 20px;
  height: 50%;
  display: none;
  cursor: pointer;
  position: relative;
}

.menu-btn {
  display: none;
}
.nav-icon {
  display: block;
  width: 36px;
  height: 4px;
  background: green;
  position: relative;
  transition: background 0.2s ease-out;
  border-radius: 2px;
}

.nav-icon:before {
  background: green;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: 10px;
  border-radius: 2px;
}

.nav-icon:after {
  background: green;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: -10px;
  border-radius: 2px;
}

.menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

/**Navigation End**/
.logo {
  width: 100px;
  height: 100%;
}

.logo img {
  max-width: 100%;
  height: auto;
}
.hero {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/pict.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.hero-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;

  height: 100%;
}
.hero-text h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px #000000;
}
.hero-text p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.5rem;
  text-shadow: 2px 2px 8px #000;
}

.hero-text p:last-child {
  margin-top: 1.5rem;
}

.hero-text h1 span {
  color: #00263d;
  text-shadow: 2px 2px 20px #fff;
  font-weight: 900;
}
/*
.hero-image{
	position:absolute;
	width:45rem;
	right:2%;
	bottom:0;
}*/
.btn {
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  background-image: linear-gradient(135deg, #125931, #08ac42);
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 2rem 0 2rem 2rem;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}

.btn1 {
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  background-image: linear-gradient(135deg, #131259, #1008ac);
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 2rem 0 2rem 2rem;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  border-radius: 2rem;
}

.logo_text {
  width: 300px;
  margin: 0 auto;
}

.logo_text img {
  width: 100%;
  height: auto;
}
.register {
  font-size: 0.85rem !important;
  padding: 0.5rem 1rem;
  color: #fff !important;
  height: 40px !important;
}
.links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  margin-right: 0.75rem;
  font-size: 0.85rem;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.5px;
}

.hero-image.anim {
  animation-delay: 1.5s;
}
.btn.anim {
  animation-delay: 1s;
}
.anim {
  opacity: 0;
  transform: translateY(3rem);
  animation: moveup 0.5s linear forwards;
}

@keyframes moveup {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-padding {
  padding: 5rem 0;
}
.packages {
  background: white;
}
.super {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}
.packages-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.package-grid a {
  text-decoration: none;
  text-align: center;
}
.package-grid {
  width: 12.5rem;
  height: 100px;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: center;
  text-decoration: none;
  font-weight: 700;
  color: #333;
  font-size: 1rem;
  box-shadow: 0 8px 6px -6px black;
}
.one {
  background-image: linear-gradient(135deg, #fff, #e0f6e7);
}
.two {
  background-image: linear-gradient(135deg, #fff, #e0e0f6);
  flex-direction: column;
}

.three {
  background-image: linear-gradient(135deg, #fff, #f6e0e1);
  flex-direction: column;
}

.four {
  background-image: linear-gradient(135deg, #fff, #f1f6e0);
}

.five {
  background-image: linear-gradient(135deg, #fff, #f6f0e0);
}
.heading {
  width: 100%;
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 800;
}
.figures {
  background: #02551f;
}
.figures-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.figure {
  background-image: linear-gradient(135deg, #fff, #f2f2f2);
  padding: 1rem;
  width: 300px;
  text-align: center;
  border-radius: 1rem;
  border: 2px solid #c0f6c8;
}
.figure-icon i {
  color: #02551f;
  font-size: 4rem;
  margin-bottom: 0.8rem;
}
.figure-number {
  font-size: 2.5rem;
  color: #666;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.figure-text {
  font-weight: 800;
  color: #222;
  margin-top: auto;
}
.figures-header {
  color: #fff;
}
/**Partners Swiper Start**/
.card {
  padding: 2rem;
}
.card-wrapper {
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
  max-width: 1200px;
  margin: 0 60px 50px;
}
.card-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  border: 2px solid transparent;
  box-shadow: 0 8px 6px -6px black !important;
  transition: 0.2s ease;
  height: auto;
}
.card-item:hover {
  border: 2px solid #4b8fc7;
}
.partner-pix img {
  width: 100%;
}
/**Partners Swiper End**/
/**Locations Start**/
.cities-image {
  background-image: url(../images/img13.jpg);
  background-position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  height: 9.375rem;
  padding: 1rem;
  place-content: center;
  text-align: center;
}
.cities-image h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 5px 5px 10px #000;
}
.subheader {
  margin: 2rem auto;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #003299;
  font-weight: 800;
}
.text-row {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
}
.text-row:nth-child(odd) {
  margin-bottom: 1.5rem;
  background: rgb(245, 249, 246);
}
.text-row-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}
.text-row-content {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}
.more {
  width: 100%;
  text-align: center;
}
.more p {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.plan {
  background-image: linear-gradient(135deg, #08092e, #0810ac);
}
.countries {
  padding: 0.5rem;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.countries a {
  color: #444;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  padding: 0 0.5rem;
  text-align: center;
  border-right: 1px solid #222;
}

.countries a:last-child {
  border-right: none;
}

.countries a:hover {
  color: #f6b321;
  font-weight: 600;
}
/**Locations End**/
/**silver and bronze plans start**/
.muted {
  font-size: 0.85rem;
  color: #7e7d7d;
  display: block;
}
/**silver and bronze plans End**/
.footnote {
  display: flex;
  justify-content: space-between;
}
.socials {
  width: 20%;
}
.transport {
  color: #003299;
  font-weight: 700 !important;
}

.transport:hover {
  text-decoration: underline;
}
.socials:nth-child(1) {
  width: 50%;
  font-weight: 500;
  line-height: 1.5;
}

.socials ul {
  list-style: none;
}
.links {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials a {
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.socials a:hover {
  text-decoration: underline;
}
.socials li {
  margin-bottom: 10px;
}
.copyright {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  font-size: 0.9rem;
}
.line {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  margin-bottom: 10px;
  margin-top: 20px;
}
.footer-padding {
  padding-bottom: 1rem;
}
.blue {
  color: #3173f7;
  font-weight: 700;
}

.green {
  color: rgb(89, 246, 152);
  font-weight: 700;
}

/**STUDY_DESTINATIONS_START**/
.study-destinations {
  background: #eef1ec;
}
.destinations-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.destination {
  display: block;
  text-decoration: none;
  width: 150px;
  color: #333;
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 6px -6px black;
  transition: 0.2s ease;
}
.destination:hover {
  transform: translateY(-0.25rem);
  border: 2px solid #cecece;
}
.destination-image img {
  max-width: 100%;
  height: auto;
}
.destination-image {
  box-shadow: 0 8px 6px -6px black;
}
.destination-name {
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
/**STUDY_DESTINATIONS_END**/
/**service packages start**/
.top {
  font-size: 1.1rem;
  margin-top: 2rem;
}
.top span {
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.content {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.content p {
  font-weight: 800 !important;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.content ul li {
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}

.subhead {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #003299;
  font-weight: 800;
}
.euro {
  color: #08ac42;
  font-weight: 700;
}
/**service packages end**/
/**dropdown_start**/
.dropdown {
  position: relative;
}
.submenu {
  position: absolute;
  display: grid;
  grid-template-rows: 0fr;
  transition: 250ms grid-template-rows ease;
  overflow: hidden !important;
  width: 300px;
  color: white !important;
}
.sm {
  color: white !important;
  background: #115f1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  height: 50px !important;
  display: block;
  padding: 1rem;
}
.sm:hover {
  background: #cecece;
  color: #333 !important;
}
.sm:last-child {
  border-bottom: none;
}
.dropdown:hover .submenu {
  grid-template-rows: 1fr;
}
.submenu > div {
  overflow: hidden;
}

/**dropdown_end**/
/**about the company start**/
.cover {
  margin: 2.5rem auto 0 auto;
  background: transparent;
  width: 60%;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.cover-message {
  background-color: #05023f;
  height: 100%;
  padding: 2rem;
  z-index: 3;
}

.cover-message-inner {
  background-image: linear-gradient(45deg, #fff, #f2f2f2);
  height: 100%;
  padding: 2rem;
  text-align: center;
}
.rect1,
.rect2 {
  background: #003299;
  width: 50%;
  height: 50%;
  position: absolute;
  z-index: -1;
}
.rect1 {
  top: 0;
  right: 0;
}
.rect2 {
  bottom: 0;
  left: 0;
}

.rec1,
.rec2 {
  background-image: linear-gradient(135deg, #03501e, #0bb647);
  width: 50%;
  height: 50%;
  position: absolute;
  z-index: -1;
}
.rec1 {
  top: 0;
  right: 0;
}
.rec2 {
  bottom: 0;
  left: 0;
}
.cover-message-inner p {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/**about the company dropdown_end**/
/**ceo start**/
.ceo {
  margin: 4rem auto;
  background: rgba(209, 211, 241, 0.2);
  padding: 3rem;
  border-radius: 0.5rem;
}

.ceo p {
  text-align: justify;
}

.ceo-card1 {
  margin-left: 1rem;
  border: 2px solid #079833;
}

.ceo-card1 p {
  margin-bottom: 1rem;
}

.ceo-card2 {
  width: 250px;
  background: #00263d;
  padding: 1rem 1rem 2rem 1rem;
  float: left;
  display: inline;
  margin-right: 2rem;
}

.ceo-card2 img {
  max-width: 100%;
  height: auto;
}
.staff {
  color: white;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 700;
}
.staff-role {
  color: white;
  text-align: center;
  font-weight: 400;
  font-size: 0.85rem;
}
/**ceo end**/
/**team start**/
.team {
  background: rgba(209, 211, 241, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}
.team-wrapper {
  background: #00263d;
  padding: 1rem;
  z-index: 1;
}
.team-wrapper1 {
  background: #003d1e;
  padding: 1rem;
  z-index: 1;
}
.team-card {
  position: relative;
  width: 250px;
  padding: 1rem;
  z-index: 1;
}
.team-member-image img {
  max-width: 100%;
}

.team-member-name h3 {
  color: white;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  font-size: 0.95rem;
}

.team-member-name p {
  color: white;
  font-weight: 300;
  text-align: center;
  font-size: 0.8rem;
}
/**team end**/
/**Swiper Start**/

.text {
  font-size: 0.9rem;
  text-align: justify;
}
.text p {
  margin-bottom: 10px;
  text-align: center;
}

.cards {
  padding: 18px;
  background: linear-gradient(135deg, #e3fae3, #ffffff);
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 6px -6px black;
  -moz-box-shadow: 0 8px 6px -6px black;
  box-shadow: 0 8px 6px -6px black;
  text-align: center;
  user-select: none;
  height: 100%;
}
.mySwiper {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
  user-select: none;
}

.slide-testimonials {
  background: #fff;
}
.swiper-slide {
  height: auto !important;
}
.swiper-wrapper {
  height: 100% !important;
}

.pix {
  width: 100px;
  height: 100px;
  margin: 5px auto;
}
.pix img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 3px solid #333;
  padding: 2px;
  background: white;
}

.viddy {
  aspect-ratio: 16 / 9;
}
.superline {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  width: 60%;
  margin: 20px auto;
}
/**Swiper End**/
/**parallax Start**/

.message {
  color: #fff;
  min-height: 300px;
  background-image: linear-gradient(
      rgba(0, 50, 153, 0.8),
      rgba(0, 50, 153, 0.8)
    ),
    url("../images/img13.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.message h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 2px 2px 5px black;
  text-align: center;
}
/**parallax End**/

/**infrance service start**/
.blanket {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: rgba(221, 237, 239, 0.75);
  padding: 2rem;
  border-radius: 1rem;
  gap: 1rem;
  width: 70%;
  margin: 1rem auto;
  flex-direction: column;
}
.blanket-inner {
  background: white;
  padding: 1rem;
  width: 100%;
  font-size: 0.9rem;
  border-radius: 0.5rem;
}

.blanket-inner:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blanket-inner span {
  margin-right: 1.5rem;
}
.blanket-inner span i {
  color: #047c28;
  margin-right: 0.5rem;
}
.blanket-inner img {
  max-width: 100%;
  height: auto;
}
.top1 {
  font-weight: 700;
  text-align: center;
}
/**infrance service End**/

/**institutions start**/

.picture {
  width: 100%;
  margin: 0 auto;
}
.picture img {
  width: 100%;
  height: auto;
}
.cities p {
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
}
.uno {
  text-align: center;
  margin-top: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #003299;
}

.schools {
  margin-left: 15px;
  list-style-type: square;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 40%;
}

.schools li {
  margin-bottom: 10px;
  width: 300px;
}

.schools li a {
  font-weight: 700;
  color: #333;
}

.schools li a:hover {
  color: #1b874c;
  font-weight: 600;
  text-decoration: underline;
}
.locations {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.place {
  width: 500px;
}
.place_title {
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  color: #333;
}
.locations p {
  font-size: 1.5rem;
  font-weight: 600;
}
.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.viddy {
  aspect-ratio: 16 / 9;
}
/**institutions End**/

/**news start**/

.news {
  margin: 40px 0 20px 0;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 20px;
}
.news .title h2 {
  color: #888;
  margin-bottom: 10px;
}
.news-body {
  color: #000;
}
.news-link {
  margin-top: 10px;
  display: inline-block;
  background: #000088;
  color: white;
  padding: 15px 10px;
  font-weight: bold;
  line-height: 100%;
  border-radius: 5px;
  text-decoration: none;
}
.news-link:hover {
  background: linear-gradient(#0b5ef4, #4aafb5);
}

.write-up {
  margin-top: 50px;
}
.write-up p {
  line-height: 1.5;
  font-weight: 500;
}
.write-up h2 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.write-up ul {
  list-style: square;
}
.write-up li {
  margin-bottom: 10px;
}
/**news end**/
.icy1 {
  color: #000088;
  font-size: 1.5rem;
}
.icy2 {
  color: #079833;
  font-size: 3rem;
}
/**growth start**/
.growth {
  text-align: left;
}
.salsa {
  text-align: left;
}
.bold {
  font-weight: 700;
}
.salsa ul {
  margin-left: 1rem;
}

/**growth end**/

/**banner start**/
.banner {
  background: #00253b;
}
.banner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner-image {
  width: 300px;
  margin: 0 1rem auto;
}
.banner-image img {
  max-width: 100%;
  height: auto;
  text-align: center;
}
.banner-text {
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
  color: white;
}
.banner marquee span {
  margin-left: 3rem;
}

/**banner end**/
.omnes {
  background: #0d001c;
}
.content-inside p {
  font-weight: 500 !important;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.content-inside p i {
  margin-right: 1rem;
  color: #089e19;
}
.b {
  font-weight: 400 !important;
}
.waiver {
  width: 100%;
  margin: 5rem 0;
  text-align: center;
  background-image: linear-gradient(#c4d6f455, #455a7e55);
  padding: 2rem;
  border-radius: 2rem;
}
.waiver p {
  font-size: 1.5rem;
  font-weight: 800;
}

/**events start**/
.events {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
  margin-top: auto;
  justify-content: center;
}
.event {
  width: 15.63rem;
  padding: 0.5rem;
  background: #096c36;
  border-radius: 0.5rem;
}
.event-image img {
  max-width: 100%;
  height: auto;
  padding: 0.3rem;
  background: white;
}
.event-name {
  color: white;
  font-weight: 500;
  text-align: center;
  font-size: 0.85rem;
}
/**events end**/

/**footer start**/

.footer {
  background-image: linear-gradient(90deg, #333, #000);
  color: white;
  font-size: 0.95rem;
  font-weight: 400;
}
.row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.column:nth-child(1) {
  flex: 3;
  text-align: justify;
}

.column:nth-child(2) {
  flex: 1;
  text-align: right;
}

.column:nth-child(3) {
  flex: 1;
  text-align: right;
}
.column-content a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

.column-content a:hover {
  color: rgb(136, 241, 168);
  font-weight: 600;
}

.nova a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.column-header {
  margin-bottom: 1rem;
  color: #88f1a8;
  font-weight: 600;
}
.column img {
  padding: 1rem;
  background: white;
  margin-right: 2rem;
}
.column p {
  line-height: 2;
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(136, 241, 168, 0.75),
    rgba(255, 255, 255, 0)
  );
  margin: 1rem 0;
}
.blue,
.green {
  font-weight: 900;
  font-size: 1.2rem;
}
.obux {
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  color: orange;
}

.obux:hover {
  text-decoration: underline;
}
.row:last-child {
  justify-content: space-between;
  align-items: flex-end;
}

.row:last-child .column:last-child {
  text-align: right;
}
/**footer  end**/

/**plans-image start**/
.content-inside-img {
  width: 500px;
  float: right;
}

.content-inside-img img {
  max-width: 100%;
}
.support {
  margin: 2rem 0;
}

.content-inside-img img {
  max-width: 100%;
}
.peace {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/plans/hello.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/**plans-image  end**/
.heady {
  color: white;
  filter: drop-shadow(2px 2px 5px #000);
}
.links a[aria-current="page"] {
  color: rgb(13, 143, 6);
  font-weight: 600;
}

.my_form {
  width: 95%;
  max-width: 600px;
  padding: 30px;
  border-radius: 5px;
  background: #f2f2f2;
  margin: 30px auto 0 auto;
}

.my_form input {
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
}
::placeholder {
  font-weight: 600;
  font-size: 1rem;
}

.my_form textarea {
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
}

.my_form button {
  width: 100%;
  height: 50px;
  background: linear-gradient(#003299, #011641);
  color: white;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  outline: none;
  border-radius: 5px;
}
.success {
  padding: 10px;
  background: rgba(0, 255, 0, 0.05);
  color: green;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid green;
}

.danger {
  padding: 10px;
  background: rgba(255, 0, 0, 0.05);
  color: rgb(255, 0, 0);
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid red;
}
.s {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem;
  padding: 0.5em;
  text-align: left;
}
/*Blog Start*/
.sign-up-now {
  display: inline-block;
  background: linear-gradient(rgb(2, 2, 54), royalblue);
  text-decoration: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: 0.5s;
}
.sign-up-now:hover {
  background: royalblue;
}
.blog {
  background: white;
  padding: 4rem;
}
.blog h1 {
  font-size: 2.5rem;
  font-weight: 900;
}
.blog h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #555;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.blog-image {
  margin: 1.5rem 0;
  width: 100%;
}
.blog-image img {
  max-width: 100%;
  height: auto;
}
.blog-check p i {
  color: green;
  margin-right: 1rem;
}
.blog-sub-contents {
  padding-left: 2rem;
}
.num {
  margin-right: 2rem;
}
.blog-inner p:nth-child(2),
.blog-inner p:nth-child(3),
.blog-inner p:nth-child(4) {
  margin-left: 2.8rem;
}
.indent p {
  margin-left: 2.8rem;
}
.vertical {
  margin-bottom: 2rem;
}
.blog p {
  margin-bottom: 0.75rem;
}
.blog-link {
  background: white;
  width: 40%;
  padding: 0.5rem;
}

.blog-link h3 {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}
.blog-link a {
  background: #f2f2f2;
  display: block;
}
.link-image {
  width: 100%;
}
.link-image img {
  max-width: 100%;
  height: auto;
}
.link-title {
  font-size: 0.8rem;
  padding: 0.5rem;
}
.blogger {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.blog-link a {
  margin-bottom: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.blog-link a:hover {
  background: hsl(232, 66%, 86%);
}
.tuition {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.pay {
  background: linear-gradient(royalblue, rgb(5, 36, 127));
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin: 1rem auto;
}
.foto {
  width: 200px;
  margin: 1rem auto;
}
/*Blog End*/
/*terms*/
.terms-content {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
.terms-number {
  margin-right: 1rem;
}
.info {
  color: #03501e;
  font-weight: 700;
  cursor: pointer;
}
.info:hover {
  text-decoration: underline;
}
.terms-condi p {
  margin-left: 0;
  margin-bottom: 0.5rem;
}
.toast-notification {
  background: #000;
  padding: 1rem 2rem;
  color: white;
  font-size: 1rem;
  position: fixed;
  opacity: 0;
  /*top: 50%;*/
  left: 50%;
  transform: translateX(-50%);
  transition: all 400ms ease;
  border-radius: 0.5rem;
  bottom: 10px;
}

.toast-notification.active {
  opacity: 1;
  bottom: 70px;
}
.no-selection {
  user-select: none;
}
.column-content p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.location {
  margin-right: 10px;
  display: block;
  color: #88f1a8;
  font-size: 1.5rem;
}
.fone-muted {
  color: #555;
  font-size: 0.85rem;
  display: block;
}
.agreement {
  padding: 1rem;
  border: 1px solid #f2f2f2;
}
.signage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #f2f2f2;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 1330px) {
  .header-info {
    display: none;
  }
  .menu-icon {
    display: block;
    float: right;
    margin: 30px 0;
  }

  .wrapper {
    display: block;
  }
  .logo {
    float: left;
  }
  .links {
    clear: both;
    background: green;
    width: 100%;
    display: block;
    position: fixed;
    top: 120px;
    left: -100%;
    height: 100vh;
    transition: all 0.5s ease-in-out;
    z-index: 1000;
  }

  #menu-btn:checked ~ .links {
    left: 0;
  }
  .links a {
    display: block;
    height: 50px;
    width: 100%;
    text-align: center;
    color: white;
    line-height: 50px;
  }

  .dropdown {
    position: static;
  }
  .submenu {
    position: static;
    display: grid;
    grid-template-rows: 0fr;
    transition: 250ms grid-template-rows ease;
    overflow: hidden !important;
    width: 100%;
    color: white !important;
  }
}
@media (max-width: 1250px) {
  .blanket-inner:first-child {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1000px) {
  .cover {
    width: 100%;
    padding: 1rem;
  }
  .cover-message {
    padding: 1rem;
  }

  .cover-message-inner {
    padding: 1rem;
  }
}
@media (max-width: 694px) {
  .blog {
    background: white;
    padding: 1rem;
  }

  .num {
    margin-right: 0.5rem;
  }
  .blog-sub-contents {
    padding-left: 0.5rem;
  }
  .blog-inner p:nth-child(2),
  .blog-inner p:nth-child(3) {
    margin-left: 1rem;
  }
  .row {
    display: flex;
    gap: 3rem;
    flex-direction: column;
  }
  .column:nth-child(1) {
    flex: 1;
    text-align: justify;
  }

  .column:nth-child(2) {
    flex: 1;
    text-align: left;
  }

  .column:nth-child(3) {
    flex: 1;
    text-align: left;
  }

  .row:last-child {
    flex-direction: column;
    gap: 1rem;
    font-weight: 0.8rem;
  }

  .row:last-child .column:first-child {
    text-align: center;
  }

  .row:last-child .column:last-child {
    width: 100%;
    text-align: center;
    color: #dadaf0;
  }
  .row:last-child .column:last-child a {
    font-weight: 0.8rem;
  }
}

@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .b {
    display: block;
    margin-top: 1rem;
  }
  .btn:hover {
    border-radius: 2rem;
  }
  .nova a {
    justify-content: flex-start;
  }
}
/**RESPONSIVE END**/
