@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);@import url(https://fonts.googleapis.com/css?family=Raleway:100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);
body {
    font-family: "Open Sans", sans-serif !important;
}

.business-map-icon {
    max-width: 30px;
    max-height: 30px;
    transition: 0.2s ease;
}

.business-map-icon:hover {
    transform: scale(1.1);
}

.p-10 {
    padding: 10px !important;
}

.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.fa-user-circle:before{
    color: #fff;
}
.mt-10 {
    margin-top: 10px !important;
}

.fs-11 {
    font-size: 1.1em !important;
}

.mx-auto {
    margin: 0 auto !important;
}

/* quick float-icon style */
.quick-float {
	position: fixed;
	z-index: 999;
	left: 0;
	bottom: 5%;
}

.quick-float-icon {
	height: 38px;
	cursor: pointer;
	margin-left: 1rem;
	transition: all 0.4s;
}

.quick-float-icon:hover {
	height: 38px;
	transform: scale(1.2);
}
/* quick style end */

/* Report Abuse */
.report-box {
    position: fixed;
    display: inline-block;
    background-color: #fff;
    width: 30rem;
    max-width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border-right: none;
    right: -100%;
    bottom: 0;
    z-index: 10000;
    box-shadow: -1px 1px 4px 0px rgba(51, 51, 51, 0.36);
    transition: 0.6s right;
}
.report-box.open {
    right: 0;
    bottom: 0;
}
.report-box .report-box-header {
    position: relative;
    background-color: #f3f3f3;
    text-align: center;
    padding: 20px 25px 20px 25px;
}
.report-box .report-box-header h4 {
    color: #121212;
    font-size: 1.2rem;
    font-weight: 700;
}
.report-box .report-box-header .report-close-btn {
    position: absolute;
    color: #999;
    font-size: 1.4rem;
    padding: 6px 8px;
    right: 4px;
    top: 5px;
    cursor: pointer;
}
.report-box .report-box-body {
    position: relative;
    padding: 10px 0px 25px 0px;
    max-height: 80vh;
    overflow-y: scroll;
}
.report-box .report-box-body .report-form {
    padding: 15px 0;
    margin-left: 20px;
    margin-right: 20px;
}
.report-box .report-box-body .report-form .options-wrap {
    margin-bottom: 15px;
}
.report-box .report-box-body .report-form .options-wrap .option-wrap {
    color: #000;
    font-size: 1rem;
    margin-bottom: 6px;
}
.report-box .report-box-body .report-form .options-wrap .option-wrap.extra-field {
    display: none;
}
.report-box .report-box-body .report-form .options-wrap .option-wrap label {
    display: inline;
    padding-left: 4px;
    cursor: pointer;
}
.report-box .report-box-body .report-form .report-email, .report-box .report-box-body .report-form .report-reason {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    color: #333;
    border: 1px solid #ddd;
}
.report-box .report-box-body .report-form .report-msg {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    color: #333;
    border: 1px solid #ddd;
    height: 150px;
}
.report-box .report-box-body .report-form .report-send-btn {
    display: inline-block;
    width: 100%;
    border: none;
    padding: 6px 10px;
    background-color: #2185d0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
}
.report-box .report-box-body .report-success-box {
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: green;
    color: #fff;
    padding-top: 4rem;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    transition: 0.2s ease-in;
    transform: translateY(-100%) scale(0);
}
.report-box .report-box-body .report-success-box.show {
    display: block;
    visibility: visible;
    transform: translateY(0%) scale(1);
}
.report-box .report-box-body .report-success-box h4 {
    font-size: 2.4rem;
    padding-bottom: 20px;
}

.report-box .report-box-body .confirmation-box {
	position: absolute;
	left: 20px;
	right: 20px;
	padding-bottom: 20px;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	color: #111;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transform: scale(0);
	visibility: hidden;
	opacity: 0;
	bottom: -50%;
	transition: all 0.4s ease-in;
}

.report-box .report-box-body .confirmation-box.show {
	transform: scale(1);
	visibility: visible;
	opacity: 1;
	bottom: 20px;
}

.report-box .report-box-body .confirmation-box .c-title {
	background-color: #f3f3f3;
	padding: 12px 5px;
	text-align: center;
	font-size: 1.2rem;
	border: 1px solid #f9f9f9;
}

.report-box .report-box-body .confirmation-box .c-body {
	padding: 20px 10px;
	text-align: center;
}

.report-box .report-box-body .confirmation-box .c-body p {
	font-size: 0.85rem;
}

.report-box .report-box-body .confirmation-box .c-footer {
	text-align: center;
}

.report-box .report-box-body .confirmation-box .c-footer .c-btn {
	display: inline-block;
	padding: 4px 10px;
	border: 1px solid #dee2e6;
}

.report-box .report-box-body .confirmation-box .c-footer .c-btn.btn-cancel {
	margin-right: 5px;
	background-color: #f3f3f3;
	color: #111;
}

.report-box .report-box-body .confirmation-box .c-footer .c-btn.btn-confirm {
	background-color: red;
	color: #fff;
}
/* Report Abuse END */


.share-icon {
    margin: 0 .6rem;
    color: #333;
    transition: all 0.3s;
}

.share-icon.fa-facebook-f:hover {
    color: #3B5998;
}

.share-icon.fa-twitter:hover {
    color: #1DA1F2;
}

.share-icon.fa-google-plus-g:hover {
    color: #DB4437;
}

.share-icon.fa-pinterest-p:hover {
    color: #BD081C;
}

.share-icon.fa-linkedin-in:hover {
    color: #0077B5;
}

.share-icon.fa-envelope:hover {
    color: #00a5ea;
}

.share-icon.fa-whatsapp:hover {
    color: #25D366;
}

/** popup style **/

 /* default styles mobile */
 .popup {
    background: #333333de;
    position: fixed;
    z-index: 9999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.popup.is-on {
    opacity: 1;
    visibility: visible;
}

.popup.is-on .popup__content {
    opacity: 1;
    visibility: visible;
    top: 10%;
    border-radius: 4px;
}

.popup.is-on .popup__content .popup__text {
    color: #333;
    padding: 3rem 1rem;
    text-align: center;
}

.popup.is-on .popup__content .popup__text img {
    max-width: 100% !important;
}

.popup .popup__content {
    position: absolute;
    word-wrap: break-word;
    overflow-y: scroll;
    padding: 5rem 2.5rem;
    background: #fff;
    top: -50%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 80%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popup__button__div {
    text-align: center;
}

.popup__button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    color: #fff;
    margin: 0 auto;
    background-color: #00a5ea;
    transition: all 0.3s;
    border-radius: 2px;
    text-transform: uppercase;
}

.popup__button__div a {
    text-decoration: none;
}

.popup__button:hover {
    color: #fff;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

#popup__close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 3rem;
    color: #333;
    cursor: pointer;
    transition: all 0.5s;
}

#popup__close:hover {
    color: #ee3333;
}

.show {
    opacity: 1;
    display: block;
}

.hide {
    opacity: 0;
    display: none;
}

/* desktop */
@media (min-width:992px) {
    .popup .popup__content {
        width: 60% !important;

    }
}

/** end of popup style **/

/* Custom Section Style To handle images/video/table */
@media (max-width:992px) {
    
    iframe.note-video-clip{
        width: 100%;
    }
}

@media (max-width:600px) {

    iframe.note-video-clip{
        width: 100%;
        height: 100%;
    }

}

.summernote-content-wrapper,
.summernote-content-wrapper iframe.note-video-clip {
    max-width: 100%;
}

.summernote-content-wrapper img {
    max-width: 100%;
    height: auto;
}

.summernote-content-wrapper table {
    text-align: center;
    border: none;
}

.summernote-content-wrapper table.table.table-bordered {
    display: block;
    overflow-x: auto;
}

.container iframe {
    max-width: 100% !important;
    max-height: 100% !important;
}

.word-wrap {
    word-wrap: break-word !important;
}

.no-margin {
    margin-bottom: 0px !important;
}

.slider-header {
    height: auto !important;
}

.mt-7 {
    margin-top: 7em !important;
}

/* .slick-slider-img {
    margin: 0 auto !important;
    max-height: 100vh;
    max-width: 100vw;
    width: 100%;
    height: 100%;
}

.slick-img-zoom {
    margin: 0 auto;
    width: 100%;
} */


.slick-slider-img {
    position: relative;
    margin: 0 auto;
    max-height: 100vh;
    max-width: 100vw;
    width: 100%;
    height: 100vh;
    /* height: 100%; */
    background-color: #333;
}

.slick-img-zoom {
    margin: 0 auto;
    height: 100% !important;
    width: 100%;
    object-fit: cover;

    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
}

.slider--overlay {
    position: absolute;
    z-index: 99;
    top: 50%;
    display: inline-block;
    left: 50%;
    text-align: center;
    word-break: break-word;
    transform: translate(-50%, -50%);
}

.slick--overlay-zoom {
    margin: 0 auto;
}

.slider--overlay .slider--custom--content .custom__text {
    word-wrap: break-word;
    color: #fff;
}

.slider__btn {
    padding: 0.6rem 1.6rem;
    background-color: #4fbfa8;
    border: none;
    border-radius: 2px;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s;
}

.slider__btn:hover {
    background-color: #3da892;
    color: #fff;
}

/* desktop */
@media (min-width:992px) {
    .slider--overlay {
        /* padding: 2rem 20rem; */
    }
}

/* tablets */
@media (min-width:600px) and (max-width: 991px) {
    .slider--overlay {
        /* padding: 2rem 8rem; */
    }
}

.d-block {
    display: block !important;
}

/* mixin for multiline */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin: 0;
}

/* id */

#map {
    width: 100%;
    height: 60vh;
}

#btn_send_msg, #modal-show-btn-mobile {
    padding: 2rem 2rem;
    background: #ffd700;
    height: 100%;
    text-align: center;
    font-weight: 900;
    font-size: 1em;
    color: black;
    border-radius: 0;
    margin: 0;
    position: relative;
    float: right;
    margin-left: auto;
    width: 16vw;
    display: block;
    color: #1c1c1c;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

#form-unit, #form-quantity {
    display: block;
    position: relative;
    float: left;
    width: 48%;
    margin-right: 2%;
}

#form-unit {
    margin-right: 0;
    width: 50%;
}

/* classes */

.compact.row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.marginless.main.menu {
    margin: 0 auto;
    left: 0 !important;
}

.ui.large.images img.video-img {
    height: 92%;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.header-logo-fix-w-h{
    width: auto !important;
    height: 10em !important;
}

.pt-10{
    padding-top: 10px !important;
}

.pb-10{
    padding-bottom: 10px !important;
}

.pt-20{
    padding-top: 20px !important;
}

.pt-30{
    padding-top: 30px !important;
}

.pt-60{
    padding-top: 60px !important;
}

.pt-40{
    padding-top: 40px !important;
}

.pt-25{
    padding-top: 25px !important;
}

.pb-25{
    padding-bottom: 25px !important;
}

.pb-20{
    padding-bottom: 20px !important;
}

.pb-30{
    padding-bottom: 30px !important;
}

.pb-40{
    padding-bottom: 40px !important;
}

.pb-60{
    padding-bottom: 60px !important;
}

.mb-0{
    margin-bottom: 0px !important;
}

.mb-40{
    margin-bottom: 40px !important;
}

.mb-99{
    margin-bottom: 99px !important;
}

.p-30{
    padding:30px !important;
}

.float-right{
    float: right !important;
}

.float-left{
    float: left !important;
}

.title-1{
    font-size: 2.2em !important;
}

.title-2{
    font-size: 1.7em !important;
}

.title-3{
    font-size: 1.2em !important;
}

.fs-1-em{
    font-size: 1em !important;
}

.p-15{
    padding: 15px !important;
}

.p-20{
    padding: 20px !important;
}

.w-728{
    width: 728px !important;
}

.p-0{
    padding: 0px !important;
}

.width-100{
    width: 100% !important;
}

.cursor-pointer{
    cursor: pointer !important;
}

.h-100{
    height: 100px !important;
}

.h-150{
    height: 150px !important;
}

.slider-custom-nav-height-img{
    height: 8em !important;
}

.img-height-200{
    height: 200px !important;
}

.height-1-3-em{
    height: 1.3em !important;
}

.main-custom-height-img{
    height: 30em !important;
}

.height-2-7-em{
    height: 2.7em !important;
}

.height-100{
    height: 100px !important;
}

.word-overflow{
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.word-break{
    word-break: break-all;
}

.overflow-wrap-break-word{
    overflow-wrap: break-word;
}

.header-area h4 {
    margin: -0.5rem 0.5rem auto auto;
}

.header-area .ui.grid > .column.right:not(.row) {
    padding-top: 2rem;
}

.header-area .computer.only i.icon-holder.icon {
    font-size: 3em;
    line-height: 1em;
}

.header-area .mobile.only i.icon-holder.icon {
    font-size: 2.5em;
    line-height: 1.25em;
}

.header-area .header-logo {
    margin-top: -2rem;
}

.un-bold{
    font-weight: normal !important;
}

.ui.sidebar.left.nav--overlay {
    z-index: 102;
}

.ui.sidebar.left.nav--overlay .item a {
    font-size: 1rem !important;
}

.ui.sidebar.left.nav--overlay .ui.accordion {
    color: white !important;
    padding: 0.93em 1.143em;
}

.ui.sidebar.left.nav--overlay .ui.accordion a.title {
    color: white !important;
}

.ui.sidebar.left.nav--overlay .ui.accordion .accordion {
    padding: 0.93em 1.143em;
}

.banner-msg {
    padding-top: 5px;
}

.ui.sub.header.desc--link {
    margin-top: 0;
}

.box-shadow-white{
    box-shadow: 0px 0px 5px #fff;
    border-radius: 20px;
    background: #fff;
}

.box-shadow-black-5-all{
    box-shadow: 0px 0px 5px #000;
}

.slider-nav img:hover{
    background: #fff;
}

.arrow-w-h{
    width: 40px !important;
    height: 40px !important;
}

.w-20{
    width: 20px !important;
}

.h-20{
    height: 20px !important;
}

.h-15-em{
    height: 15em !important;
}

.w-40{
    width: 40px !important;
}

.h-40{
    height: 40px !important;
}

.h-4-em{
    height: 4em !important;
}

.footer-area {
    padding: 5.5em 2rem;
    background-color: #f9f9f9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='236' height='236' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23d7d7d7' stroke-width='0.8' stroke-opacity='0.14'%3E%3Crect x='-40' y='40' width='75' height='75'/%3E%3Crect x='-35' y='45' width='65' height='65'/%3E%3Crect x='-30' y='50' width='55' height='55'/%3E%3Crect x='-25' y='55' width='45' height='45'/%3E%3Crect x='-20' y='60' width='35' height='35'/%3E%3Crect x='-15' y='65' width='25' height='25'/%3E%3Crect x='-10' y='70' width='15' height='15'/%3E%3Crect x='-5' y='75' width='5' height='5'/%3E%3Crect width='35' height='35'/%3E%3Crect x='5' y='5' width='25' height='25'/%3E%3Crect x='10' y='10' width='15' height='15'/%3E%3Crect x='15' y='15' width='5' height='5'/%3E%3Crect x='40' width='75' height='75'/%3E%3Crect x='45' y='5' width='65' height='65'/%3E%3Crect x='50' y='10' width='55' height='55'/%3E%3Crect x='55' y='15' width='45' height='45'/%3E%3Crect x='60' y='20' width='35' height='35'/%3E%3Crect x='65' y='25' width='25' height='25'/%3E%3Crect x='70' y='30' width='15' height='15'/%3E%3Crect x='75' y='35' width='5' height='5'/%3E%3Crect x='40' y='80' width='35' height='35'/%3E%3Crect x='45' y='85' width='25' height='25'/%3E%3Crect x='50' y='90' width='15' height='15'/%3E%3Crect x='55' y='95' width='5' height='5'/%3E%3Crect x='120' y='-40' width='75' height='75'/%3E%3Crect x='125' y='-35' width='65' height='65'/%3E%3Crect x='130' y='-30' width='55' height='55'/%3E%3Crect x='135' y='-25' width='45' height='45'/%3E%3Crect x='140' y='-20' width='35' height='35'/%3E%3Crect x='145' y='-15' width='25' height='25'/%3E%3Crect x='150' y='-10' width='15' height='15'/%3E%3Crect x='155' y='-5' width='5' height='5'/%3E%3Crect x='120' y='40' width='35' height='35'/%3E%3Crect x='125' y='45' width='25' height='25'/%3E%3Crect x='130' y='50' width='15' height='15'/%3E%3Crect x='135' y='55' width='5' height='5'/%3E%3Crect y='120' width='75' height='75'/%3E%3Crect x='5' y='125' width='65' height='65'/%3E%3Crect x='10' y='130' width='55' height='55'/%3E%3Crect x='15' y='135' width='45' height='45'/%3E%3Crect x='20' y='140' width='35' height='35'/%3E%3Crect x='25' y='145' width='25' height='25'/%3E%3Crect x='30' y='150' width='15' height='15'/%3E%3Crect x='35' y='155' width='5' height='5'/%3E%3Crect x='200' y='120' width='75' height='75'/%3E%3Crect x='40' y='200' width='75' height='75'/%3E%3Crect x='80' y='80' width='75' height='75'/%3E%3Crect x='85' y='85' width='65' height='65'/%3E%3Crect x='90' y='90' width='55' height='55'/%3E%3Crect x='95' y='95' width='45' height='45'/%3E%3Crect x='100' y='100' width='35' height='35'/%3E%3Crect x='105' y='105' width='25' height='25'/%3E%3Crect x='110' y='110' width='15' height='15'/%3E%3Crect x='115' y='115' width='5' height='5'/%3E%3Crect x='80' y='160' width='35' height='35'/%3E%3Crect x='85' y='165' width='25' height='25'/%3E%3Crect x='90' y='170' width='15' height='15'/%3E%3Crect x='95' y='175' width='5' height='5'/%3E%3Crect x='120' y='160' width='75' height='75'/%3E%3Crect x='125' y='165' width='65' height='65'/%3E%3Crect x='130' y='170' width='55' height='55'/%3E%3Crect x='135' y='175' width='45' height='45'/%3E%3Crect x='140' y='180' width='35' height='35'/%3E%3Crect x='145' y='185' width='25' height='25'/%3E%3Crect x='150' y='190' width='15' height='15'/%3E%3Crect x='155' y='195' width='5' height='5'/%3E%3Crect x='160' y='40' width='75' height='75'/%3E%3Crect x='165' y='45' width='65' height='65'/%3E%3Crect x='170' y='50' width='55' height='55'/%3E%3Crect x='175' y='55' width='45' height='45'/%3E%3Crect x='180' y='60' width='35' height='35'/%3E%3Crect x='185' y='65' width='25' height='25'/%3E%3Crect x='190' y='70' width='15' height='15'/%3E%3Crect x='195' y='75' width='5' height='5'/%3E%3Crect x='160' y='120' width='35' height='35'/%3E%3Crect x='165' y='125' width='25' height='25'/%3E%3Crect x='170' y='130' width='15' height='15'/%3E%3Crect x='175' y='135' width='5' height='5'/%3E%3Crect x='200' y='200' width='35' height='35'/%3E%3Crect x='200' width='35' height='35'/%3E%3Crect y='200' width='35' height='35'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto auto;
    background-position: center;
}

.pt-0-7-em{
    padding-top: 0.7em !important; 
}

.pb-0-7-em{
    padding-bottom: 0.7em !important;
}

.pos-relative{
    position: relative;
}

.left-25{
    left: 25px;
}

.bg-white{
    background:#fff !important;
}

.p-0{
    padding: 0px !important;
}

.width-40-em{
    width: 40em !important;
}

.slick-arrow {
    z-index: 2;
    color: black;
}

.slick-next {
    margin-right: 8vw;
}

.slick-next-newpage{
    margin-right: 0vw!important;
}

.slick-prev {
    margin-left: 8vw;
}

.slick-prev-newpage{
    margin-left: 0vw !important;
}

.slick-prev-custom-page{
    margin-left: 0px !important;
}

.slick-next-custom-page{
    margin-right: 0px !important;
}

.blue, .ui.grid > .blue.row {
    background: #00a5ea !important;
}

.inverted.blue {
    color: #ffffff;
}

.header-nav {
    left: 0 !important;
    font-family: 'Raleway',sans-serif;
}

.header-nav .ui.container .item {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.banner-msg {
    font-size: 1em;
}

.segment.copyright {
    border-radius: 0px;
}

.pg--404 {
    color: red;
    font-size: 1.5em;
}

.width-ads-remove-link-mobile{
    width: 470px !important;
    font-size: 0.8em;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.nested.menu .item, .nested.menu {
    margin-left: 1em;
}

.mediadetail-container {
    margin-top: 0 !important;
}

.mediadetail-container .ui.card {
    padding: 1em;
}

.media-detail-img-height{
    height: 600px !important;
}

.mediadetail-container .video-img {
    border: 1px solid black;
}

.media-container {
    margin-top: 0 !important;
}

.media-container .ui.card {
    min-width: 292px;
    max-width: 400px;
}

.media-container .ui.card .media-box {
    height: 260px;
}

.media-container .ui.card .media-box img {
    display: block;
    margin: 0 auto;
}

.ui.stackable.business-desc-area.cards .card {
    padding: 2em !important;
    margin-left: 1em;
    margin-right: 1em;
}

.ui.stackable.business-desc-area.cards .card h1 {
    padding-bottom: 0.5em;
}

.home-page-area .section:nth-child(odd) {
    background-color: #f6f6f6;
}

.home-page-area .section {
    padding-top: 4em;
    padding-bottom: 4em;
}

.media-container .image {
    height: 80%;
}

.media-container .image img {
    width: 100%;
    height: 100%;
}

.copyright {
    margin-top: 0 !important;
}

.copyright a {
    color: white;
}

.copyright .social-container .page-views {
    margin-bottom: 1rem;
}

.footer-area .links-container > .column {
    padding-top: 0 !important;
    padding-left: 0 !important;
}

.sidebar-wrapper .single-sidebar {
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
}

.footer-logo {
    text-align: center;
}

.footer-logo div {
    margin-top: 10px;
}

.top-banner .computer.only.ui.divider {
    margin: 0 auto 0 34%;
}

.top-banner .top-banner-msg {
    margin-left: 26% !important;
    margin-top: 2% !important;
}

.ui.links-container a.item {
    color: black;
}

.display-inline-block{
    display: inline-block;
}

.h-120{
    height: 120px !important;
}
.w-210{
    width: 210px !important;
}

.overflow-hidden{
    overflow: hidden;
}

.footer-contact-info tr {
    margin-bottom: 1rem !important;
}

.footer-contact-info .text-holder, .footer-contact-info .item .icon {
    color: #00a5ea;
}

.updatedetail-container .ui.items.author-box {
    padding: 1rem !important;
    background: #f9f9f9;
}

.updatedetail-container .background-slider-display {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.updatedetail-container .background-slider-display img {
    width: 100%;
    height: 50vw;
}

.updatedetail-container .background-slider-display .slick-prev {
    margin-left: 8vw;
}

.updatedetail-container .background-slider-display .slick-next {
    margin-right: 9vw;
}

.ui.grid .ui.stackable.grid.update-left {
    margin: 0 !important;
    padding: 0.5em 1em !important;
    padding-top: 0 !important;
}

.updatedetail-container .update-left, .updates-container .update-left {
    padding-right: 0 !important;
}

.updatedetail-container .update-right, .updates-container .update-right {
    margin-top: 0 !important;
    padding-left: 1em !important;
    padding-right: 1em;
}

.updatedetail-container .update-right .sidebar-wrapper, .updates-container .update-right .sidebar-wrapper {
    padding: 0;
}

.updates-container {
    margin-top: 0 !important;
}

.updates-container .ui.card {
    min-width: 292px;
    max-width: 400px;
}

.updates-container .ui.card .blurring.dimmable.image {
    padding: 1em;
}

.updates-container .content .ui.image {
    max-height: 315px;
    width: 100%;
}

.updates-container .content .ui.image.medium img {
    width: 100%;
}

.updates-container .content .ui.image img {
    height: 260px;
}

.products-container .ui.card .content .ui.image {
    width: 100%;
}


.text-overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.position-relative{
    position: relative;
}

.top-minus-20-left-15{
    top: -20px;
    left: 15px;
}

.update-card-img-height-18-em{
    height: 18em !important; 
}

.productdetails-font-fixing tr td{
    padding: 10px;
}

.productdetails-font-fixing{
    font-size: 1em;   
}

.text-align-center{
    text-align: center;
}

.pt-0{
    padding-top: 0px !important;
}

.fc-black{
    color: #000 !important;
}

.fc-theme{
    color: #00a5ea !important;
}

.fc-white{
    color: #fff !important;
}

.fc-grey{
    color : grey !important;
}

.fc-red{
    color: red !important;
}

.bg-color-newsletter{
    background: #00a5ea;
    padding-bottom: 1em !important;
}

.single-sidebar .categories {
    display: block;
    padding: 0;
    list-style: none;
}

.single-sidebar .categories li {
    border-bottom: 1px solid #ededed;
    margin-bottom: 10px;
    padding-bottom: 7px;
}

.single-sidebar .categories li a > span {
    float: right;
}

.single-sidebar .popular-tag li {
    list-style: none;
    display: inline-block;
    margin: 0 3px 10px;
}

.single-sidebar .popular-tag li a {
    border: 1px solid #f4f4f4;
    color: #949494;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 12px 4px;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    border-radius: 2px;
}

.single-sidebar .popular-tag {
    padding-left: 0;
}

.sidebar-wrapper .single-sidebar .sec-title {
    overflow: hidden;
    padding-bottom: 1em;
    padding-left: 0;
    margin-top: 0;
}

ul.popular-post {
    padding-left: 0;
}

ul.popular-post .ui.items li.item {
    border-bottom: 1px solid #f4f4f4;
    padding: 0.5rem;
    padding-left: 0;
}

.ui.items.unstackable .item .content {
    padding: 1rem;
}

.ui.comments.row {
    max-width: 100%;
}

.ui.comments .comment, .ui.comments .comment:first-child {
    border: 1px solid #f7f7f7;
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.ui.fluid.grid.container.leave-msg {
    margin: 0 !important;
    padding: 0;
    width: 100% !important;
}

.scroll-to-top {
    background: #00a5ea;
    border: 2px solid #00a5ea;
    border-radius: 5%;
    bottom: 25px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 30px;
    font-weight: normal;
    height: 55px;
    line-height: 46px;
    position: fixed;
    right: 15px;
    text-align: center;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    width: 45px;
    z-index: 1223;
    -webkit-box-shadow: 0px 8px 23px -6px #1b1b1b;
    box-shadow: 0px 8px 23px -6px #1b1b1b;
}

.post-pagination {
    list-style: none;
    text-align: center;
    padding-left: 0;
}

.post-pagination li {
    display: inline-block;
    text-align: center;
}

.post-pagination li.active a, .post-pagination li:hover a {
    background: #00a5ea;
    color: #fff;
    border: 1px solid #00a5ea;
}

.post-pagination li a {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f7f7f7;
    color: #3d3d3d;
    display: block;
    font-size: 18px;
    font-weight: 700;
    height: 55px;
    padding: 14px 0;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    width: 55px;
    font-family: 'Raleway', sans-serif;
    border-radius: 3px;
}

.launch-icon-container a.launch.icon.item {
    display: inline-block;
    padding: 1rem;
}

.mobile-top-bar .ui.image {
    width: 80px;
    height: 60px;
}

.h-34{
    height: 34px;
    width: auto;
}

.logo-text-w-h-fixed{
    width: 125px;
    height: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-top-bar #modal-show-btn-mobile {
    padding: 2.5rem 1rem;
    width: 35%;
    position: static;
    margin-right: 2em;
}

.products-container .ui.card {
    min-width: 292px;
    max-width: 400px;
}

.products-container .ui.card .image {
    height: 260px;
}

.products-container .ui.card .image img {
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.products-container .images .thumbnails .image:hover {
    -webkit-box-shadow: 0 0 2px 0px #0f0f0f;
    box-shadow: 0 0 2px 0px #0f0f0f;
}


.products-container .images .thumbnails img {
    height: 90px;
    display: block;
    margin: 0 auto;
}

.products-container .images .thumbnails div {
    border: 1px solid black;
    margin-bottom: 1rem;
    padding: 4px;
    padding-left: 10px;
    padding-right: 10px;
}

.products-container .images .main-image {
    width: 100%;
}

.products-container .images .main-image img{
    height: 400px;
}

.blue.button:hover {
    opacity: 0.75;
}

.social-container .social-buttons .ui.button {
    margin-bottom: 0.75rem;
    width: 140px;
}

.h-550{
    height: 550px !important;
}

.summary.description {
    overflow: hidden;
    position: relative;
    line-height: 1.4285em;
    max-height: 8.571em;
    text-align: justify;
    margin-right: -1em;
    padding-right: 1em;
}

.max-height-28-em{
    max-height: 28.671em !important;
}

.summary.description:before {
    content: '...';
    position: absolute;
    right: 0.1rem;
    bottom: 0;
}

.summary.description:after {
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: white;
}

.truncate-text-container {
    min-height: 175px;
}

.view-all-btn-container {
    display: inline-block;
    margin-top: -0.15rem;
}

.contact-area, .sitemap-container, .custom-page-container, .uupdatedetail-container {
    margin-top: 0 !important;
}

.sitemap-container table a {
    display: inline-block;
    width: 100%;
}

.custom-page-container .social-buttons, .mediadetail-container .social-buttons {
    margin: 0 auto;
}

.custom-page-container .social-buttons .ui.button, .mediadetail-container .social-buttons .ui.button {
    margin-bottom: 0.75rem;
    width: 140px;
}

.slider-for {
    width: 100%;
}

.slider-for img {
    width: 100%;
    height: 45vw;
}

.slider-nav {
    margin-top: 2em;
}

.mt-0-5-rem{
    margin-top: 0.5 rem;
}

.mt-10{
    margin-top: 10px !important;
}

.mt-20{
    margin-top: 20px !important;
}

.ui.inverted.blue.center.aligned.compact.menu.social-menu .item > i.icon{
    width: 100%;
}

.mt-40{
    margin-top: 40px !important;
}

.slider-nav .slick-slide {
    width: 10vw;
    margin-right: 1em;
}

.slider-nav img {
    width: 100%;
    height: 10vw;
}

.ui.card .content .header a:hover{
    color: #3e3e3e !important;
}

.sub-header{
    font-size: 0.7em;
    font-weight: lighter;
}

.bg-theme{
    background-color: #00a5ea !important;
}

.prod-img-height{
    height: 200px !important;
}

.fc-green{
    color: green;
}

.fc-link{
    color: #084BC6;
}

.fs-1-em{
    font-size: 1.2em !important;
}

.display-block{
    display: block;
}

.hover-title a:hover{
    color: #555555 !important;
}

.margin-0-auto{
    margin: 0 auto;
}

.remove-ads-button{
    width:auto !important;
}

.ads-top-remove-button-mobile{
    width: 467px !important;
    text-align: right;
    padding:0px;
    font-size:10px;
}

.product-vid-thumb-main{
    height: auto !important;
}

.product-main-image-350{
    height: 350px !important;
}

.eventmap{
    height: 25em !important;
}

.display-block{
    display: block !important;
}

.pl-0{
    padding-left: 0px !important;
}

.pr-0{
    padding-right: 0px !important;
}

.pl-5{
    padding-left: 5px !important;
}

.pr-5{
    padding-right: 5px !important; 
}

.pl-10{
    padding-left: 10px !important;
}

.pr-10{
    padding-right: 10px !important;
}

.pl-1-em{
    padding-left: 1em !important;
}

.pr-1-em{
    padding-right: 1em !important;
}

.ui.modal > .header.custom-blue{
    background: #abe2f9 !important;
}

.ui.modal > .actions.custom-blue{
    background: #abe2f9 !important;
}

.w-50-perc{
    width: 30% !important;
    text-align: center;
}

.recaptcha-scale{
    transform:scale(0.8);
    -webkit-transform:scale(0.8);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
}

.product-slick-pos-prev{
    margin-left: 1vw;
}

.product-slick-pos-next{
    margin-right: 1vw;
}

.m-auto-0{
    margin: auto 0;
}

.update-detail-main-img-height{
    height: 600px !important;
}

.update-detail-img-height{
    height: 150px !important;
}

.w-100-perc{
    width: 100% !important;
}

.slider-img-height{
    height: 150px !important;
}

.height-14-3-em{
    height: 14.3em !important;
}

.p-10{
    padding: 10px !important;
}

.max-height-100-perc-width-auto{
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
}

.max-height-100-perc-width-100-perc{
    max-height: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

.w-100-perc-h-64-3-em-aspect{
    width: 100% !important;
    height: 64.3em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-26-5-h-20-em-aspect{
    width: 26.5em !important;
    height: 20em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-26-5-h-18-6-em-aspect{
    width: 26.5em !important;
    height: 18.6em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-24-9-h-18-6-em-aspect{
    width: 24.9em !important;
    height: 18.6em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-25-5-h-18-6-em-aspect{
    width: 25.5em !important;
    height: 18.6em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-18-6-h-14-3-em-aspect{
    width: 18.6em !important;
    height: 14.3em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-76-h-35-em-aspect{
    width: 76em !important;
    height: 35em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-30-h-14-aspect{
    width: 30em !important;
    height: 14em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-37-4-em-h-26-aspect{
    width: 37.4em !important;
    height: 26em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-19-6-h-10-7-em-aspect{
    width: 19.6em !important;
    height: 10.7em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-57-9-h-32-em-aspect{
    width: 57.9em !important;
    height: 32em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-19-3-h-11-em-aspect{
    width: 19.3em !important;
    height: 11em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.embed-responsive{
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.no-display{
    display: none !important;
}
.w-h-10-em-aspect{
    width: 10em !important;
    height: 10em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.w-h-5-em-aspect{
    width: 5em !important;
    height: 6em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.max-w-h-100-perc-width-auto{
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
}

.z-index-1{
    z-index: 1 !important;
}

.breadcrumb-alignment-search-page{
    left: -0.6% !important;
}

.p-5{
    padding: 5px;
}

.w-5-em{
    width: 5em !important;
}

.title-4{
    font-size: 1em;
}

.title-3{
    font-size: 1.2em;
}

.underlined{
    text-decoration:underline !important;
}


.line-height-4{
    line-height: 4 !important;
}

.max-w-h-100-perc-width-auto{
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
}

.p-20{
    padding: 20px !important;
}

.w-100-perc{
    width: 100% !important;

}

.w-25-5-h-18-em-aspect{
    width: 25.5em !important;
    height: 18em !important;
    display: table-cell !important;
    vertical-align: middle !important;
}

.ui.tab{
    display: block !important;
    height: 0 !important;
    overflow: hidden;
}

.ui.tab.active{
    height: auto !important;
    overflow: visible !important;
}

.menu.open.item:hover{
    background: #fff !important;
}

.ui.sticky.inverted.blue.menu.computer.tablet.only.compact.row.fixed.top{
    left: 0px !important;
}

.ui.sticky.inverted.blue.menu.computer.tablet.only.compact.row{
    left: 0px !important;
}

body.st-body-no-scroll{
    top: auto !important;
    position: relative !important;
}
/* media queries */

@media (max-width: 1080px){
    .w-100-perc-h-64-3-em-aspect{
        width: 100% !important;
        height: 45.7em !important;
        display: table-cell !important;
        vertical-align: middle !important;
    }
}

@media (max-width: 980px){
    .w-100-perc-h-64-3-em-aspect{
        width: 100% !important;
        height: 43em !important;
        display: table-cell !important;
        vertical-align: middle !important;
    }
}

@media (max-width: 470px){
    .product-slick-pos-prev{
        margin-left: 8vw;
    }

    .product-slick-pos-next{
        margin-right: 8vw;
    }

    .productdetails-font-fixing{
        font-size: 0.8em;
    }

    .width-ads-remove-link-mobile{
        width: 90% !important;
        font-size: 0.8em;
    }
}

@media (max-width: 540px){

    .mobile-top-bar #modal-show-btn-mobile {
        padding: 2.5rem 1rem;
        width: 20%;
        position: static;
        margin-right: 2em;
    }

    .h-800-px-aspect-main-slider{
        height: 300px !important;
        display: table-cell !important;
        vertical-align: middle !important;
    }

    .w-100-perc{
        width: 100% !important;
    }

    .slick-next{
        margin-right: 0vw !important;
    }

    .slick-prev{
        margin-left: 0vw !important;
    }

    .slick-next{
        right: 2px !important;
    }

    .slick-prev{
        left: 6px !important;
    }

    .slider-img-height{
        height: 80px !important;
    }

    .update-detail-img-height{
        height: 100px !important;
    }

    .arrow-w-h{
        width: 30px !important;
        height: 30px !important;
    }

    .media-detail-img-height{
        height: 400px !important;
    }

    .update-detail-main-img-height{
        height: 300px !important;
    }

    .main-custom-height-img{
        height: 14em !important;
    }

    .slider-custom-nav-height-img{
        height: 7em !important;
    }

    .product-main-image-350{
        height: 250px !important;
    }

    .title-1{
        font-size: 1.6em !important;
    }

    .title-2{
        font-size: 1.4em !important;
    }

    .title-3{
        font-size: 1em !important;
    }

    .w-100-perc-h-64-3-em-aspect{
        width: 100% !important;
        height: 18em !important;
        display: table-cell !important;
        vertical-align: middle !important;
    }
}

@media (max-width: 960px){
    .slider-img-height{
        height: 100px !important;
    }
}

@media only screen and (min-width: 960px) and (max-width: 999px) {
    .updates-container, .products-container, .media-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .updates-container .ui.breadcrumb, .products-container .ui.breadcrumb, .media-container .ui.breadcrumb {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 3.5em;
    }
    .top-banner .tablet.only.ui.divider {
        margin: 0 auto 0 30%;
    }
    .top-banner .ui.grid.doubling.top-banner-msg {
        margin-top: 4rem !important;
        margin-left: 25% !important;
    }
    .top-banner .ui.grid.doubling.top-banner-msg .banner-msg {
        width: 60% !important;
    }
    .top-banner .ui.grid.doubling.top-banner-msg .banner-msg + div {
        width: 40% !important;
    }
    .header-nav .ui.container {
        margin-left: 1em !important;
    }
    .header-area .ui.doubling.grid.container {
        width: auto !important;
    }
    .header-area .ui.doubling.grid.container .column {
        width: 25% !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1024px) {
    .top-banner .computer.only.ui.divider {
        margin: 0 auto 0 28.75%;
    }
    .top-banner .ui.grid.doubling.top-banner-msg {
        margin-left: 22% !important;
    }
}

@media only screen and (min-width: 900px) {
    .copyright .social-container .page-views {
        float: left;
        position: relative;
        width: 37%;
        padding-top: 0.5rem;
    }
    .copyright .social-container .social-icons {
        float: left;
        position: relative;
        width: 63%;
    }
    .updatedetail-container .update-left, .updatedetail-container .update-right, .updates-container .update-left, .updates-container .update-right {
        float: left;
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .updatedetail-container .update-left, .updates-container .update-left {
        /*width: 70% !important;*/
        margin-right: 1rem;
        padding-left: 0 !important;
    }
    .updatedetail-container .update-left .row .column, .updatedetail-container .update-left .row special.cards, .updates-container .update-left .row .column, .updates-container .update-left .row special.cards {
        padding-left: 0rem;
    }
    .updatedetail-container .update-right, .updates-container .update-right {
        width: 25% !important;
    }
    .updatedetail-container .background-slider-display img {
        width: 100%;
        height: 28vw;
    }
    .updatedetail-container .background-slider-display .slick-prev {
        margin-left: 5%;
    }
    .updatedetail-container .background-slider-display .slick-next {
        margin-right: 5%;
    }
    .updatedetail-container .update-left {
        width: 60% !important;
    }
    .updatedetail-container .update-right {
        width: 35% !important;
    }

    .products-container .images {
        width: 70%;
    }

    .products-container .images .thumbnails img {
        height: 90px;
    }

    .products-container .images .main-image img {
        max-height: 500px;
    }

    .custom-page-container .social-buttons, .mediadetail-container .social-buttons {
        position: relative;
        display: inline-block;
    }
}

@media (max-width: 520px){
     .ui.secondary.stackable.menu.search-menu{
        width: 100% !important;
    }

}

@media (max-width: 385px){
    .w-100-perc-h-64-3-em-aspect{
        width: 100% !important;
        height: 16em !important;
        display: table-cell !important;
        vertical-align: middle !important;
    }
}

@media (max-width: 370px){
    .w-100-perc-h-64-3-em-aspect{
        width: 100% !important;
        height: 15em !important;
        display: table-cell !important;
        vertical-align: middle !important;
    }
}

@media (max-width: 330px){
    .w-100-perc-h-64-3-em-aspect{
        width: 100% !important;
        height: 13em !important;
        display: table-cell !important;
        vertical-align: middle !important;
    }
}