/* ****** WHO WE ARE SECTION  ****** */

#whoweare .container div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#whoweare .images {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

#whoweare .images img {
    width: 400px;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    margin: 0 12px;
    transition-delay: 0.5s;
}


@media screen and (max-width: 1500px) {
    #whoweare .images img {
        width: 300px;
    }
}

@media screen and (max-width: 1150px) {
    #whoweare .images img {
        width: 250px;
    }
}

@media screen and (max-width: 1023px) {
    #whoweare .images img {
        width: 200px;
    }
}

@media screen and (max-width: 850px) {
    #whoweare .images img:last-child {
       order: 2;
       width: calc(50% - 20px);
       margin-right: 0;
    }
    #whoweare .images img:first-child {
        width: calc(50% - 20px);
        margin-left: 0;
    }
    #whoweare .images img:nth-child(2) {
        order: 3;
        width: 100%;
        margin-top: 24px;
    }
}

@media screen and (max-width: 500px) {
    #whoweare .images img:last-child {
       width: 100%;
       margin-left: 0;
    }
    #whoweare .images img:first-child {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }
   
}

#whoweare .text {
    border-radius: 0px;
    background-color: #242C59;
    padding: 60px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 40px;
    text-align: center;
    max-width: 900px;
}

@media screen and (max-width: 1024px) {
    #whoweare .text {
        padding: 40px;
    }
}

@media screen and (max-width: 991px) {
    #whoweare .text {
        padding: 24px;
    }
}


#whoweare .text p {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 24px;
    display: block;
}

#whoweare .text p.name {
    font-family: 'Lato-BoldItalic', sans-serif;
    margin-top: 40px;
}


/* ****** INFO SECTION  ****** */

#info .container > div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

#info .background {
    background-color: #34669A;
    width: 100%;
    height: 80%;
    border-radius: 16px;
    position: absolute;
    margin: auto;
    z-index: -1;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#info img {
    width: 70%;
    max-width: 1024px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media screen and (max-width: 1366px) {
    #info img {
        width: 80%;
    }
}
@media screen and (max-width: 1024px) {
    #info img {
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    #info img {
        width: 100%;
    }
}



/* ****** CONTACT SECTION  ****** */

#contact .container div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#contact .text {
    border-radius: 0px;
    background-color: #242C59;
    padding: 60px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 40px;
    text-align: center;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
}

#contact .text span {
    color: #4687cc;
    font-size: 12px;
}

@media screen and (min-width: 1200px) {
    #contact .text {
        width: 100%;
    }
}

@media screen and (max-width: 911px) {
    #contact .text {
        padding: 40px 24px;
    }
}

#contact .text p {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 24px;
    display: block;
}

#contact .text p a {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 24px;
    font-family: "Lato-Bold", sans-serif;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-top: 4px;
}

#contact .text p a:hover {
    color: #4687cc;
}

#contact .text .line {
    height: 2px;
    width: 80%;
    border-bottom: 1px solid #34669A;
    margin-bottom: 24px;
}

#contact .text .text-bold {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 24px;
    text-transform: uppercase;
}

#contact .media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

#contact .media a {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

#contact .media a img {
    width: 30px;
}

#contact .media a:hover {
    background-color: #34669A;
}

@media screen and (max-width: 500px) {
    #contact .media img {
        width: 24px;
        margin: 0 12px;
    }
}


/* ****** SERVICES AND FAQS SECTION  ****** */

#services .container > div:first-child,
#faqs .container > div:first-child {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#services .text,
#faqs .text {
    border-radius: 0px;
    background-color: #242C59;
    padding: 0;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 40px;
    text-align: center;
    max-width: 900px;
    width: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
}


/* ****** ACCORDION  ****** */
.accordion {
    position: relative;
	width: 100%;
}

.accordion__active {
    margin-bottom: 0;
}

.accordion .accordion__intro {
    position: relative;
    padding: 20px 8px 20px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease-in-out;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.accordion__active .accordion__intro {
    background-color: rgb(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    color: #FFFFFF;
    opacity: 0;
    background-color: rgb(255, 255, 255, 0.06);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.accordion h4,
.accordion p {
    margin: 0;
    line-height: 1;
}   

.accordion h4 {
    font-family: 'Lato-Thin', sans-serif;
	color: #FFFFFF;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
}

#faqs .accordion h4 {
    font-size: 20px;
}

@media screen and (max-width: 500px) {
    #faqs .accordion h4 {
        font-size: 18px;
    }
}

.accordion p, .accordion span, .accordion ol li, .accordion ul li {
    text-align: left;
    font-family: 'Lato-Regular', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    margin: 0;
    line-height: 28px;
}

.accordion ol li, .accordion ul li {
    padding-left: 12px;
    margin-bottom: 16px;
}

.accordion ol li.noBullet, .accordion ul li.noBullet {
    list-style-type: none
}

.accordion p.bold, .accordion span.bold {
    font-family: 'Lato-Bold', sans-serif;
    margin-top: 16px;
}

.accordion .accordion__intro .toggleMinusPlusWrap,
.accordion__active .accordion__intro .toggleMinusPlusWrap {
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.accordion .accordion__intro .toggleMinusPlus::after {
    content: "";
    width: 16px;
    transition: 0.25s all cubic-bezier(0.17, 0.67, 0.09, 0.97);
    transition-delay: 0.1s;
    height: 1px;
    position: absolute;
    opacity: 0;
    right: 0;
    background: #FFFFFF;
}

.accordion .accordion__intro .toggleMinusPlus::after {
    transform: rotate(90deg);
    opacity: 1;
}

.accordion .accordion__intro .toggleMinusPlus {
    width: 16px;
    height: 1px;
    background: #FFFFFF;
    position: relative;
    transition: 0.25s all cubic-bezier(0.17, 0.67, 0.09, 0.97);
}

.accordion__active .accordion__intro .toggleMinusPlus {
    transform: rotate(180deg);
}

.accordion__active .accordion__intro .toggleMinusPlus::after {
    opacity: 0;
}

.accordion__active .accordion__content {
    opacity: 1;
}

.accordion .accordion__content > div:first-child {
    padding: 20px;
}



@media screen and (max-width: 911px) {
    .accordion h4 {
        font-size: 20px;
    }
    .accordion .accordion__content > div:first-child {
        padding: 16px;
    }
    .accordion__intro {
        padding: 16px;
    }
    .accordion__active {
        margin-bottom: 0;
    }    
}

@media screen and (max-width: 500px) {
    .accordion ol, .accordion ul {
        padding-left: 16px ;
    }
}



/* **** MATERIALS **** */
#materials .materials_list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-around;
    margin-top: 80px;
    margin-bottom: 80px;
}

#materials .materials_list .centerItem {
    border-radius: 16px;
    border: 3px solid #34669A;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    height: calc(100% + 40px);
    z-index: -1;
    transition-delay: 0.2s;
}

#materials .materials_list .centerItem_full {
    border-radius: 16px;
    background-color: #242C59;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 70%;
    height: 100%;
    z-index: -1;
    transition-delay: 0.8s;
}

@media screen and (max-width: 911px) {
    #materials .materials_list .centerItem {
        width: 100%;
    }
    #materials .materials_list .centerItem_full {
        width: calc(100% - 40px);
    }
}
@media screen and (max-width: 500px) {
    #materials .materials_list .centerItem {
        display: none;
    }
    #materials .materials_list .centerItem_full {
        width: 100%;
    }
}

#materials .materials_list .image-container {
    position: relative;
}

#materials .materials_list .material {
    position: relative;
}

#materials .materials_list img {
    height: 300px;    
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 2px solid #FFFFFF;
    border-radius: 6px;
}

@media screen and (max-width: 1366px) {
    #materials .materials_list img {
        height: 250px;
    }
}

@media screen and (max-width: 460px) {
    #materials .materials_list img {
        height: 250px;
    }
}


#materials .material .text {
    background-color: #34669A;
    border: 2px solid #FFFFFF;
    padding: 16px;
    width: fit-content;
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 6px;
    text-align: center;
}

#materials .material .text span {
    font-family: 'Lato-Bold', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#materials .material_container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px 100px;
}

@media screen and (max-width: 1200px) {
    #materials .material_container {
        margin: 40px 0px;
    }
}
@media screen and (max-width: 911px) {
    #materials .material_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

#materials .material_container .text_container {
    padding: 12px 24px;
    margin-left: 24px;
    max-width: calc(100% - 400px);
    background-color: #181a33;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

@media screen and (max-width: 1366px) {
    #materials .material_container .text_container {
        max-width: calc(100% - 330px);
    }
}
@media screen and (max-width: 911px) {
    #materials .material_container .text_container {
        margin-left: 0;
        max-width: calc(100% - 100px);
    }
}
@media screen and (max-width: 500px) {
    #materials .material_container .text_container {
        max-width: calc(100% - 60px);
    }
}

#materials .material_container .text_container p, #materials .material_container .text_container span, #materials .material_container .text_container ol li, #materials .material_container .text_container ul li {
    text-align: left;
    font-family: 'Lato-Regular', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    margin: 0;
    line-height: 24px;
}

#materials .material_container .text_container p.mt16 {
    margin-top: 16px
}

#materials .material_container .text_container p.mb16 {
    margin-bottom: 16px
}

#materials .material_container .text_container ol li, #materials .material_container .text_container ul li {
    padding-left: 12px;
    margin-bottom: 16px;
}

#materials .material_container .text_container ol li.noBullet, #materials .material_container .text_container ul li.noBullet {
    list-style-type: none
}

#materials .material_container .text_container p.bold, #materials .material_container .text_container span.bold {
    font-family: 'Lato-Bold', sans-serif;
    margin-top: 16px;
}

#materials .material_container .text_container p.uppercase, #materials .material_container .text_container span.uppercase {
    text-transform: uppercase;
}

@media screen and (max-width: 500px) {
    #materials .material_container .text_container ol, #materials .material_container .text_container ul {
        padding-left: 16px ;
    }
    #materials .material_container .text_container {
        padding-left: 16px;
        padding-right: 16px;
    }
    #materials .materials_list {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}