@font-face {
  font-family: "msTrinhLe";
  font-weight: 400;
  src: url("../fonts/MonaSans-Regular.ttf");
}
@font-face {
  font-family: "msTrinhLe";
  font-weight: 600;
  src: url("../fonts/MonaSans-Bold.ttf");
}
@font-face {
  font-family: "msTrinhLe";
  font-weight: 800;
  src: url("../fonts/MonaSans-ExtraBold.ttf");
}
@-webkit-keyframes vFadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vFadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes vFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*reset css*/
:root[data-theme=light] {
  --bg-base: 255, 255, 255;
  --bg-main: rgba(var(--bg-base), 1);
  --bg-main-80: rgba(var(--bg-base), .8);
  --bg-surface: #f2f2f2;
  --primary-100: #E1AF00;
  --neutral-base: 0, 0, 0;
  --neutral-100: rgba(var(--neutral-base), 1);
  --neutral-60: rgba(var(--neutral-base), .6);
  --neutral-40: rgba(var(--neutral-base), .4);
  --neutral-20: rgba(var(--neutral-base), .2);
  --neutral-10: rgba(var(--neutral-base), .1);
  --neutral-0: rgba(var(--neutral-base), 0);
}

:root[data-theme=dark] {
  --bg-base: 20, 21, 23;
  --bg-main: rgba(var(--bg-base), 1);
  --bg-main-80: rgba(var(--bg-base), .8);
  --bg-surface: #1C1E21;
  --primary-100: #FFCE2D;
  --neutral-base: 242, 242, 242;
  --neutral-100: rgba(var(--neutral-base), 1);
  --neutral-60: rgba(var(--neutral-base), .6);
  --neutral-40: rgba(var(--neutral-base), .4);
  --neutral-20: rgba(var(--neutral-base), .2);
  --neutral-10: rgba(var(--neutral-base), .1);
  --neutral-0: rgba(var(--neutral-base), 0);
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

img {
  outline: none;
  border: none;
}

ul, li, ol {
  list-style: none;
}

p {
  margin: 5px 0;
  font-weight: 400;
}

body {
  font-family: "msTrinhLe", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4 !important;
  background: var(--bg-main);
  color: var(--neutral-100);
}

.clearfix {
  clear: both;
}

.floatRight {
  float: right;
}

.floatLeft {
  float: left;
}

a:active, a:focus {
  text-decoration: none;
}

button, a, img, li, input[type=button], input[type=submit] {
  outline: none;
  border: none;
}
button:hover, button:focus, button:active, a:hover, a:focus, a:active, img:hover, img:focus, img:active, li:hover, li:focus, li:active, input[type=button]:hover, input[type=button]:focus, input[type=button]:active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active {
  outline: none;
}

img {
  max-width: 100%;
}

ul {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "msTrinhLe", "Open Sans", sans-serif;
}

input[type=text], input[type=email], input[type=number], input[type=tel], textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  padding: 10px;
  background: #fff;
  outline: none;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=text]:focus, input[type=email]:focus, input[type=number]:focus, input[type=tel]:focus, textarea:focus {
  outline: none;
}

.icon-neutral-color {
  fill: var(--neutral-100);
}

.cta-primary {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 164px;
  height: 48px;
  min-width: 88px;
  padding: 8px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: flex;
  border-radius: 100px;
  color: #111;
  background: var(--primary-100);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta-primary:hover {
  background: #E54622;
  color: #fff;
}

.section-title {
  text-align: center;
}
.section-title h3 {
  color: var(--neutral-100);
  font-size: 16px;
}
.section-title h2 {
  margin-top: -16px;
  white-space: nowrap;
  font-size: 148px;
  font-weight: 800;
  line-height: 100%;
  background: linear-gradient(179deg, rgba(255, 255, 255, 0.2) 0.87%, rgba(255, 255, 255, 0) 83.77%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*end reset css*/
#top-menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: var(--bg-main-80);
  backdrop-filter: blur(8px);
}
#top-menu .top-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
#top-menu .top-menu-wrapper .main-menu li {
  display: inline;
  cursor: pointer;
  padding: 0 16px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top-menu .top-menu-wrapper .main-menu li.active {
  color: var(--primary-100);
  position: relative;
}
#top-menu .top-menu-wrapper .main-menu li.active:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 2px;
  background: var(--primary-100);
  top: -24px;
  left: 40%;
}
#top-menu .top-menu-wrapper .main-menu li:after {
  content: "/";
  display: inline-block;
  position: absolute;
  right: -6px;
  color: var(--neutral-20);
}
#top-menu .top-menu-wrapper .main-menu li:last-child:after {
  display: none;
}
#hero-banner {
  height: 720px;
  padding: 220px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url("../images/bg-header.png") center center no-repeat;
  background-size: 100% auto;
}
#hero-banner .scroll-png {
  position: relative;
  width: 120px;
  height: 120px;
}
#hero-banner .scroll-png img {
  width: 100%;
  height: 100%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
#hero-banner .scroll-png .arrow {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: var(--bg-surface);
}
#hero-banner .scroll-png .arrow:after {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background: var(--neutral-60);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  border-radius: 12px;
  top: 45%;
  left: 37%;
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#hero-banner .main-content {
  margin-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#hero-banner .main-content p {
  max-width: 640px;
  text-align: center;
  margin-top: 24px;
  color: var(--neutral-60);
}

#why-learn .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
#why-learn .section-content img {
  display: block;
  max-width: 480px;
}
#why-learn .section-content .left-content .intro {
  border-bottom: 1px solid var(--neutral-10);
  margin-bottom: 32px;
}
#why-learn .section-content .left-content .intro h4 {
  font-size: 40px;
  font-weight: bold;
  line-height: 100%;
  color: var(--primary-100);
}
#why-learn .section-content .left-content .intro h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 12px 0 24px;
  color: var(--neutral-60);
}
#why-learn .section-content .left-content .intro p {
  padding: 12px 0 12px;
  font-size: 14px;
}
#why-learn .section-content .left-content .intro ul {
  margin-bottom: 32px;
}
#why-learn .section-content .left-content .intro ul li {
  font-size: 14px;
  margin-bottom: 12px;
  list-style: disc;
  margin-left: 16px;
}
#why-learn .section-content .left-content ul.certificate-listing {
  padding: 0;
}
#why-learn .section-content .left-content ul.certificate-listing li {
  font-weight: 600;
  padding-left: 48px;
  height: 32px;
  background: url("../images/icon-LT.png") left center no-repeat;
  margin: 16px 0;
}
#why-learn .my-team {
  margin-top: 40px;
}
#why-learn .my-team .title-my-team {
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  letter-spacing: 4px;
  text-align: center;
  padding: 4px;
  border-radius: 1000px;
}
#why-learn .my-team .wrapper-teacher {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
#why-learn .my-team .wrapper-teacher .teacher-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-radius: 24px;
  padding: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
#why-learn .my-team .wrapper-teacher .teacher-detail img {
  display: block;
  width: 160px;
  height: 200px;
  border-radius: 20px;
}
#why-learn .my-team .wrapper-teacher h4 {
  font-weight: bold;
  font-size: 20px;
  color: var(--primary-100);
}
#why-learn .my-team .wrapper-teacher h5 {
  font-weight: bold;
  font-size: 16px;
}
#why-learn .my-team .wrapper-teacher ul {
  margin: 12px 0;
}
#why-learn .my-team .wrapper-teacher ul b {
  font-size: 14px;
}
#why-learn .my-team .wrapper-teacher ul li {
  list-style: disc;
  font-size: 14px;
  margin-left: 15px;
}

#testimonials {
  margin: 120px 0;
}
#testimonials .section-wrapper {
  background: var(--bg-surface);
  border-radius: 24px;
  padding: 80px 0;
}
#testimonials .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
#testimonials .section-content .testi-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#testimonials .section-content .testi-grid .testi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 24px;
  background: var(--bg-main-80);
  padding: 24px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
#testimonials .section-content .testi-grid .testi .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#testimonials .section-content .testi-grid .testi .content .sub {
  font-size: 14px;
  color: var(--neutral-60);
  margin-top: 8px;
}
#testimonials .section-content .testi-grid .testi .devider {
  width: 100%;
  height: 1px;
  background: var(--neutral-10);
  margin: 16px 0;
}
#testimonials .section-content .testi-grid .testi .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
#testimonials .section-content .testi-grid .testi .info img {
  border-radius: 16px;
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#testimonials .section-content .testi-grid .testi .info .info-detail h5 {
  font-size: 20px;
  font-weight: bold;
}
#testimonials .section-content .testi-grid .testi .info .info-detail p {
  font-size: 14px;
  color: var(--neutral-60);
}

#learning-goals .goal-listing {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 32px 0 148px;
}
#learning-goals .goal-listing .left-title {
  position: sticky;
  top: 80px;
  width: 360px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
#learning-goals .goal-listing .left-title h3 {
  color: var(--primary-100);
  font-weight: bold;
  font-size: 40px;
  line-height: 1.3;
}
#learning-goals .goal-listing .left-title p {
  margin-top: 24px;
}
#learning-goals .goal-listing .right-content {
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
#learning-goals .goal-listing .right-content .goal-detail h4 {
  color: var(--primary-100);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;
}
#learning-goals .goal-listing .right-content .goal-detail h4 strong {
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 196, 0, 0.2)), to(rgba(245, 196, 0, 0)));
  background: linear-gradient(to right, rgba(245, 196, 0, 0.2), rgba(245, 196, 0, 0));
  color: var(--primary-100);
  padding: 2px 24px 2px 8px;
  font-weight: normal;
  font-size: 16px;
}
#learning-goals .goal-listing .right-content .goal-detail p {
  color: var(--neutral-60);
}
#learning-goals .goal-listing .right-content .goal-detail .des {
  font-size: 14px;
  padding-left: 16px;
  border-left: 2px solid var(--neutral-10);
  margin-top: 12px;
  color: var(--neutral-100);
}

#footer {
  margin-top: 100px;
}
#footer .logo-pattern {
  background: var(--bg-surface);
  padding: 20px 0;
  text-align: center;
}
#footer .logo-pattern img {
  display: inline-block;
  padding: 0 92px;
}
#footer .section-content {
  padding: 64px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .section-content .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 148px;
}
#footer .section-content .right .menu {
  margin-top: 20px;
}
#footer .section-content .right .menu h5 {
  font-size: 10px;
  color: var(--neutral-60);
  text-transform: uppercase;
  letter-spacing: 1px;
}
#footer .section-content .right .menu ul li a {
  color: var(--neutral-100);
  font-size: 20px;
  font-weight: normal;
  margin-top: 16px;
  cursor: pointer;
}
#footer .section-content .left h5 {
  font-weight: bold;
}
#footer .section-content .left h3 {
  font-size: 40px;
  font-weight: bold;
  margin-top: 12px;
  text-decoration: underline;
  color: var(--primary-100);
}
#footer .copyright {
  padding: 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--neutral-10);
}
#footer .copyright .back-to-top {
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-100);
}

/*css for responsive*/
@media screen and (max-width: 1200px) {
  #footer .logo-pattern img {
    padding: 0 64px;
  }
  #why-learn .section-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #why-learn .section-content img {
    max-width: 364px;
    height: auto;
    position: sticky;
    top: 80px;
    z-index: 3;
  }
  .section-title h2 {
    margin-top: 0;
    font-size: 112px;
  }
  #learning-goals .goal-listing .right-content {
    width: 540px;
  }
  #testimonials .section-content .testi-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ========================= */
@media screen and (max-width: 992px) {
  #footer .logo-pattern {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
  #footer .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 64px;
  }
  #learning-goals .goal-listing {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 32px;
  }
  #learning-goals .goal-listing .left-title h3 {
    font-size: 30px;
  }
  .section-title h2 {
    font-size: 92px;
  }
  #why-learn .section-content {
    gap: 32px;
  }
  #why-learn .section-content img {
    max-width: 280px;
  }
  .main-menu {
    display: none;
  }
}
/* ========================= */
@media screen and (max-width: 768px) {
  .section-title h2 {
    font-size: 46px;
  }
  #hero-banner {
    height: 480px;
    padding-top: 200px;
  }
  #hero-banner .main-content {
    margin-bottom: 40px;
  }
  #hero-banner .main-content img {
    max-width: 96%;
  }
  #why-learn .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  #why-learn .section-content img {
    position: static;
    display: block;
    margin: 0 auto;
  }
  #why-learn .section-content .left-content {
    padding-top: 20px;
  }
  #why-learn .section-content .left-content .intro h4 {
    text-align: center;
    font-size: 28px;
  }
  #why-learn .section-content .left-content .intro h5 {
    text-align: center;
    margin-bottom: 4px;
  }
  #why-learn .section-content .left-content ul.certificate-listing li {
    margin: 8px 0;
  }
  #testimonials {
    margin: 48px 0;
  }
  #testimonials .section-wrapper {
    padding: 20px 0;
  }
  #testimonials .section-content .testi-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  #learning-goals .goal-listing {
    margin: 0 0 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  #learning-goals .goal-listing .left-title {
    width: 100%;
    background: var(--bg-main);
    top: 60px;
    z-index: 9;
    padding: 4px 0;
  }
  #learning-goals .goal-listing .left-title h3 {
    font-size: 16px;
    margin-bottom: 2px;
    text-align: center;
  }
  #learning-goals .goal-listing .left-title p {
    font-size: 12px;
    margin-top: 0;
    text-align: center;
  }
  #learning-goals .goal-listing .right-content {
    width: 100%;
    gap: 12px;
  }
  #learning-goals .goal-listing .right-content .goal-detail {
    background: var(--bg-surface);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 16px;
  }
  #learning-goals .goal-listing .right-content .goal-detail h4 {
    font-size: 16px;
  }
  #learning-goals .goal-listing .right-content .goal-detail .des {
    margin-top: 16px;
    padding: 0;
    border: none;
    font-size: 16px;
  }
  #footer {
    margin-top: 48px;
  }
  #footer .section-content {
    padding: 40px 16px;
    gap: 32px;
  }
  #footer .section-content .right .menu ul li {
    font-size: 16px;
    margin-top: 8px;
  }
  #footer .section-content .left h3 {
    font-size: 32px;
    margin-top: 4px;
  }
  #footer .copyright {
    padding: 32px 16px;
  }
  .cta-primary {
    width: 154px;
  }
  #why-learn .my-team .wrapper-teacher {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #why-learn .my-team .wrapper-teacher img {
    margin: 0 auto;
  }
  #why-learn .my-team .wrapper-teacher h4, #why-learn .my-team .wrapper-teacher h5 {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  #top-menu {
    background: var(--bg-main);
  }
  #top-menu .top-menu-wrapper {
    padding: 8px 16px;
  }
  .cta-primary {
    height: 44px;
  }
  #hero-banner .main-content {
    padding: 0 16px;
    margin-bottom: 24px;
  }
  #hero-banner .main-content p {
    margin-top: 12px;
  }
  #footer .section-content .left h3 {
    font-size: 28px;
  }
  #footer .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .section-title h3 {
    font-size: 14px;
  }
  #why-learn .section-content .left-content .intro {
    margin-bottom: 20px;
  }
  #why-learn .section-content .left-content .intro ul {
    margin-bottom: 20px;
  }
}
/*end css for responsive*/
/*css for modal*/
.modal-body {
  padding: 24px;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.book-class-modal .modal-content {
  background: var(--bg-main);
  border-radius: 16px;
}
.book-class-modal .modal-content .modal-header {
  border-bottom: none;
  padding: 16px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.book-class-modal .modal-content .modal-header .modal-title {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: var(--primary-100);
}
.book-class-modal .book-class-form .form-group {
  margin-bottom: 24px;
}
.book-class-modal .book-class-form .form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}
.book-class-modal .book-class-form .form-control {
  background: var(--bg-surface);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 12px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  color: var(--neutral-100);
}
.book-class-modal .book-class-form .form-control::-webkit-input-placeholder {
  color: var(--neutral-40);
}
.book-class-modal .book-class-form .form-control::-moz-placeholder {
  color: var(--neutral-40);
}
.book-class-modal .book-class-form .form-control:-ms-input-placeholder {
  color: var(--neutral-40);
}
.book-class-modal .book-class-form .form-control::-ms-input-placeholder {
  color: var(--neutral-40);
}
.book-class-modal .book-class-form .form-control::placeholder {
  color: var(--neutral-40);
}
.book-class-modal .book-class-form .form-control:focus {
  border-color: var(--primary-100);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--neutral-100);
}
.book-class-modal .book-class-form textarea.form-control {
  height: 88px;
  resize: none;
}
.book-class-modal .book-class-form .btn-submit {
  width: 100%;
  height: 48px;
  border: none;
}
.book-class-modal .btn-close {
  background: none;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  position: relative;
  opacity: 0.8;
}
.book-class-modal .btn-close::before, .book-class-modal .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--neutral-60);
}
.book-class-modal .btn-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.book-class-modal .btn-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.book-class-modal .btn-close:hover {
  opacity: 1;
}

/*end css for modal*/
.container,
.container-fluid,
.section,
.section-wrapper {
  overflow: visible;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/* MODERN FOOTER REDESIGN */
.modern-footer {
  background-color: #111111;
  color: #fff;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-footer .footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  opacity: 0.03;
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
}

.modern-footer .pattern-item {
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
  padding-right: 50px;
  color: #fff;
}

.modern-footer .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* TOP ROW: BRAND & NEWSLETTER */
.modern-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.modern-footer .footer-brand {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.modern-footer .footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-100); /* Brand light pink */
  margin-bottom: 10px;
}

.modern-footer .footer-slogan {
  font-size: 16px;
  color: #b0b0c0;
  max-width: 300px;
  line-height: 1.5;
}

.modern-footer .footer-newsletter {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.modern-footer .footer-newsletter h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.modern-footer .footer-newsletter p {
  font-size: 14px;
  color: #b0b0c0;
  margin-bottom: 15px;
}

.modern-footer .newsletter-form {
  display: flex;
  max-width: 400px;
}

.modern-footer .newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border 0.3s;
}

.modern-footer .newsletter-form input:focus {
  border-color: var(--primary-100);
}

.modern-footer .newsletter-form button {
  padding: 12px 25px;
  background-color: var(--primary-100);
  color: #111;
  border: none;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-footer .newsletter-form button:hover {
  background-color: #E54622;
  color: #fff;
}

/* MAIN ROW: LINKS & CONTACTS */
.modern-footer .footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.modern-footer .footer-col {
  flex: 1 1 200px;
  margin-bottom: 30px;
}

.modern-footer .footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.modern-footer .footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-100);
}

.modern-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-footer .footer-col ul li {
  margin-bottom: 12px;
}

.modern-footer .footer-col ul li a {
  color: #b0b0c0;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, transform 0.3s;
  position: relative;
}

/* Micro-animation for links */
.modern-footer .footer-col ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-100);
  transition: width 0.3s ease;
}

.modern-footer .footer-col ul li a:hover {
  color: var(--primary-100);
  transform: translateX(5px);
}

.modern-footer .footer-col ul li a:hover::after {
  width: 100%;
}

.modern-footer .footer-col ul li a svg {
  color: var(--primary-100);
}

/* SOCIAL ICONS */
.modern-footer .social-icons {
  display: flex;
  gap: 15px;
}

.modern-footer .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: all 0.3s ease;
}

.modern-footer .social-icons a:hover {
  background: var(--primary-100);
  color: #1a1a2e;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 206, 45, 0.2);
}

/* BOTTOM ROW: COPYRIGHT & BTT */
.modern-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.modern-footer .copyright {
  color: #808090;
  font-size: 14px;
}

.modern-footer .copyright .dev-team-link {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.modern-footer .copyright .dev-team-link:hover {
  color: var(--primary-100);
}

.modern-footer .modern-btt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-100);
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-footer .modern-btt:hover {
  transform: translateY(-5px);
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .modern-footer .footer-top, .modern-footer .footer-main {
    flex-direction: column;
  }
  .modern-footer .footer-col {
    margin-bottom: 30px;
  }
}

/* FLOATING SOCIALS */
.floating-socials {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(17, 17, 17, 0.8);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
}

.floating-socials a:hover {
  background-color: var(--primary-100);
  color: #111;
  transform: translateX(-5px);
  box-shadow: 0 6px 15px rgba(255, 206, 45, 0.4);
}

@media (max-width: 768px) {
  .floating-socials {
    right: 10px;
  }
  .floating-socials a {
    width: 38px;
    height: 38px;
  }
}
