@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background-color: var(--c1);
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  color: var(--c5);
  font-size: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  --c1: #5654a0;
  /* Purple */
  --c2: #1eb2e9;
  /* Blue */
  --c3: #fcc056;
  /* Yellow */
  --c4: #34327b;
  /* Dark Purple */
  --c5: #ffffff;
  /* White */
  --c6: #000000;
  /* Black */
  --f1: 'Bebas';
}

::selection {
  background: var(--c5);
  color: var(--c1);
}

/* INNER WRAPPER */

.inner-header {
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background-size: cover !important;
    z-index: -2;
    padding: 160px 0px;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
    color: var(--c5);
    font-size: 64px;
    font-weight: 700;
    font-family: var(--f1);
    letter-spacing: 5px;
}

/* WEB BTN CSS */

.web-btn {
  border: 1px solid var(--c5);
  padding: 8px 30px;
  font-family: var(--f1);
  font-size: 22px;
  border-radius: 50px;
  color: var(--c3);
  transition: all .5s;
}

.web-btn:hover {
  background-color: var(--c3);
  border-color: var(--c3);
  color: var(--c5);
}

/* HEADER */

.header {
  position: relative;
  padding: 20px 0px;
}

.head-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 27%;
}

.nav-bar nav ul {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.nav-bar nav ul li a {
  text-transform: uppercase;
  color: var(--c5);
  font-family: var(--f1);
  font-size: 23px;
  transition: all .5s;
  position: relative;
  overflow: hidden;
  display: block;
}

.nav-bar nav ul li a::before {
  position: absolute;
  content: '';
  bottom: 0;
  right: -2px;
  width: 0%;
  border: 1px solid var(--c2);
  transition: all .5s;
}

.nav-bar nav ul li a:hover::before {
  left: 0;
  right: unset;
  width: 100%;
}

.nav-bar nav ul li a:hover {
  color: var(--c2);
}

.head-btn {
  text-align: end;
}
.head-btn a.open-menu {
    color: var(--c3);
    font-size: 20px;
    margin-left: 15px;
}
.head-logo a {
  display: block;
  width: 110px;
  margin-left:auto;
}
.head-logo {
    position: relative;
}
.head-logo:before {
    content: "";
    position: absolute;
    top: -21px;
    left: 28px;
    width: 220px;
    height: 148px;
    background-color: var(--c5);
    border-radius: 0px 0px 110px 110px;
    z-index: -1;
}
/* SECTION BANNER */

.banner-img-main {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-left: 50px;
  align-items: end;
}

.banner-title h1 {
  font-family: var(--f1);
  font-size: 80px;
  color: var(--c5);
  margin-bottom: 40px;
}

.banner-img-main .banner-img:first-child>img,
.banner-img-main .banner-img:last-child>img {
  height: 350px;
  object-fit: cover;
}

.banner-img-main .banner-img:first-child,
.banner-img-main .banner-img:last-child {
  width: 55.7%;
}

.banner-img-main .banner-img:nth-child(2),
.banner-img-main .banner-img:nth-child(3) {
  width: 40%;
}

.banner-img-main .banner-img:nth-child(2)>img,
.banner-img-main .banner-img:nth-child(3)>img {
  height: 280px;
  object-fit: cover;
}

.banner-img img {
  transition: all .7s;
  border-radius: 30px;
}

.banner-img-main .banner-img:nth-child(3) {
  align-self: flex-start;
}

.main-home {
  /* height: 90vh; */
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0px 140px 0px;
}

.web-btn-two {
  padding: 15px 40px;
  background-color: var(--c3);
  color: var(--c5);
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50px;
  font-size: 18px;
  transition: all .5s;
}

.web-btn-two:hover {
  background-color: var(--c2);
  color: var(--c5);
}

.banner-title h1 span.blue,
.web-title h2 span.blue {
  color: var(--c2);
}

.banner-title h1 span.yellow,
.web-title h2 span.yellow {
  color: var(--c3);
}

.bann-socials {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  display: flex;
  flex-direction: column;
  gap: 115px;
  align-items: center;
}

.bann-socials span {
  writing-mode: sideways-lr;
  text-transform: uppercase;
  color: var(--c5);
  letter-spacing: 2px;
  font-size: 12px;
  position: relative;
}

.bann-socials span:before {
  position: absolute;
  content: "";
  height: 90px;
  border: 1px solid rgb(255 255 255 / 36%);
  top: -103px;
  left: 50%;
  transform: translate(-50%);
}

.bann-socials ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c5);
  transition: all .5s;
}

.bann-socials ul li {
  margin-bottom: 8px;
}

.bann-socials ul li:last-child {
  margin-bottom: 0px;
}

.bann-socials ul li a:hover {
  background-color: var(--c2);
  color: var(--c5);
  border-color: var(--c2);
}

img.bann-img-before {
  position: absolute;
  z-index: -1;
  height: auto !important;
  border-radius: 0px;
}

.banner-img {
  position: relative;
}

.banner-img-main .banner-img:first-child img.bann-img-before {
  left: -40px;
  top: -30px;
  width: 250px;
}

.banner-img-main .banner-img:nth-child(2) img.bann-img-before {
  top: -25px;
  right: -58px;
}

.banner-img-main .banner-img:nth-child(3) img.bann-img-before {
  left: -54px;
  top: -15px;
}

.banner-img-main .banner-img:last-child img.bann-img-before {
  bottom: -28px;
  right: -50px;
  width: 220px;
}

.cust-bann-img {
    transform: scale(1.3);
}

/* SECTION REAL CHANGE */

.web-title h2 {
  font-family: var(--f1);
  font-size: 80px;
  color: var(--c5);
  line-height: 1;
}

.real-change-content p {
  margin: 30px 0px;
}

.web-btn-two.reverse {
  background-color: var(--c2);
}

.web-btn-two.reverse:hover {
  background-color: var(--c3);
}

.real-change {
  position: relative;
  margin-bottom: 60px;
}

.real-change-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--c4);
  width: 60%;
  height: 550px;
  right: 0;
  z-index: -1;
}

.real-change-bg-inner {
  width: 40px;
  height: 100%;
  background-color: #ffffff8a;
  position: relative;
  left: -40px;
  border-radius: 20px 0px 0px 20px;
}

.real-change-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 95px;
    width: 34%;
}

.cust-spacing {
  padding: 70px 0px;
}

.web-title:has(p) h2 {
  margin-bottom: 20px;
}

/* SECTION OUR SERVICES */

.serv-btns {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.tit-gap {
  margin-bottom: 60px;
}

.service-item a {
  display: block;
  padding: 20px;
}

.service-item {
  position: relative;
}

.service-item img.mob-frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.service-item-content h3 {
  color: var(--c6);
  font-size: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  transition: all .5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.service-item-content {
  text-align: center;
  padding-top: 30px;
}

.service-item-content img {
  width: 50px;
  margin: 0 auto;
}

.service-item-content h3:hover {
  color: var(--c2);
}

.our-sev-box {
    background-color: var(--c5);
    border-radius: 20px;
    height: 100%;
    padding: 50px;
    position: relative;
}

.our-sev-box h3 {
  font-weight: 700;
  font-size: 46px;
  color: var(--c6);
  margin-bottom: 15px;
}

.our-sev-box p {
  color: var(--c6);
  font-size: 18px;
}

.service-arrow-btn {
    display: flex
;
    gap: 10px;
    justify-content: end;
    margin-top: 60px;
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.service-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid var(--c6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .5s;
}

.service-arrow:hover {
  background-color: var(--c6);
  color: var(--c5);
}

/* SECTION COURSES */

.both-space {
  margin: 50px 0px;
}

.course-item-img a {
  display: block;
}

.course-item-img img {
  height: 250px;
  object-fit: cover;
  transition: all .7s;
}

.course-item {
  padding: 25px 25px 50px 25px;
  background-color: var(--c5);
  border-radius: 20px;
}

.course-item-img {
  border-radius: 20px;
  overflow: hidden;
}

.course-item-img:hover img {
  transform: scale(1.1);
}

.course-item-content h3 a {
    color: var(--c6);
    font-size: 26px;
    font-family: var(--f1);
    transition: all .5s;
    margin: 20px 0px 15px 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.course-item-content h3 a:hover {
  color: var(--c2);
}

.course-item-content p {
  color: var(--c46);
  font-size: 16px;
}

.course-arrow,
.class-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid var(--c5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c5);
  transition: all .5s;
  cursor: pointer;
}

.course-arrow:hover,
.class-arrow:hover {
  background-color: var(--c5);
  color: var(--c6);
}

.courses-arrow {
  display: flex;
  gap: 10px;
  justify-content: end;
}

/* SECTION MASTERCLASS */

.class-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.class-button-prev {
  left: -60px;
}

.class-button-next {
  right: -60px;
}

.author-main {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 5px 0px 15px 0px;
}

.author-main img {
  width: 60px;
}

.author-name h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c6);
}

.author-name span {
  font-size: 15px;
}

.master-class .course-item {
  padding: 25px;
}

.master-class .web-title p {
  text-transform: uppercase;
}

/* SECTION FAQS */

.serv-faqs .accordion-item {
  margin-bottom: 20px;
  border: 2px solid var(--c2);
  background-color: unset;
  border-radius: 50px;
  overflow: hidden;
}

.serv-faqs .accordion-item .accordion-button {
  box-shadow: unset;
  font-size: 20px;
  padding: 20px 30px;
  font-weight: 500;
  background-color: unset;
  color: var(--c5);
}

.serv-faqs .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--c2);
  color: var(--c5);
}

.serv-faqs .accordion-item .accordion-button::after {
  background-image: unset;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  transform: unset;
}

.serv-faqs .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.serv-faqs .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-radius: 20px;
}

.serv-faqs .accordion-item .accordion-body p {
  font-size: 18px;
}

/* SECTION TEAM */

.team-item {
  border: 1px solid #ffffff2e;
  background-color: #5a58ac;
  border-radius: 15px;
  transition: all .5s;
  margin-top: 60px;
}

.team-item-img {
  width: 120px;
  margin: -60px auto 0px auto;
}

.team-item-content {
  text-align: center;
  color: var(--c5);
  padding: 30px 20px;
}

.team-item-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-item:hover {
  border-color: var(--c5);
}

/* SECTION TESTIMONIAL */

.testi-items-main {
  background-color: var(--c4);
  padding: 50px;
  border-radius: 20px;
}

.testi-item p {
  margin-bottom: 50px;
}
.testi-item a {
    display: inherit;
    color: red;
    font-size: 20px;
    margin-top: 15px;
    background-color: var(--c5);
    line-height: 0px;
    width: 46px;
    height: 42px;
    text-align: center;
    align-content: center;
    border-radius: 50%;
}

.testi-item h3 {
  color: var(--c2);
  font-weight: 700;
  margin-bottom: 5px;
}

.testi-item span {
  color: var(--c5);
}

.testi-item {
  position: relative;
}

.testi-item img {
  position: absolute;
  bottom: 0;
  width: 60px;
  right: 30px;
}

.testi-img {
    width: 470px;
    position: relative;
    left: -54px;
    z-index: -1;
}

.custom-dots {
    margin-top: 50px;
    display: flex
;
    justify-content: center;
    position: unset;
    gap: 15px;
}

.custom-dots span {
  margin: 0px !important;
  display: inline-block !important;
  background-color: var(--c5);
}
section.testimonial .row:nth-child(1) {
    margin-bottom: 40px;
}
/* SECTION NEWSLETTER */

.news-logo a {
  display: block;
  width: 120px;
  margin: 0 auto;
}

.newsletter-box span {
  font-family: var(--f1);
  color: var(--c5);
  font-size: 26px;
  display: inline-block;
  margin: 30px 0px 10px 0px;
}

.newsletter-box form input[type="email"] {
  width: 100%;
  border-radius: 50px;
  border: 2px dashed var(--c2);
  padding: 20px 210px 20px 80px;
  outline: 0;
}

.newsletter-box form {
  position: relative;
  margin-top: 50px;
}

.newsletter-box form input[type="submit"] {
  position: absolute;
  width: 160px;
  background-color: #454444;
  border: 0;
  color: var(--c5);
  text-transform: uppercase;
  height: 50px;
  border-radius: 50px;
  font-size: 16px;
  transition: all .5s;
  font-weight: 600;
  right: 10px;
  top: 10px;
}

.newsletter-box form input[type="submit"]:hover {
  background-color: var(--c2);
}

.newsletter-box form i {
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 25px;
  color: var(--c2);
}

.foot-socials ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  background-color: var(--c1);
  padding: 0px 20px;
}

.foot-socials ul li a {
  width: 50px;
  height: 50px;
  background-color: var(--c5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .5s;
  color: #454444;
}

.foot-socials ul li a:hover {
  background-color: var(--c2);
  color: var(--c5);
}

.foot-socials ul::before {
  position: absolute;
}

.foot-socials {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 40px 0px;
}

.foot-socials::before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(50%);
  border: 1px solid #7b7aa3;
  width: 100%;
  z-index: -1;
}

.foot-links ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.foot-links ul li a {
  color: var(--c5);
  transition: all .5s;
}

.foot-links ul li a:hover {
  color: var(--c2);
}

.foot-contact-info ul li {
    color: var(--c5);
    text-align: center;
    font-size: 25px;
}

.foot-contact-info ul li a {
  font-size: 34px;
  color: inherit;
  font-weight: 600;
  transition: all .5s;
  margin-top: 4px;
}

.foot-contact-info ul li a:hover {
  color: var(--c2);
}

.foot-contact-info {
  margin-bottom: 30px;
}

.copyrights {
  padding: 20px 0px;
  text-align: center;
  border-top: 2px solid #7b7aa3;
  margin-top: 30px;
}

.copyrights p {
  font-size: 16px;
}

.newsletter-box {
  position: relative;
}

img.news-one-img {
  position: absolute;
  top: 20px;
  right: -70px;
  width: 350px;
}

img.news-two-img {
  width: 400px;
  position: absolute;
  top: -40px;
  left: -160px;
}

/* LOADER */

#loader {
  position: fixed;
  inset: 0;
  background: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.text-container {
  display: flex;
  gap: 0.3em;
}

.text-container span {
  opacity: 0;
  transform: translateX(-20px);
  color: var(--c5);
  font-size: 4rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: popUp 0.4s forwards ease-out;
  font-weight: 600;
}

@keyframes popUp {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#loader.fade-out {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.text-container span:nth-child(1) {
  animation-delay: 0.05s;
}

.text-container span:nth-child(2) {
  animation-delay: 0.12s;
}

.text-container span:nth-child(3) {
  animation-delay: 0.19s;
}

.text-container span:nth-child(4) {
  animation-delay: 0.26s;
}

.text-container span:nth-child(5) {
  animation-delay: 0.33s;
}

/* space */
.text-container span:nth-child(6) {
  animation-delay: 0.40s;
}

.text-container span:nth-child(7) {
  animation-delay: 0.47s;
}

.text-container span:nth-child(8) {
  animation-delay: 0.54s;
}

.text-container span:nth-child(9) {
  animation-delay: 0.61s;
}

.text-container span:nth-child(10) {
  animation-delay: 0.68s;
}

/* SECTION TESTIMONIAL */

.cust-testi-item {
    background-color: var(--c4);
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    height: 100%;
    transition: all .5s;
}
.cust-testi-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 6px solid var(--c1);
}
.cust-testi-img {
    margin: -80px 0px 20px 0px;
}
.cust-testi-content p {
    font-size: 18px;
}
.cust-testi-content h3 {
    color: var(--c2);
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0px 8px 0px;
}
.cust-testi-content span {
    color: var(--c5);
}
.cust-testi-item:hover {
    box-shadow: 0px 0px 10px 0px var(--c2);
}
.testimonial-sec .container .row:nth-child(2) {
    margin-top: 50px;
    row-gap: 75px;
}
.footer {
    border-top: 1px solid rgb(255 255 255 / 10%);
}
.double-spacing {
    padding: 100px 0px;
}

/*MASTERCLASSES PAGE*/

.cust-gap {
    row-gap: 24px;
}
.btn-gap {
    margin-top: 40px;
}

/*SINGLE PAGE CSS*/

.single-cont-inner {
    display: flex;
    gap: 25px;
	margin-top: 25px;
    align-items: center;

}
.single-inner-img, .single-inner-list {
    width: 50%;
}
.single-content-img img {
    height: 450px;
    object-fit: cover;
    transition: all .8s;
}
.single-content h4 {
    color: #fff;
    padding: 25px 0;
    font-family: var(--f1);
    font-size: 30px;
}
.single-content-img {
    margin-bottom: 30px;
}
.single-content-main p {
    margin-bottom: 15px;
    font-size: 18px;
}
.single-content-main h3 {
    font-size: 22px;
    color: var(--c2);
    margin-bottom: 15px;
    font-weight: 600;
}
.single-inner-list ul li {
    color: var(--c2);
    margin-bottom: 15px;
    position: relative;
    padding-left: 26px;
}
.single-w-date h3 {
    color: var(--c3);
    font-weight: 700;
    margin-bottom: 8px;
}
.single-w-date {
    margin: 30px 0;
}
.single-inner-list ul li:before {
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 13px;
    color: var(--c3);
    content:
    "\f00c";
    font-family: "Font Awesome 5 Pro";
}
.single-inner-img, .single-content-img {
    overflow: hidden;
	border-radius: 8px;
}
.quote-form-main {
    padding: 25px;
    background-color: var(--c4);
    border-radius: 5px;
}
.quote-form-main h2 {
    font-size: 34px;
    color: var(--c5);
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--f1);
}
.quote-form-item input {
    background: unset;
    border: 1px solid #ffecec26;
    padding: 12px 15px;
    border-radius: 4px;
    outline: 0;
    width: 100%;
    color: var(--c5);
    transition: all .5s;
}
.quote-form-item {
    margin-bottom: 15px;
}
.quote-form-item input:focus {
    border-color: var(--c2);
}
.quote-form-item input::placeholder {
    color: #ffecec8c;
    font-size: 15px;
}
.quote-submit input {
    padding: 10px 20px;
    background-color: var(--c5);
    border: 0;
    outline: 0;
    color: var(--c1);
    font-weight: 800;
    border-radius: 4px;
    transition: all .7s;
    width: 100%;
    text-transform: uppercase;
}
.quote-submit input:hover {
    background-color: var(--c2);
    color: var(--c5);
}
.quote-submit {
    text-align: center;
    margin-top: 20px;
}
.side-links-main {
    margin-bottom: 30px;
}
.single-content h2 {
        color: var(--c5);
    font-family: var(--f1);
    font-size: 34px;
    margin-bottom: 15px;
}
.single-content h2 span{
    color:var(--primary);    
    font-family: var(--f1);
}
.single-content-img:hover img {
    transform: scale(1.1);
}
.single-sidebar {
    position: sticky;
    top: 0;
}
.single-content ul li, .single-content ol li {
    line-height: 1.6;
    color: var(--c3);
    font-size: 18px;
    list-style: disc;
}
.single-content ul, .single-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}
.single-content ol li{
    list-style: auto;
}
.single-masterclasses .header, .single-masterclasses .inner-header {
    overflow-x: clip;
}
.single-content-main .row:nth-child(even) {
    flex-direction: row-reverse;
}
.single-content-img {
    margin-right: 40px;
}
.single-content-main .row:nth-child(even) .single-content-img {
    margin-right: 0px;
    margin-left: 40px;
}
section.single-banner {
    position: relative;
    background-image: url(https://dev-give-learn.pantheonsite.io/wp-content/uploads/2025/06/bann4-scaled.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
section.single-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c6);
    opacity: 0.5;
}
.single-content-img.single-course-img img {
    height: 380px;
}
.single-banner-content{
    position:relative;
}

.single-banner-content p{
    margin:30px 0;
}

/*GIVING BACK THROUGH LEARNING */
.buyone-giveone iframe {
    overflow: hidden;
    border-radius: 8px;
    width:100%;
}
.library-widgets-content h4 {
    color: var(--c2);
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 4px;
}
.library-widgets-content {
    text-align: center;
    padding-top: 15px;
}
.library-widgets-img {
    margin-bottom: 0px;
    border-radius: 8px;
    overflow: hidden;
}
.library-widgets-content p {
    font-size: 16px;
    color: var(--c5);
}
.library-widgets-items {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.library-widgets-back {
    transition: all .4s ease-in;
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c2);
    padding: 20px;
    border-radius: 8px;
}
.library-widgets-items:hover .library-widgets-back {
    bottom: 0;
}
.library-widgets-back p {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
}
.library-widgets-main {
    padding: 20px;
    background-color: var(--c4);
    border-radius: 8px;
    box-shadow: 0px 0px 15px -5px var(--c4);
    height: 100%;
}
.library-widgets-items a {
    display: block !important;
}
.library-widgets-content a {
    color: var(--c2);
    font-size: 20px;
    font-weight: 700;
    text-decoration: underline;
    padding-top: 18px;
}



/*BESPOKE PROGRAMMES */
section.bespoke-banner {
    padding: 120px 0px 140px 0px;
}
.ground-up-item {
    display: flex;
    gap: 15px;
}
.checked-item i {
    font-size: 24px;
    color: var(--c2);
    margin-top: 5px;
}
.ground-up-text p {
    font-size: 20px;
    color: var(--c6);
}
.ground-up-content h2 {
    font-weight: 800;
    color: var(--c5);
    margin-bottom: 30px;
    font-size: 46px;
    line-height: 1.1;
}
.ground-up-box {
    background-color: var(--c5);
    padding: 20px 20px;
    border-radius: 6px;
    box-shadow: 0px 0px 11px 0px #000;
    width: 450px;
    z-index: 9;
    position: relative;
}
.ground-up-main {
    position: relative;
}
.ground-up-content {

}




section.single-banner.bespoke-inner-banner {
    padding: 200px 0px;
}
.bespoke-inner-banner .single-banner-content h2 {
    font-size: 70px;
    line-height: 1.3;
}
section.ground-up.first-ground ,section.ground-up.lasting-change {
    background-color: var(--c4);
}
section.ground-up.immersive .ground-up-content.immersive-interactive {
    margin-left: 50px;
}
.bespoke-banner .circle-1 {
    width: 400px;
    height: 400px;
    left: 740px;
    top: 199px;
    animation: 20s linear infinite alternate nudge1;
}
.bespoke-banner .circle-2 {
  width: 400px;
  height: 400px;
  top: 166px;
  left: -130px;
  animation: 20s linear infinite alternate nudge2;
}
.bespoke-banner .circle-4 {
  right: 600px;
  top: 500px;
  width: 120px;
  height: 120px;
  animation: 20s linear infinite alternate nudge2;
}
.bespoke-banner .circle-3 {
  right: 0;
  top: -28px;
  width: 400px;
  height: 400px;
  animation: 20s linear infinite alternate nudge3;
}
.bespoke-banner .circle {
  opacity: 0.4;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle 800px at 75% -25%,
    var(--c4) 0,
    var(--c4) 100%
  );
}
@keyframes nudge1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}
@keyframes nudge2 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 150px);
  }

  80% {
    transform: translate(-150px, 0);
  }
}
@keyframes nudge3 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}
.amibtion-image-main {
    margin-left: 40px;
    position: relative;
}
.ambi-img-content P {
    font-size: 22px;
    color: var(--c5);
    line-height: 1.4;
    font-weight: 700;
}
.ambi-img-content P span{
    color:var(--c2);
}
.ambi-img-content {
    width: 100%;
    text-align: center;
    z-index: 9;
    margin-top: 80px;
}
.ambi-img-content h4 {
    color: var(--c2);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 28px;
    margin: 20px 0px 10px 0px;
}

/*.amibtion-image-main:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(9deg, black, transparent);*/
/*    opacity: 0.5;*/
/*}*/
.ambi-img-content h5 {
    color: var(--c3);
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 24px;
}
.ambi-img-content img {
    width: 130px;
    margin: 0 auto;
}
.ambi-author {
    position: absolute;
    bottom: 0;
    width: 330px;
    left: 0;
}
.ambi-author img {
    filter: grayscale(1);
}
.city-img-main {
    position: relative;
}
.quote-img {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 160px;
}
.highlight-widgets {
    background-color: var(--c1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
}
.high-widget-content p {
    color: var(--c5);
    font-size: 18px;
    line-height: 1.6;
}
.high-widget-img {
    width: 100px;
    margin: 0 auto 20px auto;
    height: 100px;
    background-color: var(--c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 17px -2px var(--c4);
}
.high-widget-img img {
    width: 50%;
}
.high-widget-content h4 {
    color: var(--c5);
    font-weight: 800;
    margin-bottom: 10px;
}
section.solution-highlights {
    background-color: var(--c4);
}
.boardroom-img img {
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition:all.5s;
}

.boardroom-img:hover img {
    transform: scale(1.1);
}
.boardroom-img {
    overflow: hidden;
    border-radius: 8px;
}

section.casestudy-banner {
    position: relative;
}
.casestudy-banner-img img {
    height: 700px;
    object-fit: cover;
}
.casestudy-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 70px 0;
}
.casestudy-logo {
    display: flex
;
    gap: 20px;
    align-items: center;
}
section.casestudy-banner:before {
    width: 65%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--c1);
    opacity: 0.7;
}
.eaton {
    width: 300px;
    padding: 50px 0px 10px 0px;
}
.eaton-title.web-title h2 {
    font-size: 100px;
}
.eaton-title {
    position: relative;
}
.eaton-title:before {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 34%;
    height: 2px;
    background-color: var(--c5);
    content: "";
}
.casestudy-logo img {
    width: 90px;
}
.casestudy-logo h4 {
    color: var(--c5);
    font-size: 40px;
}
.eaton-last-line h4 {
    color: var(--c5);
    font-size: 24px;
    margin-bottom: 4px;
}
.eaton-last-line {
    padding-top: 120px;
}
.amibtion-image-main.atp-tour-content {
    overflow: hidden;
}
.amibtion-image-main.atp-tour-content .ambi-author {
    width: 480px;
    left: -70px;
}
.amibtion-image-main.atp-tour-content .ambi-author img {
    filter: unset;
}
.amibtion-image-main.atp-tour-content .quote-img {
    top: 24px;
    right: 20px;
}

.amibtion-image-main.atp-tour-content .ambi-img-content img {
    width: 100px;
}
section.casestudy-banner.atp-tour-banner .eaton {
    width: 220px;
}
.programmes-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}
.programmes-item {
    background-color: var(--c4);
	height: 100%;
	padding: 25px;
}

.programmes-item .course-item-content {
    color: var(--c5);
}

/*.programmes-logo.porche-logo {*/
/*    width: 55px;*/
/*}*/
/* .course-item.programmes-item.eaton-item {
    padding: 35px 25px 50px 25px;
} */


/* RESPONSIVE MENU CSS */

.ham-menu-btn a i, .mob-call-btn a i {
    display: block;
}
.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(20 20 20 / 70%);
    z-index: 99999;
    transition: all .5s;
}
.responsive-menu-inner {
    height: 100%;
    padding: 30px;
    position: relative;
    width: 80%;
    background-color: var(--c5);
    left: -100%;
}
.responsive-logo-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.respon-cross a,
.respon-cross a i {
    display: block;
}
.respon-cross a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c4) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--c4) !important;
    transition: all .5s;
}
.respon-cross a:hover {
    transform: rotate(90deg);
    color: var(--c1) !important;
    border-color: var(--c1);
}
.respon-logo a {
    display: block;
}
.respon-logo {
    width: 100px;
}
.responsive-links ul li a {
    color: var(--c4) !important;
    transition: all .5s;
    font-size: 18px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #eee;
    padding: 8px 0px;
}
.responsive-links {
    margin-top: 50px;
    overflow-y: auto;
    height: calc(100vh - 232px);
}
.responsive-links ul li ul {
    display: none;
}
.responsive-links ul li a:hover {
    color: var(--c1);
}
.responsive-links ul li ul li a {
    padding-left: 40px;
    font-size: 22px;
}
.responsive-links ul li:has(ul)::before {
    position: absolute;
    content: "\f067";
    top: 16px;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-size: 22px;
    color: var(--c2);
}
.responsive-links ul li {
    position: relative;
}
.responsive-links ul li.active::before {
    content: "\f068";
    color: var(--c1);
}
.responsive-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 10px 0px;
}
.responsive-socials ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.responsive-socials ul li a {
    color: var(--c5) !important;
    font-size: 18px;
}
.responsive-menu.active {
    left: 0;
}
.responsive-menu.active .responsive-menu-inner {
    left: 0;
    transition-delay: .3s !important;
    transition: all .7s;
}
body.stop-scroll {
    overflow-y: hidden;
}
.ham-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}
.ham-menu-btn a, .mob-call-btn a {
    color: var(--c1);
    font-size: 26px;
	display: inline-block;
}
.overflow-clip {
    overflow: clip;
}
.responsive-links ul li:last-child a {
    border: unset;
}


/*BACK TO TOP*/

#backToTopBtn {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 100;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: var(--c2);
    color: white;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
    line-height: 1;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTopBtn:hover {
  background-color: var(--c3);
}


/*NEWSLETTER */

.newsltter-sec iframe {
    width: 100%;
    display: block;
    height: 780px;
    overflow: hidden !important;
}

