@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #00aaff;
  --white-color: #ffffff;
  --black-color: #000000;
}

html {
  font-size: 16px;
}

body {
  position: relative;
  font-family: "Poppins";
  font-weight: 400;
  overflow-x: hidden;
}

/* a{
    transition: .3s all ease-in-out;
} */

.container {
  max-width: 1320px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

.themeBtn {
  background: var(--primary-color);
  padding: 1rem 3rem;
  text-decoration: none;
  color: var(--white-color);
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 10px;
  transition: .3s all ease-in-out;
}

.themeBtn:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

/* Header CSS Starts */
header {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.navbar-nav {
  gap: 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.313rem;
  color: var(--white-color);
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
}
/* Header CSS Ends */

/* Main Banner CSS Starts */
.mainBanner {
  background: url(../images/banner-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.mainBanner h1 {
  color: var(--white-color);
  font-size: 5.938rem;
  line-height: 0.9;
  letter-spacing: -8px;
}

.mainBanner h1 span {
  font-size: 9.5rem;
  letter-spacing: -15px;
}
.bannerContent a {
  margin-top: 3rem;
  display: inline-block;
}
.socialIcons {
  position: absolute;
  bottom: 5px;
  display: flex;
  gap: 1rem;
}

.socialIcons a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
}

.socialIcons a:hover {
  color: var(--primary-color);
}
/* Main Banner CSS Ends */

/* Course Section CSS Starts */
.coursesSection {
  padding: 8rem 0;
}

.coursesSection h2 {
  text-align: center;
  font-size: 5rem;
  margin-bottom: 3rem;
}
.courseBox:hover .courseImgBox img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.courseImgBox {
    overflow: hidden;
    border-radius: 40px;
}
.courseBox img {
    height: 300px;
    object-fit: cover;
    border-radius: 40px;
    object-position: right;
    transition: transform .5s, filter .3s ease-in-out;
    filter: grayscale(100%);
}
.courseBox h3 {
  margin-top: 0.8rem;
  font-size: 1.875rem;
}

.courseBox .courseDesc {
  font-size: 1.375rem;
  color: #474747;
  margin: 0;
}

.courseBox .courseTime {
  font-size: 1.125rem;
  color: #474747;
  margin: 0;
}

.courseBox .coursePrice {
  margin: 0;
  color: #474747;
}

.courseBox .coursePrice a {
  pointer-events: none;
  color: var(--primary-color);
  text-decoration: none;
}

.courseBox .btnBox {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
}

.courseBox .btnBox a {
  flex: 0 0 45%;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid;
  transition: .3s all ease-in-out;
}
.courseBox .btnBox a:first-child {
  font-size: 1rem;
  font-weight: 400;
  background: #ededed;
  color: #474747;
}

.courseBox .btnBox a:hover:first-child {
  background: #474747;
  color: #ededed;
}

.courseBox .btnBox a:hover:last-child {
  border-color: var(--primary-color);
}

/* Course Section CSS Ends */

/* About Section CSS Starts */
.aboutContent {
  background: var(--primary-color);
  margin-bottom: 5rem;
  padding: 2rem;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.aboutContent h2 {
  font-size: 7.625rem;
  color: var(--white-color);
  letter-spacing: -15px;
}

.aboutContent p {
  font-size: 1.375rem;
  color: var(--white-color);
}

.aboutContent h3 {
  font-size: 3.063rem;
  font-weight: 400;
  color: var(--white-color);
  letter-spacing: -3px;
}

.aboutContent h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white-color);
}
/* About Section CSS Ends */

/* Work Section CSS Starts */
.services-ticker-block {
  position: relative;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.stb_line_single {
  position: relative;
  white-space: nowrap;
  padding: 0;
  will-change: transform;
}
.stb-item {
  padding: 0;
  font-size: 6.4rem;
  display: inline-block;
  margin-right: 2rem;
}
.workSection {
  padding: 5rem 0;
}

.headingContent h3 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--primary-color);
}

.headingContent h2 {
  font-size: 5rem;
  letter-spacing: -3px;
}

.headingContent {
  margin-bottom: 3rem;
}

/* Work Section CSS Ends */

/* CTA Section CSS Starts */
.ctaSection {
  padding: 10rem 0;
}
.ctaSection .ctaMain {
  background: url(../images/cta-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 15rem;
  text-align: center;
  background-position: center;
  border-radius: 50px;
}
.ctaSection .ctaMain h2 {
  color: var(--white-color);
  font-size: 3.75rem;
}

.ctaSection .ctaMain p {
  font-size: 1.375rem;
  color: var(--white-color);
  margin-bottom: 2rem;
}

.ctaSection .ctaMain a {
  background-color: #000;
}
/* CTA Section CSS Ends */

/* Videos Section CSS Starts */
a.videoMain {
  display: inline-block;
  position: relative;
}

a.videoMain img:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videoSection {
  position: relative;
  padding: 5rem 0;
}

.videoSection h2 {
  position: absolute;
  top: -5rem;
  font-size: 15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  letter-spacing: -10px;
  opacity: 0.1;
}
/* Videos Section CSS Ends */

/* Testimonial Section CSS Starts */
.testimonialSection {
  padding: 5rem 0;
  position: relative;
}

.testimonialSection:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 90%;
  background: var(--primary-color);
  z-index: -1;
  right: 0;
  top: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  opacity: 0.2;
}

.testimonialMain {
  background: #fff;
  padding: 1.5rem;
  border-radius: 30px;
}

.testimonialMain .reviewDesc {
  font-size: 1.375rem;
  margin-top: 1rem;
  min-height: 235px;
}

.testimonialMain .reviewAuth {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonialMain .reviewAuth .userDetails h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.testimonialMain .reviewAuth .userDetails h5 {
  font-size: 0.875rem;
  margin: 0;
  font-weight: 200;
  color: #92929D;
}
.swiper-slide-active .testimonialMain {
  background: var(--primary-color);
}

.swiper-slide-active .testimonialMain .reviewDesc {
  color: var(--white-color);
}

.swiper-slide-active .testimonialMain .reviewAuth .userDetails h5 {
  color: var(--white-color);
}
/* Testimonial Section CSS Ends */

/* FAQ Section CSS Starts */
.faqSection {
  padding: 5rem 0;
}

.faqMain .accordion-item {
  border: none;
}

.faqMain .accordion-button:not(.collapsed) {
  background: var(--primary-color);
}

.faqMain .accordion-button {
  font-size: 1.625rem;
  font-weight: 500;
  background: #f4f4f4;
  border-radius: 15px !important;
}

.faqMain .accordion-item + .accordion-item {
  margin-top: 2rem;
}

.faqMain button:focus:not(:focus-visible) {
  box-shadow: none;
}
/* FAQ Section CSS Ends */

/* Footer CTA Section CSS Starts */
.footerCta{
    padding-top: 10rem;
    margin-bottom: -9rem;
}
.inputMain {
    display: flex;
    flex-wrap: wrap;
}

.inputMain .form-floating {
    flex: 0 0 50%;
}

.inputMain .form-floating input {
    border-radius: 0;
}

.textAreaMain .form-floating textarea {
    resize: none;
    height: 90px;
}

.textAreaMain .form-floating textarea:focus,.inputMain .form-floating input:focus {
    outline: none;
    box-shadow: none;
}
.ftCtaMain {
    background: var(--primary-color);
    padding: 2rem 5rem 0;
    border-radius: 50px;
    position: relative;
}

.ftCtaMain .btnGroup button {
    background: var(--black-color);
    border: none;
    transition: .3s all ease-in-out;
}

.ftCtaMain .btnGroup button:hover {
    background: var(--white-color);
}

.btnGroup p {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}
.ftImg {
    position: absolute;
    bottom: 0;
    right: -8rem;
}

/* Footer CTA Section CSS Ends */

/* Footer CSS Starts  */
footer{
    background: url(../images/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15rem 0 2rem;
}

.ftUpper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.ftUpper .ftNav ul {
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
    
}

.ftUpper .ftNav ul a {
    text-decoration: none;
    color: var(--white-color);
    transition: .3s all ease-in-out;
    font-size: 1.313rem;
}

.ftUpper .ftNav ul a:hover {
    color: var(--primary-color);
}

.ftLower {
    margin-top: 3rem;
}

.ftLower .ftCompanyDetails {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ftLower .ftCompanyDetails .companyAsc {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ftLower .ftCompanyDetails .companyAsc .inContent h4 {
    font-size: 1rem;
    color: #fff;
}
.ftLower .ftCompanyDetails .companyAsc .inContent a {
    color: var(--white-color);
    text-decoration: none;
    transition: .3s all ease-in-out;
}

.ftLower .ftCompanyDetails .companyAsc .inContent a:hover {
    color: var(--primary-color);
}
.newsletterMain h3 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.newsletterMain form.newsletterForm {
    display: flex;
    /* min-height: 65px; */
    padding: .5rem 1rem;
    height: 64px;
}

.newsletterMain .newsletterForm input {
    background: transparent;
    border: none;
}

.newsletterMain .newsletterForm {
    background: var(--white-color);
    border-radius: 15px;
}

.newsletterMain .newsletterForm input:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.newsletterMain .newsletterForm button {
    flex: 0 0 30%;
    background: var(--black-color);
    color: var(--white-color);
    transition: .3s all ease-in-out;
}

.newsletterMain .newsletterForm button:hover {
    background: var(--primary-color);
    color: var(--black-color);
}

.newsletterMain p {
    color: var(--white-color);
    font-size: 0.69rem;
    margin-top: .5rem;
    margin-bottom: 0;
}

.newsletterMain p a {
    color: var(--white-color);
    transition: .3s all ease-in-out;
}

.newsletterMain p a:hover {
    color: var(--primary-color);
}
.copyrightMain .ftSocialIcons ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    justify-content: end;
}

.copyrightMain .ftSocialIcons ul li a {
    height: 40px;
    width: 40px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: .3s all ease-in-out;
}

.copyrightMain .ftSocialIcons ul li a:hover {
    background: var(--primary-color);
}

.copyrightMain .copyrightTxt {
    color: var(--white-color);
}

.copyrightMain {
    margin-top: 8rem;
}
/* Footer CSS Ends  */