.team {
    padding: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: white;
}

.team > .subtitle {
    color: var(--h2-color);
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.team > .title {
    color: black;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.team .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.team .item {
    width: 290px;
    height: auto;
    display: flex;
    margin-right: 20px;
    margin-bottom: 20px;
    align-items: center;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    box-shadow: 5px 5px 5px #aaaaaa;
}

.team .item .content {
    width : 100%;
    z-index: 110;
    padding: 20px;
    position: relative;
    border-radius: 20px;
    background-color: white;
}

.team .item .footer-curtain {
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: 100;
    bottom: -7px;
    height: 380px;
    position: absolute;
    border-radius: 20px;
    transition: all ease 0.5s;
    background-color: var(--team-color);
}

.team .item:hover .footer-curtain {
    opacity: 1;
}

.team .item .container-image {
    width: 246px;
    height: 241px;
    overflow: hidden;
    border-radius: 20px;
}

.team .item .container-image .image-team {
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.team .item .container-social {
    top: 17px;
    opacity: 1;
    left: 190px;
    z-index: 110;
    height: 42px;
    overflow: hidden;
    position: absolute;
    transition: all ease 0.5s;
}

.team .item .container-social a {
    margin: 10px 0;
    display: block;
}

.team .item .container-social a:first-child {
    margin: 0;
}

.team .item .container-social i {
    display: block;
    transition: all ease 0.5s;
}

.team .item .container-social .social-icons {
    top: -10px;
    opacity: 0;
    position: relative;
    transition: all ease 0.5s;
}

.team .item .container-social i:hover {
    background-color: var(--team-hover-color);
}

.team .item .container-social:hover {
    overflow: initial;
}

.team .item .container-social:hover .social-icons {
    top: 6px;
    opacity: 1;
}

.team .item .container-social i {
    z-index: 110;
    padding: 10px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    border-radius: 100%;
    background: var(--team-color);
}

.team .item .name {
    margin: 15px 0;
    color: black;
    font-size: 20px;
    text-align: center;
}

.team .item .job {
    font-size: 20px;
    color: #5782e9;
    text-align: center;
    margin-bottom: 10px;
}

.why_choose_us {
    padding: 80px;
}

.why_choose_us > .subtitle {
    color: var(--h2-color);
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.why_choose_us > .title {
    color: black;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
}

.why_choose_us .center  .image-center {
    width: 300px;
    height: 330px;
    cursor: pointer;
    overflow: hidden;
    transition: all ease 0.5s;
    background-size: cover !important;
    background-position: center !important;
}

.why_choose_us .center  .image-center:hover {
    transform: scale(1.1);
}

.why_choose_us .container {
    width: 100%;
    margin: auto;
    display: flex;
    max-width: 1200px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.why_choose_us .container .column {
    width: 350px;
    overflow: hidden;
}
.why_choose_us .container .item {
    display: flex;
    margin: 50px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.why_choose_us .container .left h3, .why_choose_us .container .left p {
    text-align: left;
}

.why_choose_us .container .right h3, .why_choose_us .container .right p {
    text-align: right;
}

.why_choose_us .container .right .icon img, .why_choose_us .container .right .icon img {
    margin-left: 20px;
}

.why_choose_us .container .left .icon img, .why_choose_us .container .left .icon img {
    margin-right: 20px;
}

.why_choose_us .container .item .icon img {
    width: 60px;
    height: auto;
    cursor: pointer;
    transition: all ease 0.5s;
}

.why_choose_us .container .item .icon img:hover {
    transform: rotate(360deg);
}

.why_choose_us .container .item .text h3 {
    font-size: 25px;
    color: #205dc8;
    font-weight: bold;
    margin-bottom: 10px;
}

.discuss-projects {
    padding: 170px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /*background: url('../images/banner1.webp');*/
    background-size: cover;
    background-position: center;
}

.discuss-projects > .title {
    color: white;
    font-size: 50px;
    font-weight: bold;
}

.discuss-projects > p {
    width: 60%;
    margin: 50px;
    color: white;
    font-size: 17px;
    text-align: center;
}

.discuss-projects > a {
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    transition: all ease 0.5s;
    border: 1px solid #1e6df7;
    background-color: #1e6df7;
}

.discuss-projects > a:hover {
    border: 1px solid white;
    background-color: transparent;
}

.faq {
    display: flex;
    padding: 80px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /*background: url('../images/cloud-background.webp');*/
    background-size: cover;
    background-position: center;
}

.faq > .title {
    color: black;
    font-size: 40px;
    font-weight: bold;
}

.faq > p {
    margin: 15px 0;
    font-size: 17px;
    color: var(--faq-color);
}

.faq .container {
    width: 100%;
    max-width: 1200px;
}

.faq .container .item {
    margin: 30px 0;
    overflow: hidden;
    border-radius: 10px;
    transition: all ease 0.5s;
    background-color: white;
    box-shadow: 5px 5px 5px #aaaaaa;
}

.faq .container .item .header {
    display: flex;
    padding: 20px;
    cursor: pointer;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid lightgray;
}

.faq .container .item .header i {
    font-size: 20px;
    color: var(--faq-color);
}

.faq .container .item .header p {
    margin: 0 15px;
    font-size: 20px;
    overflow: hidden;
    font-weight: bold;
    white-space: nowrap;
    display: inline-block;
    color: var(--faq-color);
    text-overflow: ellipsis;
}

.faq .container .item .header div {
    display: flex;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
}

.faq .container .item .body {
    padding: 20px;
}

.faq .container .item .body p {
    color: black;
    font-size: 17px;
    line-height: 27px;
}

.contact-us {
    padding: 80px;
    display: flex;
    align-items: center;
    padding-bottom: 300px;
    flex-direction: column;
    justify-content: center;
}

.contact-us > .title {
    color: #1461e9;
    font-size: 35px;
}

.contact-us > p {
    margin: 15px 0;
    color: #b8651d;
}

.contact-us input, .contact-us textarea, .contact-us select {
    border: none;
    background-color: #f5f5f5;
}

.contact-us .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-between;
}

.contact-us .container .aside {
    width: 30%;
}

.contact-us .container .aside h1 {
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.contact-us .container .aside p {
    color: black;
    font-size: 16px;
    line-height: 27px;
}

.what-we-do {
    width: 100%;
    padding: 80px;
    overflow: hidden;
    background-color: white;
}

.what-we-do .content {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-between;
}

.what-we-do .content .container-images {
    width: 50%;
}

.what-we-do .content .container-images .phone {
    left: 100px;
    width: 242px;
	height: 474px;
    position: relative;
    /*background: url('../images/app_mobile.webp');*/
}

.what-we-do .content .container-images .gorro {
    top: 60px;
    position: relative;
}

.what-we-do .content .container-images .star1 {
    top: 90px;
    left: 300px;
    position: relative;
}

.what-we-do .content .container-images .star2 {
    top: 110px;
    left: 290px;
    position: relative;
}

.what-we-do .content .container-text {
    width: 50%;
}

.what-we-do .content .container-text > .subtitle {
    color: var(--h2-color);
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.what-we-do .content .container-text > .title {
    color: black;
    font-size: 42px;
    font-weight: bold;
}

.what-we-do .content .container-text > p {
    color: #373535;
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}

.what-we-do .content .container-text ul li {
    color: #373535;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

.what-we-do .content .container-text ul li > i {
    top: 2px;
    font-size: 20px;
    margin-right: 5px;
    position: relative;
    color: var(--main-bg-color);
}