@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: "Playfair Display", serif;*/
    font-family: "Cormorant Garamond", serif;
}

body {
    min-height: 100vh;
    background: #fff;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
}

.xndr {
    font-size: 3rem;
    color: #fff;
    text-decoration: none;
}

.navbar a {
    font-family: 'Raleway';
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
}

.navbar a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.navbar li {
    list-style: none;
}

.nav-home {
    display: none;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.header-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
}

.header-blue a {
    color: #5B8EBE;
}

.header-black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
}

.header-black a {
    color: #000;
}

@media (max-width:768px) {

    .hamburger {
        position: fixed;
        display: block; 
    }
    
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 87px;
    padding-top: 20px;
    gap: 0;
    flex-direction: column;
    background-color: #5B8EBE;
    width: 100%;
    text-align: center;
    transition: 0.3s;
}

.nav-home {
    display: inline;
    margin-bottom: 10px;
}

.nav-home a {
    color: #fff;
}

.nav-item {
    margin: 16px 0;
}

.nav-item a {
    color: #fff;
}

.nav-menu.active {
    left: 0;
}

}

.footer {
    position: relative;
    height: 200px;
    background: #5B8EBE;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index:  100;
}

.footer .footer-info {
    font-size: 36px;
    color: #fff;
    font-weight: 50;
}

.socials i {
    color: #fff;
    margin-right: 20px;
}

.socials i:hover {
    color: #466d91;
    cursor: pointer;
}

.footer-links a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
}

.footer-links a:hover {
    color: #466d91;
    cursor: pointer;
}

.header-home {
    position: flex;
    top: 0;
    left: 0;
    height: 850px;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 10;
}

.header-home p {
    color: #fff;
}

.header-home .title {
    font-size: 100px;
    margin-bottom: 130px;
    position: absolute;
}

.header-home .subheading {
    font-family: 'Raleway';
    position: absolute;
    margin-bottom: 80px;
    font-size: 30px;
    font-style: italic;
}

.gallery-view {
    display: grid;
    position: flex;
    align-items: center;
    margin-top: 50px;
}

.card-list .card-item {
    user-select: none;
    display: block;
    max-width: 750px;
    background: #fff;
    padding: 18px;
    text-decoration: none;
}

.card-list .card-image {
    margin: 0;
    display: block;
    width: 75vh;
    height: 75vh;
    object-fit: cover;
}

.card-list .badge {
    color: #000;
    font-size: 34px;
}

.card-list .card-desc {
    font-family: 'Raleway';
    font-size: 16px;
    color: #000;
}

.card-list .card-button {
    height: 50px;
    width: 120px;
    margin: 15px 0 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 24px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
}

.card-list .card-button:hover {
    background: #466d91;
    cursor: pointer;
}

.gallery-view .card-wrapper .swiper-button-prev, .gallery-view .card-wrapper .swiper-button-next {
    color: #5B8EBE;
}

.commissions-banner {
    position: flex;
    top: 0;
    left: 0;
    height: 700px;
    width: 100%;
    padding: 20px 100px;
    z-index: 10;
   
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 0px 0px -50px 0px;
    background-blend-mode: darken;
    align-items: center;
    text-align: center;
    vertical-align: center;
}

.commissions-banner-desc {
    color: #fff;
    position: relative;
    margin-top: 130px;

}

.commissions-banner .commissions-banner-desc .comm-title {
    font-size: 80px;
    padding-bottom: 20px;
}

.commissions-banner .commissions-banner-desc .comm-desc {
    font-family: 'Raleway';
    font-size: 28px;
    width: 900px;
    text-align: center;
    margin: auto;
    padding-bottom: 20px;
}

.commissions-banner .commissions-banner-desc .contact-button {
    height: 70px;
    width: 190px;
    margin: 15px 0 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 28px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
}

.commissions-banner .commissions-banner-desc .contact-button:hover {
    background: #466d91;
    cursor: pointer;
}



/*larger.html styling*/

.larger-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190vh;
    background-color: #000;
  }
  
  .larger-content img {
    width: 900px;
    float: left;
    padding-right: 100px;
    margin-top: 10vh;
  }
  
  .larger-text-container {
    font-size: 20px;
    padding-left: 100px;
    padding-right: 8%;
    float: left;
    color: #fff;
  }

.larger-text-container .larger-title {
    font-size: 80px;
}

.larger-text-container .larger-desc {
    font-size: 20px;
    padding-top: 50px;
}

.larger-content-button {
    position: flex;
    display: flex;
    justify-content: center;
    background-color: #000;
    margin-bottom: 20vh;
}
.larger-content-button .contact-button {
    height: 100px;
    width: 320px;
    margin-bottom: 10vh;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 22px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
}

.larger-content-button .contact-button:hover {
    background: #466d91;
    cursor: pointer;
}

/*gallery styling*/

.larger-gallery {
    justify-content: center;
    width: 80%;
    display: grid;
    margin: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.larger-gallery img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    cursor: pointer;
    transition: 1s ease;
}

.larger-gallery .img p {
    padding-bottom: 20px;
}

.larger-gallery img:hover {
    transform: scale(0.8);
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
    cursor: pointer;
}

/*Wrapper for gallery*/

.imageWrapper {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.imageWrapper img {
    width: 90%;
    max-width: 500px;
}

.imageWrapper span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/*smaller.html styling*/

.smaller-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190vh;
    background-color: #F6F0EA;
  }
  
  .smaller-content img {
    width: 900px;
    float: left;
    padding-left: 70px;
  }
  
  .smaller-text-container {
    font-size: 20px;
    padding-left: 70px;
    padding-right: 8%;
    float: left;
    color: #000;
  }

.smaller-text-container .smaller-title {
    font-size: 75px;
}

.smaller-text-container .smaller-desc {
    font-size: 20px;
    padding-top: 50px;
}

.smaller-text-container .smaller-desc h3 {
    font-weight: 100;
    font-size: 24px;
    padding-bottom: 15px;
}

.smaller-content-button {
    position: flex;
    display: flex;
    justify-content: center;
    background-color: #F6F0EA;
    margin-bottom: 10vh;
    margin-top: -10vh;
}
.smaller-content-button .contact-button {
    margin-bottom: 10vh;
    height: 100px;
    width: 320px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 22px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
}

.smaller-content-button .contact-button:hover {
    background: #466d91;
    cursor: pointer;
}

/*not.html styling*/

.not-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190vh;
    background-color: #5B8EBE;
  }
  
  .not-content img {
    width: 900px;
    float: left;
    padding-right: 70px;
    margin-top: 15vh;
  }
  
  .not-text-container {
    font-size: 20px;
    padding-left: 70px;
    padding-right: 8%;
    float: left;
    color: #fff;
  }

.not-text-container .not-title {
    font-size: 75px;
}

.not-text-container .not-desc {
    font-size: 20px;
    padding-top: 50px;
}

.not-text-container .not-desc h3 {
    font-weight: 100;
    font-size: 24px;
    padding-bottom: 15px;
}

.not-content-button {
    position: flex;
    display: flex;
    justify-content: center;
    background-color: #5B8EBE;
    margin-bottom: 10vh;
}
.not-content-button .contact-button {
    height: 100px;
    width: 250px;
    margin-bottom: 10vh;
    margin-top: 5vh;
    padding-left: 15px;
    padding-right: 15px;
    color: #5B8EBE;
    font-size: 22px;
    background: #fff;
    border: none;
    /*border-radius: 10px;*/
}

.not-content-button .contact-button:hover {
    background: rgb(222, 222, 222);
    cursor: pointer;
}

/*contact form styling*/

.contact-form {
    width: 100%;
    height: 100vh;
    
    background-size: cover;
    background-position: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 900px;
}

form input, form textarea {
    border: 0;
    margin: 10px 0;
    padding: 10px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
}

form button {
    height: 70px;
    width: 150px;
    margin: 15px 0 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 22px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
}

form button:hover {
    background: #466d91;
    cursor: pointer;
}

.contact-inputs:focus {
    border: 2px solid #466d91
}

.contact-inputs::placeholder {
    color: #5B8EBE;
}

.contact-left {
    color: #fff;
    width: 40%;
}

.contact-left h3 {
    font-size: 42px;
    font-weight: 100;
    padding-bottom: 20px;
}

.contact-left p {
    font-size: 22px;
}

.contact-left a {
    color: #fff;
    font-size: 40px;
    padding-right: 20px;
}

.contact-left a:hover {
    color: #466d91;
    cursor: pointer;
}

/* courses.html styling */

.courses-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 250vh;
    background-color: #F6F0EA;
  }

  .courses-content .courses-title {
    padding-top: 13vh;
    display: flex;
    justify-content: center;
    color: #5B8EBE;
    font-size: 60px;
  }

  .courses-content .courses-1{
    display: relative;
    justify-content: center;
  }

  .courses-content .courses-1 .courses-1-img img{
    padding-top: 10vh;
    width: 50%;
    float: left;
    margin-left: 10vh;
  }

  .courses-content .courses-1 .courses-1-text {
    box-sizing: border-box;
    background: #fff;
    width: 40%;
    float: right;
    margin-right: 25vh;
    margin-top: -25%;
    padding: 50px;
    color: #5B8EBE;
  }

  .courses-content .courses-1 .courses-1-text .courses-1-text-title {
    font-size: 50px;
    margin-bottom: 2vh;
  }

  .courses-content .courses-1 .courses-1-text .courses-1-text-desc {
    font-size: 25px;
  }

  .courses-content .courses-2{
    display: relative;
    justify-content: center;
    margin-top: 10vh;
    margin-bottom: 10vh;
  }

  .courses-content .courses-2 .courses-2-img img{
    padding-top: 10vh;
    width: 50%;
    float: right;
    margin-right: 10vh;
  }

  .courses-content .courses-2 .courses-2-text {
    box-sizing: border-box;
    background: #fff;
    width: 40%;
    float: left;
    margin-left: 25vh;
    margin-top: -40%;
    padding: 50px;
    color: #5B8EBE;
  }

  .courses-content .courses-2 .courses-2-text .courses-2-text-title {
    font-size: 50px;
    margin-bottom: 2vh;
  }

  .courses-content .courses-2 .courses-2-text .courses-2-text-desc {
    font-size: 25px;
  }

.courses-content .courses-2 .courses-button .contact-button {
    height: 100px;
    width: 250px;
    margin: 15px 0 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 22px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
    float: left;
    margin-left: 25vh;
    margin-top: 5vh;
}

.courses-content .courses-2 .courses-button .contact-button:hover {
    background: #466d91;
    cursor: pointer;
}

/*about.html styling*/

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170vh;
    background-color: #5B8EBE;
  }
  
  .about-content img {
    width: 900px;
    float: left;
    padding-left: 70px;
    margin-top: 10vh;
  }
  
  .about-text-container {
    font-size: 20px;
    padding-left: 70px;
    padding-right: 8%;
    float: right;
    color: #fff;
  }

.about-text-container .about-title {
    font-size: 75px;
}

.about-text-container .about-desc {
    font-size: 20px;
    padding-top: 50px;
}

.about-sub {
    position: absolute;
    box-sizing: border-box;
    background: #5B8EBE;
    width: 40%;
    float: left;
    margin-top: 45%;
    margin-left: -20%;
    color: #fff;
    font-size: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

/*commissions.html styling*/

.commissions-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5vh;
    background-color: #fff;
    padding-top: 15vh;
    margin-bottom: 10vh;
    font-size: 50px;

}

.slider{
    width: 1800px;
    max-width: 100vw;
    height: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1800px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}

.slider .item .desc {
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    background-color: #fff;
    width: 600px;
    padding-top: 30px;
    padding-left: 40px;
    padding-right: 20px;
    padding-bottom: 40px;
    top: 62%;
}

.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(91 142 190 / 0.75) ;
    color: #fff;
    border: none;
    font-size: 30px;
    transition: 1s;
}

.slider .buttons button:hover {
    background-color: #5B8EBE;
    transition: 1s;
}

.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider .dots li:hover{
    background-color: gray;
}

.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
    background-color: #5B8EBE;
}
@media screen and (max-width: 1300px){
    .slider{
        height: 400px;
    }
}

.commission-button {
    position: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 20vh;
}

.commission-button .comm-button {
        height: 100px;
        width: 230px;
        margin: 15px 0 5px;
        padding-left: 15px;
        padding-right: 15px;
        color: #fff;
        font-size: 20px;
        background: #5B8EBE;
        border: none;
        /*border-radius: 10px;*/
    }

.commission-button .comm-button:hover {
    background: #466d91;
    cursor: pointer;
}

/*privacy.html styling*/

.privacy {
    background: #F6F0EA;
}

.priv-title {
    font-size: 30px;
    padding-top: 10vh;
    padding-left: 100px;
    padding-bottom: 20px;
}

.priv-content {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 10vh;
}

.priv-content a {
    color: #5B8EBE;
}

.priv-content a:hover {
    text-decoration: none;
    color: #000;
}

/*cookies.html styling*/

.cookies {
    background: #F6F0EA;
}

.cook-title {
    font-size: 30px;
    padding-top: 10vh;
    padding-left: 100px;
    padding-bottom: 20px;
}

.cook-content {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 10vh;
}

.cook-content table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding-left: 8px;
    padding-right: 8px;
}

.cook-content th {
    background-color: #5B8EBE;
    color: #fff;
    text-align: left;
}

.cook-content a {
    color: #5B8EBE;
}

.cook-content a:hover {
    text-decoration: none;
    color: #000;
}

/* styling for commissions-contact.html */

.course-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    background-color: #F6F0EA;
    padding-top: 10vh;
    color: #5B8EBE;
}

.course-con-title {
    font-size: 45px;
    padding-bottom: 5vh;
}

.course-con-desc {
    width: 100vh;
    font-size: 20px;
    padding-bottom: 3vh;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100vh;
    overflow-y: auto;
    padding: 20px 15px;
    background-color: #F6F0EA;
}

.form-body {
    display: flex;
    justify-content: center;
    width: 100vh;
    background-color: #fff;
}

form select {
    height: 5vh;
    font-size: 20px;
}

form input, select {
    background-color: #f5f5f5;
    color: gray;
}

form select {
    border: none;
    padding-left: 5px;
}

.course-inputs:focus {
    border: 2px solid #466d91
}

.form-body p {
    padding-top: 2vh;
}

/* For mobile screens (up to 768px wide) */
@media (max-width: 768px) {
   
/* heeader and footer */
    .header-home {
        height: 500px;
        background-size: cover;
        padding: 20px;
    }

    .header-home .title {
        font-size: 50px;
        margin-bottom: 100px;
    }

    .header-home .subheading {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
        .footer {
    position: relative;
    height: 200px;
    background: #5B8EBE;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index:  100;
    }

    .footer p {
        font-size: 4vh;
    }
    
    .footer img {
        display: none;
    }

/* gallery view */

    .larger-gallery {
        justify-content: center;
        align-items: center;
        width: 90%;
        display: grid;
        margin-left: 2vh;
        padding: auto;
        grid-template-columns: 1fr 1fr;
    }

    .larger-gallery img {
        width: 20vh;
        height: 20vh;
    }
    
    .larger-gallery p {
        width: 20vh;
    }

/* home */

.commissions-banner {
    position: flex;
    top: 0;
    left: 0;
    height: 700px;
    width: 100%;
    padding: 20px 100px;
    z-index: 10;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 0px 0px 0px;
    background-blend-mode: darken;
    align-items: center;
    text-align: center;
    vertical-align: center;
}

.commissions-banner-desc {
    color: #fff;
    position: relative;
    margin-top: 2vh;

}

.commissions-banner .commissions-banner-desc .comm-title {
    font-size: 10vh;
    padding-bottom: 20px;
}

.commissions-banner .commissions-banner-desc .comm-desc {
    font-family: 'Raleway';
    font-size: 2.8vh;
    width: 100%;
    text-align: center;
    margin: auto;
    padding-bottom: 20px;
}

.commissions-banner .commissions-banner-desc .contact-button {
    height: 70px;
    width: 190px;
    margin: 15px 0 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 28px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
}

.commissions-banner .commissions-banner-desc .contact-button:hover {
    background: #466d91;
    cursor: pointer;
}


/* larger glass */

.larger-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120vh;
    background-color: #000;
  }
  
  .larger-content img {
    display: none;
  }
  
  .larger-text-container {
    font-size: 20px;
    color: #fff;
  }

.larger-text-container .larger-title {
    font-size: 80px;
}

.larger-text-container .larger-desc {
    font-size: 20px;
    padding-top: 50px;
}

.larger-content-button {
    padding-top: 3vh;
}

/* smaller glass */

.smaller-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120vh;
    background-color: #F6F0EA;
  }
  
  .smaller-content img {
    display: none;
  }
  
  .smaller-text-container {
    font-size: 20px;
    color: #000;
  }

.smaller-text-container .larger-title {
    font-size: 80px;
}

.smaller-text-container .larger-desc {
    font-size: 20px;
    padding-top: 50px;
}

.smaller-content-button {
    padding-top: 7vh;
}

/*not glass */

.not-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120vh;
    background-color: #5B8EBE;
  }
  
  .not-content img {
    display: none;
  }
  
  .not-text-container {
    font-size: 20px;
    color: #fff;
  }

.not-text-container .larger-title {
    font-size: 80px;
}

.not-text-container .larger-desc {
    font-size: 20px;
    padding-top: 50px;
}

.not-content-button {
    padding-top: 3vh;
}

/* courses */

.courses-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300vh;
    background-color: #F6F0EA;
  }

  .courses-content .courses-title {
    padding-top: 13vh;
    display: flex;
    justify-content: center;
    color: #5B8EBE;
    font-size: 60px;
  }

  .courses-content .courses-1{
    display: relative;
    justify-content: center;
  }

  .courses-content .courses-1 .courses-1-img img{
    padding-top: 10vh;
    width: 90%;
    float: none;
    margin-left: 5vh;
    margin: none;
  }

  .courses-content .courses-1 .courses-1-text {
    box-sizing: border-box;
    background: #fff;
    width: 100%;
    float: none;
    margin-right: 0vh;
    margin-top: 0;
    padding: 50px;
    color: #5B8EBE;
  }

  .courses-content .courses-1 .courses-1-text .courses-1-text-title {
    font-size: 32px;
    margin-bottom: 2vh;
  }

  .courses-content .courses-1 .courses-1-text .courses-1-text-desc {
    font-size: 24px;
  }

  .courses-content .courses-2{
    display: relative;
    justify-content: center;
    margin-top: 1vh;
    margin-bottom: 10vh;
  }

  .courses-content .courses-2 .courses-2-img img{
    padding-top: 10vh;
    width: 90%;
    float: none;
    margin-left: 5vh;
    margin: none;
  }

  .courses-content .courses-2 .courses-2-text {
    box-sizing: border-box;
    background: #fff;
    width: 100%;
    float: none;
    margin-left: 0vh;
    margin-top: 0;
    padding: 50px;
    color: #5B8EBE;
  }

  .courses-content .courses-2 .courses-2-text .courses-2-text-title {
    font-size: 32px;
    margin-bottom: 2vh;
  }

  .courses-content .courses-2 .courses-2-text .courses-2-text-desc {
    font-size: 22px;
  }

.courses-content .courses-2 .courses-button .contact-button {
    height: 100px;
    width: 250px;
    margin: 15px 0 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 22px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
    float: none;
    margin-left: 25vh;
    margin-top: 5%;
}

.courses-content .courses-2 .courses-button .contact-button:hover {
    background: #466d91;
    cursor: pointer;
}

/* commissions */

.slider{
    width: 1800px;
    max-width: 100vw;
    height: 500px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.slider .item .desc {
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    background-color: #fff;
    width: 600px;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    top: 53%;
}

/* about */

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 170vh;
    background-color: #5B8EBE;
  }
  
  .about-content img {
    width: 400px;
    float: none;
    padding-left: 0vh;
  }
  
  .about-text-container {
    font-size: 20px;
    padding-left: 70px;
    padding-right: 8%;
    float: right;
    color: #fff;
  }

.about-text-container .about-title {
    font-size: 75px;
}

.about-text-container .about-desc {
    font-size: 20px;
    padding-top: 50px;
}

.about-sub {
    display: none;
    position: absolute;
    box-sizing: border-box;
    background: #5B8EBE;
    width: 40%;
    float: none;
    margin-top: 45%;
    margin-left: 0;
    color: #fff;
    font-size: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

/* contact */

.contact-form {
    width: 100%;
    height: 100vh;
    background-image: url(/assets/Bench.jpg);
    background-size: cover;
    background-position: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 900px;
}

form input, form textarea {
    border: 0;
    margin: 10px 0;
    padding: 10px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
}

form button {
    height: 70px;
    width: 150px;
    margin: 15px 0 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    font-size: 22px;
    background: #5B8EBE;
    border: none;
    /*border-radius: 10px;*/
}

form button:hover {
    background: #466d91;
    cursor: pointer;
}

.contact-inputs:focus {
    border: 2px solid #466d91
}

.contact-inputs::placeholder {
    color: #5B8EBE;
}

.contact-left {
    color: #fff;
    width: 40%;
    justify-content: center;
    align-items: center;
}

.contact-left h3 {
    font-size: 42px;
    font-weight: 100;
    padding-bottom: 20px;
    padding-top: 5vh;
}

.contact-left p {
    font-size: 22px;
}

.contact-left a {
    color: #fff;
    font-size: 40px;
    padding-right: 20px;
}

.contact-left a:hover {
    color: #466d91;
    cursor: pointer;
}

/* courses contact form */

.course-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    background-color: #F6F0EA;
    padding-top: 10vh;
    color: #5B8EBE;
}

.course-con-title {
    font-size: 45px;
    padding-top: 4vh;
    padding-bottom: 5vh;
}

.course-con-desc {
    width: 90%;
    font-size: 20px;
    padding-bottom: 3vh;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 60vh;
    overflow-y: auto;
    padding: 20px 0px;
    background-color: #F6F0EA;
}

.form-body {
    display: flex;
    justify-content: center;
    width: 50vh;
    background-color: #fff;
}

form select {
    height: 5vh;
    font-size: 20px;
}

form input, select {
    background-color: #f5f5f5;
    color: gray;
}

form select {
    border: none;
    padding-left: 5px;
}

.course-inputs:focus {
    border: 2px solid #466d91
}

.form-body p {
    padding-top: 2vh;
}

}


/* portfolio styling */

.port-body {
    background: #F6F0EA;
    padding-top: 15vh;
    width: 100%;
}

.port-body .title {
    display: flex;
    text-align: center;
    padding-bottom: 10vh;
    font-size: 45px;
    align-items: center;
    justify-content: center;
}