@import url("https://fonts.googleapis.com/css2?family=Archivo: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");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Archivo", sans-serif;
  color: #494949;
  scroll-behavior: smooth;
}
body h1 {
  line-height: 50px;
  font-size: 40px;
  font-weight: 500;
  color: #313131;
}
body h2 {
  font-size: 30px;
  font-weight: 400;
  color: #313131;
}
@media (max-width: 768px) {
  body h2 {
    font-size: 30px;
  }
}
body p {
  font-size: 18px;
  line-height: 30px;
  color: #313131;
}
@media (max-width: 768px) {
  body p {
    line-height: 25px;
  }
}
body input {
  border: none;
  height: 50px;
  width: 100%;
  padding-left: 10px;
  font-size: 18px;
}
body .contact-cta {
  background: rgb(196, 48, 48);
  background: linear-gradient(144deg, rgb(196, 48, 48) 0%, rgb(216, 89, 89) 100%);
  color: white;
  position: fixed;
  bottom: -100px;
  /* right: 20px; */
  width: 100%;
  z-index: 100;
  padding: 15px 20px;
  border: none;
  /* border-radius: 20px; */
  font-size: 16px;
  box-shadow: 1px 0px 190px 10px rgba(0, 0, 0, 0.4117647059);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
body .contact-cta-active {
  transition: 0.3s;
  bottom: 0px;
}
@media (max-width: 768px) {
  body .contact-cta {
    display: block;
  }
}
body .pop-contact {
  display: block;
  position: fixed;
  bottom: -100%;
  opacity: 0;
  left: 0;
  background: white;
  width: 100%;
  padding: 30px 20px;
  color: #FBECCF;
  z-index: 1000;
}
body .pop-contact .close {
  position: absolute;
  right: 10px;
  top: 20px;
  font-size: 25px;
  color: black;
}
body .pop-contact p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 30px;
  font-weight: 400;
}
body .pop-contact .fixed-mobile-button {
  display: flex;
  background: rgb(58, 58, 58);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  overflow: hidden;
}
body .pop-contact .fixed-mobile-button a {
  padding: 15px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #FBECCF;
  font-weight: 600;
  width: 50%;
}
body .pop-contact .fixed-mobile-button a:nth-child(2) {
  background: #045E54;
  color: #FBECCF;
}
body .pop-contact-activate {
  bottom: 0;
  opacity: 1;
  transition: 0.5s ease-out;
}
body .shimmer {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.514);
  z-index: 100;
  display: none;
}
body .container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  body .container {
    padding: 0px 20px;
  }
}
body .sidemenu {
  height: 100%;
  width: 60%;
  position: fixed;
  right: -100%;
  bottom: 0;
  background: white;
  padding: 10px;
  z-index: 120;
  transition: 0.3s;
}
body .sidemenu .close {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
body .sidemenu .close ion-icon {
  width: 25px;
  height: 25px;
}
body .sidemenu ul li {
  list-style: none;
}
body .sidemenu ul li a {
  text-decoration: none;
  font-size: 18px;
  padding: 20px 10px;
  display: block;
  color: #494949;
  border-bottom: 1px solid rgba(0, 0, 0, 0.178);
}
body .sidemenu ul li .side-link-active {
  font-weight: 600;
  color: white;
  background: rgb(196, 48, 48);
}
body .sidemenu .social-icon {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 20px;
}
body .sidemenu .social-icon .box {
  margin-right: 20px;
}
body .sidemenu .social-icon .box ion-icon {
  width: 25px;
  height: 25px;
}
body .sidemenu-active {
  right: 0;
  transition: 0.3s;
}
body header {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 20;
  top: 0;
  left: 0;
}
body header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
body header .container .logo {
  margin-left: -10px;
}
body header .container .logo img {
  width: 150px;
}
@media (max-width: 1100px) {
  body header .container nav {
    display: none;
  }
}
body header .container nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
body header .container nav ul li a {
  text-decoration: none;
  padding: 0 10px;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}
body header .container nav ul li .active-black {
  font-weight: 600;
}
body header .container .hanmburger {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 768px) {
  body header .container .hanmburger {
    display: flex;
  }
}
body header .container .hanmburger span {
  display: block;
  height: 3px;
  background: black;
  margin-bottom: 4px;
  width: 100%;
}
body header .container .hanmburger span:last-child {
  margin-bottom: 0px;
}
body .header-active {
  background: white;
  box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.2901960784);
}
body .header-active nav ul li a {
  color: black !important;
}
body #hero {
  width: 100%;
  background-size: cover;
  background: rgb(196, 48, 48);
  background-image: url("../image/pattern.png");
  background-size: cover;
  overflow: hidden;
  overflow: hidden;
  margin-top: 80px;
}
@media (max-width: 768px) {
  body #hero {
    padding: 20px 0px;
  }
}
body #hero .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #hero .container .herotitle {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 1100px) {
  body #hero .container .herotitle {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  body #hero .container .herotitle {
    align-items: flex-start;
    text-align: left;
  }
}
body #hero .container .herotitle h1 {
  color: rgb(255, 255, 255);
  font-size: 45px;
  line-height: 55px;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
}
@media (max-width: 768px) {
  body #hero .container .herotitle h1 {
    font-size: 30px;
    line-height: 40px;
    text-align: left;
  }
}
body #hero .container .herotitle h1 span {
  background: white;
  color: black;
  padding: 0px 10px;
}
body #hero .container .herotitle h3 {
  color: rgb(255, 255, 255);
  margin-top: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
body #hero .container .herotitle .accredits ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
body #hero .container .herotitle .accredits ul li img {
  width: 50px;
  margin: 10px;
}
body #hero .container .herotitle button {
  padding: 10px 20px;
  border: none;
  margin: 12px 0;
  border-radius: 2px;
  cursor: pointer;
  padding: 12px 15px;
  background: none;
  border: 2px solid white;
  transition: 0.3s;
}
body #hero .container .herotitle button a {
  text-decoration: none;
  color: rgb(121, 98, 222);
  font-size: 18px;
  display: flex;
  align-items: center;
}
body #hero .container .herotitle button:hover {
  background: white;
}
body #hero .container .herotitle button:hover a {
  color: #494949;
  transition: 0.3s;
}
body #hero .container .herotitle button a {
  color: white;
}
body #hero .container .main-icon {
  width: 55%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1000px) {
  body #hero .container .main-icon {
    display: none;
  }
}
body #hero .container .main-icon img {
  width: 100%;
  margin-bottom: -10px;
}
body #about {
  width: 100%;
  padding: 100px 0px;
  text-align: center;
}
body #about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body #about .container .about-img {
  width: 100%;
  margin-left: 0;
}
body #about .container .about-img img {
  width: 100%;
}
body #about .container .about {
  width: 100%;
  margin-top: 0;
}
@media (max-width: 768px) {
  body #about .container .about {
    text-align: left;
  }
}
body #about .container .about h3 {
  color: black;
  font-weight: 900;
  display: inline-block;
  padding: 10px;
  font-size: 25px;
}
body #about .container .about h3 span {
  color: rgb(196, 48, 48);
}
body #about .container .about h2 {
  margin-bottom: 20px;
}
body #about .container .about p {
  font-size: 22px;
  line-height: 40px;
  font-weight: 300;
}
@media (max-width: 768px) {
  body #about .container .about p {
    line-height: 30px;
    font-size: 20px;
  }
}
body #about .container .about a {
  text-decoration: none;
  border: 1px solid rgb(196, 48, 48);
  padding: 10px 20px;
  display: inline-block;
  border-radius: 2px;
  margin-top: 20px;
  color: #494949;
}
body #about .container .about a:hover {
  background: rgb(196, 48, 48);
  color: white;
  border-color: rgb(196, 48, 48);
}
body .about-page-hero {
  padding: 100px 0px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  body .about-page-hero {
    padding-bottom: 0px !important;
  }
}
body .about-page-hero .title {
  font-size: 40px;
  font-weight: 600;
  font-family: "Dancing Script", cursive;
}
body .about-page-hero h3 {
  font-size: 25px;
  padding: 30px 0px;
}
body .about-page-hero h3 span {
  color: rgb(196, 48, 48);
}
body .about-page-hero h4 {
  font-size: 20px;
  font-weight: 500;
}
body .about-page-hero .box-image {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
body .about-page-hero .box-image .box {
  width: 80px;
  height: 80px;
  margin: 0px 30px;
}
body .about-page-hero .box-image .box:nth-child(2) {
  width: 150px;
}
body .about-page-hero .box-image .box img {
  width: 100%;
}
body #courses {
  width: 100%;
  background: rgb(245, 245, 245);
  padding: 100px 0px;
  color: #494949;
}
body #courses .course-title {
  display: flex;
  align-items: center;
}
body #courses .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
body #courses .container h2 {
  font-size: 30px;
  font-weight: 400;
  color: #313131;
  display: block;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  body #courses .container h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  body #courses .container h2 {
    text-align: left;
    margin-bottom: 20px;
  }
}
body #courses .container p {
  width: 100%;
  text-align: center;
  opacity: 0.6;
  margin-bottom: 60px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  body #courses .container p {
    text-align: left;
  }
}
body #courses .container .courses {
  width: calc(33.3333333333% - 10px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #494949;
  text-align: center;
  background: white;
  position: relative;
}
@media (max-width: 1100px) {
  body #courses .container .courses {
    width: calc(50% - 30px);
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  body #courses .container .courses {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body #courses .container .courses {
    text-align: left;
  }
}
body #courses .container .courses:hover .course-img img {
  transform: scale(1.1);
  transition: 0.3s;
}
body #courses .container .courses:hover .content button {
  background: rgb(196, 48, 48) !important;
  color: white !important;
  transition: 0.3s;
}
body #courses .container .courses .text-block {
  position: absolute;
  top: 20px;
  right: 10px;
  background-color: rgb(196, 48, 48);
  padding: 5px 12px;
  border-radius: 5px;
  z-index: 10;
}
body #courses .container .courses .text-block p {
  color: white;
  margin: 0px !important;
  opacity: 1;
}
body #courses .container .courses .text-block span {
  font-weight: 800;
}
body #courses .container .courses .course-img {
  height: 250px;
  overflow: hidden;
}
body #courses .container .courses .course-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.3s;
}
body #courses .container .courses .content {
  padding: 15px;
}
body #courses .container .courses .content .title {
  margin-bottom: 15px;
}
body #courses .container .courses .content .title h3 {
  font-size: 20px;
  color: #494949;
}
body #courses .container .courses .content .des {
  text-align: left;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
body #courses .container .courses .content .des p {
  color: #313131;
  margin-bottom: 15px;
}
body #courses .container .courses .content .des button {
  margin-bottom: 10;
  width: 100%;
  padding: 10px 20px;
  border: none;
  background-color: rgba(151, 168, 223, 0.2);
  border: 2px solid black;
  background: none;
  font-size: 18px;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #313131;
  text-align: center;
  transition: 0.3s;
}
body #why-choose-us {
  width: 100%;
  padding: 100px 0px;
  padding-bottom: 0px;
}
body #why-choose-us .container h2 {
  margin-bottom: 60px;
  text-align: center;
}
body #why-choose-us .container .why-choose ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0;
  justify-content: space-between;
  padding-top: 60px;
}
body #why-choose-us .container .why-choose ul li {
  list-style: none;
  display: inline-block;
  width: calc(50% - 20px);
  border: 1px solid rgba(0, 0, 0, 0.192);
  margin-bottom: 30px;
  padding: 20px;
  overflow: hidden;
  position: relative;
}
body #why-choose-us .container .why-choose ul li::after {
  content: "";
  left: -150px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.027);
  position: absolute;
  border-radius: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  body #why-choose-us .container .why-choose ul li {
    width: 100%;
  }
}
body #why-choose-us .container .why-choose ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
body #why-choose-us .container .why-choose ul li .icon img {
  width: 80px;
  background: white;
  border-radius: 100%;
  padding: 10px;
}
body #why-choose-us .container .why-choose ul li .content {
  text-align: center;
  padding-bottom: 20px;
}
body #why-choose-us .container .why-choose ul li .content h3 {
  margin: 20px 0px;
  color: #494949;
}
body #why-choose-us .container .why-choose ul li .content p {
  color: #313131;
  opacity: 0.6;
}
body #why-choose-us .container .why-page-holder ul {
  padding-top: 0px;
}
body #why-choose-us .container .why-page-holder ul li {
  text-align: left !important;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
body #why-choose-us .container .why-page-holder ul li::after {
  content: "";
  left: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.055);
  position: absolute;
  border-radius: 100%;
  z-index: 1;
}
body #why-choose-us .container .why-page-holder ul li::before {
  content: "";
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.055);
  position: absolute;
  border-radius: 100%;
  z-index: 1;
}
body #why-choose-us .container .why-page-holder ul li .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
body #why-choose-us .container .why-page-holder ul li .icon ion-icon {
  width: 40px;
  height: 40px;
  color: rgb(196, 48, 48);
}
body #why-choose-us .container .why-page-holder ul li .content {
  width: calc(100% - 60px);
  display: flex;
  align-items: flex-start;
  text-align: left !important;
}
body #why-choose-us .container .why-page-holder ul li .content p {
  color: black;
  font-weight: 600;
  font-size: 18px;
  opacity: 1;
}
body #certificate {
  padding: 100px 0px;
}
body #certificate .container h2 {
  text-align: center;
}
body #certificate .container ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  padding-top: 60px;
}
body #certificate .container ul li {
  list-style: none;
  display: inline-block;
  width: calc(33.3333333333% - 20px);
  margin-bottom: 30px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  background: rgb(247, 238, 255);
}
@media (max-width: 1000px) {
  body #certificate .container ul li {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  body #certificate .container ul li {
    width: 100%;
  }
}
body #certificate .container ul li img {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
body #certificate .container .owl-carousel .accridations {
  display: flex;
  align-items: center;
  justify-content: center;
}
body #certificate .container .owl-carousel .accridations img {
  width: 150px;
}
body .about-certificate {
  text-align: center;
}
body .about-certificate h3 {
  margin-bottom: 20px;
  padding: 10px 0px;
}
body #contact-form {
  width: 100%;
  margin-top: 60px;
  background-color: rgba(0, 139, 139, 0.168627451);
  background-image: url("../image/contact_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
  color: whitesmoke;
}
body #contact-form::after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.514);
  position: absolute;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
}
body #contact-form .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  body #contact-form .container {
    flex-direction: column;
  }
}
body #contact-form .container .contact-title {
  width: 45%;
  margin-left: 0;
}
@media (max-width: 900px) {
  body #contact-form .container .contact-title {
    width: 100%;
    margin-bottom: 60px;
  }
}
body #contact-form .container .contact-title h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 10px;
  color: white;
}
@media (max-width: 768px) {
  body #contact-form .container .contact-title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
body #contact-form .container .contact-title p {
  color: white;
}
body #contact-form .container .contact-form {
  width: 45%;
  margin-top: 0;
}
@media (max-width: 900px) {
  body #contact-form .container .contact-form {
    width: 100%;
  }
}
body #contact-form .container .contact-form form {
  width: 100%;
  border-radius: 25px;
}
body #contact-form .container .contact-form form .form-group {
  margin-bottom: 30px;
}
body #contact-form .container .contact-form form .form-group:last-child {
  margin-bottom: 0px;
}
body #contact-form .container .contact-form form .form-group label {
  display: block;
  text-transform: uppercase;
}
body #contact-form .container .contact-form form .form-group input {
  margin-top: 10px;
  font-size: 18px;
}
body #contact-form .container .contact-form form button {
  background-color: rgba(255, 26, 64, 0.9803921569);
  color: whitesmoke;
  margin-top: 10px;
  padding: 15px;
  border: none;
  font-size: 18px;
}
body #testimonials {
  padding: 100px 0px;
}
body #testimonials .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
body #testimonials .container h2 {
  font-size: 30px;
  font-weight: 400;
  color: #313131;
  display: block;
  width: 100%;
  margin: 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  body #testimonials .container h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  body #testimonials .container h2 {
    text-align: left;
  }
}
body #testimonials .container .students {
  width: 100%;
  display: inline-block;
  border-radius: 25px;
  position: relative;
}
body #testimonials .container .students .student-icon {
  width: 80px;
  height: 80px;
}
body #testimonials .container .students .student-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
body #testimonials .container .students .content .name {
  margin: 10px 0px;
  font-weight: bold;
  font-size: 18px;
}
body #testimonials .container .students .content .review {
  font-size: 15px;
  line-height: 20px;
}
body #testimonials .container .students .content img {
  width: 100px;
  padding-top: 10px;
}
body #contact-page {
  padding: 60px 0px;
  margin-top: 60px;
  background: white;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #contact-page::after {
  content: "";
  left: -20vh;
  top: -30vh;
  background: #eee;
  width: 150%;
  height: 80vh;
  position: absolute;
  transform: rotate(-10deg);
}
body #contact-page .container {
  display: flex;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  z-index: 2;
}
@media (max-width: 768px) {
  body #contact-page .container {
    flex-direction: column;
  }
}
body #contact-page .container h2 {
  width: 100%;
  margin-bottom: 30px;
}
body #contact-page .container .details {
  width: 50%;
}
@media (max-width: 768px) {
  body #contact-page .container .details {
    width: 100%;
  }
}
body #contact-page .container .details ul li {
  list-style: none;
  margin-top: 30px;
}
body #contact-page .container .details ul li h4 {
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
}
body #contact-page .container .details ul li a {
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 20px;
  color: #494949;
}
body #contact-page .container .details ul li div {
  display: flex;
}
body #contact-page .container .details ul li div a {
  margin-right: 20px;
}
body #contact-page .container .form {
  width: 50%;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  body #contact-page .container .form {
    width: 100%;
    padding: 0px;
  }
}
body #contact-page .container .form h3 {
  color: black;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
}
body #contact-page .container .form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body #contact-page .container .form form .form-group {
  width: calc(50% - 30px);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  body #contact-page .container .form form .form-group {
    width: 100%;
  }
}
body #contact-page .container .form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: black;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 13px;
}
body #contact-page .container .form form .form-group input {
  border: 1px solid rgb(172, 172, 172);
}
body #contact-page .container .form form button {
  width: 100%;
  padding: 13px 5px;
  font-size: 18px;
  background: rgb(196, 48, 48);
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #contact-page .container .form .form-group-text-area {
  width: 100%;
  color: black;
}
body #contact-page .container .form .form-group-text-area label {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 13px;
}
body #contact-page .container .form .form-group-text-area textarea {
  width: 100%;
  height: 80px;
  border: 1px solid rgb(172, 172, 172);
  border-radius: 5px;
  font-family: "Archivo", sans-serif;
  padding: 10px;
  font-size: 18px;
}
body #footer {
  background-color: rgb(31, 10, 10);
  padding: 100px 0px;
}
body #footer footer .container .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  body #footer footer .container .section {
    flex-direction: column;
  }
}
body #footer footer .container .section .box {
  width: calc(33.3333333333% - 40px);
  display: inline-block;
  border-radius: 25px;
  position: relative;
}
@media (max-width: 900px) {
  body #footer footer .container .section .box {
    width: calc(50% - 40px);
  }
  body #footer footer .container .section .box:nth-child(2) {
    display: none;
  }
}
@media (max-width: 768px) {
  body #footer footer .container .section .box {
    width: 100%;
  }
}
body #footer footer .container .section .box .logo {
  margin-bottom: 20px;
}
body #footer footer .container .section .box .logo img {
  width: 150px;
}
body #footer footer .container .section .box .footer-about p {
  font-size: 18px;
  color: white;
  opacity: 0.5;
}
body #footer footer .container .section .section2 nav ul {
  list-style-type: none;
}
body #footer footer .container .section .section2 nav ul li {
  padding: 8px;
}
body #footer footer .container .section .section2 nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: white;
}
body #footer footer .container .section .section3 h4 {
  color: whitesssss;
}
body #footer footer .container .section .section3 ul {
  list-style-type: none;
}
body #footer footer .container .section .section3 ul li {
  display: flex;
  margin-bottom: 10px;
  margin-top: 20px;
  text-align: left;
}
body #footer footer .container .section .section3 ul li .icon {
  margin-right: 10px;
}
body #footer footer .container .section .section3 ul li .icon ion-icon {
  width: 25px;
  height: 25px;
  color: white;
  margin-top: 5px;
}
body #footer footer .container .section .section3 ul li .content p {
  font-weight: 200;
  font-size: 16px;
  text-align: left;
  color: white;
}
body #footer footer .container .section .section3 ul li .content a {
  color: white;
}
body #footer footer .container .section .section3 ul li .social-media p {
  color: white;
}
body #footer footer .container .section .section3 ul li .social-media ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
body #footer footer .container .section .section3 ul li .social-media ul li {
  width: 33.3333333333%;
}
body #footer footer .container .section .section3 ul li .social-media ul li a {
  text-decoration: none;
  color: white;
}
body #footer footer .container .section .section3 ul li .social-media ul li a ion-icon {
  width: 25px;
  height: 25px;
}
body #footer footer .container .section .section3 ul li .social-media ul li img {
  width: 50px;
  padding-right: 10px;
  margin: 10px 50px;
}
body #copyright {
  background: rgb(15, 5, 5);
  padding: 60px 0px;
}
body #copyright .container .copyright {
  text-align: center;
}
body #copyright .container .copyright p {
  color: white;
  font-size: 16px;
}
body #copyright .container .copyright p span {
  opacity: 0.5;
}
body #copyright .container .copyright p a {
  color: white;
}
body #course-page {
  margin-top: 160px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  body #course-page {
    margin-top: 150px;
  }
}
body #course-page h2 {
  margin-bottom: 20px;
}
body #course-page .tab-button {
  display: flex;
  justify-content: center;
}
body #course-page .tab-button ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #313131;
}
@media (max-width: 768px) {
  body #course-page .tab-button ul {
    flex-wrap: wrap;
    border: none;
    background: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.2901960784);
  }
}
body #course-page .tab-button ul li {
  list-style: none;
}
@media (max-width: 768px) {
  body #course-page .tab-button ul li {
    width: 100%;
    border-bottom: 1px solid rgba(54, 54, 54, 0.1450980392);
  }
  body #course-page .tab-button ul li:last-child {
    border: none;
  }
}
body #course-page .tab-button ul li::after {
  margin-right: 0px;
}
body #course-page .tab-button ul li a {
  text-decoration: none;
  color: #494949;
  opacity: 0.8;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  body #course-page .tab-button ul li a {
    padding: 20px 20px;
  }
}
body #course-page .tab-button ul .active-tab {
  color: white;
}
body #course-page .tab-button ul .active-tab a {
  color: white;
  font-weight: 600;
  opacity: 1;
  background: rgb(196, 48, 48);
}
body #course-page .tab-holder .tab {
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: none;
}
body #course-page .tab-holder .tab .software_sprintek_using {
  padding: 60px 0px;
  padding-bottom: 30px;
}
body #course-page .tab-holder .tab .software_sprintek_using h3 {
  margin-bottom: 30px;
}
body #course-page .tab-holder .tab .card {
  width: calc(50% - 20px);
  border: 1px solid rgba(54, 54, 54, 0.1450980392);
  padding: 10px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  body #course-page .tab-holder .tab .card {
    width: 100%;
  }
}
body #course-page .tab-holder .tab .card h3 {
  margin-bottom: 30px;
  line-height: 35px;
  font-size: 25px;
  font-weight: 500;
  color: black;
  padding: 20px;
  height: 130px;
  background: rgb(196, 48, 48);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex-direction: column;
}
body #course-page .tab-holder .tab .card h3 span {
  font-size: 14px;
  font-weight: 500;
}
body #course-page .tab-holder .tab .card h3::after {
  content: "";
  left: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.055);
  position: absolute;
  border-radius: 100%;
  z-index: 1;
}
body #course-page .tab-holder .tab .card h3::before {
  content: "";
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.055);
  position: absolute;
  border-radius: 100%;
  z-index: 1;
}
body #course-page .tab-holder .tab .card ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
body #course-page .tab-holder .tab .card ul h4 {
  margin: 20px 0px;
}
body #course-page .tab-holder .tab .card ul li {
  list-style: none;
  width: 100%;
  padding: 10px 0px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.274);
  text-transform: capitalize;
  display: flex;
  line-height: 25px;
  font-size: 16px;
  font-weight: 500;
}
body #course-page .tab-holder .tab .card ul li:last-child {
  border: none;
}
body #course-page .tab-holder .tab .card ul li ion-icon {
  margin-right: 20px;
  width: 20px;
  height: 20px;
  color: rgb(196, 48, 48);
}
body #course-page .tab-holder .tab-active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  display: flex;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.315);
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

#credits {
  margin-top: 30px;
}
#credits .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#credits .container .c-card {
  width: calc(20% - 10px);
  background: #eee;
  padding: 10px;
}
@media (max-width: 768px) {
  #credits .container .c-card {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
#credits .container .c-card .count {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  color: rgb(196, 48, 48);
  width: 60px;
  height: 60px;
  background: rgb(228, 228, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 0 auto;
}
#credits .container .c-card .content {
  text-align: center;
  font-size: 16px;
  padding: 10px;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */