.btn {
    padding: 8px 10px;
	font-size: 16px;
    color: #4338CA;
	cursor: pointer;
	display: inline-block;
}
.btn-more {
    border: 1px solid #4338CA;
    border-radius: 12px;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.btn-more:hover,
.news_visit_btn:active {
    color: #fff;
    background-color: #4338CA;
}
.btn-white {
	background-color: #ffffff;
	transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}
.btn-white:hover {
	background-color: rgb(211, 211, 211);
}
.container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}
.mt-10 {
    margin-top: 10px;
}

.d-none {
	display: none;
}




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

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.btn {
		font-size: 14px;
	}
}

@media only screen and (max-width : 1024px) {
	.btn {
		font-size: 12px;
	}
    .container {
        max-width: 90%;
		width: 90%;
    }

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.btn {
		padding: 6px 8px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.container {
		max-width: 100%;
		width: 90%;
	}
	/*Disable Animation on Mobile Devices*/
	.animated {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}

}

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

}

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

}
