body {
	color: #000;
	font-family: var(--ff-body);
	counter-reset: section;
}

* {
	text-decoration: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
	box-sizing:border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
	--ff-body: 'Noto Sans', sans-serif;
	--ff-primary: 'Poppins', sans-serif;
	--clr-primary: #386385;
	--clr-secondary: #2EB3CB;
	--clr-blue: #8DCFDF;
	--clr-accent: #101010;
	--clr-white: #fff;
	--clr-black: #000;
	--clr-gray: #C3C1C1;
}

::selection {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

::placeholder{
	color: #333333;
}

dl, ol, ul {
    padding: 0;
	margin: 0;
}
a {
    color: var(--clr-primary);
    transition: 0.5s all;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
p {
	font-size: 16px;
	line-height: 27px;
	color: #020202;
	font-weight: 400;
}

p:last-child{
	margin: 0;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
    font-weight: normal;
    line-height: normal;
}
h1 {
	font-size: 30px;
}
h2 {
	font-size: 26px;
}
h3 {
	font-size: 22px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

section, header, footer {
    width: 100%;
    float: left;
}

section {
    padding: 50px 0;
}

.container-fluid{
	padding: 0 60px;
}

.title {
    margin-bottom: 15px;
}

.title h2 {
    font-size: 35px;
    line-height: 48px;
    font-weight: 500;
    color: var(--clr-black);
    font-family: var(--ff-primary);
}

.title h4 {
    font-size: 25px;
    line-height: 46px;
    font-weight: 300;
    color: var(--clr-black);
	font-family: var(--ff-primary);
}

.title h5 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    color: var(--clr-primary);
}

.title h6 {
    font-size: 16px;
    line-height: 30px;
    color: #191919;
    font-weight: 500;
	font-family: var(--ff-secondary);
}

.primary_btn {
    width: 100%;
    display: inline-block;
}

.primary_btn a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding: 9px 24px;
    transition: 0.5s;
    text-align: center;
    color: var(--clr-white);
    border-radius: 8px;
    display: inline-block;
    text-transform: capitalize;
    text-decoration: none;
    background-color: var(--clr-secondary);
}

.primary_btn a:hover {
	color: var(--clr-white);
    background-color: var(--clr-primary);
}

.secondary_btn a {
    width: auto;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    padding: 9px 34px;
    transition: 0.5s;
	border-radius: 11px;
	display: inline-block;
    color: var(--clr-white);
	border: 1px solid #FFFFFF;
}

.secondary_btn a:hover {
	color: var(--clr-black);
	border: 1px solid var(--clr-black);
}

.img_bx {
    width: 100%;
    height: 100%;
}

.img_bx img {
    width: 100%;
    height: 100%;
}

/***  header  start  ***/

.header {
    width: 100%;
    position: absolute;
    z-index: 111111;
}

.header-top {
    width: auto;
    padding: 8px 0;
    background-color: var(--clr-primary);
}

.header-bx {
    width: 100%;
    padding: 14px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3C6787;
}

.header-bx ul{
	display: flex;
    align-items: center;
}

.header-bx li{
    margin: 0;
    display: flex;
    align-items: center;
}

.contact_us ul li{
	padding-left: 15px;
}

.header-bx ul li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    padding-left: 10px;
    color: var(--clr-white);
}

.header-bx ul li a:hover{
	color: var(--clr-secondary);
}

.social_media {
    align-items: center;
    display: flex;
}

.social_media p {
    font-size: 16px;
    margin: 0;
    line-height: 22px;
    font-weight: 600;
    color: var(--clr-white);
}

.social_media ul {
    display: flex;
    align-items: center;
}

.social_media ul li {
    padding: 0 5px;
}

.social_media ul li img:hover {
    filter: brightness(0.4) invert(1);
}

.evaluation_btn {
    display: flex;
    align-items: center;
}

.appoint_btn_colm a {
    width: auto;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding: 10px 18px;
    transition: 0.5s;
    border-radius: 8px;
    display: inline-block;
    color: var(--clr-white);
    background-color: var(--clr-secondary);
}

.appoint_btn_colm a:hover {
    color: var(--clr-white);
	background-color: var(--clr-primary);
}

.logo {
    flex-grow: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.logo img {
    width: 135px;
    height: auto;
    object-fit: contain;
}

.navigation {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 11111;
}

.navigation .container-fluid {
    padding: 0 30px;
}

.navrow {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    padding: 10px 35px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 3px 23px #00000029;
    border: 1px solid #E9E9E9;
    background-color: var(--clr-white);
}

.nav_right {
    display: flex;
    align-items: center;
}

.mynav {
    padding: 0;
}

.navbar-collapse {
    text-align: center;
    margin: 0 auto;
    justify-content: right;
    align-items: inherit;
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar ul li{
    margin: 0px 25px;
}

.navbar ul li a {
    font-weight: 400;
    font-size: 17px;
    line-height: 57px;
    transition: 0.5s all;
    color: var(--clr-primary);
	font-family: var(--ff-primary);
	border-bottom: 1px solid transparent;
}

.navbar ul li a:hover, .navbar ul li.active a  {
    color: var(--clr-secondary);
	border-bottom: 1px solid var(--clr-secondary);
}

.social_media .textwidget.custom-html-widget {
    display: flex;
    align-items: center;
}
/***  header  end  ***/

/**** banner ****/

.image-layer {
    width: 100%;
    height: 650px;
    display: flex;
    position: relative;
    align-items: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.banner_head_title {
    position: relative;
	text-align: center;
}

.banner_head_title h1 {
    font-size: 55px;
    line-height: 83px;
    font-weight: 500;
	color: var(--clr-white);
    font-family: var(--ff-primary);
}

.banner_head_title p{
	margin: 0px;
    font-size: 16px;
    font-weight: 400;
	line-height: 27px;
    color: var(--clr-white);
}

.btn_colm {
    margin-top: 30px;
}

.btn_colm a {
    width: auto;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    padding: 9px 34px;
    transition: 0.5s;
	border-radius: 11px;
	display: inline-block;
    color: var(--clr-white);
	border: 1px solid #FFFFFF;
    background-color: transparent;
}

.btn_colm a:hover {
	color: var(--clr-white);
    background-color: var(--clr-primary);
	border: 1px solid var(--clr-primary);
}

.banner-carousel .owl-dots {
    position: relative;
    margin-top: -30px !important;
}

.banner-carousel .owl-dots span {
    border: none;
    outline: none;
	transition: 0.5s;
    background-color: #fff !important;
}

.banner-carousel .owl-dots .owl-dot.active span {
    background-color: var(--clr-primary) !important;
}

.banner-carousel .owl-dots :hover {
    background-color: var(--clr-white) !important;
}

.left_col {
    height: 100%;
}
.left_col .img_bx img {
    object-fit: cover;
}
.right_col {
    width: 100%;
    height: 100%;
    padding: 40px 50px;
    background-color: #F8F7F7;
}

.text_content {
    width: 100%;
    height: 100%;
    padding: 30px 25px;
    border: 1px solid #D2D2D2;
}

.text_content h4 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    min-height: 54px;
    margin-bottom: 10px;
    color: var(--clr-primary);
    font-family: var(--ff-primary);
}

.text_content p {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #020202;
    font-family: var(--ff-primary);
}

.read_more_btn a {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: var(--clr-secondary);
    border-bottom: 1px solid var(--clr-secondary);
}

.read_more_btn a:hover {
    color: var(--clr-primary);
    border-bottom: 1px solid var(--clr-primary);
}

.box_colm .img_bx img {
    /*height: 244px;*/
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.center_text_summary {
    width: 100%;
    background-color: #F8F7F7;
}

.event_colm {
    width: 100%;
    height: 100%;
}

.img_middle_colm {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
}

.img_middle_colm img {
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    left: 50%;
	transition: 0.5s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.img_middle_colm:hover .overlay {
    background-color: rgb(141 207 223 / 80%);
}

.middle_text h4 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    color: var(--clr-white);
}

.img_middle_colm:hover .middle_text h4{
	color: var(--clr-black);
}

.learn_more_btn a {
    width: auto;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    padding: 9px 34px;
	border-radius: 11px;
	display: inline-block;
    color: var(--clr-white);
	border: 1px solid #FFFFFF;
}

.img_middle_colm:hover .learn_more_btn a {
	color: var(--clr-black);
	border: 1px solid var(--clr-black);
}

.img_bg_layout {
    padding-top: 80px;
    background-color: rgb(46 179 203 / 48%);
}

.service_guide_list {
    width: 100%;
    height: 100%;
    padding: 50px 50px 50px 240px;
    position: relative;
    background-color: #F9F9F9;
}

.service_guide_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -122px;
    top: -43px;
    min-height: 527px;
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;/**
    background-image: url('../images/Group 24.png');**/
}

.service_guide_list h3 {
    font-size: 30px;
    line-height: 39px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--clr-secondary);
	font-family: var(--ff-primary);
}

.service_guide_list ul li {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
    color: var(--clr-accent);
}

.service_guide_list ul li::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 4px;
    background-size: auto;
    background-position: top left;
    background-repeat: no-repeat;
    background-image: url('../images/noun_tick_1473854.png');
}

.testi-card {
    width: 100%;
	height: 100%;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.testi-card::before {
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    top: 0;
    position: absolute;
    height: calc(100% - 60px);
    background-color: rgb(46 179 203 / 7%);
}

.testimonial_slider .quote_icon img {
    width: auto;
    margin: 0 auto;
}

.testimonial_slider .testi-profile img {
    width: auto;
    margin: 0 auto;
}

.testi-cont h5 {
    font-size: 18px;
    line-height: 22px;
    font-style: italic;
    font-weight: 500;
    margin: 30px 0;
	color: var(--clr-accent);
	font-family: var(--ff-primary);
}

.testi-cont p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
	color: var(--clr-accent);
}

.testi-profile {
    margin-top: 30px;
}

/*** footer_css ***/

.footer-now {
    width: 100%;
    padding: 50px 0 30px;
    background-color: var(--clr-primary);
}
.footer-box h3 {
    font-size: 30px;
    line-height: 49px;
    font-weight: 500;
	margin-bottom: 10px;
    color: var(--clr-white);
    font-family: var(--ff-primary);
}
.footer-box.box_2 {
    margin: 40px 0;
}
.footer-box.box_4 {
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgb(255 255 255 / 52%);
}
.footer_navbar ul li {
    display: inline-block;
    padding: 0px 20px 0;
    text-align: center;
}
.footer_navbar ul li:nth-child(2) {
    border-left: 1px solid #ffffff85;
    border-right: 1px solid #ffffff85;
}
.footer_navbar ul li:nth-child(3) {
    border-right: 1px solid #ffffff85;
}
.footer-box ul li a {
    font-size: 17px;
    line-height: 23px;
    font-weight: 400;
	color: var(--clr-white);
}
.footer-box ul li a:hover {
	color: var(--clr-secondary);
}
.follow_social_media ul li {
    display: inline-block;
    padding: 0px 10px 0;
    text-align: center;
}
.follow_social_media ul li a {
    width: 48px;
    height: 48px;
    line-height: 42px;
    display: inline-block;
    border-radius: 100%;
    border: 3px solid rgb(255 255 255 / 24%);
    background-color: rgb(16 16 16 / 24%);
}
.follow_social_media ul li a:hover {
    transform: rotate(360deg);
}
.footer-bottom {
    width: 100%;
    padding: 15px 0;
    background-color: var(--clr-primary);
}
.copyright_text p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--clr-white);
}

/*** ***/

.inner_banner {
    width: 100%;
    height: 564px;
    display: flex;
    position: relative;
    align-items: flex-end;
    text-align: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.banner_sub_title {
    position: relative;
    bottom: 170px;
}

.banner_sub_title h2 {
    font-size: 55px;
    font-weight: 500;
    line-height: 83px;
    color: var(--clr-white);
    font-family: var(--ff-primary);
}

.service_colm .text_summary {
    width: 100%;
    padding: 30px 20px;
    box-shadow: 0px 3px 16px #00000029;
    border: 1px solid #DBDBDB;
}

.text_summary h4{
	font-size: 25px;
    font-weight: 500;
    line-height: 27px;
	margin-bottom: 10px;
    color: var(--clr-primary);
    font-family: var(--ff-primary);
}

.bg_layout {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: left;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.title h1 {
    font-size: 55px;
    font-weight: 900;
    line-height: 40px;
	margin-bottom: 15px;
    color: var(--clr-black);
    font-family: var(--ff-primary);
}

.title h1 span{
    font-size: 25px;
    font-weight: 400;
}

.title p {
	margin-top: 15px;
}

.left_side {
    width: 100%;
    height: 100%;
    padding: 40px 50px;
    background-color: #f2f2f2;
}

.service_type_list ul li:nth-child(1) {
	border-top: none;
}

.service_type_list ul li {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid rgb(225 225 225 / 50%);
}

.service_detail h4 a{
    font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    color: var(--clr-primary);
    font-family: var(--ff-primary);
}

.service_detail h4 a:hover{
	color: var(--clr-secondary);
}

.service_type_list .ser_img {
    width: calc(100% - 360px);
    float: left;
    margin-right: 20px;
}

.service_detail p {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: #020202;
}

.right_side{
	width: 100%;
    height: 100%;
    padding: 60px 50px;
    text-align: center;
}

.user_skill ul li {
    margin: 70px 0;
}

.user_skill ul li h4 a{
    font-size: 24px;
    line-height: 33px;
    font-weight: 500;
    color: var(--clr-black);
    font-family: var(--ff-primary);
}

.user_skill ul li h4 a:hover{
	color: var(--clr-secondary);
}

.left_sidebar {
    width: 100%;
    height: 100%;
    padding: 0 60px;
}

.right_sidebar {
    width: 100%;
    height: 100%;
}

.characteristics_list ul li {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #020202;
    position: relative;
	padding-left: 30px;
}

.characteristics_list ul li:before {
    content: "";
    width: 14px;
    height: 14px;
    left: 0;
    right: 0;
    top: 8px;
    border-radius: 100%;
    position: absolute;
    background-color: #2EB3CB;
}

.contact_row {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    margin-top: 100px;
    text-align: center;
    position: relative;
}

.contact_row::before {
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    position: absolute;
    display: inline-block;
    border: 1px solid #DCDCDC;
    box-shadow: 0px 3px 19px #00000014;
}

.bx_colm {
    width: 100%;
    padding: 30px;
    min-height: 255px;
    box-shadow: 0px 3px 6px #00000021;
    border: 1px solid #BCBCBC;
    border-radius: 10px;
    margin-top: -100px;
    position: relative;
    z-index: 1111111;
    background-color: #fff;
}

.bx_colm h5 {
    font-size: 25px;
    line-height: 48px;
    font-weight: 500;
	color: var(--clr-secondary);
    font-family: var(--ff-primary);
}

.bx_colm p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
	color: var(--clr-black);
    font-family: var(--ff-primary);
}

.bx_colm p a{
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
	color: var(--clr-black);
    font-family: var(--ff-primary);
}

.contact_form {
    padding: 65px;
    width: 100%;
    position: relative;
    z-index: 11111;
}

.contact_form form {
    text-align: left;
}

.contact_form .form-group {
    margin-top: 1.5rem;
}

.contact_form .form-group input[type="text"], .contact_form .form-group input[type="email"], .contact_form .form-group input[type="tel"], .contact_form .form-group textarea {
    width: 100%;
    height: 69px;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    line-height: 36px;
    font-weight: 400;
    padding: 0 15px;
    color: var(--clr-black);
    border: 1px solid rgb(179 179 179 / 29%);
    box-shadow: 0px 2px 6px #00000024;
    font-family: var(--ff-primary);
}

.contact_form .form-group input::placeholder{
	color: #B4B4B4;
}

.contact_form .form-group textarea::placeholder{
	color: #B4B4B4;
}

.contact_form .form-group textarea {
	height: 225px;
	padding: 15px;
}

.contact_form .form-group input[type="submit"]{
	font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding: 9px 24px;
    transition: 0.5s;
    text-align: center;
    color: var(--clr-white);
    border-radius: 8px;
    display: inline-block;
    text-transform: capitalize;
    text-decoration: none;
	border: none;
	outline: none;
    background-color: var(--clr-secondary);
}

.contact_form .form-group input[type="submit"]:hover{
	background-color: var(--clr-primary);
}

.map_iframe iframe {
    width: 100%;
}

.calendar_page .simcal-calendar {
    width: 100%;
    padding: 15px;
    box-shadow: 0px 3px 32px #00000029;
}

.calendar_page .simcal-calendar td.simcal-day.simcal-day-void {
    border: none;
}

.calendar_page .simcal-calendar td.simcal-day {
    border: 1px solid #C7C7C7;
}

.calendar_page .simcal-calendar thead.simcal-calendar-head tr th {
    padding-top: 5px;
}

.paoc-popup-center-center .paoc-cb-popup-body {
    margin: auto;
    top: 170px;
}

.service_colm .img_bx {
    height: auto;
}
.service_colm .text_summary {
    height: 305px;
}

/*** calendar-css ***/

.tribe-common .tribe-common-l-container.tribe-events-l-container {
    padding: 0 !important;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}
.tribe-common .center_text_summary {
    padding: 50px 0;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
.tribe-common .center_text_summary .container {
    margin: 0 auto;
}
.tribe-events-header {
    padding: 30px 50px !important;
}
.tribe-events-calendar-month {
    padding: 0px 50px !important;
    width: 100%;
}
.tribe-events-calendar-month header.tribe-events-calendar-month__header .tribe-events-calendar-month__header-column {
    padding: 10px 15px;
    border: 1px solid #e4e4e4;
}
.tribe-events-calendar-month header.tribe-events-calendar-month__header .tribe-events-calendar-month__header-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: #3b9cbc;
    font-family: var(--ff-primary);
}
.tribe-events-calendar-month__body h3.tribe-common-h4 {
    font-size: 18px !important;
    font-weight: 700;
    color: #000;
    font-family: var(--ff-body);
}
.tribe-events-calendar-month__body h3.tribe-common-h4 time {
    font-size: 18px !important;
    font-weight: 700;
    color: #000;
    font-family: var(--ff-body);
}
.tribe-events-calendar-month__week .tribe-events-calendar-month__day {
    overflow: hidden !important;
}
.tribe-events-header button.tribe-common-c-btn.tribe-events-c-search__button {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    padding: 10px 15px;
    transition: 0.5s;
    text-align: center;
    color: var(--clr-white);
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    text-decoration: none;
    background-color: var(--clr-secondary);
}
.tribe-events-header button.tribe-common-c-btn.tribe-events-c-search__button:hover {
    background-color: #3C6787;
    font-size: initial;
    padding: 10px 15px;
}
.tribe-events-c-top-bar__datepicker button.tribe-common-h3.tribe-common-h--alt.tribe-events-c-top-bar__datepicker-button {
    width: auto;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    padding: 5px 12px;
    border-radius: 5px;
    display: flex;
    color: var(--clr-black);
    border: 1px solid #3b9cbc;
}
.tribe-events .tribe-events-c-top-bar__datepicker-container .dropdown-menu {
    min-width: auto !important;
    width: auto !important;
}
.tribe-common.tribe-events p.tribe-events-promo.tribe-common-b1.tribe-events-c-promo {
    text-align: center;
    margin-bottom: 50px;
}
.tribe-common.tribe-events p.tribe-events-promo.tribe-common-b1.tribe-events-c-promo a.tribe-common-anchor-thin.vcard.url.org.fn {
    color: #3b9cbc;
    border-bottom: 1px solid #3b9cdc;
}
.tribe-events-c-subscribe-dropdown {
    padding: 0 50px !important;
}

.tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border.tribe-events-c-subscribe-dropdown__button {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: 0.5s;
    text-align: center;
    color: var(--clr-white) !important;
    border-radius: 5px;
    border: none;
    display: inline-block;
    text-transform: capitalize;
    text-decoration: none;
    background-color: var(--clr-secondary) !important;
}
.tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border.tribe-events-c-subscribe-dropdown__button:hover {
    background-color: #3C6787 !important;
}

.tribe-events-pg-template {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}
.tribe-events-single {
    padding: 50px !important;
    width: 100%;
    float: left;
}
.tribe-events-event-image {
    float: left;
    width: auto !important;
    margin-bottom: 0 !important;
}
.tribe-events-single-event-description.tribe-events-content {
    float: right;
    width: 63% !important;
    padding: 0 0 0 25px;
    display: inline-block;
}
.tribe_events.type-tribe_events.status-publish.has-post-thumbnail.hentry {
    display: block;
}
.tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border.tribe-events-c-subscribe-dropdown__button {
    width: 220px;
}
.tribe-events-meta-group.tribe-events-meta-group-organizer {
    float: right;
    flex: inherit;
}
.service_colm .img_bx img {
    height: 453px;
    object-fit: cover;
}
