/*main contact*/
#main{
	background: #f2f0eb;
}
body{
	/*padding: 0 100px;*/
	background-color: #0f4043;
}
.main__contact{
    width: 85%;
    margin: 0 auto;
}

.path__contact{
    margin-top: 30px;
    margin-bottom: 21px;
}

.path__contact a{
    color: #334862;
    font-size: 14px;
}
.path__contact i{
    font-size: 9px;
}
.path__contact span{
    font-size: 14px;
}

.contact__content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact__left{
    width: 49%;
    /*align-self: flex-end;*/
}

.location li{
    font-size: 14px;
    color: #000000c4;
    margin-bottom: 18px;
}
.location li:nth-child(1),
.location li:nth-child(3){
    margin-right: 9px;
}

.location li:nth-child(2){
    margin-right: 5px;
}
.location li:nth-child(1) i{
	margin-right: 8px;
	font-size: 18px;
}
.location li:nth-child(2) i,
.location li:nth-child(3) i{
	margin-right: 5px;
	font-size: 18px;
}

.platforms{
    display: flex;
    gap: 5px;
}
.platforms li{
    width: 33px;
    height: 33px;
    border-radius: 50%;
    text-align: center;
    line-height: 33px;
    cursor: pointer;
}
.platforms li i{
    color: #fff;
}
.platforms li:nth-child(1){
    background-color: #3a589d;
}
.platforms li:nth-child(2){
    background-color: #3b6994;
}
.platforms li:nth-child(3){
    background-color: #2478ba;
}
.platforms li:nth-child(4){
    background-color: #111111;
}

.platforms li:nth-child(1):hover{
    background-color: #2e467e;
    transition: all linear 0.3s;
}
.platforms li:nth-child(2):hover{
    background-color: #2f5476;
    transition: all linear 0.3s;
}
.platforms li:nth-child(3):hover{
    background-color: #1d6095;
    transition: all linear 0.3s;
}
.platforms li:nth-child(4):hover{
    background-color: #0e0e0e;
    transition: all linear 0.3s;
}

.contact__right{
    width: 49%;
}

.contact__right p{
    font-size: 14px;
    margin-bottom: 18px;
}
.form__contact{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.form__contact div:nth-child(1),
.form__contact div:nth-child(2){
    width: 47%;
}
.form__contact div:nth-child(3),
.form__contact div:nth-child(4){
    width: 100%;
}
.form__contact div:nth-child(5){
    width: 40%;
}
.form__contact div:nth-child(5) button{
    cursor: pointer;
}

.form__contact input,
.form__contact textarea{
    width: 100%;
    height: 52px;
    background-color: #fff;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    outline: none;
    padding-left: 15px;
    color: #000;
    font-weight: 300;
    line-height: 52px;
}
.form__contact textarea{
    resize: vertical;
}

.form__contact button{
    width: 100%;
    height: 52px;
    background-color: #0a3321;
    border-radius: 5px;
    color: #fed58e;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    outline: none;
}
/*end main contact*/

/*map*/
.map__contact{
    margin-top: 60px;
}
.map__contact iframe{
    width: 100%;
    margin-bottom: -4px;
}
/*end map*/


@media only screen and (max-width: 820px){
    .main__contact{
        width: 95%;
    }
}

@media only screen and (max-width: 414.98px){
   
    .contact__content{
        gap: 30px;
    }
    .contact__left, .contact__right{
        width: 100%;
    }
    .form__contact div:nth-child(1), .form__contact div:nth-child(2) {
        width: 100%;
    }
    .form__contact div:nth-child(5) {
        width: 50%;
    }
    .form__contact button{
        background-color: #132146;
    }

}