
@import url('./fonts/font-awesome.min.css');
/*@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&family=Rubik&display=swap');

:root{
    --main-color-1: #FF4F4F;
    --main-color-2: #2BEDC0;
    --main-color-3: #0F2F66;
    --main-color-4: #EDF0F0;
    --main-color-5: #F8F8F8;
    --main-color-6: #FAFAFA;
    --main-color-7: #04604A;
    --label-color-1: #98CCE0;
    --label-color-2: #EE8A9A;
    --label-color-3: #EEE98A;
    --font-color-1: #48505E;
    --font-color-2: #ffffff;
}

* {
    box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--main-color-6);
  font-family: 'Rubik', sans-serif;
  font-size: 14.5px;
  overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1500px;
}

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

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

button{
    all: unset;
}

.overflow-hidden { overflow: hidden; }

/*
* ================= Header ==========================
*/

header {
    width: 100%;
    margin: 0;
    padding: 1em;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
    background-color: var(--main-color-6);

}

nav{
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    left: 100%;
    background: var(--main-color-3);
    transform: translateX(0);
    transition: all 0.5s ease-out;
    opacity: 0;
    z-index: 100;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo a {
    color: var(--font-color-1);
    font-size: 2rem;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
}

.logo a:hover,a:focus {

}

.logo p {
    font-size: .8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .4em;
    margin: 0;
    background-color: #95E8D5;
    padding: .5em;
    border-radius: .3em;
    color: var(--font-color-1);
}

.nav-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: auto 0;

}

.nav-item {
    position: relative;
    margin-left: 2em;
    margin-top: 6em;
}

.nav-link{
    font-size: 1.5rem;
    color: #fff;
    opacity: .6;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-item a:hover {
    opacity: 1;
    transition: -webkit-opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out, -webkit-opacity 150ms ease-in-out;
}

.cta {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    border-radius: .3em;
    padding: 1.2em 2.2em;
    color: #fff;
}

.cta-contact {
    margin: 0;
    color: #fff;
    opacity: .6;
    border: 1px solid var(--main-color-1);
}

.cta-contact:hover,
.cta-contact:focus{
    background: var(--main-color-1);
    color: #fff;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease,
    -ms-transition: all 500ms ease,
    -o-transition: all 500ms ease;
}

.menu,
.exit{
    cursor: pointer;
    font-size: 1.5rem;
}

.menu {
    display: block;
    float: right;
    color: #000000;
}

.exit {
    display: block;
    color: #fff;
    position: absolute;
    top: 30px;
    left: 30px;
}

.exit:hover,
.exit:focus{

}

.nav-active {
    transform: translateX(-100%);
    opacity: 1;
}

/*=============Nav Collapse Properties===============*/

.header-hero{
    margin: 0;
    width: 100%;
    height: 90vh;
    overflow: hidden;

}

.header_container{
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 8em 0;
}

.header-img-cont{
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 1;
    background-color: var(--main-color-4);
    background-image:
        linear-gradient(145deg, rgba(112,112,112,1),
        rgba(43,237,192,.6)), url(../img/group-img-1.jpg);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.content_container{
    width: 100%;
    text-align: center;
    z-index: 2;
}

.hero-title{
    color: #FFFFFF;
    font-size: 3.4rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.cta-desc{
    width: 100%;
    color: #e1e1e1;
    padding: 0 1em;
    font-size: 1.15rem;
    line-height: 1.6rem;
    margin: 2em 0;

}

.cta-discover{
    background: var(--main-color-1);
    text-transform: uppercase;
}

.cta-discover:hover,
.cta-discover:focus{
    background: #d64242;
}

/*
* =======================Section - Banner ============================
*/

.banner-cont {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-image: url(../img/banner-bg.png);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
.banner-content{
    width: 100%;
    margin: 0 auto;
    padding: 4em 0;
    display: grid;
    grid-template-columns: repeat(2, 130px);
    place-content: center;
    place-items: center;
    grid-gap: 1em;
    color: black;
    font-weight: bold;
    z-index: 10;
}

.banner-item {
    background: #EBFBF7;
    border-radius: .6em;
    width: 130px; /*130px*/
    height: 130px; /*130px*/
    display: grid;
    place-content: center;
    place-items: center;
    text-align: center;
    box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.55);

}

.icon-title {
    font-size: 1rem;
    margin: 0;
    padding-top: 1em;
    opacity: .6;
}

.banner-icon{
    color: var(--main-color-2);
    position: relative;
    z-index: 2;
}

.banner-icon::after{
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #ffff;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    z-index: -1;
}

.icon-icon {
    color: var(--main-color-2);
}
/*
* ================================ Section - featured  =========================
*/

.feature-content{
    margin-top: 2em;
    width: 100%;
    text-align: center;
}

.featured-title{
    font-size: 2.5rem;
    letter-spacing: .1em;
    margin: .5em 0;
}

.feature-content span {
    display: none;
}

/*
* ================================ Section - Middle Banner  ====================
*/

.mid-section{
    width: 100%;
    background-color: var(--main-color-3);
    margin: 0;
}

.mid-contain{
    width: 100%;
    margin: 0 1.5em;
    padding-top: 3em;
}

.mid-wrapper{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0 2em;
}

.mid-heading {
    color: white;
    width: 100%;
    padding-bottom: ;
    margin: 1em 2em 2em 0;
    text-align: center;

}

.img-wrapper{
    width: 100%;
    margin-bottom: 2em;
    order: -1;
}

.mid-title {
    margin-top: 0;
    font-size: 2.5rem;
    line-height: 1.3em;
}

.mid-desc {
    font-size: 1rem;
    line-height: 1.4em;
    margin: 0 auto;
    color: rgba(255,255,255,.75);
}


mark.highlight{
    color: var(--main-color-1);
    background: none;
}

.mid-imageone{
    width: 100%;/*365px*/
    max-width: 600px;
    height: 350px;/*241px*/
    background-color: #F8F8F8;
    background-image: url(../img/person-img-3.jpg);
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    box-shadow: 10px 10px 0px 0px rgba(44,237,192,1);
    -webkit-box-shadow: 10px 10px 0px 0px rgba(44,237,192,1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(44,237,192,1);
    border-radius: 8em 0;
}


/*
* ================================ Section - Main Content  =========================
*/

.section-listing {
    position: relative;
    width: 100%;
    margin: 0;

}

.label-box{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3em;

}

.title-label{
    background-color: var(--main-color-4);
    padding: .5em;
    border-radius: .3em;

}

/*
* === filter nav ===
*/
.btn{
    border-radius: .4em;
}
/*
* ================================ Section - Footer ============================
*/

footer{
    width: 100%;
    min-height: 127px;
    background-color: #0F2F66;
    color: #FFFFFF;
    padding: 2em;

}

.footer-cont {
    margin: 0;
}

.footer-block1{
    width: 100%;
    margin: 0;

}

.inner-block {
    text-align: center;
}

.inner-block p{
    margin-top: 2em;
    line-height: 1.7em;
    opacity: .7;
}
.footer-logo{
    font-size: 2.5rem;
    margin-right: 0;
}

.footer-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1em;
}

.email-inner{
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-desc {
    margin-left: 2em;
    color: #fff;
    opacity: .7;
    text-decoration: none;
}

.social-block {
    width: 100%;
    text-align: center;
}

.social-block a{
    display: inline-block;
    margin: 1.2em;
}

.social-block__icons{
    display: flex;
    justify-content: center;
}

.social-links{
    /* background-color: #707070; */
}

.social-icons{
    color: var(--main-color-2);
}

.social-icons:hover{
    -webkit-text-fill-color: rgba(4, 96, 74, 1);
    color: black;
}

.footer-block3{
    width: 100%;
    text-align: center;
}
.copyr-block {
    color: var(--main-color-1);
    margin-top: 2em;
}
.copyr-block .made{
    margin-left: 3em;
}

/*============================ Submain Template CSS ============================
*/

.sub-nav {
    position: relative;
}
.sub-header{
    height: 40vh;
    background-color: var(--main-color-3);
}

.sub-container{
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}
.sub-content{
    display: grid;
    place-items: center;
    padding: 0;
    margin: 0;
    width: 90%;
    text-align: center;
}
.sub-title{
    margin: 0;
    padding-left: .5em;
    position: relative;
    color: var(--font-color-2);
    font-size: 3rem;
    z-index: 1;
}
.sub-title::after {
    content: '';
    display: block;
    background-color: var(--main-color-1);
    position: absolute;
    width: 145px;
    height: 60%;
    left: 0;
    bottom: 0;
    opacity: .8;
    z-index: -1;

}

.sub-desc{
    color: var(--font-color-2);
    padding: 0;
    font-size: 1rem;
    line-height: 1.6rem;
    margin: 2em 0;
    width: 80%;
}

.section-mid{
    width: 100%;
    height: 500px;
    background: var(--main-color-4);
}

.sub-count{
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    opacity: .8;
}

.sub-count span{
    color: var(--main-color-2);
}
.sub-count p {
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 940px){

    .sub-container {
        padding: 0 2em;
    }
    .sub-content{
        place-items: start;
        text-align: unset;
    }

    .sub-desc{
        width: 70%;
    }
}

/*======================== Resources Template CSS ==============================
*/

.section-cont{
    width: 100%;
}
.resource-wrapper{
	display: grid;
	place-items: center;
    width: 100%;
    margin: 0 1em;
    padding: 1em;

}

.resource-header,
.resource-footer{
    display: flex;
    align-items: center;
}

.resource-title{
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 0;
}
.resource-desc{
    margin: 2em 0;
}

.resource-footer{
    justify-content: space-between;
}

.resource-footer-cont{
    display: flex;
    align-items: center;
}

.resource-footer-cont p{
    margin: 0 2em;
}

ol.gradient-list > li, ol.gradient-list > li::before {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}

.resource-content {
  display: block;
  /* margin: 0 auto; */
  width: 100%;
  max-width: 60rem;
  padding: 1rem;

}
.gradient-list {
  counter-reset: resource-counter;
  list-style: none;
  margin: 1.75rem 0;
  padding-left: 1rem;

}
.gradient-list > li {
  background: white;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  counter-increment: resource-counter;
  margin-top: 1rem;
  min-height: 3rem;
  padding: 2rem 1rem 2rem 3rem;
  position: relative;
  transition: transform .2s ease-in-out;

}

.gradient-list > li::before,
.gradient-list > li::after {
  background: linear-gradient(135deg, #0F2F66 0%, #2BEDC0 100%);
  border-radius: .3em .3em 0 .3em;
  content: '';
  height: 3rem;
  left: -1rem;
  overflow: hidden;
  position: absolute;
  top: -1rem;
  width: 3rem;
}

.gradient-list > li::before {
  align-items: flex-end;
  /* content: counter(resource-counter); */
  color: #1d1f20;
  display: flex;
  font: 900 1.5em/1 'Montserrat';
  justify-content: flex-end;
  padding: 0.125em 0.25em;
  z-index: 1;
}

.gradient-list > li:hover,
.gradient-list > li:focus{
	transform: scale(1.1);
}

.label-prov{
    background-color: var(--label-color-1);
}

.label-cat{
    background-color: var(--label-color-2);
}

.label-info{
    background-color: var(--label-color-3);
}

.resource-header h6{
    margin: 0 2em;
    font-size: 1rem;
}

.res-link{
    margin-right: 2em;
}

/*========================== Bootcamp Template CSS =============================
*/
/*
.card__box{
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    max-width: 100%;
    width: 700px;
    min-width: 400px;
    background-color: #E8E8E8;
    margin: 1em auto;
    border-radius: 1.2em;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    padding: 0px;
}
.image__box{
    width: 30%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 1.2em;
    padding: 1em;
}
.image__box h4 {
    position: relative;
    margin: 0;
    padding: 0;
    color: white;
}
.image__box h4::before{
    position: absolute;
    content: "";
    border-top: 4px solid red;
    width: 2.5em;
    height: .8em;
    bottom: .4em;

} */

.bootcamp-cont{
    height: 80vh;
}

.content__boxtop{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 2em;

}

.cont {
    width: 100%;
}
.inner-cont {
    margin-right: 1.6em;
}

.inner-cont p {
    margin-top: .8em;
}

.span_label{
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: .4em .8em;
    border-radius: .3em;
    color: #707070;
    margin-right: .5em;
}
.span_opt1{
  background-color: var(--label-color-1);

}
.span_opt2{
  background-color: var(--label-color-3);
  place-self: center;
}
.span_opt3{
  background-color: var(--label-color-2);
}

.desc-2 {
    /*grid-column: span 3;*/
    margin-top: 2em;

}

.desc p {
    font-size: 1rem;

}
 .desc span {
     float: right;
     margin-right: 1em;
     color: red;
     font-size: .9rem;
     font-weight: bold;

 }

 .desc-footer{
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .desc-link{
     background: #EE8A9A;
     text-decoration: none;
     padding: .4em 1em;
     border-radius: .2em;
     color: #707070;
     font-weight: bold;
 }


/*=======================
    MOBILE MEDIA QUERIES
=========================
*/

@media (min-width: 760px){
    html,
    body{
        font-size: 16px; /*unset*/
    }
    /*---------------------------
     Nav Section
    -----------------------------*/
    nav{
        position: unset;
        flex-direction: row;
        opacity: 1;
        left: unset;
        background: unset;
        transition: unset;
    }

    .nav-list {
        flex-direction: row;
        margin: 0;
    }

    .menu,
    .exit {
        display: none;
    }

    .nav-item {
        margin-top: unset;
    }

    .nav-link{
        font-size: .9rem;
        color: var(--font-color-1);
        opacity: unset;
    }

    .cta-contact{
        color: var(--font-color-1);
        opacity: unset;
    }

    /*---------------------------
    Hero Section
    -----------------------------*/

    .header_container{
        padding: unset;
    }


}

@media (min-width: 940px){

    /*---------------------------
    Hero Section
    -----------------------------*/

    header{
        position: fixed;
        z-index: 3;
    }

    section{
        /* max-width: 1350px; */
    }

    .header_container{
        place-content: unset;
        grid-template-columns: repeat(2, 1fr);
    }
    .content_container{
        width: 100%;
        margin: auto 0;
        padding-left: 4em;
        text-align: left;
    }

    .header-img-cont{
        width: 100%;
        height: 60vh;
        position: unset;
        z-index: 2;
        align-self: center;
        border-top-left-radius: 40em;
        border-bottom-left-radius: 8em;
    }
    .hero-title{
        color: #040404;
    }

    .nav-item a:hover,
    .nav-item a:focus{
        transition: -webkit-opacity 150ms ease-in-out;
        transition: opacity 2s ease-in-out;
        transition: opacity 2s ease-in-out, -webkit-opacity 2s ease-in-out;
    }

    .cta-desc{
        width: 95%;
        color: #000000;
        opacity: .6;
        padding: 0;
    }
    .banner-content{
        grid-template-columns: repeat(4, 130px);
        grid-gap: 3em;
    }
    .mid-contain{
        margin: 0;
        padding: 3em 4em;
    }
    .mid-wrapper{
        flex-direction: row;
        padding: 0;
    }
    .img-wrapper{
        order: 1;
    }

    .mid-heading {
        text-align: unset;
    }
    .mid-desc{
        margin: 0;
    }

    footer {
        padding-left: 4em;
        padding-right: 4em;
    }
    .footer-cont {
        display: flex;
    }
    .inner-block {
        text-align: unset;
    }
}

.listing-cont{
    width: 100%
}


/*
* ================================
CONTACTS PAGE
  ================================
*/
.form-container{
    margin: 0 auto;
    /* background-color: var(--main-color-4); */
    width: 100%;
    height: 50%;
    padding: 4em;
}

.form-wrapper{
    display: flex;
    justify-content: space-between;
    min-width: 450px;
    padding: 2em 4em;

}

.left-col{
    order: 1;
}

form{
    width: 50%;
}

@media (max-width: 940px) {
    .form-wrapper{
        flex-direction: column;
        padding: 0;
        min-width: unset;
    }

    .left-col{
        order: unset;
    }

    form{
        width: 100%;
    }

    .form-cta{
        width: 100%;
    }
}




.form-wrapper form {

}

.form-icons{
    display: flex;
    gap: 2em;
    align-items: center;
}

.contact-subtitle{
    font-weight: bold;
    color: var(--font-color-1);
}

.social-address{
    color: rgba(0, 0, 0, 0.7);
}

.form-label,
.form-input{
    display: block;
    position:
}

label {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 1.5em;
    margin-bottom: .5em;
}

input,
textarea {
    width: 100%;
    padding: 1em;
    border-radius: .3em;
    border: 1px solid #ACACAC;
    color: #1B1820;
    font-family: inherit;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    outline: 3px solid #ACACAC;
    /* opacity: .6; */
}

textarea{
    resize: none;
}

.form-actions{
    text-decoration: none;
}

.form-cta {
    display: block;
    width: 50%;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: var(--main-color-1);
    margin-top: 1.5em;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: .3em;
    float: right;
}

.form-cta:hover{
    background-color: #d64242;
    cursor: pointer;
}
.contact-title {
    font-size: 3.3em;
    position: relative;
    margin-bottom: 1.5em;
    color: var(--font-color-1);
}
.contact-title:before {
    content: '';
    position: absolute;
    height: 5px;
    width: 40px;
    margin-bottom: 2em;
    background-color: var(--main-color-1);
    left: 0;
    top: -7px;
    border-radius: 1em;
}

/*
* ================================
SUCCESS PAGE
  ================================
*/

.home-title{
    display: flex;
    align-items: center;
    margin: 0 auto;
    height: 80vh;
}
.success-wrapper{
    width: 600px;
    /* height: 600px; */
    padding: 3em;
    background-color: rgba(0,0,0,0.3);
    border-radius: .6em;
    color: #fff;
    margin: 0 auto;
    text-align: center;
}

.success-name{
    text-transform: capitalize;
}
