/**
* Theme Name: Goya Child Theme
* Description: This is a child theme of Goya, automatically generated.
* Author: <a href="https://themeforest.net/user/everthemess">Everthemes</a>
* Template: goya
* Version: 1.0.8.8
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@font-face {
    font-family: 'Museo-thin';
    src: url('fonts/Museo-100.eot');
    src: local('fonts/Museo 100'), local('fonts/Museo-100'),
        url('fonts/Museo-100.eot?#iefix') format('embedded-opentype'),
        url('fonts/Museo-100.woff2') format('woff2'),
        url('fonts/Museo-100.woff') format('woff'),
        url('fonts/Museo-100.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Museo-light';
    src: url('fonts/Museo-300.eot');
    src: local('fonts/Museo 300'), local('fonts/Museo-300'),
        url('fonts/Museo-300.eot?#iefix') format('embedded-opentype'),
        url('fonts/Museo-300.woff2') format('woff2'),
        url('fonts/Museo-300.woff') format('woff'),
        url('fonts/Museo-300.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo-light-italic';
    src: url('Museo-300Italic.eot');
    src: local('fonts/Museo 300 Italic'), local('fonts/Museo-300Italic'),
        url('fonts/Museo-300Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Museo-300Italic.woff2') format('woff2'),
        url('fonts/Museo-300Italic.woff') format('woff'),
        url('fonts/Museo-300Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Museo-semibold';
    src: url('fonts/Museo-500.eot');
    src: local('fonts/Museo 500'), local('fonts/Museo-500'),
        url('fonts/Museo-500.eot?#iefix') format('embedded-opentype'),
        url('fonts/Museo-500.woff2') format('woff2'),
        url('fonts/Museo-500.woff') format('woff'),
        url('fonts/Museo-500.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo-bold';
    src: url('fonts/Museo-700.eot');
    src: local('fonts/Museo 700'), local('fonts/Museo-700'),
        url('fonts/Museo-700.eot?#iefix') format('embedded-opentype'),
        url('fonts/Museo-700.woff2') format('woff2'),
        url('fonts/Museo-700.woff') format('woff'),
        url('fonts/Museo-700.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Museo-black';
    src: url('fonts/Museo-900.eot');
    src: local('fonts/Museo 900'), local('fonts/Museo-900'),
        url('fonts/Museo-900.eot?#iefix') format('embedded-opentype'),
        url('fonts/Museo-900.woff2') format('woff2'),
        url('fonts/Museo-900.woff') format('woff'),
        url('fonts/Museo-900.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/********** Fixes **********/
.et-video-lightbox.lightbox-image .et-video-icon {
cursor:pointer;
}
@media only screen and (max-width: 991px) {
.swap-on-tablet {
display: flex !important;
flex-direction: column-reverse;
}
}
@media only screen and (max-width: 767px) {
.swap-on-mobile {
display: flex !important;
flex-direction: column-reverse;
}
}
/********** Fixes End **********/

/********** Preloader **********/
.preloader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.preloader-wrapper {
  position: relative;
  width: 200px;
  height:200px;
}
.preloader-wrapper:before {
content: " ";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-image: url(https://theseasonsartclass-com.dev3.vooba.dev/wp-content/uploads/2023/11/logo-lines.png);
width: 140px; 
height:65px;; 
background-repeat: no-repeat;
background-size: 140px !important;
z-index: -1;
}
.preloader-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(78, 69, 156, 0.15);
}

.preloader-line-mask {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
  -webkit-transform-origin: 100px 100px;
  transform-origin: 100px 100px;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), black);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), black);
  -webkit-animation: preloadSpinner 1.2s infinite linear;
  animation: preloadSpinner 1.2s infinite linear;
}

.preloader-line {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #4e459c;
}

@-webkit-keyframes preloadSpinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes preloadSpinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.preloader-dark .preloader-border {
  box-shadow: inset 0 0 0 2px rgba(32, 32, 32, 0.1);
}

.preloader-dark .preloader-line {
  box-shadow: inset 0 0 0 2px rgba(32, 32, 32, 0.7);
}
/********** Preloader End **********/

/********** Typography **********/
h1, h2, h3, h4,
.h1, .h2, .h3, .h4{
font-family: 'Museo-bold', sans-serif;
font-weight: normal;
}
.thin h1, .thin h2, .thin h3, .thin h4,
.h1.thin, .h2.thin, .h3.thin, .h4.thin{
font-family: 'Museo-thin'!important;
font-weight: normal;
}
body {
font-family: 'Museo-light', sans-serif;
font-weight: normal;
font-size:18px!important;
line-height: 1.5;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
h1, .h1 {
font-size: 3.8vw;
font-size: clamp(2.2rem,3.8vw,3.5rem);
line-height: 1.2;
margin: 0;
}
h2, .h2 {
font-size: 3.5vw;
font-size: clamp(1.8rem,3.5vw,2.5rem);
line-height: 1.2;
letter-spacing:-0.7px;
}

h3, .h3 {
font-size: 4.5vw;
font-size: clamp(1.5rem,4.5vw,2.1rem);
line-height: 1.2
}
h4, .h4 {
font-size: 4vw;
font-size: clamp(1.45rem,4vw,1.7rem);
line-height: 1.5
}
.lead-bold{
font-family: 'Museo-bold', sans-serif;
font-size: 4vw;
font-size: clamp(1.15rem,4vw,1.4rem);
}
.lead{
font-size: 1.3rem
}
.text-link a{
font-family: 'Museo-bold', sans-serif;
color:#8d288e;
}
.country-name h1{
color: #ffffff;
text-transform:uppercase;
font-size:13px;
font-family: 'Inter', sans-serif;
font-weight:600;
letter-spacing:1.5px
}
.hentry ul:not([class]){
	padding-left:0;
}
@media all and (max-width: 767px) {
.lead{
font-size: 1.15rem
}
}
/********** Typography End **********/

/********** Header **********/
@media (min-width: 1280px) {
.header-full-width:not(.checkout-distraction-free) .top-bar .container,
.header-full-width:not(.checkout-distraction-free) .site-header .container,
.header-full-width .et-header-menu > li.menu-item-mega-parent > .sub-menu {
padding-left: 30px;
padding-right: 30px;
}
}
@media (min-width: 1366px) {
.header-full-width:not(.checkout-distraction-free) .top-bar .container,
.header-full-width:not(.checkout-distraction-free) .site-header .container,
.header-full-width .et-header-menu > li.menu-item-mega-parent > .sub-menu {
padding-right: 50px;
padding-left: 50px;
}
}
.header .logolink .logoimg.bg--dark, .header .logolink .logoimg.bg--alt {
opacity: 1;
display: block;
max-width: none;
width: auto;
}

.header .logolink .logoimg, .header .logolink img {
 display: none;
opacity:1
}

.header_on_scroll:not(.megamenu-active) .site-header .logolink img{
margin-left:15px;
}

.header .et-header-menu > li> a{
text-transform:uppercase;
font-size:13px;
font-family: 'Inter', sans-serif;
font-weight:600;
letter-spacing:1.5px
}
.header .social-icons li a {
color: #ffffff;
}
.header_on_scroll .social-icons li a {
color: #1D1D1D;
}
.bars svg{
width:36px;
height:36px;
stroke-width: 1.5px;
stroke-linecap:square;
}
.side-panel .et-close {
width: 50px;
height: 50px;
}
.side-panel .et-close:before, .side-panel .et-close:after {
background-color: #ccc;
}
.menu-sliding > li,
.sliding-menu .sliding-menu-panel-root,
.sliding-menu .sliding-menu-top {
letter-spacing:1px;
font-weight: 500;
font-size: 1em;
}
.click-capture {
background: rgba(0,0,0,0.7);
}
.et-header-text.text-1{
width:160px;
display:none;
margin-left:20px;
}
.et-header-text.text-2{
width:180px;
margin-left:20px;
opacity:0.75;
}
.header_on_scroll:not(.megamenu-active) .et-header-text.text-2{
display:none;
}
.header_on_scroll:not(.megamenu-active) .et-header-text.text-1{
display:inherit;
}
.mobile-menu li a{
font-family: 'inter', sans-serif;
color:rgba(255,255,255,0.7)!important;
}
@media only screen and (max-width: 1279px) {
.header-mobile {
    display: block;
}
.header-main{
display: none!important;
}
#mobile-menu:not(.desktop-active) {
visibility: visible;
opacity: 1;
}
.header_on_scroll:not(.megamenu-active) .site-header .logolink img{
margin-left:0;
}
}
@media only screen and (min-width: 1280px) {
#mobile-menu:not(.desktop-active) {
    visibility: hidden;
    opacity: 0;
}
}
/********** Header End **********/

/********** White Header **********/
.page-header-regular .site-header .et-header-text.text-1{
width:180px;
display:inherit;
margin-left:20px;
}
.header_on_scroll:not(.megamenu-active) .site-header .et-header-text.text-1{
width:160px;
}
.page-header-regular .site-header .et-header-text.text-2{
display:none;
}
.page-header-regular .social-icons li a {
color: #1d1d1d;
}
/********** White Header End **********/

/********** Hero **********/
.homepage-banner:after {
content: " ";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgb(0,0,0);
background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.homepage-banner-content{
position:absolute;
top:50%;
left:300px;
z-index: 2;
transform: translateY(-50%);
width: 680px;
}
.homepage-banner-content .h2{
color: #ffffff;	
margin:50px 0 40px 0;
}
.homepage-banner-content .lead{
color: #ffffff;
font-size: 24px;
}
.homepage-banner-content .lead span{
display:block;
}
.homepage-banner-content a{
color: #ffffff;
transition: all .3s ease-in-out;
border-bottom:solid 1px#ffffff;
}
.homepage-banner-content a:hover{
color: #ffffff;
opacity:0.5;
}
.country-name{
color: #ffffff;
text-transform:uppercase;
font-size:13px;
font-family: 'Inter', sans-serif;
font-weight:600;
letter-spacing:1.5px
}
.country-name h1{
color: #ffffff;
text-transform:uppercase;
font-size:13px;
font-family: 'Inter', sans-serif;
font-weight:600;
letter-spacing:1.5px
}
@media all and (max-width: 1860px) {
.homepage-banner-content{
left:250px;
width: 680px;
}
}
@media all and (max-width: 1750px) {
.homepage-banner-content{
left:200px;
width: 610px;
}
}
@media all and (max-width: 1500px) {
.homepage-banner-content{
left:160px;
width: 610px;
margin-top:50px;
}
.homepage-banner-content .h2{
color: #ffffff;	
margin:30px 0 20px 0;
}
}
@media all and (max-width: 1300px) {
.homepage-banner-content{
left:100px;
width: 580px;
}
}
@media all and (max-width: 1279px) {
.homepage-banner-content{
margin-top:0;
}
}
@media all and (max-width: 1199px) {
.homepage-banner-content{
left:50px;
width: 540px;
}
}
@media all and (max-width: 1099px) {
.homepage-banner-content{
left:50px;
width: 520px;
}
}
@media all and (max-width: 1024px) {
.homepage-banner-content{
left:50px;
width: 500px;
}
}
@media all and (max-width: 950px) {
.homepage-banner-content{
left:50px;
width: 500px;
margin-top:100px;
}
}
@media all and (max-width: 767px) {
.homepage-banner-content{
left:0;
width: 100%;
margin-top:100px;
padding-left:30px;
padding-right:30px;
}
.homepage-banner-content .lead{
font-size: 18px;
}
.homepage-banner:after {
content: " ";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0) 100%);
}
}
@media all and (max-width: 575px) {
.homepage-banner-content{
margin-top:80px;
}
}
@media all and (max-width: 380px) {
.homepage-banner-content{
padding-left:15px;
padding-right:15px;
}
}
/********** Hero End **********/

/********** Buttons & Links **********/
p a{
font-weight: 600;
}
.et_btn.solid {
background-color: #8d288e;
}
.button{
font-size:12px;
text-transform:uppercase;
font-family: 'Inter', sans-serif;
font-weight:600;
letter-spacing:1.5px;
border-radius:4px!important;
}
/********** Buttons & Links End **********/

/********** Responsive Paddings and Sizing **********/
.section-wide{
padding-left: 150px;
padding-right: 150px;
}
.big-padding{
	padding-top:120px;
	padding-bottom:120px;
}
.big-padding-bottom{
	padding-bottom:120px;
}
.big-padding-top{
	padding-top:120px;
}

.small-padding{
	padding-top:60px;
	padding-bottom:60px;
}
.small-padding-bottom{
	padding-bottom:60px;
}
.small-padding-top{
	padding-top:60px;
}
.x-small-padding{
	padding-top:40px;
	padding-bottom:40px;
}
.x-small-padding-bottom{
	padding-bottom:40px;
}
@media all and (max-width: 1600px) {
.section-wide{
padding-left:60px;
padding-right:60px;
}
}
@media all and (max-width: 1199px) {
.section-wide{
padding-left:30px;
padding-right:30px;
}
}
@media only screen and (max-width: 991px) {
.section-wide.no-padding-1{
padding-left:0;
padding-right:0;
}
.big-padding{
	padding-top:80px;
	padding-bottom:80px;
}
.big-padding-bottom{
	padding-bottom:80px;
}
.big-padding-top{
	padding-top:80px;
}
.md-padding{
	padding-top:60px;
	padding-bottom:60px;
}
.small-padding{
	padding-top:30px;
	padding-bottom:30px;
}
.small-padding-bottom{
	padding-bottom:30px;
}
.small-padding-top{
	padding-top:30px;
}
}
@media only screen and (max-width: 767px) {
.big-padding{
	padding-top:60px;
	padding-bottom:60px;
}
.big-padding-bottom{
	padding-bottom:60px;
}
.big-padding-top{
	padding-top:60px;
}
.x-small-padding{
	padding-top:30px;
	padding-bottom:30px;
}
.x-small-padding-bottom{
	padding-bottom:30px;
}
}
/********** Responsive Paddings and Sizing End **********/

/********** Custom Columns **********/
.intro-image-1{
height:500px;	
}
.intro-image-2{
height:700px;
text-align:center;
}
.intro-image-3{
height:700px;
}
.big-parallax{
height:600px;		
}
.mfp-bg {
background: rgba(0,0,0,1);
opacity: 0.7;
}
.et-video-lightbox.lightbox-text .et-video-text {
font-size: 22px;
font-weight: normal;
font-family: 'Museo-bold', sans-serif;
}
@media only screen and (max-width: 1500px) {
.big-parallax{
height:500px;		
}
}
@media only screen and (max-width: 1199px) {
.intro-text-1 .vc_column-inner{
padding-right:50px!important;
}
.intro-text-3 .vc_column-inner{
padding-right:50px!important;
}
.big-parallax{
height:450px;		
}
}
@media only screen and (max-width: 991px) {
.intro-text-1 .vc_column-inner{
padding-right:0!important;
padding-bottom:50px
}
.intro-text-1.find .vc_column-inner{
padding-right:0!important;
padding-bottom:0;
padding-top:50px
}
.intro-image-1{
height:400px;	
}
.intro-text-2 .vc_column-inner{
padding-bottom:50px
}
.intro-image-2{
height:400px;		
}
.intro-text-3 .vc_column-inner{
padding-right:0!important;
padding-bottom:50px
}
.intro-image-3{
height:400px;	
}
}
@media only screen and (max-width: 575px) {
.big-parallax{
height:300px;		
}
.intro-image-1{
height:300px;	
}
.intro-image-2{
height:300px;	
}
.intro-image-3{
height:300px;	
}
.et-video-lightbox.lightbox-text .et-video-text {
display: none;
}
}
/********** Custom Columns End **********/

/********** Blog Stuff **********/
.blog .et-header-text.text-1{
width:180px;
display:inherit;
margin-left:20px;
}
.blog .et-header-text.text-2{
display:none;
}
.blog .header .social-icons li a {
color: #1d1d1d;
}
.post-template-default .et-header-text.text-1{
width:180px;
display:inherit;
margin-left:20px;
}
.post-template-default .et-header-text.text-2{
display:none;
}
.post-template-default .header .social-icons li a {
color: #1d1d1d;
}
.archive .et-header-text.text-1{
width:180px;
display:inherit;
margin-left:20px;
}
.archive .et-header-text.text-2{
display:none;
}
.archive .header .social-icons li a {
color: #1d1d1d;
}
/********** Blog Stuff End **********/

/********** curriculum carousel **********/
.c-carousel-image{
position:relative;
overflow: hidden;
}
.c-carousel-image img{
transition: all .3s ease-in-out!important;
}
.c-carousel-item a:hover > .c-carousel-image img{
transform: scale(1.05);
}
.c-carousel-text .h4{
color:#8d288e;
font-family: 'Museo-light';
margin-top:20px;
}
.c-carousel-text .h4 a{
color:#8d288e;
transition: all .3s ease-in-out;
}
.c-carousel-text .h4 a:hover{
color: #1d1d1d;
}
.c-carousel-image .big-number{
position:absolute;
left:10px;
bottom:-25px;
font-size: 6.5rem;
line-height:1;
font-family: 'Museo-bold';
color:#ffffff;
opacity:0.4;
z-index: 100;
}
.c-carousel-image .big-number.diff{
opacity:0.9;	
}

@media all and (max-width: 767px) {
.slick-arrow{
display:none!important;
}
}
/********** curriculum carousel End **********/

/********** Footer **********/
.footer-widgets::before {
content: "";
top: 0;
left: 50%;
margin-left:-78px;
background: url(assets/img/logo.png);
position: relative;
background-size: 157px 110px;
background-repeat: no-repeat;
z-index:2;
display: inline-block;
width: 157px; 
height: 110px;
}

.footer a{
font-family: 'inter', sans-serif;
color:rgba(255,255,255,0.7)!important;
font-size:17px
}
.footer a:hover{
font-family: 'inter', sans-serif;
color:rgba(255,255,255,1)!important
}
.footer-widgets .widgettitle{
font-size:18px;
font-family: 'Museo-light', sans-serif;
color:rgba(255,255,255,1)!important
}
.footer-widgets .container{
padding-top:50px;
}
.footer-widgets.footer-toggle-widgets {
padding-top:60px;
padding-bottom: 30px;
}
.footer-widgets .container {
padding-top: 60px;
}
.footer-bar .container {
padding-top: 40px;
padding-bottom: 40px;
}
.footer-bar .container a{
transition: all .3s ease-in-out;
}
.footer-bar .container a:hover{
color:#ffffff;
}
#scroll_to_top {
right: 45px;
z-index: 1000;
}
#scroll_to_top.active {
bottom: 25px;
right: 45px;
}
#nav_menu-4{
margin-bottom: 20px!important;
}
.footer p{
font-family: 'inter', sans-serif;
color:rgba(255,255,255,0.7)!important;
font-size:17px;
}
.footer-bar-content.copyright{
font-family: 'inter', sans-serif;
color:rgba(255,255,255,0.7)!important;
font-size:17px!important;
}
.add-box a{
font-weight:400;
transition: all .3s ease-in-out;
}
.add-box p{
margin-bottom: 18px;
}
@media all and (min-width: 768px) {
.footer-widgets .widget:last-child {
margin-bottom: 40px;
}
}
@media all and (max-width: 767px) {
.footer-toggle-widgets.footer-widgets .widget {
margin-bottom: 30px;
}
}
/********** Footer End **********/

/********** Global Navigation **********/

.et-header-menu .sub-menu {
padding: 12px 0;
top: 80%;
left: -10%;
}
.et-header-menu li .sub-menu > li {
max-width: 160px;
padding: 0 10px;
font-family: 'inter', sans-serif;
font-size:13px;
font-weight:600;
letter-spacing:1px
}
.global-link{
padding-left:44px!important;	
}
.global-link::before {
content: "";
top: 0;
left: -10px;
background: url(https://theseasonsartclass-com.dev3.vooba.dev/wp-content/themes/goya-child/assets/img/globe-icon.svg);
position: relative;
background-size: 28px 28px;
background-repeat: no-repeat;
z-index:2;
display: inline-block;
width: 28px; 
height: 28px;
}
@media all and (max-width: 1340px) {
.global-link{
padding-left:24px!important;	
}
}
/********** Global Navigation End **********/

/********** CTA **********/
.big-type { 
  font-size: 3.8vw;
font-size: clamp(1.8rem,3.8vw,3.1rem);
  line-height: 1.0625;
  font-weight: normal;
   font-family: 'Museo-bold', sans-serif;
  max-width:1200px;
  margin: 0 auto;
}
.big-type-but { 
max-width:1200px!important;
margin: 0 auto;
}
.masked-copy { 
  -webkit-background-clip: text;
  color: transparent !important; 
}
.masked-copy h2 { 
  color: white;
  display: inline;
  font: inherit;
}
.masked-copy p {
  display: inline;
}
.texture-orange {
  color: #e5895f;
  background-image: url("https://theseasonsartclass-com.dev3.vooba.dev/wp-content/uploads/2023/11/text-grad-2-scaled.jpg");
}
@media (max-width: 1279px){
.big-type { 
  max-width:930px;
}
.big-type-but { 
max-width:930px!important;
}
}
@media (max-width: 991px){
.big-type { 
  max-width:100%;
}
.big-type-but { 
max-width:100%!important;
padding-left:20px;
}
}
/********** CTA End **********/

/********** Testimonials **********/
.et-testimonials-slider blockquote p {
font-family: 'Museo-light-italic', sans-serif;
font-weight: normal;
color:rgb(255,255,255,0.8)!important;
font-size: 4vw;
font-size: clamp(1.2rem,4vw,1.5rem);
line-height: 1.5
}
.et-testimonials-slider blockquote {
padding: 30px 30px;
margin: 0 0 15px;
text-align: center;
}
.testimonials-grad {
background: rgb(79,69,156);
background: linear-gradient(90deg, rgba(79,69,156,1) 0%, rgba(146,39,138,1) 50%, rgba(79,69,156,1) 100%);
}
.quote-mks{
position:absolute;
width:951px;
height:444px;
top:50%;
left:50%;
transform: translate(-50%, -50%);
opacity:0.2;
}
@media only screen and (max-width: 1199px) {
.quote-mks{
width:800px;
height:373px;
}
}
@media only screen and (max-width: 840px) {
.quote-mks{
display:none;
}
}
@media only screen and (min-width: 992px) {
.container-fluid .vc_row .vc_row.max_width.testimonial-fade {
max-width: 900px;
}
}
@media only screen and (min-width: 1200px) {
.container-fluid .vc_row .vc_row.max_width.testimonial-fade {
max-width: 900px;
}
}
@media only screen and (min-width: 1490px) {
.container-fluid .vc_row .vc_row.max_width.testimonial-fade {
max-width: 900px;
}
}
@media only screen and (max-width: 767px) {
.et-testimonials-slider blockquote {
padding: 15px 0;
}
}

/********** Testimonials End **********/

/********** Need to Know Section **********/
.ntk-grad {
background: rgb(255,63,90);
background: radial-gradient(circle, rgba(255,63,90,1) 0%, rgba(183,29,106,1) 85%);;
}
.et-light-column.lighter .wpb_text_column {
color: rgba(255,255,255,0.85);
}
.ntk-grad.wpb_row > .vc_column_container > .vc_column-inner{
padding-right: 0;
padding-left: 0;	
}
@media only screen and (max-width: 575px) {
.ntk-grad.wpb_row > .vc_column_container > .vc_column-inner .vc_column-inner{
padding-right: 0;
padding-left: 0;
}
}

/********** Need to Know Section End **********/

/********** Form Styling **********/
.gform_title{
display:none;
}

.gform_button.button{
font-size:12px;
text-transform:uppercase;
font-family: 'Inter', sans-serif;
font-weight:600;
letter-spacing:1.5px;
border-radius:4px!important;
background:#8d288e;
}

.gform_wrapper.gravity-theme .gfield_label {
display: inline-block;
font-size: 12px;
text-transform:uppercase;
font-weight: 700;
margin-bottom: 20px;
padding: 0;
font-family: 'inter', sans-serif;
}
.gform_wrapper.gravity-theme .gfield_required .gfield_required_custom,.gform_wrapper.gravity-theme .gfield_required .gfield_required_text {
font-style: normal;
text-transform:none;
font-weight: 400
}
input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="number"]:focus,
	input[type="date"]:focus,
	input[type="datetime"]:focus,
	input[type="datetime-local"]:focus,
	input[type="time"]:focus,
	input[type="month"]:focus,
	input[type="week"]:focus,
	input[type="email"]:focus,
	input[type="search"]:focus,
	input[type="tel"]:focus,
	input[type="url"]:focus,
	input.input-text:focus,
	select:focus,
	textarea:focus {
		outline: 0;
		border-color: #8d288e!important;
		box-shadow: none;
	}
.gform_wrapper.gravity-theme .gfield_required {
    color: #8d288e;
}
.gform_wrapper.gravity-theme #field_submit,.gform_wrapper.gravity-theme .gform_footer {
    display: flex;
   
  justify-content: center;
}
.gform_wrapper.gravity-theme .field_description_above .description,.gform_wrapper.gravity-theme .field_description_above .gfield_description,.gform_wrapper.gravity-theme .field_description_above .gsection_description,.gform_wrapper.gravity-theme .field_description_above .instruction {
    padding-bottom: 16px;
    padding-top: 16px
}
.gform_wrapper.gravity-theme .gform_validation_errors>ol {
    padding-left: 20px;
    margin-bottom: 5px
}
.gform_wrapper.gravity-theme .gform_validation_errors {
 border: 1px solid #c02b0a;
    border-radius: 0;
    box-shadow: none;
}
@media only screen and (max-width: 575px) {
.form-sec.wpb_row > .vc_column_container > .vc_column-inner .vc_column-inner{
padding-right: 0;
padding-left: 0;
}
}
/********** Form Styling End **********/

/********** Custom Animations **********/
.animated{
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 0.8s; 
  animation-timing-function: ease;
}

@-webkit-keyframes fadeInUpSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s; 
  }
}

.fadeInUpSlow {
  -webkit-animation-name: fadeInUpSlow;
  animation-name: fadeInUpSlow;
  animation-duration: 1.2s; 
  animation-timing-function: ease;
}

@-webkit-keyframes fadeInRightSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightSlow {
  -webkit-animation-name: fadeInRightSlow;
  animation-name: fadeInRightSlow;
  animation-duration: 1.2s; 
  animation-timing-function: ease;
}

@-webkit-keyframes fadeInLeftSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftSlow  {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftSlow {
  -webkit-animation-name: fadeInLeftSlow;
  animation-name: fadeInLeftSlow;
  animation-duration: 1.2s; 
  animation-timing-function: ease;
}
/********** Custom Animations End **********/

/********** Animation Delays **********/
.delay-sm {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}
.delay1 {
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.delay2 {
	animation-delay: 1.4s;
	-webkit-animation-delay: 1.4s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.delay3 {
	animation-delay: 1.8s;
	-webkit-animation-delay: 1.8s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.delay4 {
	animation-delay: 2s;
	-webkit-animation-delay: 2s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.delay5 {
	animation-delay: 2.2s;
	-webkit-animation-delay: 2.2s;
	-webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}
/********** Animation Delays End **********/

/********** Video Background Sections **********/
.of-cover {
position:absolute;
width: 100% !important;
height: 100% !important;
-o-object-fit: cover;
object-fit: cover;
font-family: 'object-fit: cover;';
}
.vid-header{
height:65vh;
overflow:hidden;
position:relative;
}
.vid-header-inner{
height: 100% !important;
width:100%!important;
position:absolute;
text-align:center;
padding-top:35px
}
.vid-ol.hp:after {
content: " ";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgb(69, 77, 160);
background: linear-gradient(180deg, rgba(69, 77, 160,1) 0%, rgba(86, 61, 150,1) 20%, rgba(132, 41, 107,1) 40%, rgba(208, 74, 41,1) 60%, rgba(239, 141, 35,1) 80% );
mix-blend-mode: multiply;
opacity:0.8;
}
.vid-header-inner .inline-item{
display:inline-block;
}
.vid-header-inner .et-video-lightbox{
display:inline-block;
margin-left:25px;
}
.vid-header-inner .et-video-lightbox.lightbox-text .et-video-icon {
display: inline-block;
vertical-align: middle;
margin-top:-15px
}
.vid-header-inner .et-video-lightbox.lightbox-text .et-video-text {
display: inline-block;
vertical-align: middle;
margin-top:-10px;
}
@media only screen and (max-width: 880px) {
.vid-header-inner .inline-item{
display:block;
}
.vid-header-inner .et-video-lightbox{
display:block;
margin-left:0;
margin-top:20px
}
.vid-header-inner .et-video-lightbox.lightbox-text .et-video-icon {
display: inline-block;
vertical-align: middle;
margin-top:0
}
.vid-header-inner .et-video-lightbox.lightbox-text .et-video-text {
display: inline-block;
vertical-align: middle;
margin-top:0;
margin-left: 10px;
}
.vid-header-inner .et-video-lightbox .et-video-icon {
width: 62px;
height: 62px;
}
}

/********** Video Background Sections End **********/


/********** Courses Page **********/
.center-ls{
text-align:center;
padding-bottom:20px;
}

.intro-image-2 .big-number, .intro-image-3 .big-number,
.intro-image-4 .big-number{
position:absolute;
left:10px;
bottom:-25px;
font-size: 6.5rem;
line-height:1;
font-family: 'Museo-bold';
color:#ffffff;
opacity:0.5;
z-index: 100;
}
@media only screen and (max-width: 1650px) {
.intro-image-2 .big-number, .intro-image-3 .big-number,
.intro-image-4 .big-number{
font-size: 5.5rem;
bottom:-20px;
}
}
@media only screen and (max-width: 1279px) {
.intro-image-2 .big-number, .intro-image-3 .big-number,
.intro-image-4 .big-number{
font-size: 4.5rem;
bottom:-15px;
}
}
@media only screen and (max-width: 767px) {
.center-ls{
text-align:left;
padding-bottom:10px;
}
.intro-image-2 .big-number, .intro-image-3 .big-number,
.intro-image-4 .big-number{
font-size: 2.5rem;
bottom:-8px;
}
.align-change .et_btn_align_center{
text-align:left;
}
}
.scrollcontrol-holder{
position:relative;
}
.scrollcontroller{
position:absolute;
top:-110px;
}
/********** Courses Page End **********/


/********** FAQ's Page **********/
.pic-header{
height:65vh;
overflow:hidden;
position:relative;
}
.pic-header h1{
margin-top:30px
}
.pic-header .vc_parallax-inner:after {
content: " ";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgb(69, 77, 160);
background: linear-gradient(180deg, rgba(69, 77, 160,1) 0%, rgba(86, 61, 150,1) 20%, rgba(132, 41, 107,1) 40%, rgba(208, 74, 41,1) 60%, rgba(239, 141, 35,1) 80% );
mix-blend-mode: multiply;
opacity:0.5;
}
.vc_tta-title-text{
font-size: 4vw;
font-size: clamp(1.45rem,4vw,1.7rem);

}
.vc_tta-panel-title>a {
padding: 20px 0 20px 46px !important;
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-body {
padding: 14px 0 30px 46px;
}
/********** FAQ's Page End **********/

/********** About Page **********/
button{
font-size:12px;
text-transform:uppercase;
font-family: 'Inter', sans-serif;
font-weight:600;
letter-spacing:1.5px;
padding: 5px 18px;
border: 2px solid transparent;
text-align: center;
background:#8d288e;
color:#fff;
border-radius:4px!important;
margin-top:10px;
margin-bottom:10px;
}
.job-title{
font-size:15px;
text-transform:uppercase;
font-family: 'Inter', sans-serif;
font-weight:600;
margin-bottom:28px;
}
button.read.more::after {
content: ' More...'
}

button.read.less::after {
content: ' Less...'
}

.extra {
display: none;
margin-top:20px
}
.bio h2{
margin-bottom:10px
}
@media only screen and (max-width: 991px) {
.bio-image{
max-width:575px;
margin:auto;
}
.bio-text{
max-width:575px;
margin:auto;
}
}
.section-wide.extra-pad{
padding-left: 300px;
padding-right: 300px;
}
@media all and (max-width: 1800px) {
.section-wide.extra-pad{
padding-left:200px;
padding-right:200px;
}
}
@media all and (max-width: 1600px) {
.section-wide.extra-pad{
padding-left:160px;
padding-right:160px;
}
}
@media all and (max-width: 1500px) {
.section-wide.extra-pad{
padding-left:100px;
padding-right:100px;
}
}
@media all and (max-width: 1400px) {
.section-wide.extra-pad{
padding-left:60px;
padding-right:60px;
}
}
@media all and (max-width: 1199px) {
.section-wide.extra-pad{
padding-left:30px;
padding-right:30px;
}
}
.bio-social{
font-size:12px;
text-transform: uppercase;
font-family: 'Inter', sans-serif;
font-weight: 600;	
margin-right:15px;
color:#8d288e;
transition: all .3s ease-in-out;
letter-spacing:1.5px
}
a.bio-social:hover{
text-decoration:underline
}
/********** About Page End **********/

/********** Contact Page **********/
.small-caps{
text-transform:uppercase;
font-size:13px;
font-family: 'Inter', sans-serif;
font-weight:700;
letter-spacing:0.5px
}
.address-line{
max-width:460px;
}
/********** Contact Page End **********/
