* {
    scroll-behavior: smooth;
}
body {
    font-family: 'Open Sans', sans-serif;
}
a:hover {
    text-decoration: none;
}

.logo {
    width: 150px;
    position: fixed;
    z-index: 100;
    left: calc(50% - 75px);
    top: 15px;
}

.clickable {
    transition: 0.4s;
    cursor: pointer;
}
.clickable:hover {
    transform: scale(1.04);
}

.header-menu {
    height: 90px;
    position: fixed;
    z-index: 99;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    width: 100%;
    font-family: 'Source Sans 3', sans-serif;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}
.header-menu ul {
    list-style: none;
    padding: 0;
    justify-content: end;
    align-items: center;
    height: 100%;
    padding-right: 5vw;
    display: none;
}
.header-menu li {
    font-size: 0.95rem;
    margin-left: 20px;
}
.header-menu .menu-item a {
    color: #5049C1;
}

.header-menu .active a {
    color: #38E4A4 !important;
    border-bottom: 2px solid #38E4A4;
}

.header-menu .menu-item:last-child {
    color: #5049C1;
    background-color: #38E4A4;
    padding: 5px 15px;
    border-radius: 20px;
}

.blue-bkg {
    background-color: #5049C1;
}

.container {
    max-width: 1280px;
    margin: auto;
}

.home-header {
    border-radius: 0 0 20px 20px;
    padding: 150px 0 50px 0;
    color: #fff;
}
.home-header .container {
    display: flex;
    flex-direction: column-reverse;
}
.home-header h2 {
    font-weight: 700;
    font-size: 2.8rem;
}
.home-header p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.3rem;
}
.home-header .container img {
    height: 100%;
}
.talk_btn {
    background-color: #fff;
    border-radius: 50px;
    color: #5049C1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
    width: auto;
    padding: 0 70px 0 20px;
    margin-top: 20px;
}
.talk_btn > p {
    font-weight: 700;
    margin: 0;
}
.talk_btn .chat_icon {
    position: absolute;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #38E4A4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.talk_btn .chat_icon img {
    width: 55%;
    height: auto;
}

section {
    margin: 90px 0;
    text-align: center;
    color: #5049C1;
}
section h2 {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.3rem;
}
.section_subtitle {
    max-width: 850px;
    margin: auto;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
}

.items_container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.items_container .item {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}
.items_container .item .icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(#F3F2F2, #FBFBFB);
    box-shadow: 0 6px 20px rgba(80,73,193,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.items_container .item .icon img {
    width: 70%;
}
.items_container .item h4 {
    margin: auto;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 700;
    width: 75%;
}

.profiles_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.profile {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
    transition: 0.4s;
}
.profile .content {
    background: linear-gradient(#F3F2F2, #FBFBFB);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    margin: auto;
    transition: 0.4s;
}
.profile .content .text {
    padding: 20px;
    max-height: 85px;
    transition: 0.4s;
}
.profile .content .text.expand {
    max-height: 1800px;
}
.profile .content .text h3 {
    color: #38E4A4;
    font-size: 1.1rem;
    font-weight: 700;
}
.readmore {
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #5049C1;
    display: inline-block;
    margin-bottom: 20px;
    cursor: pointer;
}
.profile .content .text p {
    font-size: 0.9rem;
}

footer {
    margin: 50px 0 0 0;
    text-align: center;
    color: #5049C1;
    background-color: #FBFBFB;
    padding: 50px 0 0 0;
}
footer h2 {
    font-weight: 700;
    margin-bottom: 30px;
    margin: 0;
}
.footer_title {
    display: flex;
    justify-content: center;
    align-items: end;
    margin-bottom: 50px;
}
.footer_title img {
    width: 30px;
    margin-left: 20px;
}
.footer_flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-align: left;
}
.footer_icon {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 5px;
}
.footer_icon img {
    width: 40px;
    margin-right: 20px;
}
.footer_icon p {
    margin: 0;
}

.footer_form {
    height: 300px;
    margin-top: 60px;
}
.footer_form p {
    margin: 0px;
}
.wpcf7-form {
    width: 100%;
    height: 330px;
    position: relative;
}
.wpcf7-form p input {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border: solid 1px #C4C4C4;
    padding: 0 15px;
}
.wpcf7-form p textarea {
    height: 180px;
    width: 100%;
    border-radius: 10px;
    border: solid 1px #C4C4C4;
    padding: 10px;
}
.wpcf7-form p:nth-child(2), .wpcf7-form p:nth-child(3), .wpcf7-form p:nth-child(4) {
    width: 49%;
    height: 50px;
    position: absolute;
    left: 0;
}
.wpcf7-form p:nth-child(3) {
    top: 65px;
}
.wpcf7-form p:nth-child(4) {
    top: 130px;
}
.wpcf7-form p:nth-child(5) {
    width: 49%;
    height: 200px;
    display: inline-block;
    position: absolute;
    right: 0;
}
.wpcf7-form p:nth-child(6) {
    position: absolute;
    right: 0;
    top: 210px;
    transition: 0.4s;
}
.wpcf7-form p:nth-child(6):hover {
    transform: scale(1.04);
}

.wpcf7-form p:nth-child(6) input {
    border: none;
    color: #fff;
    background-color: #5049C1;
    padding: 5px 20px 5px 0px;
    border-radius: 50px;
    position: relative;
    height: 34px;
}

.send {
    position: absolute;
    background-color: #38E4A4;
    width: 34px;
    height: 34px;
    border-radius: 50px;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.send img {
    width: 70%;
}
.footer {
    background-color: #5049C1;
    color: #fff;
    font-size: 0.8rem;
    padding: 15px 0;
}
.footer p {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .logo {
        left: 2vw;
    }
    .header-menu ul {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        padding-right: 5vw;
    }
    .home-header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .items_container .item {
        width: 30%;
        margin-bottom: 0;
    }
    .profile {
        width: 47%;
        margin: 0px 0px 30px 0px;
    }
    .profile .content {
        width: 350px;
        height: 100%;
    }
    .profile .content .text {
        height: auto;
    }
    .readmore {
        display: none;
    }
    .profile .content .text {
        max-height: 100%;
    }
    .footer_flex {
       flex-direction: row;
    }
    .footer_form {
        margin-top: 0px;
    }
    .wpcf7-form {
        height: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .items_container .item {
        width: 15%;
    }
    .profile {
        width: 24%;
        margin: 0px;
    }
    .profile .content {
        width: 100%;
    }
}