@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --ff-heading: "Poppins", sans-serif;
  --ff-body: "Poppins", sans-serif;
  --lh-heading: 1.11;
  --lh-body: 1.5;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-heading-one: 72px;
  --fs-heading-two: 64px;
  --fs-heading-three: 48px;
  --fs-heading-four: 24px;
  --fs-heading-five: 20px;
  --fs-heading-six: 18px;
  --c-heading: #ffffff;
  --c-body: #525252;
  --c-base: #851E32;
  --c-primary: #0a0c25;
  --c-white: #ffffff;
  --border-default: #E2E4E5;
  --border-light: #EBEBEB;
  --bg-dark: #0F0F0F;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--c-body);
  line-height: var(--lh-body);
}

a {
  text-decoration: none;
  color: var(--c-body);
}

span,
sub,
sup,
a {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 500;
  line-height: var(--lh-heading);
  font-family: var(--ff-heading);
  color: var(--c-heading);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: var(--c-heading);
}

h1 {
  font-size: var(--fs-heading-one);
}

h2 {
  font-size: var(--fs-heading-two);
}

h3 {
  font-size: var(--fs-heading-three);
}

h4 {
  font-size: var(--fs-heading-four);
}

h5 {
  font-size: var(--fs-heading-five);
}

h6 {
  font-size: var(--fs-heading-six);
}

.container {
  max-width: 1227px;
  margin-inline: auto;
  padding-inline: 16px;
}

.bg_img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.btn {
  font-size: var(--fs-body);
  color: var(--c-white);
  background-color: var(--c-base);
  line-height: 1;
  padding: 22px 21px;
  border-radius: 50px;
  transition: all ease 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  outline: none;
  border: none;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.7;
}
.btn.btn-flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-block: 20px;
}
.btn.bg-white {
  background-color: var(--c-white);
  color: var(--c-base);
}
@media (max-width: 991px) {
  .btn {
    font-size: 14px !important;
  }
  .btn.btn-flex {
    padding-block: 15px;
  }
  .btn.btn-flex svg {
    width: 27px;
    height: 27px;
  }
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown img {
  vertical-align: middle;
  text-align: center;
}

.dropdown-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.dropdown-selected img:nth-child(1) {
  width: 21px;
}

.dropdown-selected img:nth-child(2) {
  width: 7px;
}

.flag-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
}

.flag-list li {
  padding: 5px 0;
  cursor: pointer;
}

.flag-list li label {
  display: flex;
  align-items: center;
}

.flag-list li img {
  width: 24px;
  height: 24px;
}

.flag-list li:hover {
  background-color: #f0f0f0;
}

.flag-list li input[type=checkbox] {
  display: none;
}

.flag-list li label {
  padding-inline: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.flag-list li.selected label {
  background-color: #e0e0e0;
}

.flag-list.open {
  display: block;
}

header {
  background: var(--c-white);
  padding-block: 13.5px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.logo img {
  max-width: 155px;
  max-height: 91px;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .logo {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .header-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

.header-right-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-right-content .btn {
  transform: scale(0);
}
.header-right-content .btn.visible {
  transform: scale(1);
}

.whatsapp-icon {
  transition: all ease 0.2s;
}
.whatsapp-icon img {
  display: block;
  filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.2862745098));
}
.whatsapp-icon:hover {
  opacity: 0.7;
}

.footer-top {
  background-color: var(--bg-dark);
  padding: 40px 0 40px;
}

.footer-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 95px;
}

.footer-bottom {
  background-color: var(--c-base);
  padding-block: 30.5px;
}

.copyright-text {
  text-align: center;
  color: var(--c-white);
  font-weight: 400;
  font-size: var(--fs-small);
}

.hero-section {
  padding-block: 60px;
}

.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.brand-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.hero-content h5 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-content h1 {
  margin-block: 16px;
}
.hero-content p {
  color: var(--c-white);
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 0;
}
.hero-content p span {
  font-weight: 600;
}

.class-date-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 55px;
  padding-bottom: 60px;
}
.class-date-wrapper .class-item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.class-date-wrapper .class-item h6 {
  font-weight: 400;
  font-size: 15px;
}
.class-date-wrapper .class-item span {
  font-weight: 600;
}
.class-date-wrapper .class-item p {
  color: var(--c-white);
  margin: 0;
  margin-bottom: 5px;
}

.border {
  width: 1px;
  height: 60px;
  background-color: var(--c-white);
}

.hero-right-form {
  width: 488px;
  background-color: var(--c-white);
  border: 1px solid var(--border-light);
  padding-top: 67px;
  padding-bottom: 46px;
  position: relative;
  border-radius: 0px 0px 8px 8px;
  box-shadow: 0px 9px 12px rgba(0, 0, 0, 0.16);
}
.hero-right-form::before {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  top: -1px;
  height: 16px;
  background-color: var(--c-base);
}
.hero-right-form .form-width {
  max-width: 367px;
  margin-inline: auto;
}

.form-top-content {
  text-align: center;
  margin-bottom: 32px;
}
.form-top-content h4 {
  color: var(--c-base);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-top-content p {
  margin: 0;
  color: #424242;
  line-height: 1.2;
}

form .form-group {
  margin-bottom: 12px;
  position: relative;
}
form .form-group.error input,
form .form-group.error select {
  border-color: red !important;
}
form .form-group input,
form .form-group #select-list {
  position: relative;
  box-sizing: border-box;
  height: 42px;
  width: 100%;
  outline: none;
  padding-left: 36px;
  padding-right: 20px;
  border: none;
  border-bottom: 1px solid var(--border-default);
  color: var(--c-body);
  font-size: var(--fs-small);
  font-style: italic;
  font-weight: 300;
  padding-bottom: 10px;
  transition: all ease 0.2s;
  background-color: var(--c-white);
}
form .form-group input::-moz-placeholder, form .form-group #select-list::-moz-placeholder {
  color: #737373;
}
form .form-group input::placeholder,
form .form-group #select-list::placeholder {
  color: #737373;
}
form .form-group input:focus,
form .form-group #select-list:focus {
  border-color: rgba(133, 30, 51, 0.5803921569);
  background-color: transparent;
}
form .form-group .form-icon {
  position: absolute;
  left: 0;
  top: 5px;
}
form .privacy-item.error {
  color: red;
}
form .number-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}
form .number-wrapper input {
  padding-left: 60px;
}
form .number-wrapper label {
  display: block;
  margin: 0;
  height: auto;
}
form .number-wrapper select {
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 444;
  border: none;
  outline: none;
}
form .custom-dropdown {
  position: absolute;
  z-index: 2;
  top: 0px;
}

.hero-left-content {
  width: calc(100% - 490px);
}

.privacy-content {
  margin-top: 32px;
}
.privacy-content .privacy-item {
  display: flex;
  align-items: start;
  gap: 12px;
}
.privacy-content .privacy-item .right {
  line-height: 0;
}
.privacy-content .privacy-item:not(:last-child) {
  margin-bottom: 14px;
}
.privacy-content .privacy-item:last-child .right {
  margin-top: 4px;
}
.privacy-content .privacy-item input {
  margin: 0;
  width: 15px;
  height: 15px;
  border-radius: 0px !important;
}
.privacy-content .privacy-item input:checked {
  accent-color: #b31d3b;
}
.privacy-content label {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
}

.button-wrapper {
  margin-top: 32px;
}
.button-wrapper .btn {
  width: 100%;
}

.hero-section.hero-two {
  padding-bottom: 0;
}
.hero-section.hero-two .hero-right-form {
  padding-top: 50px;
  padding-bottom: 35px;
}
.hero-section.hero-two .hero-wrapper {
  align-items: center;
}
.hero-section.hero-two .hero-content h1 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-section.hero-two .hero-content p {
  margin: 0;
}
.hero-section.hero-two .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: var(--c-base);
  color: var(--c-white);
  font-size: 20px;
  font-weight: 500;
  padding: 7px;
  padding-left: 10px;
  padding-right: 40px;
  clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 0 0);
  border-radius: 0px 8px 8px 0px;
}

.hero-bottom-content {
  background-color: var(--c-base);
  padding-top: 19px;
  padding-bottom: 18px;
  margin-top: -140px;
}
.hero-bottom-content .class-item {
  text-align: center;
  min-width: 129px;
  gap: 0;
}
.hero-bottom-content .class-item p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  color: var(--c-white);
  margin-bottom: 3px;
}
.hero-bottom-content .class-item h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.06em;
}
.hero-bottom-content .class-item .border {
  width: 60px;
  height: 1px;
  margin-block: 24px;
  margin-inline: auto;
}

.class-date-wrapper-two {
  display: flex;
  flex-wrap: wrap;
  max-width: 555px;
  justify-content: space-between;
  gap: 12px;
}

.blog-section {
  padding-top: 200px;
  padding-bottom: 128px;
}

.blog-top-content {
  text-align: center;
  padding-bottom: 80px;
}
.blog-top-content img {
  margin-bottom: 20px;
}
.blog-top-content h3 {
  margin-bottom: 20px;
}
.blog-top-content p {
  color: var(--c-white);
  font-size: var(--fs-heading-five);
  margin: 0;
}

.border-bottom {
  border-bottom: 1px solid var(--c-white);
  position: relative;
}
.border-bottom::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 132px;
  height: 22px;
  background-color: var(--c-base);
}

.subscribe-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}
.subscribe-wrapper .subscribe-left {
  text-transform: uppercase;
  color: var(--c-white);
  font-size: 20px;
  font-weight: 500;
}

.subscribe-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.subscribe-right span {
  color: var(--c-white);
  border-bottom: 1px solid var(--c-white);
  padding-bottom: 16px;
}
.subscribe-right a {
  background-color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
  height: 85px;
  width: 85px;
  transition: all ease 0.2s;
}
.subscribe-right a path {
  transition: all ease 0.2s;
}
.subscribe-right a:hover {
  background-color: var(--c-base);
}
.subscribe-right a:hover path {
  fill: var(--c-white);
}

.blog-wrapper {
  padding-top: 75px;
  max-width: 822px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 36px;
}
.blog-wrapper .blog-item {
  max-width: 390px;
  border: 1px solid rgba(235, 235, 235, 0.4);
  box-shadow: 0px 9px 12px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 8px 8px;
  position: relative;
}
.blog-wrapper .blog-item::before {
  position: absolute;
  content: "";
  left: -12px;
  top: 112px;
  width: 24px;
  height: 147px;
  background-color: var(--c-base);
  z-index: 1;
}
.blog-wrapper .blog-item__thumb {
  position: relative;
  height: 186px;
  overflow: hidden;
}
.blog-wrapper .blog-item__thumb .img-content {
  position: absolute;
  top: 42px;
  left: 36px;
}
.blog-wrapper .blog-item__thumb .img-content h4 {
  line-height: 1.4;
  padding-top: 23px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.06em;
}
.blog-wrapper .blog-item__thumb .img-content h4 a {
  transition: all ease 0.2s;
}
.blog-wrapper .blog-item__thumb .img-content h4 a:hover {
  color: var(--c-base);
}
.blog-wrapper .blog-item__thumb .img-content img {
  width: 32px;
  height: 32px;
}
.blog-wrapper .blog-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 0.25s;
  overflow: hidden;
}
.blog-wrapper .blog-item__content {
  background: linear-gradient(214.25deg, rgba(255, 255, 255, 0.16) 6.73%, rgba(255, 255, 255, 0.06) 100.28%);
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  padding: 26px 24px 23px;
  padding-right: 27px;
  max-width: 336px;
  color: var(--c-white);
}
.blog-wrapper .blog-item__content p {
  margin: 0;
  margin-bottom: 2px;
}
.blog-wrapper .blog-item:hover .blog-item__thumb img {
  transform: scale(1.1);
}
.blog-wrapper .blog-item:hover .blog-item__thumb .img-content img {
  transform: scale(1);
}

.blog-button {
  text-align: right;
}
.blog-button a {
  border-bottom: 1px solid var(--c-white);
  display: inline-flex;
  gap: 10px;
  padding-bottom: 15px;
  color: var(--c-white);
  transition: all ease 0.2s;
}
.blog-button a:hover {
  opacity: 0.7;
}

.why-choose {
  padding-top: 78px;
  padding-bottom: 109px;
}

.why-choose-title {
  text-align: center;
  color: #6f7170;
  padding-bottom: 96px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 84px 0;
}
.why-choose-wrapper .choose-item:nth-of-type(2n) {
  margin-left: auto;
  text-align: right;
}

.thumb-content-wrapper {
  position: relative;
}

.why-thumb {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.choose-item {
  max-width: 338px;
}
.choose-item h4 {
  color: var(--c-base);
  margin-top: 15px;
  margin-bottom: 20px;
  letter-spacing: -0.06em;
}
.choose-item p {
  margin: 0;
  max-width: 330px;
  line-height: 1.8;
}

.education-section {
  padding-top: 176px;
  padding-bottom: 116px;
}

.edu-content {
  max-width: 465px;
  margin-left: auto;
}
.edu-content p {
  font-size: 32px;
  font-weight: 500;
  color: var(--c-white);
  margin-top: 25px;
  margin-bottom: 28px;
}

.semestre-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.semestre-section .blog-top-content {
  padding: 0;
  line-height: 1;
}
.semestre-section .blog-top-content h3 {
  color: #6f7170;
  line-height: 1;
  margin-bottom: 38px;
}
.semestre-section .subscribe-wrapper .subscribe-left,
.semestre-section .subscribe-wrapper span {
  color: #6f7170;
  border: none;
  padding-bottom: 0;
}
.semestre-section .subscribe-wrapper a {
  border: 1px solid var(--c-base);
}
.semestre-section .border-bottom {
  border-color: var(--c-base);
}

.semestre-wrapper {
  max-width: 1012px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 35px;
  padding-top: 105px;
}

.single-semestre-item {
  width: calc(50% - 20px);
  background: linear-gradient(214.25deg, rgba(255, 255, 255, 0.16) 6.73%, rgba(255, 255, 255, 0.06) 100.28%);
  border: 1px solid rgba(235, 235, 235, 0.4);
  box-shadow: 0px 9px 12px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 8px 8px;
}
.single-semestre-item .semestre-top {
  padding-top: 42px;
  padding-bottom: 30px;
}
.single-semestre-item .semestre-top .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 24px;
  padding-left: 36px;
}
.single-semestre-item .semestre-top h3 {
  font-size: 36px;
  font-weight: 500;
}
.single-semestre-item .semestre-content {
  padding: 16px 30px;
  padding-left: 50px;
  position: relative;
  min-height: 185px;
  background-color: var(--c-white);
  border-radius: 0px 0px 8px 8px;
}
.single-semestre-item .semestre-content::before {
  position: absolute;
  content: "";
  left: -12px;
  top: -40px;
  width: 24px;
  height: 147px;
  background-color: var(--c-base);
}
.single-semestre-item .semestre-content li {
  list-style-type: disc;
  padding-block: 4px;
  color: #424242;
  position: relative;
}

.plan-section {
  background-color: #292929;
}

.plan-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.plan-left-content {
  max-width: 310px;
  margin-left: auto;
}
.plan-left-content h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 17px;
}

.plan-right-thumb {
  width: 70.5%;
  margin-left: auto;
}
.plan-right-thumb img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.plan-thumb-content {
  max-width: 335px;
  padding-right: 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  padding-top: 143px;
  padding-bottom: 104px;
}
@media (min-width: 1600px) {
  .plan-thumb-content {
    padding-top: 243px;
    padding-bottom: 204px;
  }
}
.plan-thumb-content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 17px;
  line-height: 1.3;
}

.qualification {
  padding-block: 90px;
  overflow: hidden;
}

.qualification-thumb {
  width: 49%;
  position: relative;
  float: left;
}
.qualification-thumb::before {
  position: absolute;
  content: "";
  right: -44px;
  top: -35px;
  bottom: -35px;
  background-color: var(--c-base);
  width: 122px;
  z-index: 0;
}
.qualification-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.qualification-content {
  max-width: 350px;
  margin-left: auto;
}
.qualification-content h2 {
  font-size: 72px;
  font-weight: 300;
  color: #fcfcfc;
  margin-bottom: 50px;
}
.qualification-content p {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: #fafafa;
  margin: 0;
  max-width: 300px;
}
.qualification-content p::before {
  position: absolute;
  content: "";
  left: -50px;
  top: 0px;
  width: 3px;
  height: 90px;
  background-color: var(--c-white);
}

.iti{
    width: 100%;
}
.iti__selected-dial-code{
    font-style: italic;
    font-size: 14px;
    padding-bottom: 9px;
    font-family: Arial;
}
.iti__selected-country-primary{
    padding-bottom: 8px;
}

@media (min-width: 992px) {
  .hero-left-content {
    background-image: none !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (max-width: 1199px) {
  .choose-item {
    max-width: 315px;
  }
  .why-thumb img {
    width: 400px;
  }
  .class-date-wrapper-two {
    max-width: 450px;
  }
  .class-date-wrapper-two .class-item {
    min-width: 70px;
  }
  .plan-right-thumb {
    width: 64%;
  }
  .plan-thumb-content {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .blog-wrapper .blog-item::before {
    width: 20px;
    height: 123px;
    top: 92px;
  }
  .why-choose-title {
    gap: 0px;
  }
  .education-section {
    position: relative;
  }
  .education-section .container {
    position: relative;
  }
  .education-section::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
  }
  .qualification {
    padding-bottom: 140px;
    padding-top: 123px;
  }
  .qualification-content h2 {
    font-size: 48px;
    text-align: center;
  }
  .qualification-content {
    max-width: 609px;
    margin-bottom: 48px;
    margin-inline: auto;
    padding-left: 50px;
  }
  .qualification-content p {
    max-width: 100%;
  }
  .qualification-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .semestre-section {
    padding-bottom: 120px;
  }
  .plan-left-content {
    margin-right: auto;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 60px;
    max-width: 100%;
  }
  .plan-right-thumb {
    width: 100%;
  }
  .plan-thumb-content h3 {
    font-size: 24px;
    max-width: 229px;
  }
  .qualification-thumb {
    width: 100%;
  }
  .qualification-thumb img {
    width: 94%;
  }
  .plan-thumb-content {
    padding-right: 0px;
  }
  .single-semestre-item .semestre-content li {
    font-size: 11px;
    padding-block: 2px;
  }
  .single-semestre-item .semestre-top {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .single-semestre-item .semestre-top h3 {
    font-size: 24px;
  }
  .semestre-top img {
    width: 22px;
    height: 22px;
  }
  .single-semestre-item .semestre-content {
    min-height: 135px;
  }
  .hero-section.hero-two {
    background-image: none !important;
  }
  .hero-section.hero-two .hero-right-form {
    margin-right: auto;
  }
  .hero-section.hero-two .container {
    padding-inline: 0;
  }
  .hero-section.hero-two .hero-left-content {
    padding-top: 325px;
    padding-bottom: 124px;
  }
  .container {
    padding-inline: 30px;
  }
  .class-date-wrapper-two {
    margin-inline: auto;
    max-width: 555px;
  }
  .class-date-wrapper-two .class-item {
    min-width: 129px;
  }
  .semestre-section .blog-top-content h3 {
    margin-bottom: 29px;
  }
  .hero-bottom-content {
    margin-top: 0;
  }
  .semestre-wrapper {
    padding-top: 73px;
  }
  .hero-right-form {
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
  .hero-wrapper {
    flex-direction: column-reverse;
    align-items: start;
  }
  .hero-section {
    background-image: none;
    background-color: var(--c-white);
    padding: 0;
    overflow-x: hidden;
  }
  .hero-section .container {
    padding-inline: 0;
  }
  .hero-left-content {
    width: 100%;
    padding: 300px 30px 0px;
    background-position: left 25% center !important;
  }
  .blog-top-content {
    max-width: 600px;
    margin-inline: auto;
  }
  .blog-section {
    padding-top: 133px;
    padding-bottom: 167px;
  }
  .blog-wrapper {
    max-width: 100%;
    gap: 20px 30px;
    padding-top: 50px;
  }
  .blog-wrapper .blog-item {
    width: calc(50% - 17px);
  }
  .subscribe-wrapper {
    padding-bottom: 27px;
  }
  .blog-top-content {
    padding-bottom: 46px;
  }
  .blog-wrapper .blog-item__thumb {
    height: 164px;
  }
  .blog-wrapper .blog-item__thumb .img-content {
    top: 35px;
    left: 30px;
  }
  .blog-wrapper .blog-item__thumb .img-content h4 {
    font-size: 20px;
    padding-top: 19px;
  }
  .blog-wrapper .blog-item__content {
    padding: 21px 22px 23px;
  }
  .blog-wrapper .blog-item__content p {
    font-size: 12px;
    line-height: 1.9;
  }
  .blog-button a {
    font-size: 13px;
    padding-bottom: 12px;
  }
  .blog-button svg {
    width: 20px;
    height: 20px;
  }
  .copyright-text {
    font-size: 14px;
  }
  .footer-top {
    padding-block: 80px;
  }
  .footer-logo-wrapper {
    gap: 77px;
  }
  .edu-content {
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
  }
  .edu-content p {
    font-size: 24px;
    margin-block: 24px;
  }
  .education-section {
    padding-top: 240px;
    padding-bottom: 145px;
  }
  .why-choose-title {
    font-size: 48px;
    max-width: 500px;
    margin-inline: auto;
    text-align: center;
    padding-bottom: 35px;
  }
  .why-choose-title img {
    margin-top: 15px;
    width: 231px;
    height: 64px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-inline: auto;
  }
  .why-thumb {
    position: initial;
    transform: none;
  }
  .why-thumb img {
    width: 100%;
    max-width: 540px;
  }
  .why-choose-wrapper {
    padding-top: 44px;
    gap: 53px 44px;
  }
  .choose-item {
    max-width: 100%;
    text-align: center;
  }
  .why-choose-wrapper .choose-item:nth-of-type(2n) {
    text-align: center;
  }
  .semestre-wrapper {
    padding-left: 8px;
  }
  .single-semestre-item .semestre-content::before {
    left: -8px;
    width: 16px;
    height: 100px;
    top: -25px;
  }
}
@media (max-width: 767px) {
  .footer-logo-wrapper .single-logo {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 576px) {
  .mobile-plan-img {
    display: none;
  }
}
@media (max-width: 699px) {
  .blog-wrapper .blog-item__thumb {
    height: 186px;
  }
  .mobile-subscribe {
    justify-content: center;
    padding-top: 45px;
  }
}
@media (min-width: 700px) {
  .d-md-block {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .plan-left-content {
    max-width: 330px;
  }
  .blog-section .subscribe-right span {
    border-color: var(--c-white);
    color: var(--c-white);
  }
  .mobile-plan-img {
      display: none;
    width: 100%;
    height: 314px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .plan-thumb-content {
    padding: 82px 20px;
    background-position: right !important;
    position: relative;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    max-width: 100%;
  }
  .plan-thumb-content h3,
  .plan-thumb-content a {
    position: relative;
    z-index: 3;
  }
  .plan-thumb-content::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(98, 20, 36, 0.7411764706);
  }
  .hero-section.hero-two .hero-left-content {
    padding-top: 417px;
    padding-bottom: 70px;
  }
  .hero-section.hero-two .brand-logo {
    justify-content: flex-start;
    padding-inline: 30px;
  }
  .hero-section.hero-two .hero-left-content .hero-content {
    text-align: start;
    padding-inline: 30px;
  }
  .hero-section.hero-two .hero-left-content .hero-content h1 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .semestre-section .blog-top-content h3 {
    margin-bottom: 50px;
  }
  .semestre-wrapper {
    padding-top: 20px;
  }
  .subscribe-right span {
    color: #6F7170;
    border-color: #6F7170;
  }
  .class-date-wrapper-two {
    max-width: 270px;
  }
  .qualification-content {
    margin-bottom: 60px;
  }
  .qualification-thumb::before {
    right: 0px;
    width: 70px;
  }
  .semestre-section {
    padding-top: 112px;
    padding-bottom: 100px;
  }
  .single-semestre-item {
    width: 100%;
    max-width: 335px;
    margin-inline: auto;
  }
  .container {
    padding-inline: 20px;
  }
  .hero-left-content {
    padding: 0;
    padding-top: 300px;
  }
  .hero-left-content .brand-logo {
    justify-content: center;
    margin-bottom: 38px;
  }
  .hero-left-content .hero-content {
    text-align: center;
  }
  .hero-left-content .hero-content h5 {
    justify-content: center;
  }
  .hero-left-content .hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    margin-block: 11px;
  }
  .class-date-wrapper {
    justify-content: center;
    gap: 24px;
    margin-top: 37px;
    padding-bottom: 50px;
  }
  .class-date-wrapper .class-item {
    min-width: 300px;
    position: relative;
  }
  .class-date-wrapper .class-item p {
    font-size: 15px;
  }
  .class-date-wrapper .class-item:first-child::before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--c-white);
  }
  .class-date-wrapper .border {
    display: none;
  }
  .blog-top-content h3 {
    letter-spacing: -0.06em;
    font-size: 38px;
    font-weight: 500;
  }
  .blog-section {
    padding-top: 100px;
    padding-bottom: 38px;
  }
  .blog-wrapper .blog-item {
    width: 100%;
    max-width: 334px;
    margin-inline: auto;
  }
  .why-choose-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .why-choose-wrapper .choose-item {
    max-width: 327px;
    margin-inline: auto;
  }
  .why-choose {
    padding-bottom: 54px;
    padding-top: 103px;
  }
  .why-choose-title {
    font-size: 40px;
  }
  .why-choose-title img {
    margin-top: 10px;
  }
  .education-section {
    padding-top: 207px;
    padding-bottom: 103px;
  }
  .subscribe-wrapper {
    justify-content: center;
  }
  .mobile-sub-border-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  .subscribe-wrapper .subscribe-left {
    padding-top: 53px;
  }
  .blog-wrapper {
    padding-top: 15px;
  }
  .blog-wrapper .blog-item__thumb {
    height: 164px;
  }
  header {
    padding-block: 11px;
  }
  .plan-thumb-content h3 {
    width: 100% !important;
  }
}
.d-none {
  display: none;
}

.mobile-contact {
  position: fixed;
  right: 30px;
  bottom: 100px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 999;
}
.mobile-contact .text {
  padding: 13px 25px;
  padding-right: 45px;
  background: var(--c-white);
  border-radius: 52px;
  font-size: 12px;
  font-weight: 300;
}
.mobile-contact img {
  display: block;
}
@media (max-width: 575px) {
  .mobile-contact {
    bottom: 70px;
  }
}

@media (max-width: 390px) {
  .hero-section.hero-two .hero-content h1 {
    font-size: 46px;
  }
  .hero-left-content .hero-content h1 {
    font-size: 56px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .hero-right-form .form-width {
    padding-inline: 20px;
  }
}