@import url("https://fonts.cdnfonts.com/css/satoshi");

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Satoshi", sans-serif;
}

body {
  scroll-behavior: smooth;
  /* overflow-x: visible;
  overflow: visible; */
}

:root {
  --primary-color: #dd4276;
  --white: #ffffff;
  --gradient-primary-alpha-1: linear-gradient(90deg,
      var(--color-primary-1) 40%,
      transparent 87%);
}

h1,
h2,
h3,
h4,
p,
button {
  font-family: "Satoshi", sans-serif !important;
}

h2 {
  color: #002147;
}

ul {
  padding-left: 0px;
}

.cursor {
  width: 20px;
  height: 20px;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border: 1px solid #303030;
  border-radius: 50%;
  transition: width 0.2s ease-out, height 0.2s ease-out;
  transform: translate(-50%, -50%);
  /* always center to mouse */
}


.cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}

.cursor.expand {
  animation: expandCursor 0.5s forwards;
}

@keyframes expandCursor {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }

  50% {
    width: 40px;
    height: 40px;
    opacity: 0.5;
  }

  100% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
}

/* -------------------- */
.banner-sec {
  padding: 90px 0 70px;
  background-color: #f2f6fd;
}

.banner-sec .aws-img {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* .banner-sec .microsoft-img {
  padding-top: 16px;
  padding-bottom: 16px;
} */
.banner-sec .title {
  font-size: 44px;
  font-weight: bold;
  line-height: 52px;
}

.banner-sec .des {
  font-size: 16px;
}

.banner-sec .col-md-6 {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* .breadcrumb-area{
  position: absolute;
  background-image: linear-gradient(180deg, #fff 0%, #F1EAFF 100%);
}
.breadcrumb-area .overlay{
  background: url(https://hubhtml.liquid-themes.com/assets/images/demo/start-hub-3/banner-bg.png);
} */
.banner-sec ul li {
  margin-top: 10px;
  position: relative;
  font-size: 16px;
  line-height: 21.6px;
  font-weight: 400;
  color: #272c37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-area .bread-cloud-img,
.breadcrumb-area .bread-microsoft-img {
  position: absolute;
  width: 150px;
  right: 25px;
  /* top: 200px; */
  animation: rotation 10s infinite;
}

.breadcrumb-area .bread-comptia-img {
  position: absolute;
  width: 150px;
  right: 0;
  top: 138px;
  animation: rotation 10s infinite;
  /* z-index: -1; */
}

.breadcrumb-area .bread-aws-img {
  position: absolute;
  width: 140px;
  right: 30px;
  top: 230px;
  animation: rotation 10s infinite;
  z-index: -1;
}

.breadcrumb-area .bread-cloud-pattern {
  position: absolute;
  width: 200px;
  right: -88px;
  top: 83px;
  z-index: -1;
}

@keyframes rotation {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-20deg);
  }

  75% {
    transform: rotate(20deg);
  }
}

.banner-sec .features-list-icon {
  position: relative;
  top: 0.075em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  font-size: 18px;
  color: #fff;
  background: var(--color-dark-1);
  border-radius: 50%;
  padding: 15px;
}

.banner-sec .features-list-icon {
  top: 0.185em;
  color: #119d60;
  background: #d4f5e7 !important;
}

.banner-sec .features-list-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.book-button-sec {
  margin-top: 30px;
}

.training-btn {
  margin-top: 0;
  width: 100%;
  max-width: 180px;
  display: inline-block;
  margin-right: 16px;
  vertical-align: top;
}

.book-btn.btn,
.talk-to-advisor.btn {
  margin-top: 0;
  color: var(--white);
  background: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  text-transform: none;
  line-height: 35px;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.btn-advisor {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  position: relative;
  text-transform: none;
  font-size: 16px;
}

.book-button-sec {
  display: flex;
}

.book-button-sec .contact-no .mob-no {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.book-button-sec .contact-no .res-mob-no {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
}

@keyframes flip {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

.banner-sec .right-content {
  position: relative;
}

.banner-sec .right-img {
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.banner-sec .right-img img {
  animation: moveLeftRight 5s ease-in-out infinite;
}

@keyframes moveLeftRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }
}

.banner-sec .learn-info {
  position: absolute;
  top: 80%;
  left: 30px;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  animation: moveLeftRight 5s ease-in-out infinite;
}

.banner-sec .learn-info .card-learn,
.banner-sec .learn-info .banner-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 190px;
  padding: 10px 16px;
  text-align: center;
  border-radius: 6px;
  background: #fff;
  box-shadow: 1px 4px 12px 0px rgba(17, 121, 239, 0.25);
}

.banner-sec .learn-info i {
  display: block;
  font-size: 18px;
  margin-right: 8px;
  color: #dd4276;
  transition: transform 0.3s;
}

.banner-sec .learn-info .card-learn:hover i {
  transform: rotateY(180deg);
}

.banner-sec .learn-info .banner-rating:hover i {
  transform: rotateY(180deg);
}

.banner-sec .learn-info p {
  margin: 0;
}

.mt-16 {
  margin-top: 16px;
}

.mb-1 {
  margin-bottom: 10px;
}

.course-pricing-visit {
  color: var(--primary-color);
  /* text-decoration: underline; */
}

/* course-overview sec css */
.course-overview {
  padding-top: 70px;
  padding-bottom: 70px;
}

.course-overview h2 {
  margin-bottom: 20px !important;
  font-weight: bold;
  font-size: 35px;
}

.course-overview p {
  font-size: 16px;
  margin-bottom: 20px;
}

.course-overview .aws-features-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.course-overview .aws-features {
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
}

.course-overview .aws-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.course-overview .aws-features i {
  margin-right: 10px;
  font-size: 18px;
}

/* Icon Colors */
.course-overview .iam-icon {
  color: #007acc;
}

.course-overview .vpc-icon {
  color: #ff9900;
}

.course-overview .ec2-icon {
  color: #ff5733;
}

.course-overview .ebs-icon {
  color: #1e90ff;
}

.course-overview .elb-icon {
  color: #48c774;
}

.course-overview .cdn-icon {
  color: #ff6347;
}

.course-overview .s3-icon {
  color: #ffcc00;
}

.course-overview .eip-icon {
  color: #00cc66;
}

.course-overview .kms-icon {
  color: #d2691e;
}

.course-overview .route53-icon {
  color: #663399;
}

.course-overview .rds-icon {
  color: #3498db;
}

.course-overview .glacier-icon {
  color: #b0c4de;
}

.course-overview .snowball-icon {
  color: #f08080;
}

.course-overview .cloudfront-icon {
  color: #00ced1;
}

.course-overview .dynamodb-icon {
  color: #2ecc71;
}

.course-overview .redshift-icon {
  color: #e74c3c;
}

.course-overview .autoscaling-icon {
  color: #f39c12;
}

.course-overview .cloudwatch-icon {
  color: #8e44ad;
}

.course-overview .elasticache-icon {
  color: #16a085;
}

.course-overview .cloudtrail-icon {
  color: #d35400;
}

.course-overview .security-icon {
  color: #2c3e50;
}

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

.feature-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-overvie.course-overview .feature-card {
  margin-top: 20px;
}

.course-overview .feature-icon {
  font-size: 40px;
  color: #007bff;
}

.course-overview .feature-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.course-overview .feature-description {
  font-size: 1rem;
  color: #555;
}

.course-overview .course-registration-form {
  padding: 20px;
  border-radius: 8px;
  background: #f5faff;
  margin-top: 0;
  border-top: 7px solid linear-gradient(90deg, #2d81f7, #6fe5be 99%);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
}

.course-overview .course-registration-form::before {
  content: "";
  display: inline-block;
  height: 7px;
  width: 93%;
  position: absolute;
  top: 0;
  right: 14px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  background-image: linear-gradient(90deg, #2d81f7, #6fe5be 99%);
}

.course-overview .course-curriculum .top-linear-clr::before {
  content: "";
  display: inline-block;
  height: 7px;
  width: 92%;
  position: absolute;
  top: 0;
  right: 16px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  background-image: linear-gradient(90deg, #2d81f7, #6fe5be 99%);
}

.course-overview .course-curriculum .sh-box p {
  font-size: 16px;
  font-weight: 500;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px !important;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.course-registration-form h2 {
  font-size: 27px;
  font-weight: bold;
}

.course-registration-form label {
  font-size: 16px;
}

input::placeholder {
  font-size: 16px;
}

/* sticy-form */
.course-overview .col-md-4 {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* new template css */
.home-content {
  width: 100%;
  position: relative;
  text-align: center;
}

.page-section,
.small-section,
.bg-image {
  width: 100%;
  display: block;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.hs-title-9 {
  margin-top: 0;
  font-size: 65px;
  font-weight: 500;
  line-height: 1.1176;
  letter-spacing: -0.037em;
}

.hs-descr {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.353;
  letter-spacing: -0.0075em;
}

.features-list-icon {
  position: relative;
  top: 0.075em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  font-size: 18px;
  color: #fff;
  background: var(--color-dark-1);
  border-radius: 50%;
}

.features-list-icon svg {
  display: block;
  width: 1em;
  height: 1em;
}

.features-list-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.light-content .features-list {
  color: #fff;
}

.light-content .features-list-icon {
  color: var(--color-dark-1);
  background: #fff;
}

.features-list-icon.features-list-grad {
  color: #fff;
  background: var(--gradient-primary-1-b);
}

.features-list-icon.features-list-color-1 {
  color: #fff;
  background: var(--color-primary-1);
}

.features-list-icon.features-list-color-2 {
  color: #fff;
  background: var(--color-primary-2);
}

.mi-check:before {
  content: "\e91a";
}

.features-list-icon {
  color: #00cc66;
}

.composition-8 {
  position: relative;
}

.composition-8-image {
  position: relative;
  width: 90.7936%;
  margin-left: auto;
  overflow: hidden;
  border-radius: 75px;
  isolation: isolate;
  transform: translateZ(0);
}

.composition-8-image img {
  width: 100%;
}

.composition-8-decoration-1 {
  position: absolute;
  top: -60px !important;
  left: 0;
}

.composition-8-decoration-2 {
  position: absolute;
  bottom: 17%;
  left: 0;
}

.composition-8-decoration-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.order-lg-last {
  order: 6 !important;
}

/* cta sec css */
.cta-sec {
  background-image: url(../images/aws/cta-1.jpg);
  width: 100%;
  display: block;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-gradient-primary-alpha-1::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffb792 40%, transparent 87%);
  opacity: 0.97;
}

.cta-sec h2.title {
  font-size: 40px !important;
  font-weight: bold;
}

.cta-sec .desc {
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-sec .training-btn {
  margin-bottom: 25px;
}

.section-title-tiny {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
}

.logo-grid {
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

/* certificate section css */
.certificate-section {
  padding-top: 70px;
  background: #f6faff;
}

.certificate-section .sec-title {
  font-size: 35px;
  font-weight: bold;
}

.certificate-section .sec-desc {
  font-size: 16px;
}

.certificate-section .content-start {
  margin-bottom: 40px;
}

.certificate-section .batch-img-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.certificate-section .batch-img img {
  width: 150px;
}

.certificate-section .batch-lists {
  margin-bottom: 40px;
}

.certificate-section .batch-item {
  margin-bottom: 50px;
  padding: 20px;
}

.certificate-section .batch-name {
  font-size: 25px;
  font-weight: bold;
}

.certificate-section .content-sec {
  min-height: 170px;
}

.mark-decoration-5 {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.mark-decoration-5:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4em;
  width: 100%;
  height: 0.5357em;
  background-image: url(../images/aws/mark-decoration-1.svg);
  background-repeat: no-repeat;
  background-size: auto 0.25892em;
  background-position: 0 0;
  pointer-events: none;
  z-index: -1;
}

.experi {
  font-weight: bold;
  font-size: 17px;
}

/* Course Curriculum */

.course-curriculum .sec-title {
  font-size: 35px;
  font-weight: bold;
}

.course-overview .sub-title {
  font-size: 25px;
  font-weight: 700;
  margin: 40px 0 20px;
}

.banner-sec .sub-title {
  font-size: 25px;
  font-weight: 700;
  margin: 40px 0 20px;
}

.course-curriculum .sub-title {
  font-size: 25px;
  font-weight: 700;
  margin: 20px 0 0;
}

.course-curriculum .des {
  margin-top: 30px;
  margin-bottom: 30px;
}

.course-curriculum .des li {
  display: flex;
  font-size: 16px;
  align-items: center;
}

.nav-wrap {
  width: 100%;
  margin: 1em auto 0;
}

[hidden] {
  display: none;
  visibility: hidden;
}

.color-foreground {
  color: #fcfcfc;
}

.color-background {
  background-color: #317589;
}

.acnav {
  width: 100%;
  margin-bottom: 30px;
}

.acnav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.acnav__list--level1 {
  border: 1px solid #fcfcfc;
}

.has-children>.acnav__label::before {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  display: inline-block;
  font-size: 14px;
  text-rendering: auto;
  margin-right: 1em;
  transition: transform 0.3s;
  color: #505050;
}


.child-space {
  margin-top: 20px;
}

.has-children.is-open>.acnav__label::before {
  transform: rotate(405deg);
}

.has-children.is-open>.acnav__label.course-label {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.has-children.is-open>.acnav__label.course-label::before {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.acnav__link,
.acnav__label {
  display: block;
  font-size: 16px;
  padding: 1em;
  margin: 0;
  cursor: pointer;
  color: #000000;
  background: #ebf1f8;
  box-shadow: inset 0 -1px rgba(49, 117, 137, 0.1);
  transition: color 0.25s ease-in, background-color 0.25s ease-in;
  padding-left: 40px;
}

.acnav__link:focus,
.acnav__link:hover,
.acnav__label:focus,
.acnav__label:hover {
  color: #51565e;
  background: #ebf1f8;
}

.acnav__link--level2,
.acnav__label--level2 {
  padding-left: 3em;
  background: #ebf1f8;
}

.acnav__link--level2:focus,
.acnav__link--level2:hover,
.acnav__label--level2:focus,
.acnav__label--level2:hover {
  background: #ebf1f8;
}

.acnav__link--level3,
.acnav__label--level3 {
  padding-left: 5em;
  background: #ebf1f8;
}

.acnav__link--level3:focus,
.acnav__link--level3:hover,
.acnav__label--level3:focus,
.acnav__label--level3:hover {
  background: #ebf1f8;
}

.acnav__link--level4,
.acnav__label--level4 {
  padding-left: 7em;
  background: #ebf1f8;
}

.acnav__link--level4:focus,
.acnav__link--level4:hover,
.acnav__label--level4:focus,
.acnav__label--level4:hover {
  background: #ebf1f8;
}

.acnav__list--level2,
.acnav__list--level3,
.acnav__list--level4 {
  display: none;
}

.has-children.is-open>.acnav__list--level2,
.has-children.is-open>.acnav__list--level3,
.has-children.is-open>.acnav__list--level4 {
  display: block;
}

.acnav__list.acnav__link,
.acnav__label.is-open>.acnav__label {
  display: none;
}

.course-curriculum .sh-box {
  background: #fff;
  padding: 15px 15px 22px 15px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 1px solid #dde6ed;
}

.course-curriculum .mob-no {
  font-size: 24px;
  color: #272c37;
  margin: 8px 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-curriculum .res-mob-no {
  font-size: 24px;
  color: #272c37;
  margin: 8px 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-curriculum .course-registration-form {
  margin-top: 50px;
}

.course-curriculum .col-md-4 {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.course-curriculum {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* call button animation css */
.call-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.icon-container {
  position: relative;
  margin-right: 15px;
}

.call-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #dd4276;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.fi-rr-phone-call:before {
  content: "\f17e";
  color: white;
  font-size: 20px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-color: #dd4276;
  opacity: 0.3;
  animation: pulse 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.circle-1 {
  width: 60px;
  height: 60px;
  top: -5px;
  left: -5px;
}

.circle-2 {
  width: 70px;
  height: 70px;
  top: -10px;
  left: -10px;
  animation-delay: 0.4s;
}

.phone-number {
  font-size: 16px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* end */

.banner-sec p {
  font-size: 16px !important;
}

.top-hiring {
  padding-top: 40px;
  margin-bottom: 70px;
}

.top-hiring .section-title {
  color: #000;
}

.top-hiring .section-descr {
  color: #000;
  font-size: 18px !important;
}

.inner-heading {
  color: #000;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 0;
  padding-bottom: 4px;
}

.top-hiring .card {
  padding: 20px 25px;
  color: #020202;
  border-radius: 4px;
  position: relative;
  border: 1px solid #e9f2ff;
  box-shadow: 0px 2px 10px rgba(17, 121, 239, 0.1);
}

.top-hiring .card:nth-child(2),
.top-hiring .card:nth-child(3) {
  margin-top: 20px;
}

.top-hiring .card span {
  font-size: 28px;
  line-height: 33px;
  color: #1179ef;
  font-weight: 700;
  display: inline-block;
}

.top-hiring .card::before {
  border-radius: 4px 0 0 4px;
}

.top-hiring .card::before {
  content: "";
  width: 5px;
  height: 100%;
  background: rgba(17, 121, 239, 0.4);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.company-cards {
  padding: 40px 15px 0 0;
  color: #51565e;
  border-radius: 4px;
  position: relative;
  border: 1px solid #e9f2ff;
  box-shadow: 0px 2px 10px rgba(17, 121, 239, 0.1);
  min-height: 330px;
}

.company-cards .fsd-company-logo {
  display: inline-block;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
  height: 50px;
}

.call-number {
  font-size: 18px;
  color: #333;
}

.mandatory-star {
  color: red;
}

.top-hiring .title {
  font-size: 35px;
  font-weight: bold;
}

.top-hiring .section-descr {
  font-size: 16px !important;
  margin-bottom: 40px;
}

.custom-input {
  border: none !important;
  border-bottom: 1px solid #b9b9b9 !important;
  border-radius: 0 !important;
  box-shadow: none;
  outline: none;
  background: transparent !important;
  font-size: 16px;
}

textarea::placeholder {
  font-size: 16px;
}

.custom-value {
  font-size: 16px;
}

input {
  width: 100%;
  padding: 10px;
}

/* cta section css */
.cta-section {
  background: url(../images/aws/cta1-bg.jpg);
  padding: 80px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-section h2 {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px;
  text-transform: capitalize;
}

.theme-btn3 {
  display: inline-block;
  border-radius: 80px;
  background: linear-gradient(90deg, #f57433 2.31%, #9553fd 100%);
  padding: 12px 12px 12px 18px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: background-position 0.4s ease;
  border: none;
}

.theme-btn3 span {
  display: inline-block;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 15px;
  color: #dd4276;
  text-align: center;
  line-height: 30px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}

.theme-btn3:hover {
  color: #fff;
  transition: all 0.4s;
  background-position: right center;
}

.theme-btn3:hover span {
  color: #9553fd;
  background-position: right center;
  transition: all 0.4s;
}

.theme-btn3:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}

.theme-btn3::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: linear-gradient(90deg, #9553fd 2.31%, #5700fc 100%);
  z-index: -1;
  transition: all 0.4s;
}

.course-overview .feature-card::after {
  position: absolute;
  left: 10px;
  top: 21px;
  height: 0%;
  width: 5px;
  content: "";
  background: #5e3c9e;
  border-radius: 5px 0 0 5px;
  transition: 0.3s;
}

.course-overview .feature-card:hover::after {
  height: 92%;
}

.feature-card .shape-3 {
  position: absolute;
  top: 10%;
  right: 10%;
}

.feature-icon {
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
}

/* training option css */
.training-option {
  padding-top: 10px;
  padding-bottom: 70px;
}

.training-option h2 {
  font-size: 35px;
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 20px !important;
}

.training-option .title h3 {
  font-size: 24px;
  margin-bottom: 0px;
  font-weight: 700;
  color: #ffffff;
}

.training-option .title {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 24px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: linear-gradient(90deg, #9553fd 2.31%, #5700fc 100%);
}

.training-option .option-content {
  position: relative;
  margin-top: 10px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.training-option .title label.badge {
  display: inline-block;
  width: 100px;
  height: 50px;
  background: url(../images/aws/badge-2.svg) no-repeat;
  margin: 0;
  margin-right: -24px;
  position: absolute;
  right: 0;
  top: 10px;
}

.option-points {
  padding: 20px;
}

.option-points li {
  display: flex;
  margin-bottom: 15px;
  font-size: 16px;
}

.option-points li .features-list-icon {
  margin-right: 20px;
}

.option-content .footer-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-bottom: 20px;
}

.option-content .footer-btns .know-more {
  font-size: 16px;
  color: #2f80ed;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.icon-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f0f0f0;
  margin-bottom: 15px;
}

.feature-icon {
  font-size: 32px;
  color: #007bff;
}

.feature-card:has(.feature-title:contains("Terminology")) .feature-icon {
  color: #28a745;
}

.feature-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}

.feature-description {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.icon-bg.green-bg {
  background: linear-gradient(270deg,
      rgb(63 192 187 / 44%) 0%,
      rgba(63, 192, 187, 0.01) 100%);
}

.icon-bg.green-bg i {
  color: rgba(63, 192, 187, 1);
}

.icon-bg.blue-bg {
  background: linear-gradient(270deg,
      rgb(157 97 237 / 44%) 0%,
      rgba(157, 97, 237, 0.01) 100%);
}

.icon-bg.blue-bg i {
  color: rgba(186, 104, 248, 1);
}

.icon-bg.pink-bg {
  background: linear-gradient(270deg,
      rgb(87 203 198 / 44%) 0%,
      rgb(255 106 165 / 44%) 0.01%,
      rgba(255, 106, 165, 0.01) 100%);
}

.icon-bg.pink-bg i {
  color: rgba(255, 106, 165, 1);
}

.icon-bg.green-2-bg {
  background: linear-gradient(270deg,
      rgb(113 202 74 / 45%) 0%,
      rgba(113, 202, 74, 0.01) 100%);
}

.icon-bg.green-2-bg i {
  color: rgba(116, 203, 79, 1);
}

/* certificate css  */

#myCarousel {
  margin: 0 auto;
}

#myCarousel .f-carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate-img {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #f6faff;
}

.certificate-img .col-md-6 {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.certificate-img .title {
  font-size: 35px;
  font-weight: bold;
}

.certificate-img .certi-feat {
  margin-top: 20px;
}

.certificate-img .certi-feat h4 {
  font-size: 27px;
  font-weight: 700;
}

.certificate-img .certi-feat li {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 16px;
}

/* client review */
.testimonials {
  padding-top: 70px;
  padding-bottom: 70px;
}

.swiper-slide {
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
  color: #ccc;
  opacity: 0.9;
  text-align: center;
  height: auto;
}

.swiper-slide-active {
  padding: 50px;
  background: #ededed;
  color: #333;
  transform: scale(1.05);
}

.client-image {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  margin: 0 auto 15px;
}

.client-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.client-review {
  font-style: italic;
  font-size: 12px;
  overflow: hidden;
}

.swiper-pagination-bullet {
  background: #ccc;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.testimonials h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 50px;
}

.testimonials h5 {
  font-size: 16px;
  /* font-weight: bold; */
}

.swiper-slide .client-name {
  font-size: 16px;
  font-weight: bold;
}

.swiper-slide p {
  font-size: 16px;
}

/* faq sec css */
.faqs-section {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f6faff;
}

.faqs-title {
  margin-bottom: 30px;
}

.faqs-section .title {
  font-size: 35px;
  font-weight: bold;
}

.accordion-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-single {
  transition: all 0.4s;
  border-radius: 8px;
  border: 1px solid #c9c9c9;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.accordion-single h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.accordion-btn {
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  padding: 0;
  padding-right: 40px;
  cursor: pointer;
  position: relative;
}

.faqs-section .content-area {
  display: none;
  padding-top: 15px;
}

.accordion-btn::after {
  content: "\f101";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  color: #000000;
}

.accordion-single.active .accordion-btn::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-single.active {
  background-color: #f8f9fa;
}

.faqs-section .des {
  font-size: 16px;
  text-align: start;
}

.faqs-section ul {
  list-style: disc;
  margin-left: 20px;
}

.faqs-section .description p {
  font-size: 16px;
}

.row.justify-content-center {
  display: flex;
  justify-content: center;
}

.certificate-section .certifi-des {
  font-size: 16px;
}

/* packages sec css */
.packages-section {
  padding-top: 70px;
  padding-bottom: 70px;
  background: url(../images/aws/lpa-bg.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.packages-section .title {
  font-size: 35px;
  font-weight: bold;
}

.packages-section .desc {
  font-size: 16px;
  margin-bottom: 50px;
}

.pack-icon-bg {
  margin-bottom: 15px;
}

.package-details .sub-title {
  font-size: 30px;
  font-weight: bold;
}

.package-details .sub-des {
  font-size: 16px;
}

.package-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.content {
  width: 300px;
  margin: 20px;
}

.title-content {
  text-align: center;
}

.sub-title {
  margin-bottom: 10px;
}

.package-details {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  text-align: center;
}

.content {
  width: 300px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 2px solid #e0e0e0;
  padding-right: 20px;
}

.pack-icon-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.pack-icon-bg svg {
  width: 64px;
  height: 64px;
}

.title-content {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.sub-des {
  font-size: 16px;
  line-height: 1.5;
}

.animated-box {
  position: absolute;
  right: -4px;
  top: 0;
  width: 5px;
  height: 20px;
  background-color: #3498db;
  animation: moveBox 5s infinite;
}

@keyframes moveBox {

  0%,
  100% {
    top: 0;
  }

  50% {
    top: calc(100% - 20px);
  }
}

/* related course css */

.related-course {
  padding-top: 40px;
  padding-bottom: 70px;
}

.related-course .title {
  font-size: 35px;
  font-weight: bold;
}

.related-course .desc {
  font-size: 16px;
  margin-bottom: 30px;
}

.courseSwiper {
  width: 100%;
  height: 100%;
  padding: 10px !important;
}

.courseSwiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.courseSwiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 20px;
}

.related-course .swiper-slide {
  padding: 10px !important;
  max-height: 380px;
}

.related-course .card .card-title {
  font-size: 18px;
  font-weight: bold;
}

.related-course .card .card-img-top {
  border-radius: 15px;
}

.form-control:focus {
  box-shadow: none;
  /* font-size: 16px; */
}

/* side cta img */
.side-cta-img {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.cta-bg-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.curriculum-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.cta-content {
  position: absolute;
  top: 25%;
  padding: 10px;
  text-align: center;
  color: white;
  z-index: 1;
}

.cta-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.cta-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #e1e1e1;
}

.cta-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

.acnav__label--selected {
  background-color: #f0f0f0 !important;
  font-weight: bold !important;
  color: #007bff !important;
}

.acnav__list--level2 .acnav__label--selected {
  background-color: #e0e0e0 !important;
}

.acnav__list--level3 .acnav__link--selected {
  font-weight: bold !important;
  color: #007bff !important;
}

/* objective sec css */

.objective .title {
  font-weight: bold;
  font-size: 35px;
  margin: 20px 0px !important;
}

.objective ul {
  list-style-type: none;
  padding-left: 0;
}

.objective ul li {
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.objective .object-icon {
  background: linear-gradient(90deg, #dd4276 2.31%, #9553fd 100%);
  width: 30px;
  height: 30px;
  font-size: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
}

.objective .object-icon i {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.border-img {
  border-radius: 5px;
}

/* AWS Benefits Section Styles */
.aws-benefits-area {
  padding-top: 70px;
  padding-bottom: 80px;
  background-color: #f8f9fa;
}

.aws-benefits-area .col-md-5 {
  position: sticky;
  top: 150px;
  height: fit-content;
}

.aws-benefits__title-wrap {
  margin-bottom: 30px;
}

.section__title .title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
}

.aws-benefits__title-wrap p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tg-button-wrap {
  margin-top: 20px;
}

.aws-benefits__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.aws-benefits__item {
  background-color: #fff;
  border-radius: 4px;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  position: relative;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.aws-benefits__item::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 5px;
  content: "";
  background: #337ab7;
  transition: 0.3s;
  border-radius: 10px;
}

.aws-benefits__item:hover::after {
  height: 100%;
}

.aws-benefits__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.aws-benefits__item i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.aws-benefits__item .name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.aws-benefits__item .description {
  font-size: 16px;
  color: #666;
}

/* Icon colors */
.icon-future {
  color: #ff9900;
}

.icon-credibility {
  color: #232f3e;
}

.icon-job {
  color: #1ec9e1;
}

.icon-knowledge {
  color: #ff4f8b;
}

.icon-cloud {
  color: #00a1c9;
}

.icon-salary {
  color: #7cae40;
}

.icon-learning {
  color: #bd8b13;
}

.certificate-img p {
  font-size: 16px;
}

/* response type css */

.response-types-section {
  padding-top: 50px;
  padding-bottom: 70px;
}

.response-types-section .title {
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: bold;
}

.response-types-section .des {
  font-size: 16px;
  margin-bottom: 40px;
}

.response-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  overflow: hidden;
  position: relative;
}

.response-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
}

.response-card-content {
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.response-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.response-card-body p {
  font-size: 16px !important;
}

.response-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #ebf1f8 0%, #c2e9fb 100%);
  transform: rotate(-10deg);
  z-index: 1;
}

.response-card-img-wrapper {
  width: 170px;
  height: 170px;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
}

.response-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.response-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: rgb(9 206 108);
  z-index: 3;
}

/* exam overview section css */
.exam-overview-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.exam-overview-section .col-md-5 {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.exam-overview-section .title {
  margin-bottom: 40px;
  font-size: 35px;
  font-weight: bold;
}

.exam-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.table-row {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.table-label {
  flex: 0 0 40%;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}

.table-value {
  flex: 0 0 60%;
  font-size: 16px;
  color: #161616;
}

.course-curriculum .mob-no,
.course-curriculum .res-mob-no {
  font-size: 24px;
  color: #272c37;
  margin: 8px 0;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.res-mob-no a {
  color: #272c37;
  text-decoration: none;
}

.course-curriculum .top-linear-clr::before {
  content: "";
  display: inline-block;
  height: 7px;
  width: 92%;
  position: absolute;
  top: 0;
  right: 16px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  background-image: linear-gradient(90deg, #2d81f7, #6fe5be 99%);
}

/* responsive start */

@media screen and (max-width: 460px) {
  .banner-sec {
    padding: 35px 0 70px !important;
  }

  .breadcrumb-area .bread-cloud-img,
  .breadcrumb-area .bread-comptia-img,
  .breadcrumb-area .bread-microsoft-img,
  .breadcrumb-area .bread-aws-img {
    width: 80px !important;
    right: 28px !important;
    top: 200px !important;
  }

  .breadcrumb-area .spaces {
    margin-top: 20px;
  }

  .composition-8-image {
    width: 74.7936% !important;
  }

  .book-button-sec {
    display: block;
  }

  .training-btn {
    margin-bottom: 30px;
  }

  .book-button-sec .contact-no .mob-no {
    font-size: 22px;
  }

  .course-overview {
    padding-top: 25px !important;
    padding-bottom: 30px;
  }

  .course-registration-form::before {
    width: 92% !important;
  }

  .course-curriculum .top-linear-clr::before {
    width: 93% !important;
  }
}

@media screen and (max-width: 768px) {
  .banner-sec .col-md-6 {
    position: unset !important;
    top: unset !important;
    height: unset !important;
  }

  .exam-overview-section .col-md-5 {
    position: unset;
  }

  .certificate-img .col-md-6 {
    position: unset;
  }

  .cta-microsoft-img {
    margin-bottom: 10px;
  }

  .cta-comptia-img {
    width: 150px !important;
    margin-bottom: 10px;
  }

  .certificate-img .title,
  .certificate-img .certi-feat h4 {
    padding: 6px;
  }

  .aws-benefits-area .col-md-5 {
    position: unset;
    top: 150px;
  }

  .banner-sec .title {
    font-size: 35px;
    line-height: 40px;
  }

  .breadcrumb-area h1 {
    font-size: 36px;
  }

  .breadcrumb-area .bread-cloud-img,
  .breadcrumb-area .bread-comptia-img,
  .breadcrumb-area .bread-microsoft-img,
  .breadcrumb-area .bread-aws-img {
    width: 115px;
    right: 45px;
    top: 160px;
  }

  .right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .composition-8-image {
    width: 50.7936%;
    margin-left: 0;
    border-radius: 30px;
  }

  .composition-8-decoration-1 {
    top: -30px !important;
    left: 10px;
  }

  .learn-info {
    left: -32px;
  }

  .banner-sec {
    padding: 50px 0 70px;
  }

  .course-overview {
    padding-top: 30px;
  }

  .course-overview h2 {
    font-size: 30px !important;
    text-align: center;
  }

  .aws-features-wrapper {
    gap: 20px;
  }

  .training-option h2 {
    font-size: 30px;
    text-align: center;
  }

  .course-registration-form::before {
    width: 96%;
  }

  .objective ul {
    padding-bottom: 20px;
  }

  .training-option {
    padding-bottom: 10px;
  }

  .aws-benefits-area {
    padding-top: 40px;
  }

  .details-placement {
    margin-bottom: 30px;
  }

  .course-curriculum .top-linear-clr::before {
    width: 96%;
  }

  .packages-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .course-curriculum {
    padding-bottom: 0px;
  }

  .exam-overview-section .exam-img {
    margin-bottom: 20px;
  }

  .certificate-section {
    padding-top: 0px;
  }

  .cta-section h2 {
    font-size: 25px;
    line-height: 40px;
  }

  .certificate-img .certi-feat {
    margin-bottom: 20px;
  }

  .testimonials {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .faqs-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .certificate-img {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .related-course .title {
    font-size: 30px;
    text-align: center;
  }

  .related-course .desc {
    text-align: center;
  }

  .certificate-img .title {
    text-align: center;
    font-size: 30px;
  }

  .certificate-img p {
    text-align: center;
  }

  .batch-lists {
    margin-bottom: 0px;
  }

  .certificate-section .batch-item {
    margin-bottom: 20px;
  }

  .content-start {
    margin-bottom: 10px;
  }

  .exam-overview-section .btn-sec {
    text-align: center;
  }

  .batch-img img {
    width: 120px;
  }

  .course-curriculum .sec-title {
    text-align: center;
    font-size: 30px;
  }

  .faqs-section .title {
    font-size: 30px;
  }

  .cta-section {
    padding: 40px 0px;
  }

  .certificate-section .sec-title {
    font-size: 30px;
  }

  .exam-overview-section .title {
    font-size: 30px;
  }

  .packages-section .title {
    font-size: 30px;
  }

  .top-hiring .title {
    font-size: 30px;
    text-align: center;
  }

  .section__title .title {
    font-size: 30px;
  }

  .aws-benefits__title-wrap {
    text-align: center;
  }

  .accordion-btn {
    padding-right: 20px;
  }
}

@media screen and (max-width: 991px) {
  .cursor {
    display: none;
  }

  .cta-comptia-img {
    width: 150px !important;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1200px) {}

@media (min-width: 768px) {
  .mob-no {
    display: flex !important;
  }

  .res-mob-no {
    display: none !important;
  }

  /* .banner-sec .col-md-6 {
    position: unset !important;
    top: unset !important;
  } */
}

@media (max-width: 767px) {
  .mob-no {
    display: none !important;
  }

  .res-mob-no {
    display: flex !important;
  }

  .banner-sec .col-md-6 {
    position: unset !important;
    top: unset !important;
  }
}

/* responsive end */
.course-curriculum .desc {
  font-size: 16px;
  padding-top: 20px;
}

.course-curriculum .target-title {
  font-size: 18px;
  padding-top: 15px;
  font-weight: bold;
}

.course-curriculum p {
  font-size: 16px;
  padding-top: 10px;
}

.course-overview .features-list-icon {
  top: 0.185em;
  color: #119d60;
  background: #d4f5e7 !important;
}

.course-curriculum .features-list-icon {
  top: 0.185em;
  color: #119d60;
  background: #d4f5e7 !important;
}

.features-list-icon {
  font-size: 14px !important;
  width: 36px !important;
  height: 36px !important;
}

.aws-benefits-area .icon-communication {
  color: #4caf50;
}

.aws-benefits-area .icon-law {
  color: #9c27b0;
}

.aws-benefits-area .icon-marketing {
  color: #f44336;
}

.aws-benefits-area .icon-analysis {
  color: #ff9800;
}

.aws-benefits-area .icon-project {
  color: #2196f3;
}

.aws-benefits-area .icon-students {
  color: #673ab7;
}

.aws-benefits-area .icon-it {
  color: #009688;
}

.aws-benefits-area .aws-benefits__item {
  min-height: 270px !important;
}

.banner-sec ul li {
  line-height: 28px !important;
  align-items: start;
  justify-content: start;

}

.course-overview-list ul li {
  line-height: 25px;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.objective h6 {
  font-size: 20px !important;
  line-height: 30px !important;
}

.aws-benefits__item i {
  font-size: 38px !important;
}

.course-curriculum .des li {
  line-height: 30px !important;
}

.package-details .sub-title {
  font-size: 24px !important;
}

/* ---------microsoft--------- */
.cta-microsoft-img {
  width: 200px;
  object-fit: contain;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(30px);
  height: 80px;
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);

  border: 2px solid rgba(255, 255, 255, 0.18);
}

.cta-comptia-img {
  width: 160px;
  object-fit: contain;
  margin-bottom: 10px;
  backdrop-filter: blur(30px);
  height: 60px;
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);

  border: 2px solid rgba(255, 255, 255, 0.18);
}

/* -------- */
.training-option ul li {
  font-size: 16px !important;
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 20px;
}

.page-section p {
  font-size: 16px !important;
}

.option-details .features-list-icon {
  position: relative;
  top: 0.075em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  border-radius: 50%;
  padding: 15px;
  color: #119d60;
  background: #d4f5e7 !important;
}

.advantage-options li {
  display: flex;
  gap: 4px;
  margin: 20px;
}

.advantage-options .features-list-icon {
  position: relative;
  top: 0.075em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 18px;
  border-radius: 50%;
  padding: 15px;
  color: #119d60;
  background: #d4f5e7 !important;
}

.course-overview .features-list-icon,
.course-curriculum .features-list-icon {
  position: relative;
  top: 0.075em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  border-radius: 50%;
  padding: 15px;
  color: #119d60;
  background: #d4f5e7 !important;
}

/* ---------- */
@media screen and (max-width: 1199px) {
  .aws-benefits__item {
    background-color: #fff;
    border-radius: 4px;
    padding: 26px 8px !important;
  }
}

@media screen and (max-width: 991px) {
  .cta-content {
    top: 40% !important;
    padding: 10px 100px !important;
  }
}

@media screen and (max-width: 568px) {
  .cta-microsoft-img {
    width: 150px;
    margin-bottom: 10px;
  }

  .breadcrumb-area .bread-cloud-img {
    display: none;
  }

  .course-overview .sub-title {
    font-size: 26px !important;
  }

  .cta-content h3 {
    font-size: 28px !important;
  }

  .cta-content {
    top: 27% !important;
    padding: 10px !important;
    max-width: 360px;
    margin-left: 20px;
  }

  .breadcrumb-area .bread-cloud-img,
  .breadcrumb-area .bread-comptia-img,
  .breadcrumb-area .bread-microsoft-img,
  .breadcrumb-area .bread-aws-img {
    top: 274px !important;
  }

  .objective ul li {
    align-items: flex-start !important;
  }

  .composition-8-image img {
    height: 400px !important;
    object-fit: cover;
  }

  .mark-decoration-5:before {
    position: unset;
  }

  .banner-sec .col-md-6 {
    position: unset !important;
    top: unset !important;
    height: unset !important;
  }

  .scroll-top-btn {
    display: none;
  }
}

/* ----------google-cloud-courses----- */
.banner-sec .google-img {
  padding-top: 16px;
  padding-bottom: 16px;
  width: 150px;
  height: 105px;
}

.cta-google-icon {
  width: 130px !important;
  backdrop-filter: blur(30px);
  height: 80px;
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);

  border: 2px solid rgba(255, 255, 255, 0.18);
}

textarea.form-control.custom-input {
  height: 100%;
}

.aws-benefits-area .aws-benefits__item:nth-child(2) {
  margin-top: 15px;
}