* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

button:focus, input:focus, textarea:focus {
	outline: 0;
}

body {
	background-color: #edea43;
}

html {
    font-size: 33.5%;
}

@font-face {
    font-family: FF-Shamel-Family-Sans-One-Book;
    src: url(../webfonts/FF-Shamel-Family-Sans-One-Book.ttf);
}

@font-face {
    font-family: Helvetica-Bold-Font;
    src: url(../webfonts/Helvetica-Bold-Font.ttf);
}

.contact_wrapper {
    padding: 8rem 0;
    height: 100vh;
    display: flex;
    display: -webkit-box;
	display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.container {
    max-width: 50.5rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.text_center {
	text-align: center;
}

.logo {
    display: block;
    margin-bottom: 3.5rem;
}

.logo img {
	width: 35rem;
}

.img-fluid {
	max-width: 100%;
    height: auto;
}

.social_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.social_box {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #534d89;
    margin-top: 3.5rem;
    width: 100%;
}

.social_box:hover .social_icon {
	border: 0.4rem solid #ffffff;
}

.social_box .social_icon svg path {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.social_box:hover .social_icon svg path {
	fill: #ffffff;
}

.social_icon {
    width: 10rem;
    height: 10rem;
    border-radius: 5.3rem;
    background-color: #edea43;
    border: 0.4rem solid #534e8a;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.social_icon svg {
    width: 5.5rem;
    height: 5.5rem;
}

.social_text h2 {
	font-size: 2.4rem;
	line-height: 2rem;
	text-transform: uppercase;
	color: #534d89;
	font-family: Helvetica-Bold-Font;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.social_box:hover .social_text h2 {
	color: #ffffff;
}

.social_text .text_rtl {
	font-family: FF-Shamel-Family-Sans-One-Book !important;
	direction: rtl;
}

.mt_20 {
	margin-top: 2rem;
}

@media (max-width: 1199.98px) {
	.contact_wrapper {
		height: auto;
	}
}

/*Medium devices (tablets, 767px and down)*/
@media (max-width: 767px) {
	html {
	    font-size: 42.5%;
	}

	.contact_wrapper {
	    padding: 6rem 0;
	}

	.logo {
	    margin-bottom: 0.5rem;
	}

	.logo img {
	    width: 24rem;
	}

	.social_icon {
		width: 5rem;
		height: 5rem;
	}

	.social_icon svg {
	    width: 2.5rem;
	    height: 2.5rem;
	}

	.mt_20 {
	    margin-top: 1.5rem;
	}

	.social_text h2 {
	    font-size: 1.7rem;
	    line-height: 1.7rem;
	}

	.social_box {
	    margin-top: 2.5rem;
	}



}