jQuery(function($){
$('meta[name="viewport"]').remove();
var tablet_vp = '';
var mobile_vp = '';
if (navigator.userAgent.indexOf('iPhone') > 0 || navigator.userAgent.indexOf('Android') > 0){
if(navigator.userAgent.indexOf('Mobile') > 0){
$("meta:last-of-type").after(mobile_vp);
}else{
$("meta:last-of-type").after(tablet_vp);
}
}else{
$("meta:last-of-type").after(tablet_vp);
}
});
jQuery(function($){$('div').each(function(index, element){if($(element).attr('id')){var class_name = $(element).attr('id');$(element).addClass(class_name);}})});
.breadcrumbs{color: #fff;}
#themify_builder_content-3081{
background: -moz-linear-gradient(left, #0067b9, #1f9cf3);
background: -webkit-linear-gradient(left, #0067b9, #1f9cf3);
background: linear-gradient(to right, #0067b9, #1f9cf3);
}
.index_btn div.col_align_top{
max-width: 1040px;
margin: 0 auto;
}
.top_btn a{
max-width: 500px;
background: linear-gradient(to right,#a0dcff,#7ac8ff)!important;
border-style: none!important;
transition: all .3s linear;
}
.top_btn a span{
z-index: 2;
position: relative;
}
.top_btn a::after {
content: "";
height: 100%;
width: 100%;
left: 0;
top: 0;
position: absolute;
transition: all .3s linear;
background: linear-gradient(to right,#a1d7ff,#c4e6ff)!important;
border-radius: 60px;
}
.top_btn a:hover{
transition: all .3s linear;
}
.top_btn a:hover::after{
transition: all .3s linear;
opacity: 0;
}