:root {
  --rich-black-fogra-29_50: hsl(210, 26%, 11%, 0.5);
  --rich-black-fogra-29_55: hsl(210, 26%, 11%, 0.97);
  --rich-black-fogra-29-1: hsl(210, 26%, 11%);
  --rich-black-fogra-29-2: hsl(210, 50%, 4%);
  --silver-metallic: hsl(212, 9%, 67%);
  --coquelicot_20: hsla(12, 98%, 52%, 0.2);
  --coquelicot_10: hsla(12, 98%, 52%, 0.1);
  --sonic-silver: hsl(0, 0%, 47%);
  --cadet-gray: hsl(214, 15%, 62%);
  --light-gray: hsl(0, 0%, 80%);
  --coquelicot: hsl(12, 98%, 52%);
  --gainsboro: hsl(0, 0%, 88%);
  --white_20: hsl(0, 0%, 100%, 0.2);
  --white_10: hsl(0, 0%, 100%, 0.1);
  --black_10: hsl(0, 0%, 0%, 0.1);
  --white: hsl(0, 0%, 100%);

  --shadow-1: 0 0 20px var(--black_10);
  --shadow-2: 0px 10px 24px var(--coquelicot_20);

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 0.1s ease;

  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Poppins',sans-serif;
}
.has-before,.has-after {
  position: relative;
  z-index: 1;
}
.has-before::before,.has-after::after {
  content: "";
  position: absolute;
}
.banner {
  background-color: var(--rich-black-fogra-29-1);
  background-image: url(/fitlife/images/hero-bg.png);
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
}
.banner::after {
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: var(--coquelicot);
  z-index: -1;
}
#header,#great {
  width: 100%;
  padding: 0 4.38rem; 
}
#navbar {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0 1.2rem;
  /* align-items: center; */
}
.nav-logo {
  font-size: 2.5rem;
  font-weight: bold;
}
.nav-logo i {
  color: var(--coquelicot);
  transform: rotate(90deg) translate(-2%,-5%);
}
.nav-toggle, .nav-close {
  display: none;
}
.link-container {
  height: auto;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.nav-item {
  display: inline-block;
}
.nav-link {
  color: var(--white);
  font-size: 1rem;
  font-weight: 550;
  margin-right: 2.2rem;
}
.nav-link:is(:hover,:focus) {
  color: var(--coquelicot);
  transition: var(--transition-1);
}
.active {
  color: var(--coquelicot) !important;
}
.btn {
  padding: 1.1rem 1.4rem;
  border-radius: 0.6rem;
  font-weight: bold;
  cursor: pointer;
}
.hero-btn {
  margin-left: 2.18rem;
}
.btn-secondary {
  background-color: var(--white);
  color: var(--coquelicot);
}
.btn-primary {
  background-color: var(--coquelicot);
  color: var(--rich-black-fogra-29-1);
}
.btn-primary:hover {
  background-color: var(--white);
  color: var(--coquelicot);
  transition: var(--transition-1);
}
.btn-secondary:hover {
  color: var(--coquelicot);
  background-color: var(--rich-black-fogra-29-1);
  transition: var(--transition-1);
}
.row {
  display: flex;
  justify-content: space-around; 
  align-items: center;
  flex-wrap: wrap;
}
.col-1 {
  flex-basis: 50%;
}
#great .col-1-1 {
  max-width: 570px;
}
.col-1 .cover {
  background-color: var(--white_10);
  padding: 1.06rem 0.3rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  width: 15.8rem;
}
.col-1 .cover .red {
  background-color: var(--coquelicot);
  padding: 12px 0.5rem;
  border-radius: 0.5rem;
  margin-right: 0.63rem;
}
.col-1 h1 {
  font-size: 3.4rem;
  margin: 1.13rem 0;
}
.col-1 p {
  color: var(--silver-metallic);
  margin-bottom: 2.94rem;
}
.col-1 img {
  max-width: 100%;
}
.col-1 .hero-banner {
  display: block;
}
.col-1 .circle {
  width: 31.25rem;
  height: 31.25rem;
  position: absolute;
  top: 80%;
  left: 52%;
  z-index: -1;
  animation: rotate360 7s linear infinite;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.col-1 .circle-2 {
  animation-direction: reverse;
}
.col-1 .svg {
  position: absolute;
  animation: move 3s linear infinite alternate;
  z-index: 2;
}
.col-1 .svg-2 {
  top: 45%;
  right: 5%;
}
.col-1 .svg-1 {
  bottom: 8%;
  left: 40%;
}
@keyframes move {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-0.31rem, 0.63rem); }
  100% { transform: translate(0.31rem, 1.25rem); }
}
.col-1 .svg-1 { 
  animation-direction: alternate-reverse; 
}



/* About Section */


#about {
  position: relative;
  padding: 0 4.375rem;
}
#about .container {
  margin: 6.25rem 0;
}
#about .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.col-2 {
  flex-basis: 50%;
  /* min-width: 25rem; */
}
.col-2-right {
  display: inline-block;
}
.about-banner {
  margin-right: 3.13rem;
  z-index: -1;
}
.about-banner::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--coquelicot);
  border-radius: 0.63rem;
  z-index: -2;
}
.col-2 img {
  max-width: 100%;
}
.col-2 .about-img {
  display: block;
}
.col-2 .circle {
  width: 34.38rem;
  position: absolute;
  top: 76%;
  left: 6%;
  transform: translate(-5%,-90%);
  z-index: -1;
  animation: rotate360 7s linear infinite;
}
@keyframes rotate360 {
  0% {
    transform: translate(-5%,-90%) rotate(0);
  }
  100% {
    transform: translate(-5%,-90%) rotate(1turn);
  }
}
.col-2 .circle-2 {
  animation-direction: reverse;
}
.col-2 .title {
  color: var(--coquelicot);
  background-color: var(--coquelicot_20);
  width: 7.5rem;
  padding: 0.75rem 0.813rem;
  border-radius: 0.625rem;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
}
.col-2 h1 {
  font-size: 3.4rem;
  font-weight: bold;
  margin: 1.88rem 0 2.5rem 0;
  line-height: 4.063rem;
  color: var(--rich-black-fogra-29-2);
}
.col-2 p {
  color: var(--sonic-silver);
  margin-bottom: 1.563rem;
  font-size: 1rem;
}
.col-2 .about-last {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  width: 26.25rem;
}
.col-2 .about-last img {
  border-radius: 50%;
}
.about-last-text {
  margin-top: 1.875rem;
}
.about-last-text h4 {
  color: var(--rich-black-fogra-29-1);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.about-last-text P {
  color: var(--sonic-silver);
  font-size: 1rem;
}
.about-btn {
  font-size: 0.9rem;
}
.about-btn:hover {
  color: var(--white);
  background-color: var(--rich-black-fogra-29-1);
  transition: var(--transition-1);
}




/* Video Section */



#video {
  padding: 1.8rem 5.6rem 4.5rem;
  background: linear-gradient(to top, var(--rich-black-fogra-29-1) 0%, var(--rich-black-fogra-29-1) 50%, var(--white) 50%, var(--white) 100%);
}
.video {
  background-color: var(--light-gray);
  background-image: url(https://cdn.muscleandstrength.com/sites/default/files/best_back_exercises_-_1200x630.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 31.25rem;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  z-index:0;
}
.video::before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--rich-black-fogra-29_50);
  border-radius: 0.625rem;
  z-index: -1;
} 
.video-head-text {
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
}
.video-icon {
  background-color: var(--coquelicot);
  color: var(--white);
  font-size: 2rem;
  margin: 1.25rem 0 2.5rem;
  padding: 1.7rem 1.7rem 1.7rem 2rem;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--coquelicot); }
  100% { box-shadow: 0 0 0 2.5rem transparent; }
}
.video-link {
  --color: var(--white);

  color: var(--color);
  font-weight: bold;
  transition: var(--transition-1);
}
.video-link::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color);
  transition: var(--transition-1);
}
.video-link:is(:hover,:focus) {
  --color: var(--coquelicot);
  transition: var(--transition-1);
}



/* Class Section */



#class {
  background-image: url(/fitlife/images/classes-bg.png);
  background-size: cover;
  background-position: center;
  background-color: var(--rich-black-fogra-29-1);
  padding: 2.5rem 3rem 6.5rem;
  z-index: -1;
}
.class-title .title-2 {
  background-color: var(--coquelicot_10);
  color: var(--coquelicot);
  width: 10rem;
  padding: 0.75rem 0.813rem;
  margin: auto;
  border-radius: 0.625rem;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
}
.class-title h1 {
  color: var(--white);
  font-size: 2.7rem;
  font-weight: 800;
  text-align: center;
  margin: 2.5rem auto 3rem;
}
#class .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.col-3 {
  flex-basis: 30%;
}
.class-card {
  margin-right: 2rem;
  height: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}
.class-card .img-holder {
  display: block;
  background-color: var(--light-gray);
  overflow: hidden;
}
.class-card img {
  max-width: 100%;
  transition: var(--transition-2);
}
.class-card .card-img {
  display: block;
}
.class-card:is(:hover,:focus-within) .img-holder img {
  transform: scale(1.1);
}
.class-card .card-content {
  background-color: var(--white);
  color: var(--rich-black-fogra-29-1);
  padding: 1rem 1.5rem;
}
.card-content .card-text {
  display: flex;
  align-items: center;
  padding: 0.4rem 0 1rem;
}
.card-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-left: 2rem;
}
.card-text h4:hover {
  color: var(--coquelicot);
  transition: var(--transition-1);
  cursor: pointer;
}
.card-content p {
  color: var(--sonic-silver);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
}
.card-content .card-result {
  display: flex;
  justify-content: space-between;
}
.card-result h6 {
  color: var(--rich-black-fogra-29_55);
  font-size: 0.9rem;
  font-weight: 800;
}
.progress-bar {
  background-color: var(--coquelicot_10);
  width: 100%;
  height: 0.6rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.progress-bar .progress-1 {
  background-color: var(--coquelicot);
  width: 85%;
  height: 0.6rem;
  border-radius: 0.5rem;
}
.progress-bar .progress-2 {
  background-color: var(--coquelicot);
  width: 70%;
  height: 0.6rem;
  border-radius: 0.5rem;
}
.progress-bar .progress-3 {
  background-color: var(--coquelicot);
  width: 90%;
  height: 0.6rem;
  border-radius: 0.5rem;
}


/* Blog Section */


#blog {
  padding: 2rem 3rem;
  margin: 4.5rem 0;
}
.blog-title .title-2 {
  background-color: var(--coquelicot_10);
  color: var(--coquelicot);
  width: 10rem;
  padding: 0.75rem 0.813rem;
  margin: auto;
  border-radius: 0.625rem;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
}
.blog-title h1 {
  color: var(--rich-black-fogra-29-1);
  font-size: 2.7rem;
  font-weight: 800;
  text-align: center;
  margin: 2.2rem auto 2.8rem;
}
#blog .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.col-3 {
  flex-basis: 30%;
}
.blog-card {
  margin-right: 2rem;
  height: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.blog-card .img-holder {
  display: block;
  background-color: var(--light-gray);
  overflow: hidden;
  position: relative;
}
.blog-card .img-holder #date {
  background-color: var(--coquelicot);
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.8rem 0.5rem 0.8rem 1.2rem;
}
.blog-card img {
  max-width: 100%;
  transition: var(--transition-2);
}
.blog-card .blog-img {
  display: block;
}
.blog-card:is(:hover,:focus-within) .img-holder img {
  transform: scale(1.1);
  transition: var(--transition-1);
}
.blog-card .card-content {
  background-color: var(--white);
  color: var(--rich-black-fogra-29-1);
  padding: 1rem 1.2rem;
}
.blog-card .blog-card-text h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.blog-card .blog-card-text h4:hover {
  color: var(--coquelicot);
  transition: var(--transition-1);
  cursor: pointer;
}
.blog-link {
  --color: var(--coquelicot);

  color: var(--color);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-1);
  z-index: 0;
}
.blog-link::before {
  top: 1rem;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color);
  transition: var(--transition-1);
  z-index: 0;
}
.blog-link:is(:hover,:focus) {
  --color: var(--rich-black-fogra-29-1);
  transition: var(--transition-1);
}



/* Contact Section */


#contact {
  height: 100%;
  background-color: var(--rich-black-fogra-29-1);
  background-image: url(/fitlife/images/footer-bg.png);
  background-size: cover;
  background-position: center;
  padding: 5rem 5rem;
}
#contact .row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.col-4 {
  flex-basis: 25%;
}
.col-4-links {
  padding-left: 2.5rem;
}
.contact-col {
  padding-right: 2.5rem;
}
#contact .nav-logo {
  font-size: 2.1rem;
}
#contact .nav-logo span {
  color: var(--white);
}
.footer-text {
  color: var(--silver-metallic);
  font-size: 0.9rem;
}
.logo-text {
  margin: 1.4rem 0 1.8rem;
}
#contact .row .col-2-row {
  display: flex;
}
.col-2-1 img {
  margin-right: 1.6rem;
}
.col-2-2 h5 {
  color: var(--white);
  line-height: 1.4rem;
}
.col-2-2 p {
  margin-bottom: 1rem;
}
.footer-title,.footer-title-last {
  color: var(--white);
  font-size: 1.2rem;
  position: relative;
}
.footer-title::after {
  position: absolute;
  content: '';
  bottom: -20%;
  left: 0;
  width: 30%;
  height: 0.125rem;
  background-color: var(--coquelicot);
  transform: translate(0%,20%);
}
.footer-title-last::after {
  position: absolute;
  content: '';
  bottom: -20%;
  left: 0;
  width: 43%;
  height: 0.125rem;
  background-color: var(--coquelicot);
  transform: translate(0%,20%);
}
.footer-nav {
  margin-top: 2rem;
}
.footer-item {
  padding: 0.5rem 0;
}
.footer-link {
  color: var(--silver-metallic);
  font-size: 0.9rem;
}
.footer-link:hover {
  color: var(--coquelicot);
  transition: var(--transition-1);
}
.space {
  margin-top: 2.3rem;
}
.footer-icon {
  background-color: var(--coquelicot);
  color: var(--white);
  border-radius: 50%;
  width: 2.3rem;
  height: 2.5rem;
  padding: 0.6rem 0.6rem;
  margin-right: 1rem;
}
.footer-icon i {
  font-size: 1.2rem;
}
.footer-form {
  position: relative;
}
.footer-hover:is(:hover,:focus) {
  color: var(--coquelicot);
  transition: var(--transition-1);
}
.col-4 #e-mail {
  width: 100%;
  margin-top: 2.3rem;
  padding: 1rem 1.2rem;
  color: var(--cadet-gray);
  background-color: var(--white);
  border: none;
  border-radius: 0.6rem;
  box-shadow: var(--shadow-1);
}
#e-mail:is(:hover,:focus) {
  border: none;
  outline: none;
}
.form-btn {
  position: absolute;
  background-color: var(--coquelicot);
  color: var(--white);
  top: 47%;
  right: 1%;
  height: 2.7rem;
  width: 2.7rem;
  border: none;
  border-radius: 0.6rem;
  z-index: 1;
}
.form-btn i {
  font-size: 1.6rem;
}
.form-btn:is(:hover,:focus) {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--white);
  transition: var(--transition-1);
}
.social-icons {
  display: flex;
  margin-top: 3rem;
}
.social-icon {
  background-color: var(--white_20);
  color: var(--white);
  margin-right: 1rem;
  padding: 0.3rem 0.4rem 0.2rem;
  border-radius: 50%;
}
.social-icon i {
  font-size: 1.2rem;
}
.social-icon:is(:hover,:focus) {
  background-color: var(--coquelicot);
  color: var(--white);
  transition: var(--transition-1);
}



/* Footer Section */


#footer {
  background-color: var(--rich-black-fogra-29-2);
  color: var(--white);
  padding: 0rem 5rem;
  font-size: 0.9rem;
  font-weight: lighter;
}
.color {
  color: var(--coquelicot);
}
.new-row-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.new-row-1 .col-2{
  flex-basis: 50%;
}
.new-row-1 .col-2 h4 {
  letter-spacing: 0.08rem;
}
.new-row-1 .col-2 h4:hover {
  color: var(--coquelicot);
  transition: var(--transition-1);
  cursor: pointer;
}
.new-row-2 {
  display: flex;
  justify-content: flex-end;
}
.new-row-2 .col {
  margin-top: 1.5rem;
}
.new-row-2 .align {
  display: flex;
}
.new-row-2 .col .round {
  background-color: var(--coquelicot) !important;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-right: 0.8rem;
  margin-top: 0.3rem;
}
.new-row-2 .col p {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 2rem;
}
.align p:hover {
  color: var(--coquelicot);
  transition: var(--transition-1);
  cursor: pointer;
}


/* Back to top button */

.back-top-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 2.5rem;
  width: 1.375rem;
  height: 1.375rem;
  background-color: var(--coquelicot);
  color: var(--rich-black-fogra-29-1);
  font-size: 1.25rem;
  padding: 0.75rem;
  border-radius: 50%;
  border: 0.125rem solid var(--rich-black-fogra-29-1);
  visibility: hidden;
  opacity: 0;
  animation: bounce 2s ease-in-out infinite;
  transition: var(--transition-1);
}
.arrow-icon {
  color: var(--white);
  transform: translate(-50%,-94%);
  font-size: 1rem;
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.visible {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}


/* Fixed navbar */


.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-inline: 4.375rem !important;
  box-shadow: var(--shadow-1);
  z-index: 5;
  transition: var(--transition-3);
}
.fixed .nav-logo span {
  color: var(--rich-black-fogra-29-1);
}
.fixed .nav-link {
  color: var(--rich-black-fogra-29-1);
}
.fixed .nav-link:hover {
  color: var(--coquelicot);
  transition: var(--transition-1);
}
.fixed .hero-btn {
  background-color: var(--coquelicot);
  color: var(--white);
}
.fixed .hero-btn:hover {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--white);
  transition: var(--transition-1);
}


/* Media Queries */

@media screen and (max-width: 1024px){
  #great .col-1 h1 {
    font-size: 2.65rem;
  }
  .col-1 .circle {
    width: 25rem;
    height: 25rem;
    top: 80%;
    right: 15%;
  }
  .col-1 .svg {
    width: 16rem;
    height: 12rem;
  }
  .col-1 .svg-2 {
    top: 45%;
    right: 1%;
  }
  .col-1 .svg-1 {
    bottom: 4%;
    left: 50%;
  }
  #about .col-2-right h1 {
    font-size: 2.2rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
  }
  #class {
    padding: 2.5rem 1rem 5rem;
  }
  #blog {
    padding: 2rem 1rem 3rem;
  }
  .class-title h1, .blog-title h1 {
    font-size: 1.8rem;
  }
  .card-text h4 {
    margin-left: 0.4rem;
    margin-right: 0;
  }
  #contact {
    padding: 5rem 2rem;
  }
  .footer-title::after {
    width: 48%;
  }
  .footer-title-last::after {
    width: 59%;
  }
  .form-btn {
    top: 46%;
    right: 1%;
  }
  .back-top-btn {
    bottom: 3%;
    right: 3%;
  }
}
@media screen and (max-width: 768px) {
  .fixed {
    padding-inline: 3rem !important;
  }
  #header,#great {
    padding: 0 3rem; 
  }
  .nav-logo {
    font-size: 2rem;
  }
  .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav-link {
    font-size: 0.8rem;
    margin-right: 1.2rem;
  }
  .btn {
    padding: 0.9rem 1rem;
    font-size: 0.8rem;
  }
  .hero-btn {
    margin-left: 1rem;
  }
  .col-1 .circle {
    width: 20rem;
    height: 20rem;
    top: 80%;
    right: 15%;
  }
  .col-1 .svg {
    width: 14rem;
  }
  .col-1 .svg-2 {
    top: 40%;
    right: 2%;
    width: 12rem;
    height: 10rem;
  }
  .col-1 .svg-1 {
    bottom: 2%;
    left: 48%;
  }
  #great .col-1 .cover {
    font-size: 0.8rem;
    width: 12.5rem;
  }
  #great .col-1 h1 {
    font-size: 2.1rem;
  }
  #great .col-1 p {
    font-size: 0.85rem;
  }
  #about {
    padding: 0 3rem;
  }
  #about .container {
    margin: 4rem 0;
  }
  #about .col-2-right h1 {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 1.3rem;
  }
  .col-2-right p {
    font-size: 0.8rem;
    margin-block-end: 1rem;
  }
  .col-2 {
    flex-basis: 50%;
  }
  .about-banner {
    margin-right: 2rem;
  }
  .col-2 .about-last {
    width: 100%;
  }
  .about-last-text {
    margin-top: 1.875rem;
    margin-inline: 0.15rem;
  }
  .about-last-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .about-last-text P {
    font-size: 0.8rem;
  }
  .about-btn {
    font-size: 0.8rem;
    padding: 0.9rem 0.7rem;
  }
  .video-head-text {
    font-size: 1.8rem;
  }
  #class {
    padding: 2.5rem 2.5rem 5rem;
  }
  #class .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .class-title .title-2 {
    width: 9rem;
    font-size: 1rem;
  }
  .class-title h1, .blog-title h1 {
    font-size: 1.5rem;
    margin-block: 2rem 2.5rem;
  }
  .card-text h4 {
    font-size: 0.9rem;
    margin-left: 0.6rem;
  }
  .class-card {
    margin-right: 0;
  }
  .class-card .card-content, .blog-card .card-content {
    padding: 0.8rem 1rem;
  }
  .class-card .class-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .card-content p {
    font-size: 0.8rem;
  }
  .card-result h6 {
    font-size: 0.8rem;
  }
  .blog-title .title-2 {
    width: 8rem;
    font-size: 1rem;
  }
  #blog {
    padding: 1rem 2.5rem;
    margin: 2.5rem 0;
  }
  #blog .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .blog-card {
    margin-right: 0rem;
  }
  .blog-card .img-holder h4, .blog-link {
    font-size: 0.7rem;
  }
  .blog-card .card-content p {
    font-size: 0.75rem;
  }
  .blog-card .blog-card-text h4 {
    font-size: 0.8rem;
  }
  #contact {
    padding: 4rem 4rem;
  }
  #contact .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  #contact .col-4 {
    flex-basis: 50%;
  }
  .col-4-links {
    padding-left: 1rem;
  }
  .contact-col {
    padding-right: 1rem;
  }
  #contact .nav-logo {
    font-size: 1.9rem;
  }
  .col-2-1 img {
    margin-right: 1rem;
  }
  .footer-title,.footer-title-last {
    font-size: 0.85rem;
  }
  .footer-link {
    font-size: 0.75rem;
  }
  .footer-text {
    font-size: 0.75rem;
  }
  .form-btn {
    top: 46%;
    right: 1%;
  }
  .footer-title-last {
    width: 53%;
  }
  .footer-title {
    width: 48%;
  }
  #footer {
    padding: 0rem 1.5rem;
    font-size: 0.8rem;
  }
  .back-top-btn {
    right: 2%;
  }
}
@media screen and (max-width: 476px) {
  .banner::after {
    top: 70%;
    right: 0%;
    width: 100%;
    height: 30%;
    background-color: var(--coquelicot);
    z-index: -1;
  }
  #header,#great {
    width: 100%;
    padding: 0 2rem; 
  }
  #header {
    background-color: var(--white);
  }
  #navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.5rem;
  }
  .nav-logo {
    font-size: 2rem;
    font-weight: bold;
  }
  .nav-logo i {
    color: var(--coquelicot);
    transform: rotate(90deg) translate(-2%,-5%);
  }
  .nav-logo span {
    color: var(--rich-black-fogra-29-1);
  }
  .nav-toggle {
    display: block;
    width: 3rem;
    height: 3rem;
    background-color: var(--coquelicot);
    border: none;
  }
  .nav-toggle i {
    color: var(--white);
    font-size: 2.2rem;
  }
  .link-container {
    height: 0;
  }
  .navbar-brand {
    background-color: var(--coquelicot);
    color: var(--white);
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    visibility: hidden;
    transition: 0.25s var(--cubic-in);
    z-index: 10;
  }
  .nav-link {
    color: var(--white) !important;
    z-index: 10;
  }
  .active {
    color: var(--rich-black-fogra-29-1) !important;
  }
  .nav-link:hover {
    color: var(--rich-black-fogra-29-1);
  }
  .hide-btn {
    display: none;
  }
  .nav-close {
    position: absolute;
    top: 3%;
    right: 8%;
    background-color: var(--rich-black-fogra-29-1);
    color: var(--white);
    font-size: 1.8rem;
    padding: 0rem 0.5rem;
    border: none;
    border-radius: 0.5rem;
    z-index: 2;
  }
  
.show-links {
  visibility: visible;
  transform: translateY(-100%);
  transition: 0.5s var(--cubic-out);
}
.show-toggle {
  display: block;
  transform: translateY(0%) !important;
  transition: 500s var(--cubic-in);
}
  .nav-item {
    padding: 1.2rem 1.5rem;
  }
  #great .col-1 {
    margin: 5rem 0 7.5rem;
  }
  .row {
    display: block;
  }
  #great .col-1-1 {
    max-width: 570px;
    text-align: center;
  }
  #great .col-1 .cover {
    margin-inline: auto;
    width: 11.4rem;
  }
  .col-1 h1 {
    font-size: 2.6rem;
    margin: 1.13rem 0;
  }
  .col-1 p {
    color: var(--silver-metallic);
    margin-bottom: 2.94rem;
    font-size: 0.9rem;
  }
  .col-1 img {
    max-width: 100%;
  }
  .col-1 .circle {
    width: 19rem;
    height: 19rem;
    position: absolute;
    top: 47%;
    left: 13%;
    z-index: -1;
    animation: rotate360 7s linear infinite;
  }
  @keyframes rotate360 {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(1turn);
    }
  }
  .col-1 .circle-2 {
    animation-direction: reverse;
  }
  .col-1 .svg {
    width: 14rem;
  }
  .col-1 .svg-2 {
    top: 66%;
    right: 3%;
    height: 10rem;
  }
  .col-1 .svg-1 {
    bottom: 2%;
    left: -2%;
  }
  @keyframes move {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-0.31rem, 0.63rem); }
    100% { transform: translate(0.31rem, 1.25rem); }
  }
  .col-1 .svg-1 { 
    animation-direction: alternate-reverse; 
  }
  #about {
    padding: 0 2rem;
  }
  #about .container {
    margin: 4rem 0;
  }
  #about .row {
    display: block;
  }
  .about-banner {
    margin-bottom: 4rem;
    margin-right: 0;
  }
  .col-2 img {
    max-width: 100%;
  }
  .col-2 .circle {
    width: 34.38rem;
    position: absolute;
    top: 1%;
    left: -5%;
    z-index: -1;
    animation: rotate360 7s linear infinite;
  }
  @keyframes rotate360 {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(1turn);
    }
  }
  .col-2 .circle-2 {
    animation-direction: reverse;
  }
  .col-2-right {
    display: block;
  }
  .col-2 h1 {
    font-size: 2.6rem;
  }
  .col-2 p {
    color: var(--sonic-silver);
    margin-bottom: 1.563rem;
    font-size: 0.9rem;
  }
  .col-2 .about-last {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .about-last-text h4 {
    font-size: 0.9rem;
    font-weight: bold;
  }
  .about-last-text P {
    font-size: 0.7rem;
  }
  .about-btn {
    font-size: 0.7rem;
  }
  #video {
    padding: 1rem 1rem 3.5rem;
  }
  .video {
    width: 100%;
  }
  .video-head-text {
    font-size: 1.7rem;
    font-weight: bold;
  }
  #class {
    padding: 2.5rem 2rem 6.5rem;
  }
  .class-title .title-2 {
    font-weight: bold;
    font-size: 1rem;
  }
  .class-title h1 {
    font-size: 2rem;
  }
  #class .row {
    display: block;
  }
  .col-3 {
    flex-basis: 100%;
  }
  .class-card {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  #blog {
    padding: 2rem;
    margin: 4.5rem 0;
  }
  .blog-title .title-2 {
    font-weight: bold;
    font-size: 1rem;
  }
  .blog-title h1 {
    font-size: 2rem;
  }
  #blog .row {
    display: block;
  }
  .col-3 {
    flex-basis: 100%;
  }
  .blog-card {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  #contact {
    padding: 5rem 2rem;
  }
  #contact .row {
    display: block;
    text-align: left;
  }
  .col-4 {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }
  .col-4-links {
    padding-left: 0;
  }
  .contact-col {
    padding-right: 0;
  }
  .form-btn {
    top: 46%;
    right: 0.5%;
    z-index: 0;
  }
  .footer-title-last {
    width: 45%;
  }
  .footer-title {
    width: 40%;
  }
  #footer {
    padding: 0rem 2rem;
  }
  .new-row-1 {
    display: block;
  }
  .new-row-1 .col-2{
    flex-basis: 100%;
  }
  .new-row-1 .col-2 h4 {
    padding-top: 1rem;
    letter-spacing: 0;
    text-align: center;
  }
  .new-row-2 {
    display: flex;
    justify-content: center;
  }
  .back-top-btn {
    bottom: 3%;
    right: 3%;
  }
  .arrow-icon {
    color: var(--white);
    transform: translate(-50%,-100%);
    font-size: 1rem;
  }
  .social-icon {
    margin: 0 auto;
  }
  .fixed {
    padding: 0.5rem 2rem !important;
    transition: var(--transition-3);
  }
}
@media screen and (max-width: 375px){
  .col-1 h1 {
    font-size: 2.2rem;
  }
  .col-1 p {
    font-size: 0.9rem;
  }
  #great .col-1 .cover {
    font-size: 1rem;
    padding: 0.4rem 0.2rem 0.4rem 0;
    width: 14rem;
  }
  #great .col-1 .red {
    display: inline-block;
    margin-left: 0;
  }
  .btn {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }
  .col-1 .circle {
    width: 19rem;
    height: 19rem;
    position: absolute;
    top: 54%;
    left: 2%;
    z-index: -1;
    animation: rotate360 7s linear infinite;
  }
  .col-1 .svg {
    width: 12rem;
  }
  .col-1 .svg-2 {
    top: 68%;
    left: 45%;
    height: 10rem;
  }
  .col-1 .svg-1 {
    bottom: 2%;
    left: -2%;
  }
  .col-2 .circle {
    top: 1%;
    left: -5%;
  }
  .col-2 h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .col-2 p {
    font-size: 0.8rem;
  }
  .about-last-text h4 {
    font-size: 0.8rem;
  }
  .about-last-text P {
    font-size: 0.7rem;
  }
  .about-btn {
    font-size: 0.7rem;
  }
  .class-title h1 {
    font-size: 1.6rem;
  }
  .blog-title h1 {
    font-size: 1.6rem;
  }
  .footer-title,.footer-title-last {
    font-size: 1rem;
  }
  .footer-link {
    font-size: 0.85rem;
  }
  .footer-text {
    font-size: 0.85rem;
  }
  #footer {
    font-size: 0.85rem;
    font-weight: lighter;
    text-align: center;
    line-height: 1.2rem;
  }
  .new-row-1 .col-2 h4 {
    letter-spacing: 0.08rem;
  }
  .new-row-2 .col {
    margin-top: 1.5rem;
  }
  .new-row-2 .col p {
    font-size: 0.8rem;
    margin-right: 0.9rem;
  }
  .footer-title::after {
    width: 60%;
  }
  .footer-title-last::after {
    width: 80%;
  }
  .form-btn {
    top: 47%;
  }
}
@media screen and (max-width: 320px){
  .col-1 .circle {
    width: 16rem;
    height: 16rem;
    top: 56%;
    left: 3%;
  }
  .col-1 .svg {
    width: 12rem;
  }
  .col-1 .svg-2 {
    top: 68%;
    left: 38%;
    height: 10rem;
  }
  .col-1 .svg-1 {
    bottom: -7%;
    left: -2%;
  }
  .col-2 .circle {
    top: 1%;
    left: -5%;
  }
  #great .col-1 .cover {
    font-size: 0.9rem;
    width: 12.5rem;
  }
  #great .col-1 h1 {
    font-size: 1.8rem;
  }
  #great .col-1 p {
    font-size: 0.85rem;
  }
  .col-2 h1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .col-2 .about-last {
    width: 100%;
  }
  .col-2 .about-last img {
    width: 3rem;
    height: 3rem;
  }
  .about-last-text {
    margin-left: 1rem;
  }
  .about-last-text h4 {
    font-size: 0.75rem;
  }
  .about-last-text P {
    font-size: 0.75rem;
  }
  .about-btn {
    font-size: 0.7rem;
    padding: 0.5rem 0.9rem;
  }
  .video-head-text {
    font-size: 1.6rem;
  }
  .class-title .title-2, .blog-title .title-2 {
    width: 9rem;
    font-size: 0.9rem;
  }
  .class-title h1, .blog-title h1 {
  font-size: 1.5rem;
  }
  .card-text h4 {
    font-size: 0.9rem;
    margin-left: 0.7rem;
  }
  .card-content p {
    font-size: 0.8rem;
  }
  .card-result h6 {
    font-size: 0.8rem;
  }
  .blog-card .img-holder h4, .blog-link {
    font-size: 0.7rem;
  }
  .blog-card .card-content p {
    font-size: 0.7rem;
  }
  .blog-card .blog-card-text h4 {
    font-size: 0.9rem;
  }
  .new-row-2 .col .round {
    margin-right: 0.15rem;
  }
  .new-row-2 .col p {
    font-size: 0.8rem;
    margin-right: 0.9rem;
  }
  .form-btn {
    top: 46%;
  }
  .back-top-btn {
    right: 4%;
  }
}