@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* font-weight: 200; */
}
body{
    background: linear-gradient(90deg, orange 0%, rgb(203, 151, 54) 30%, rgb(249, 199, 105) 30%, rgb(255, 202, 103) 100%);
}

.logo svg {
    width: 44px;
    height: 44px;
    margin: 1em;
    fill: rgb(20, 13, 0);    
}

.logo svg:hover{
    cursor: pointer;
    fill: rgb(146, 96, 2);
    transition: all 0.5s ease-in;
}

.contactUs{
 position: relative;
 /* width: 100%; */
 padding:10px 100px 20px 100px;
 /* height: auto; */
 /* margin-top: -1em; */
}
.contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}
.contactUs .title h2{
    color: white;
    font-weight: 300;
    margin-top: -0.5em;
}
.form{
    grid-area: form;
}
.info{
    grid-area: info;

}
.map{
    grid-area: map;
}
.contact{
    padding: 40px;
    background-color: white;
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}
.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap:20px;
    margin-top: 20px;

}

.contact h3{
    color: orange;
    font-weight: 300;
    font-size: 1.4em;
    margin-bottom: 10px;
    margin-top: -1em;
}

/* form */

.formBox{
    position: relative;
 width: 100%;

}
.formBox .row50{
    display: flex;
    gap: 20px;
}
.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
.formBox .row100 .inputBox{
    width: 100%;

}
.inputBox span{
    color: orange;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}
.inputBox input{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid black;
}
label .errorbtn{
    color: red;
    font-size: 10px;
}
.inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid black;
    resize: none;
    /* min-height: 130px; */
    margin-bottom: 10px;
}
.inputBox input[type="submit"]{
    color: white;
    background-color: orange;
    font-size: 1.1em;
    border: none;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}
.inputBox ::placeholder{
    color: grey;
    font-size: 15px;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

/* Contact Info*/
.info{
    background: orange;

}
.info h3{
    color: white;
    margin-top: -1em;

}
.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;

}
.info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: white;
    background-color: rgb(253, 187, 66);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
}
.info .infoBox div p{
    color: white;
    font-size: 1.1em;
    margin-bottom: -0.5em;

}
.info .infoBox div a{
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    
}
.sci{
    margin-top: 40px;
    display: flex;
    /* gap: 20px; */

}
.sci li{
    list-style: none;
    margin-right: 15px;
    margin-left: 0.5em;
   
}
.sci li a{
    /* color: white; */
    font-size: 2em;
    color: #ccc;
    
}
.sci li a:hover{
    color: white;
}
.map{
    padding: 0;
}
.map iframe{
    width: 100%;
    height: 100%;
}

label{
    color: red;
    display: flex;
    /* margin-top: -1em; */
    margin-top: 0.5em;
    /* justify-content: center; */
    align-items: center;
    font-weight: 600;
}


#developers{
    background-color: antiquewhite;
}

#developers h1{
    text-align: center;
    color: orange;
    font-size: 2em;
    font-weight: 400;
}


.swiper{
    width: 950px;

    /* position: relative; */

}
.developers .card .image{
    height: 140px;
    width: 140px;
    border-radius: 50%;
    padding: 3px;
    background-color: orange;
}
 .developers .name-review{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }
.developers .card .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.developers .card{
    /* position: relative; */
    background-color: #fff;
    border-radius: 20px;
    margin: 20px 0;
    width: 280px;
    
    
}

.developers .card::before{
    content: "";
    position: absolute;
    height: 55%;
    width: 100%;
    background: orange;
    border-radius: 20px 20px 0 0 ;
    
}

.developers .card .card-content{
    padding: 30px;
    /* padding-bottom: 5px ; */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    
}

.developers .name{
    font-size: 20px;
    font-weight: 600;
}

.developers .review{
    font-size: 10px;
    font-weight: 400;
}

.developers .card .rating{
    display: flex;
    align-items: center;
    margin-top: 18px;
}



#contacts i{
    font-size: 20px;
    margin: 5px;
    color: rgb(218, 0, 145);
}