body {
	padding: 0px;
	margin: 0px;
	font-family: 'Poppins';
}
img {
	max-width: 100%;
	height: 0 auto;
}
a {
	text-decoration: none !important;
}
a:focus {
	outline: none;
	outline: 0px auto -webkit-focus-ring-color;
	outline-offset: 0px
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
	outline: none;
	outline-offset: 0px;
}
a:focus, a:hover {
	text-decoration: none !important;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype'),
        url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype'),
        url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype'),
        url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.darkHeader {
	background: #fff;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.header_top {
	background: #104cc5;
	text-align: right;
	height: 40px;
	padding: 8px 0 0;
	overflow: hidden;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.darkHeader .header_top {
	height: 0;
	padding: 0;
}
.header_top span {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #fff;
	vertical-align: top;
	border-right: 1px solid rgba(255, 255, 255, 0.7);
	padding-right: 10px;
	margin-right: 10px;
}
.header_top span:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
.header_top span a {
	color: #fff;
}
.header_top span img {
	width: 16px;
	margin-right: 5px;
}
.header_bottom {
	background: #fff;
}
.logo_inner {
	background: #fff;
	margin-top: -42px;
	padding: 8px 0;
	display: inline-block;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.darkHeader .logo_inner {
	margin-top: 0;
	padding: 4px 0;
}
.logo {
	padding-right: 0;
}
.logo img {
	width: 175px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.darkHeader .logo img {
	width: 110px;
}
.header_menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.header_menu ul li {
	position: relative;
}
.header_menu ul li a {
	display: block;
	color: #282828;
	font-style: normal;
	font-size: 16px;
	text-decoration: none;
	position: relative;
	z-index: 99;
	font-weight: 500;
	padding: 6px 12px;
	border-radius: 30px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_menu ul li a:hover, .header_menu ul li.active a {
	color: #fff;
	background: #104cc5;
}
.header_btn {
	display: inline-block;
	font-weight: 500;
	vertical-align: top;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 30px;
	margin-left: 10px;
	color: #fff !important;
	background: #000;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_btn:hover {
	background: #104cc5;
}
.banner_bottom_section {
	position: relative;
	margin-top: -50px;
}
.banner_bottom_block_inner {
	box-shadow: 0px 8px 19.11px 1.89px rgba(0, 0, 0, 0.09);
	background: #fff;
	border-radius: 7px;
	padding: 30px 25px;
	min-height: 100%;
}
.banner_bottom_block_text {
	color: #222;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
	line-height: 22px;
	margin-top: 20px;
}
.banner_bottom_block_text:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	border-bottom: 4px solid #104cc5;
	border-radius: 30px;
}
.banner_bottom_block_inner img {
	width: 52px;
}
.home_partner_section {
	padding: 70px 0;
}
.home_partner_section_heading {
	font-weight: bold;
	font-size: 26px;
	color: #111;
}
.partner_slider {
	margin-top: 40px;
}
.home_study_section {
	background: #f6f6f6;
	padding: 70px 0 180px;
}
.home_study_section_heading {
	font-weight: bold;
	font-size: 32px;
	color: #111;
	line-height: 42px;
}
.home_study_section_heading strong {
	font-weight: 500;
	color: #104cc5;
}
.home_study_section_text {
	color: #555;
	margin-top: 25px;
}
.home_study_section_btn {
	display: inline-block;
	background: #104cc5;
	color: #fff !important;
	padding: 11px 25px;
	margin-top: 25px;
	border-radius: 30px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_study_section_btn:hover {
	background: #111;
}
.home_study_img {
	padding: 0 60px;
}
.study_img1 {
	border-radius: 20px;
}
.study_img2 {
	border-radius: 20px 20px 0 0;
	width: 275px;
	position: absolute;
	bottom: 0;
	left: -100px;
}
.home_journey_heading {
	color: #111;
	font-weight: 600;
	font-size: 30px;
	margin-top: 80px;
}
.home_worldwide_section {
	position: relative;
	z-index: 9;
	margin-top: -160px;
}
.home_worldwide_box {
	margin-top: 30px;
}
.home_worldwide_box_inner {
	box-shadow: 0px 8px 19.11px 1.89px rgba(0, 0, 0, 0.09);
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	min-height: 100%;
}
.home_worldwide_box_content {
	padding: 0 25px 35px;
}
.home_worldwide_box_content:before {
	background: #fff;
	position: absolute;
	content: "";
	top: -40px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 500px;
	height: 500px;
	border-radius: 50%;
}
.home_worldwide_box_content img {
	border-radius: 50%;
	position: relative;
	z-index: 9;
	margin-top: -100px;
}
.home_worldwide_box_heading {
	color: #06276a;
	font-size: 18px;
	font-weight: 600;
	position: relative;
	z-index: 9;
}
.home_worldwide_box_text {
	color: #585858;
	font-size: 12px;
	position: relative;
	z-index: 9;
	margin-top: 12px;
}
.home_destination_section {
	padding: 70px 0 0;
}
.home_destination_section_heading {
	color: #111;
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;
}
.home_destination_section_heading strong {
	color: #104cc5;
}
.home_destination_section_text {
	margin-top: 20px;
	color: #666;
}
.home_spec_block_inner {
	background: #104cc5;
	padding: 30px 18px;
	min-height: 100%;
	border-radius: 8px;
}
.home_spec_block:nth-child(even) .home_spec_block_inner {
	background: #111;
}
.home_spec_block_inner img {
	width: 50px;
}
.home_spec_block_text {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	line-height: 21px;
	margin-top: 18px;
}
.home_spec_section {
	position: relative;
	margin-top: -70px;
}
.home_testimonial_sec {
	padding: 70px 0;
}
.home_appointment_section {
	position: relative;
	margin-bottom: -90px;
}
.home_appointment_inner {
	background: #104cc5;
	padding: 35px;
	border-radius: 10px;
}
.appointment_calendar {
	padding-right: 0;
}
.appointment_calendar img {
	background: #111;
	border-radius: 50%;
	width: 100px;
	padding: 10px;
}
.home_appointment_section_heading {
	font-weight: bold;
	font-size: 25px;
	color: #fff;
}
.home_appointment_section_text {
	font-size: 15px;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.8);
}
.footer {
	background: #090909;
	padding: 40px 0;
}
.footer_top_heading {
    font-size: 22px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.footer_menu ul {
    list-style-type: none;
    padding: 0;
    margin: 18px 0 0;
}
.footer_menu ul li {
    position: relative;
    margin-top: 3px;
}
.footer_menu ul li a {
	color: #e7e7e7;
	font-size: 15px;
	font-style: normal;
	text-decoration: none;
	position: relative;
	z-index: 99;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.footer_menu ul li a:hover, .footer_menu ul li.active a {
	color: #fff;
	padding-left: 2px;
}
.footer_contact_info ul {
	padding: 0;
	margin: 20px 0 0;
}
.footer_contact_info ul li {
	color: #e7e7e7;
	font-size: 15px;
	position: relative;
	list-style: none;
	margin-top: 15px;
	padding-left: 26px;
}
.footer_contact_info ul li img {
	position: absolute;
	top: 3px;
	left: 0;
	max-width: 18px;
}
.footer_contact_info ul li a {
	color: #e7e7e7;
}
.footer_social {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
	padding-top: 25px;
	color: #eee;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 17px;
}
.footer_social img {
	width: 36px;
}
.footer_social a {
	margin-left: 10px;
}
.footer_top_block {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 25px;
}
.footer_top_block:first-child {
	border-left: none;
	padding-left: 12px;
}
.footer_copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
	padding-top: 25px;
	color: #e7e7e7;
	font-size: 13px;
	text-transform: uppercase;
}
.footer_copyright a {
	color: #e7e7e7;
}
#back-to-top {
	background: #104cc5;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
	text-transform: uppercase;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top.show {
    opacity: 1;
}
.ms-slide-info {
	position: absolute !important;
	top: 50%;
	right: 9%;
	width: auto !important;
	max-width: 450px;
	transform: translate(0, -50%);
	margin-top: 0 !important;
}
.banner_heading {
	color: #fff;
	font-weight: bold;
	font-size: 42px;
	line-height: 46px;
}
.banner_text {
	color: #fff;
	margin-top: 20px;
}
.banner_btn1 {
	display: inline-block;
	background: #fff;
	padding: 11px 22px;
	color: #111 !important;
	border-radius: 30px;
	font-weight: 500;
	margin: 20px 10px 0 0;
}
.banner_btn2 {
	display: inline-block;
	background: #111;
	padding: 11px 22px;
	color: #fff !important;
	border-radius: 30px;
	font-weight: 500;
	margin: 20px 0 0;
}
.home_banner_section {
	margin-top: 110px;
}
.ms-nav-prev {
	background: url("../images/prev_icon.png") no-repeat center !important;
}
.ms-nav-next {
	background: url("../images/next_icon.png") no-repeat center !important;
}
.page-id-7 .footer {
	padding-top: 130px;
}
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    background: url("../images/inner_banner.jpg") #eee no-repeat;
    background-size: cover !important;
    max-width: 100% !important;
    padding: 270px 0 110px !important;
    margin: 0 0 50px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page .entry-header:before, .blog_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}
.content-area, .content-sidebar {
    padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
    color: #fff;
	position: relative;
    font-size: 35px;
	font-weight: 600;
    text-transform: none;
    z-index: 99;
	margin-bottom: 3px;
}
.breadcrumb-container {
    width: 100%;
	color: #74a2ff;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #74a2ff;
}
.page {
	margin-top: 0 !important;
}
.sp-testimonial-free {
	border: 1px solid #ddd !important;
	border-radius: 8px !important;
	padding: 20px 20px 5px;
}
.sp-testimonial-post-title {
	background: url(../images/star.png) no-repeat left bottom;
	background-size: 100px;
	text-align: left !important;
	font-size: 18px !important;
	padding-bottom: 20px !important;
}
.sp-testimonial-content {
	display: block !important;
	height: 100px;
	overflow: auto;
	scrollbar-width: thin;
}
.sp-testimonial-content, .sp-testimonial-content p {
	text-align: left !important;
	font-size: 15px !important;
	line-height: 24px !important;
}
.sp-testimonial-free-section .testimonial-nav-arrow {
	font-size: 30px !important;
	top: 72% !important;
}
.home_review_text {
	font-weight: 600;
	text-transform: uppercase;
	line-height: 20px;
	margin-top: 15px;
}
.more_review_icon {
	background: #111;
	color: #fff !important;
	font-size: 14px;
	margin-top: 12px;
	display: inline-block;
	padding: 9px 16px;
	border-radius: 30px;
}
.appointment_form p {
	margin-bottom: 0 !important;
}
.appointment_form input {
	width: 100%;
	border: none !important;
	margin-top: 12px;
	min-height: 45px;
	border-radius: 4px;
}
.appointment_form .contact_btn input {
	width: 100%;
	border: none !important;
	margin-top: 12px;
	min-height: 45px;
	background: #090909 !important;
	font-weight: 500;
	text-transform: capitalize;
	font-size: 15px;
	border-radius: 4px;
}
.omsc-accordion {
	border: none !important;
}
.omsc-accordion .omsc-toggle {
	margin: 15px 0 0 !important;
}
.omsc-toggle-title {
	border-top: 1px solid #e1e1e1;
	font-weight: 500;
	padding: 10px 35px 10px 18px !important;
}
.omsc-toggle-title::after {
	content: '\f067' !important;
	left: auto !important;
	right: 15px;
	color: #104cc5;
}
.omsc-toggle.omsc-expanded .omsc-toggle-title::after {
	content: '\f068' !important;
}
.omsc-toggle-inner {
	color: #666;
	font-size: 15px;
}
.inner_page_heading  {
	font-weight: 600;
	color: #222;
	font-size: 27px;
	line-height: 32px;
	position: relative;
	padding-bottom: 12px;
}
.inner_page_heading strong  {
	font-weight: 600;
	color: #104cc5;
}
.inner_page_heading:before  {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	border-bottom: 4px solid #104cc5;
}
.centered_heading:before  {
	left: 50%;
	transform: translate(-50%, 0);
}
.inner_page_text {
	color: #666;
	margin-top: 20px;
}
.inner_page_mid_section {
	background: #f6f6f6;
	padding: 65px 0;
	margin: 65px 0;
}
.inner_page_list ul {
	padding: 0;
	margin: 0;
}
.inner_page_list ul li {
	list-style: none;
	position: relative;
	padding-left: 24px;
	color: #666;
	margin-top: 4px;
}
.inner_page_list ul li:before {
	background: url("../images/check.png") no-repeat;
	background-size: 100%;
	width: 17px;
	height: 17px;
	position: absolute;
	content: "";
	top: 3px;
	left: 0;
}
.inner_page_bottom_box {
	background: #104cc5;
	text-align: center;
	padding: 50px 30px;
	border-radius: 10px;
	margin-top: 60px;
}
.inner_page_bottom_box_heading  {
	font-weight: 600;
	color: #fff;
	font-size: 25px;
	line-height: 30px;
	position: relative;
	padding-bottom: 12px;
}
.inner_page_bottom_box_heading:before  {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 30px;
	border-bottom: 4px solid #fff;
}
.inner_page_bottom_box_text {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.8);
}
.contact_page_info {
	position:relative;
	padding-left:48px;
	color:#666;
	margin-top:25px;
}
.contact_page_info a {
	color:#666;
}
.contact_page_info strong {
	color:#222;
	font-weight: 600;
	font-size:18px;
}
.contact_page_info img {
	position:absolute;
	top:7px;
	left:0;
	width:35px;
}
.contact_form {
	margin-top: 10px;
}
.contact_form p {
	margin-bottom: 0 !important;
}
.contact_form input {
    margin-top: 15px;
    min-height: 45px;
    border: 1px solid #ccc !important;
    width: 100%;
	border-radius: 0;
}
.contact_form textarea {
    margin-top: 15px;
    height: 150px;
    border: 1px solid #ccc !important;
	resize: none;
	border-radius: 0;
}
.contact_form .contact_btn input {
    min-height: 45px;
    border: none !important;
    width: auto;
    background: #104cc5 !important;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
}
.contact_map {
	margin-top: 60px;
}
.contact_map iframe, #post-157 {
	margin-bottom: 0 !important;
}
.rmp-container .rmp-menu-title .rmp-menu-title-image {
	width: 75px !important;
	height: 75px !important;
}
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer_btn1 {
	background: #fca40e;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.footer_btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding: 10px 12px 0;
}
.footer_btn3 {
	background: #333;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.thankyou_btn {
	background: #104cc5;
	display: inline-block;
	color: #fff !important;
	margin-top: 20px;
	border-radius: 30px;
	padding: 9px 20px;
}
.thankyou_text {
	color: #666;
}
.error_container {
	display: flex;
	min-height: 100vh;
	align-items: center;
	text-align: center;
}
.error_container img {
	margin-bottom: 20px;
}


/*=============== Responsive ===============*/

@media only screen and (min-width : 300px) and (max-width : 1023px) {
.header_top, .header_right {
  display: none !important;
}
.logo_inner {
  margin-top: 0 !important;
  padding: 5px 0;
}
.logo img {
  width: 50px !important;
}
.footer_contact_info ul li {
  font-size: 13px;
}
.home_banner_section {
  margin-top: 60px;
}
.banner_bottom_block {
  margin-top: 25px;
  min-width: 50%;
  max-width: 50%;
}
.banner_bottom_section {
  margin-top: 20px;
}
.ms-view, .ms-slide {
   min-height: 300px !important;
}
.ms-slide-bgcont img {
   object-fit: cover;
}
.ms-slide-info {
  right: 4%;
  left: 4%;
}
.banner_heading, .home_partner_section_heading, .home_study_section_heading, .home_journey_heading, .home_destination_section_heading, .page .entry-title, .blog_page_title {
  font-size: 26px;
  line-height: 30px;
}
.home_partner_section, .home_testimonial_sec {
  padding: 40px 0;
}
.banner_btn1, .banner_btn2, .home_study_section_btn {
  padding: 10px 20px;
  font-size: 15px;
}
.banner_bottom_block_inner {
  padding: 20px 15px;
}
.partner_slider {
  margin-top: 22px;
}
.study_img2 {
  width: 160px;
  left: -40px;
}
.home_study_img {
  padding: 0 12px 0 60px;
  margin-bottom: 30px;
}
.home_study_section {
  padding: 40px 0 180px;
}
.home_journey_heading {
  margin-top: 40px;
}
.home_destination_section {
  padding: 40px 0 0;
}
.destination_right, .home_testimonial_slide {
  margin-top: 30px;
}
.home_spec_block {
  margin-top: 25px;
}
.home_spec_section {
  margin-top: 0;
}
.home_appointment_inner {
  padding: 30px 20px 5px;
}
.appointment_calendar img {
  width: 60px;
}
.home_appointment_section_heading {
  font-size: 22px;
  margin-top: 15px;
}
.footer_top_block {
  border-left: none;
  padding-left: 12px;
  margin-top: 35px;
}
.footer {
  padding: 10px 0 60px;
}
.page-id-7 .footer {
  padding-top: 90px;
}
#back-to-top {
  bottom: 55px;
}
.page .entry-header, .blog_page_header {
  padding: 135px 0 70px !important;
  margin: 0 0 40px !important;
}
.inner_page_heading, .inner_page_bottom_box_heading {
  font-size: 23px;
  line-height: 28px;
}
.inner_page_img {
  margin-bottom: 25px;
}
.inner_page_mid_section {
  padding: 40px 0;
  margin: 40px 0;
}
.inner_page_bottom_box {
  padding: 35px 15px;
  margin-top: 40px;
}
.contact_right {
  margin-top: 40px;
}
}

@media only screen and (max-width : 320px) {

}

@media only screen and (min-width : 321px) and (max-width : 480px) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {
.ms-slide-info {
  right: 11%;
  left: 11%;
}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
.ms-slide-info {
  right: 10%;
  left: auto;
  max-width: 370px;
}
.banner_bottom_block {
  min-width: 33.3%;
  max-width: 33.3%;
}
.home_appointment_section_heading, .contact_right {
  margin-top: 0;
}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
.footer_top_block {
  padding-left: 12px;
}
.footer_top_heading {
  font-size: 19px;
}
.header_top span {
  font-size: 13px;
  padding-right: 6px;
  margin-right: 6px;
}
.header_top {
  padding: 10px 0 0;
}
.header_top span img {
  width: 13px;
}
.header_menu ul li a {
  font-size: 14px;
  padding: 7px 10px;
}
.home_spec_block_inner {
  padding: 20px 15px;
  border-radius: 8px;
}
.home_spec_section {
  margin-top: -20px;
}
.contact_page_info {
  padding-left: 45px;
  font-size: 14px;
}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
.ms-slide-info {
  right: 10%;
  left: auto;
  max-width: 370px;
}
.banner_bottom_block {
  min-width: 33.3%;
  max-width: 33.3%;
}
.home_appointment_section_heading, .contact_right {
  margin-top: 0;
}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
.ms-slide-info {
  right: 10%;
  left: auto;
  max-width: 370px;
}
.banner_bottom_block {
  min-width: 33.3%;
  max-width: 33.3%;
}
.home_appointment_section_heading, .contact_right {
  margin-top: 0;
}
}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
.ms-slide-info {
  right: 10%;
  left: auto;
  max-width: 370px;
}
.banner_bottom_block {
  min-width: 33.3%;
  max-width: 33.3%;
}
.home_appointment_section_heading, .contact_right {
  margin-top: 0;
}
}

/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
.footer_top_block {
  padding-left: 12px;
}
.footer_top_heading {
  font-size: 19px;
}
.header_top span {
  font-size: 13px;
  padding-right: 6px;
  margin-right: 6px;
}
.header_top {
  padding: 10px 0 0;
}
.header_top span img {
  width: 13px;
}
.header_menu ul li a {
  font-size: 14px;
  padding: 7px 10px;
}
.home_spec_block_inner {
  padding: 20px 15px;
  border-radius: 8px;
}
.home_spec_section {
  margin-top: -20px;
}
.contact_page_info {
  padding-left: 45px;
  font-size: 14px;
}
}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
.footer_top_block {
  padding-left: 12px;
}
.footer_top_heading {
  font-size: 19px;
}
.header_top span {
  font-size: 13px;
  padding-right: 6px;
  margin-right: 6px;
}
.header_top {
  padding: 10px 0 0;
}
.header_top span img {
  width: 13px;
}
.header_menu ul li a {
  font-size: 14px;
  padding: 7px 10px;
}
.home_spec_block_inner {
  padding: 20px 15px;
  border-radius: 8px;
}
.home_spec_section {
  margin-top: -20px;
}
.contact_page_info {
  padding-left: 45px;
  font-size: 14px;
}
}

@media screen and (min-width: 1424px) {

}

@media screen and (min-width: 1624px) {

}

@media screen and (min-width: 1920px) {
.ms-slide-info {
  right: 16%;
}
}

@media screen and (min-width: 2048px) {
.ms-slide-info {
  right: 18%;
}
}

@media screen and (min-width: 2550px) {
.ms-slide-info {
  right: 24%;
}
}
