/* Header */
.header{
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--color-1);
}

.header .wrap{
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
    font-family: var(--font);
    text-align: center;
    margin: auto;
}

.header .branch{
    padding: 0px;
    height: 48px;
    margin: 0 30px;
}

.header .branch a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .branch p{
    color: var(--color-text-1);
    font-size: 25px;
    font-weight: 700;
    margin-left: 10px;
}

.header .branch img{
    width: 48px;
}

.header .menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header .menu .wrap-menu{
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.header .menu .wrap-menu a{
    color: #565656;
    font-size: 18px;
    font-weight: 500;
}

.header .menu .wrap-menu:hover{
    background-color: white;
}

.header .menu .wrap-menu a:hover{
    color: var(--color-text-1);
}

.header .socials{
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
}

.header .socials a{
    color: var(--color-text-1);
    margin-left: 10px;
    font-size: 26px;
    background-color: white;
    padding: 10px 10px;
    border-radius: 10px;
    width: 48px;
    height: 48px;
}

.header .bar{
    margin: 0 30px;
    font-size: 26px;
    display: none;
}

@media screen and (max-width: 992px) {
    .header .menu{
        display: none;
    }

    .header .socials{
        display: none;
    }

    .header .bar{
        display: block;
    }
}

@media screen and (max-width: 320px) {
    .header .wrap{
        flex-direction: column;
    }

}
/* End Header */

/* Section-1 */
.section-1{
    position: relative;
    background-size: cover;
    background-image: url("../Images/developer-3.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 150px 0;
    position: relative;
}

.section-1::before{
    background-color: black;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.6;
}

.section-1 .container .wrap{
    display: flex;
}

.section-1 .container .wrap .content{
    width: 50%;
    text-align: left;
    z-index: 2;
}

.section-1 .container .wrap .content .company{
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.section-1 .container .wrap .content .company p{
    margin: 0;
}

.section-1 .container .wrap .content .title{
    font-size: 55px;
    color: white;
    font-weight: 700;
    margin-top: 20px;
}

.section-1 .container .wrap .content .description{
    color: var(--color-text-2);
    margin: 40px 0;
    font-size: 18px;
}

.section-1 .container .wrap .content .buttons{
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .section-1 .container .wrap .content{
        text-align: center;
        width: 100%;
    }

    .section-1 .container .wrap .content .buttons{
        justify-content: center;
    }
}

@media screen and (max-width: 450px) {
    .section-1 .container .wrap .content .buttons{
        flex-direction: column;
    }

    .section-1 .container .wrap .content .button{
        margin-bottom: 20px;
    }
}
/* button */

.button1{
    padding: 20px 35px;
    margin-right: 10px;
    border-radius: 5px;
    color: var(--color-text-1);
    font-weight: 600;
    background-color: var(--color-2);
}

.button2{
    padding: 20px 35px;
    margin-right: 10px;
    border-radius: 5px;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid var(--color-text-2);
}

.button1:hover{
    background-color: white;
    color: var(--color-text-1);
    transition: 0.8s;
}

.button2:hover{
    background-color: var(--color-2);
    color: var(--color-text-1);
    transition: 0.8s;
    border: 1px solid var(--color-2);
}

/* button end */

/* End Section-1 */


/* Section-2 */

.section-2 .container .wrap{
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0px;
}

.section-2 .container .wrap .image{
    width: 50%;
    padding: 0px;
    display: flex;
}

.section-2 .container .wrap .image img{
    width: 90%;
    height: auto;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.section-2 .container .wrap .content{
    text-align: left;
    padding: 30px 0px;
    width: 50%;
}

.section-2 .container .wrap .content .title{
    font-weight: 600;
    font-size: 20px;
    color: var(--color-text-2);
}   

.section-2 .container .wrap .content .name{
    font-weight: 700;
    font-size: 60px;
    margin: 20px 0px;
    color: var(--color-text-1);
}

.section-2 .container .wrap .content .icons{
    margin: 20px 0px;
    display: flex;
    flex-wrap: wrap;
}

.section-2 .container .wrap .content .icons div{
    background-color: white;
    margin-right: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    width: 137px;
    height: 137px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}   

.section-2 .container .wrap .content .icons div i{
    font-size: 40px;
    color: #F57F7F;
    margin-top: 18px;
}

.section-2 .container .wrap .content .icons div p{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 18px;
    color: var(--color-text-1);
}

.section-2 .container .wrap .content .description{
    color: var(--color-text-2);
    font-size: 18px;
    margin-bottom: 40px;
}

@media screen and (max-width: 992px) {
    .section-2 .wrap{
        flex-direction: column;
        align-items: center;
    }

    .section-2 .container .wrap .image{
        width: 100%;
    }

    .section-2 .container .wrap .content{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .section-2 .container .wrap .content{
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .section-2 .container .wrap .content .icons{
        justify-content: center;
    }
}

/* End Section-2 */


/* Section-3 */

.section-3{
    margin: 80px 0px;
}

.section-3 .container .wrap{
    background-color: white;
    border-radius: 10px;
    display: flex;
}

.section-3 .container .wrap .content{
    text-align: left;
    width: 70%;
    padding: 50px;
}

.section-3 .container .wrap .content .inner-content .title{
    color: var(--color-text-2);
    font-size: 20px;
    margin-bottom: 20px;
}

.section-3 .container .wrap .content .inner-content .text{
    width: 80%;
    font-size: 60px;
    font-weight: 800;
}

.section-3 .container .wrap .image{
    width: 30%;
    position: relative;
}

.section-3 .container .wrap .image img{
    position: absolute;
    width: 90%;
    top: -49px;
    right: 60px;
    border-radius: 10px 10px 0 0 ;
    height: auto;
}

/* End Section-3 */


/* Section-4 */

.section-4{
    background-color: white;
}

.section-4 .container .wrap{
    display: flex;
    flex-direction: column;
    align-content: space-between;
    text-align: left;
    padding: 80px 0px;
}

.section-4 .container .wrap .title{
    font-size: 30px;
    color: var(--color-text-1);
    font-weight: 700;
    margin-bottom: 30px;
}

.section-4 .container .wrap .description{
    font-size: 22px;
    color: var(--color-text-2);
    margin-bottom: 30px;
}

.section-4 .container .wrap .selects{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-4 .container .wrap .selects .select{
    display: flex;
    align-items: center;
    width: 30%;
    margin-bottom:13px;
}

.section-4 .container .wrap .selects .select i{
    font-size: 30px;
    color: var(--color-text-2);
}

.section-4 .container .wrap .selects .select p{
    font-size: 20px;
    color: var(--color-text-2);
    margin-left: 15px;
}

@media screen and (max-width: 992px) {
    .section-4 .container .wrap .selects .select{
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .section-4 .container .wrap .title{
        text-align: center;
    }
    .section-4 .container .wrap .description{
        text-align: center;
    }
}

/* End Section-4 */


/* Section-5 */

.section-5{
    padding: 50px 0px;
}

.section-5 .container .wrap h3{
    font-size: 70px;
    margin-top: 0;
    opacity: 0.8;
    margin-bottom: 30px;
}

.section-5 .container .wrap .selects{
    position: relative;
    display: flex;
    justify-content: space-between;
}

.section-5 .container .wrap .selects .select{
    position: relative;
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #FBFBFB;
    height: 100%;
}

.section-5 .container .wrap .selects .select .image{
    height: 40%;
}

.section-5 .container .wrap .selects .select .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;  
    aspect-ratio: 3/2; 
}

.section-5 .container .wrap .selects .select .content{
    margin-left: 40px;
    text-align: left;
}

.section-5 .container .wrap .selects .select .title{
    font-size: 18px;
    color: var(--color-text-2);
    font-weight: 600;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 8px;
}

.section-5 .container .wrap .selects .select .job{
    font-size: 25px;
    color: var(--color-text-1);
    font-weight: 700;
    margin: 0;
    margin-bottom: 38px;
}

.section-5 .container .wrap .selects .arrow{
    z-index: 2;
    position: absolute;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    left: 240px;
    bottom: 97px;
}

.section-5 .container .wrap .selects .arrow i{
    font-size: 23px;
    color: var(--color-text-1);
}

/* End Section-5 */


/* Section-6 */

.section-6{
    padding: 100px 0px;
    background-color: #1B2026;
}

.section-6 .container .wrap{
    background-color: white;
    border-radius: 15px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
}

.section-6 .container .wrap .text{
    width: 60%;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-content: space-between;
}

.section-6 .container .wrap .text .job{
    font-size: 20px;
    color: var(--color-text-2);
    margin-bottom: 10px;
}

.section-6 .container .wrap .text .description{
    font-size: 65px;
    font-weight: 800;
    color: #1B2026;
}

.section-6 .container .wrap .nav{
    width: 40%;
    text-align: left;
    padding: 0px 0px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.section-6 .container .wrap .nav .content{
    width: 100%;
    height: 25%;
    display: flex;
    border: 1px solid var(--color-1);
    border-radius: 8px;
    align-items: center;
    text-align: center;
    color: var(--color-text-2);
}

.section-6 .container .wrap .nav .content .icon-1{
    width: 20%;
    font-size: 25px;
    margin-left: 10px;
}

.section-6 .container .wrap .nav .content p{
    font-size: 20px;
    width: 60%;
    text-align: left;
}

.section-6 .container .wrap .nav .content .icon-2{
    font-size: 25px;
}


/* End Section-6 */



/* Section-7 */

.section-7{
    padding: 100px 0px;
}

.section-7 .title{
    color: var(--color-text-2);
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}

.section-7 h3{
    font-size: 60px;
    color: var(--color-text-3);
    margin: 0;
    margin-bottom: 40px;
}

.section-7 .container .wrap{
    display: flex;
    justify-content: space-between;
}

.section-7 .container .wrap .box{
    width: 22%;
    border-radius: 10px;
    background-color: white;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    color: var(--color-text-3);
}

.section-7 .container .wrap .box .image{
    width: 100%;
    margin: 30px 0;
}

.section-7 .container .wrap .box .image img{
    width: 60%;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.section-7 .container .wrap .box .name{
    width: 100%;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.section-7 .container .wrap .box .career{
    width: 100%;
    font-size: 20px;
    color: var(--color-text-2);
}

.section-7 .container .wrap .box .socials{
    width: 100%;
    margin: 30px 0px;
    padding: 0 40px;
}

.section-7 .container .wrap .box .socials .inner-socials{
    display: flex;
    justify-content: space-between;
}

.section-7 .container .wrap .box .socials .inner-socials a{
    background-color: var(--color-1);
    padding: 15px;
    border-radius: 8px;
}

.section-7 .container .wrap .box .socials .inner-socials a i{
    font-size: 18px;
    color: var(--color-text-3);
}

.section-7 .container .wrap .box .socials .inner-socials a:hover{
    background-color: var(--color-2);
    transition: 0.8s;
}

/* End Section-7 */

/* Section-8 */

.section-8{
    padding-bottom: 100px;
}

.section-8 .container .wrap{
    position: relative;
}

.section-8 .container .wrap img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.section-8 .container .wrap .content{
    background-color: white;
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
    position: absolute;
    width: 90%;
    border-radius: 20px;
    bottom: -49px;
    left: 5%;
    text-align: left;
}

.section-8 .container .wrap .content .box .title{
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--color-text-2);
}

.section-8 .container .wrap .content .box .text{
    font-size: 20px;
    color: var(--color-text-3);
    font-weight: 600;
}

.section-8 .container .wrap .content .button{
    background-color: var(--color-text-3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 40px;
} 

.section-8 .container .wrap .content .button a{
    color: white;
    font-weight: 700;
}

.section-8 .container .wrap .content .button:hover{
    background-color: black;
}

/* End Section-8 */

/* Section-9 */

.section-9{
    padding: 100px 0;
    background: #31363B;
}

.section-9 .container{
    text-align: left;
}

.section-9 .container .title{
    font-size: 20px;
    color: var(--color-text-2);
    font-weight: 700;
}

.section-9 .container h3{
    font-size: 60px;
    color: white;
    margin-bottom: 60px;
    margin-top: 10px;
}

.section-9 .container .wrap{
    display: flex;
    justify-content: space-between;
}

.section-9 .container .wrap .box{
    width: 32%;
    background-color: white;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 50px;
    border-radius: 15px;
}

.section-9 .container .wrap .box .citing{
    margin: auto;
    font-size: 27px;
    color: var(--color-text-2);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 40px;
}

.section-9 .container .wrap .box .person-talk{
    margin: auto;
    display: flex;
    align-items: center;
}

.section-9 .container .wrap .box .person-talk img{
    width: 30%;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
}

.section-9 .container .wrap .box .person-talk .text .name{
    font-size: 25px;
    font-weight: 700;
    color: var(--color-text-1);
}

.section-9 .container .wrap .box .person-talk .text .career{
    font-size: 18px;
    margin-top: 5px;
    color: var(--color-text-2);
}

.section-9 .container .wrap .box i{
    position: absolute;
    font-size: 60px;
    color: var(--color-text-2);
    left: 260px;
    bottom: 118px;
}

/* End Section-9 */

/* Section-11 */

.section-11{
    padding: 60px 0;
    background-color: white;
}

.section-11 .container{
    text-align: left;
    background-color: #DCE8EB;
    padding: 60px 60px 120px 60px;
    border-radius: 20px;
}

.section-11 .container .title{
    font-size: 18px;
    color: var(--color-text-2);
    margin-bottom: 10px;
}

.section-11 .container .text{
    font-size: 50px;
    font-weight: 600;
    color: var(--color-text-1);
    margin-bottom: 60px;
}

.section-11 .container .wrap{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.section-11 .container .wrap .input{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.section-11 .container .wrap .input input{
    outline: 0;
    width: 32%;
    padding: 20px 30px;
    border: 0;
    border-radius: 10px;
}

.section-11 .container .wrap .area{
    width: 100%;
    margin-bottom: 15px;
}

.section-11 .container .wrap .area textarea{
    outline: 0;
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 20px 30px;
}

.section-11 .container .wrap .button{
    margin-top: 20px;
    text-align: right;
    position: relative;
    width: 100%;
}

.section-11 .container .wrap .button a{
    background-color: var(--color-text-1);
    color: white;
    padding: 20px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.section-11 .container .wrap .button a:hover{
    background-color: var(--color-2);
    color: var(--color-text-1);
    transition: 0.8s;
}
/* End Section-11 */

.section-12 iframe{
    width: 100%;
}

/* Footer */

footer{
    background-color: #14191E;
    padding: 20px 0;
    text-align: center;
}

footer p{
    font-size: 18px;
    margin: 0;
    color: #F0FFFF;
}

/* End Footer */





























