/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
	.wrap img {
		margin-top: 5rem;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {

	body {
		display: block;
		background-color: #F7F8FC;
	}

	.wrap img {
		margin-top: 1rem;
		width: 200px;
		display: block;
		margin: 0 auto;
	}

	.wrap {
		box-shadow: none;
		border-radius: 6px;
	}

	.wrap .contact-wrap {
		border-top: 1px solid #945200;
		border-left: none;
		margin-top: 3rem;
		text-align: center;
		padding-left: 0;
	  }

	  .wrap .contact-wrap ul li span.icon {
		  position: relative;
	  }

	  .wrap .contact-wrap ul li span.icon {
		  left: -5px;
	  }

	  .wrap .contact-wrap ul {
		margin-left: -40px;
	  }


}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}