/* 
Theme Name: Thai Visa Expert
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Phoenix Media.
Author URI: https://www.phoenixmedia.co.th/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: 
*/

/* Add your custom styles here */
:root {
  --main-blue: #026082;
  --main-blue-2: #0C71C3;
  --main-pink: #EA005A;
  --main-text: #333333;
}
#main-content h2,
#main-content h3,
#main-content h4,
#main-content h5 {
	color: var(--main-text) !important;
}
#main-content h2{
	font-size: 32px;
}
#main-content h3{
	font-size: 28px;
}
#main-content h4{
	font-size: 22px;
}
#main-content h5 {
	font-size: 18px;
}
/** Header **/
#master-nav .nav-highlight {
	background: var(--main-pink);
	border-radius: 5px;
    transition: all .6s ease;
    -ms-transition: all .6s ease;
    -webkit-transition: all .6s ease;
}
#master-nav .nav-highlight:hover {
	background: var(--main-blue-2);
	transform: translateX(10px);
}
#master-nav .nav-highlight a {
	color: white;
}
.cta2-inner .elementor-button,
#home-cta .elementor-cta__button {
	display: none;
}
.cta2-inner:hover .elementor-button,
#home-cta .elementor-cta:hover .elementor-cta__button {
	display: inline-block;
	animation: Slide_up 0.5s ease;
	transform: ;
}
#home-blog .elementor-cta__content,
#home-cta .elementor-cta__content {
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.7) 100%);
}
#home-faq .elementor-accordion-item {
	margin-bottom: 15px;
	border: 1px solid #e9e9e9;
	border-radius: 15px;
}
#home-faq .elementor-accordion-icon {
	float: right;
	transform: rotate(315deg);
	width: 16px;
}
@keyframes Slide_up {
	0% {
		transform:translateY(50px) ;
		opacity: 0;
	}
	100% {
		transform:translateY(0) ;
		opacity: 1;
	}
}