﻿*, *:before, *:after {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
}
/*This changes the box model of everything in the website and can be overwriten per component if needed. To read more about box-sizing and why you'd want to overwrite it see https://css-tricks.com/international-box-sizing-awareness-day/ or https://www.w3schools.com/cssref/css3_pr_box-sizing.asp*/
/*--------------------------------------------------------
	FONT ASSIGNMENTS
--------------------------------------------------------*/
body {
	font-family: Tahoma, sans-serif;
	font-size: 16px;
    font-weight: 400;
	color: #000000; /*formerly #606060 */
}
p {
    font-family: Tahoma, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000; /*formerly #606060 */
}
p:empty { display: none; } /* This is probably not a good idea either */
/* br + br { display: none; } This breaks stuff all over the MMS */ 
/*^^ Break tags shouldn't be used to space out lines, only to make text within a paragraph break to a new line*/

form {
    font-size: 16px;
}
/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/
h1, h2, h3, h4, h5 {
    font-family: Tahoma, sans-serif;
    font-weight: 700;
    color: #000000; /*formerly ##505050 */
	margin: 0px;
	padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: Tahoma, sans-serif;
}

h1 {
    font-size: 28px;
    font-family: Tahoma, sans-serif;
    font-weight: 600;
}
h2 {
    font-size: 24px;
    font-weight: 700;
}
h3 {
    font-size: 18px;
}
h4 {
    font-size: 17px;
}

h1.title{
	margin-top: 15px;
}
h1.title:empty{ display:none; }
/*^^Hides the extra margin that is added on pages without a title*/
#subpage-main p:not(:empty) + h2,
#subpage-main p:not(:empty) + h3,
#subpage-main p:not(:empty) + h4,
#subpage-main ul + h2,
#subpage-main ul + h3,
#subpage-main ul + h4,
#subpage-main table + h2,
#subpage-main table + h3,
#subpage-main table + h4 {
    margin-top: 1.5em;
}
#subpage-main h2 + ul,
#subpage-main h3 + ul,
#subpage-main h4 + ul {
	margin-top: -.75rem; /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}
/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/
a {
	color: ;
	cursor: pointer;
}
a:hover, 
a:focus {
	color: ;
}
a.button {}
a.button:hover,
a.button:focus
 {
	text-decoration: none;
}
a.button + * {
	padding-top: 1.5em;
}

input.ui-button {
    background-color: #14908e;
    color: #FFFFFF;
}
main#mms-main input.ui-button, main#mms-main .ui-button {
    background-color: #14908e;
    color: #FFFFFF;
    background: #14908e !important;
    font-family: Tahoma, sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: 0px !important;
    border-radius: 0px !important;
}

/*--------------------------------------------------------
	Objects
--------------------------------------------------------*/
#subpage-main img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
figcaption {
	font-style: italic;
	font-size: .9em;
	padding-top: 5px;
}
@media (max-width: 767px) {
	figcaption {
		font-size: 1em;
	}
}
@media (min-width: 767px) {
	/*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
	.col-md-5 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-4 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-3 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-2 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
		width: 25%;
		padding-right: 1em;
	}
	.col-md-5 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-4 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-3 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-2 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
		width: 75%;
		padding-left: 0;
	}
	.col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
		margin-left: 25%;
	}
	/*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}
blockquote {
	font-size: inherit;
}
/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not*/
#subpage-main table {
	max-width: 100%;
	border-collapse: collapse;
	color: #212529;
	margin-bottom: 1em;
}
#subpage-main table td, 
#subpage-main table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: inherit;
}
#subpage-main table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}
#subpage-main table caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
/*#subpage-main table tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075);
}*/

/*--------------------------------------------------------
						HEADER
--------------------------------------------------------*/

/* TOP BAR HEADER */

#top-header {
    background: #13918f;
    height: 45px;
}

#member-login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 11px;
}
#member-login-wrap a {
    border-radius: 4px;
    background-color: #14cfca;
    padding: 6px 20px;
    font-size: 16px;
    font-family: Tahoma, sans-serif;
    color: #fff;
    text-decoration: none;

}

/* Social - Mobile Menu Wrap */

#social-media-wrap {
    text-align: right;
}
.social-menu-wrap {
    text-align: right;
    float: right;
}
.social-menu-inside-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
}
.social-menu-inside-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.social-menu-inside-wrap ul>li {
    float: left;
    position: relative;
    display: block;
}
li.social-media-wrap a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-top: 10px !important;
}
.social-media-wrap a {
    text-decoration: none;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.social-media-wrap svg {
    width: 35px;
    height: 35px;
    margin-right: 4px;
    vertical-align: inherit;
}
.social-media-wrap a:hover svg#fb-icon .cls-1,
.social-media-wrap a:hover svg#x-twitter-icon .cls-2,
.social-media-wrap a:hover svg#linkedin-icon .cls-1,
.social-media-wrap a:hover svg#youtube-icon .cls-1,
.social-media-wrap a:hover svg#bluesky-icon .cls-2 {
    fill: #13918f;
    stroke: #fff;

    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

svg#burger-menu {
    width: 36px;
    height: 20px;
}



/* MAIN HEADER */

#main-header {
    padding: 15px 0px;
    background: #fff;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 100;
}
    /*Target just IE*/
    @media screen and (min-width:0\0) {
        header#main-header {
            /*position: fixed;*/
            width: 100%;
        }
    }
#logo-wrap img {
    width: 200px;
    max-width: 100%;
}
#logo-wrap a {
	text-decoration: none;
}
.logo-wrap {
    display: inline-block;
    vertical-align: middle;
}
svg#main-logo {
    width: 250px;
    height: 120px;
    max-width: 100%;
}
#right-side-wrap {
    text-align: right;
    margin-top: 20px;
}
    @media (max-width: 990px) {
        #right-side-wrap {
            margin-top: 30px;
        }
    }



/*--------------------------------------------------------
					Search Bar
--------------------------------------------------------*/


/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/
.dropdown-menu li{
	width: 100%;
}
.nav>li>a:hover, .nav>li>a:focus {
	background-color: transparent;
}
/*--------------------------------------------------------
                    Meetings Navigation: Desktop;
--------------------------------------------------------*/
.meetings-page #navigation-menu {
    background: #13918f;
}
.meetings-page #navigation-menu li {
    background: #13918f;
}
.meetings-page #navigation-menu li a {
    color: #fff;
}
.meetings-page #navigation-menu li ul {
    background: #fff;
    border-top: 10px solid #13918f;
}
.meetings-page #navigation-menu li ul li {
    background: #fff;
}
.meetings-page #navigation-menu li ul li a {
    color: #444444;
}
.meetings-page #navigation-menu li ul li a:hover {
    color: #13918f;
}

#navigation-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    z-index: 10;
    position: relative;
}
#navigation-menu li {
    margin-left: 0;
    padding: 10px 1em;
    position: relative;
    background: white;
}
.submenu-parent {
    /*pointer-events: none;*/
}
.submenu-parent + ul {
    display: none;
}
#navigation-menu > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
}
.submenu-parent:hover + ul,
.submenu-parent:focus + ul,
.submenu-parent + ul:hover {
    display: block;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    list-style: none;
    margin-left: 0;
    padding: 1em 0;
}

#navigation-menu a {
    color: #555555;
}
#navigation-menu ul li a {
    display: block;
}
#navigation-menu ul li:last-of-type a {
    border-bottom: none;
}
/*Target just IE*/
@media screen and (min-width:0\0) {
    #navigation-menu {
        display: block;
        margin-top: 50px;
        text-align: right;
    }
    #navigation-menu li {
        display: inline-block;
        text-align: left;
    }
}
@media (max-width: 990px) {
    #navigation-menu {
        display: none;
    }
}
/*--------------------------------------------------------
					Index / Main Body
--------------------------------------------------------*/
main {
	min-height: calc(100vh - 146px - 200px);
	/*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
	position: relative;
}
#subpage-main
#mms-main {
	margin-bottom: 2.5em;
}
@media (max-width: 900px) {
	#subpage-main
	#mms-main {
		margin-bottom: 2em;
	}
}
@media (min-width: 767px) {	
	#subpage-main .row {
	    margin-bottom: 1em;
	}
}
@media (max-width: 767px) {
	#subpage-main div[class^="col-md"] {
	    margin-bottom: 1em;
	}
}
/*^^These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/

/*----------------Slideshow----------*/

.slideshow-wrap {
    position: relative;
    padding-top: 0px;
}
.slideshow-wrap .container {
    width: 100%;
}
.slideshow-wrap img {
    width: 100%;
}
.slideshow-wrap [class*="col-"] {
    padding: 0;
}
.carousel-control {
    margin: auto 0px;
}

#slide-row{
	margin-bottom: 10px;
}
.carousel-control.left, .carousel-control.right, .carousel-control:hover{
	background-image: none;
	font-size: ;
	font-weight: ;
	z-index: 101;
}
.carousel-control {
    margin: auto 0px;
}
.slideshow-wrap .carousel-control.left {
    width: 32px;
    height: 32px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Lato', sans-serif;
    background: transparent;
    vertical-align: middle;
    text-align: center;
    margin-left: 15px;
}
.slideshow-wrap .carousel-control.right {
    width: 32px;
    height: 32px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Lato', sans-serif;
    background: transparent;
    vertical-align: middle;
    text-align: center;
    margin-right: 15px;
}
    @media (max-width: 767px) {
        .slideshow-wrap .carousel-control.left, .slideshow-wrap .carousel-control.right {
		    height: 34px;
		    width: 34px;
		}
    }
.slideshow-wrap .carousel-control img {
    width: 32px;
    height: 32px;
}
	@media (max-width: 767px) {
        .slideshow-wrap .carousel-control img {
		    margin-top: 4px;
		}
    }


.slideshow-wrap .caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;

    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flexbox: 1 1 auto;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    -ms-flexbox: column;
}
    @media screen and (min-width:0\0) {
        .slideshow-wrap .caption-wrapper {
            max-width: 100%;
        }
    }
    @media (min-width: 990px) and (max-width: 1199px) {
        .slideshow-wrap .carousel .item img {
            background-size: cover !important;
            width: 100%;
            min-height: 70vh;
            background-position: center;
            background-attachment: fixed;
            max-width: 100%;
            min-width: 200vh;
        }
    }
    @media (min-width: 768px) and (max-width: 990px) {
        .slideshow-wrap .carousel .item img {
            background-size: cover !important;
            width: 100%;
            min-height: 80vh;
            background-position: center;
            background-attachment: fixed;
            max-width: 100%;
            min-width: 200vh;
        }
    }
    @media (max-width: 767px) {
        .slideshow-wrap .caption-wrapper {
            font-size: 65%;
        }
        .slideshow-wrap .carousel .item img {
            background-size: cover !important;
            width: 100%;
            min-height: 50vh;
            background-position: center;
            background-attachment: fixed;
            max-width: 100%;
            min-width: 150vh;
        }
    }
    @media (max-width: 560px) {
        .slideshow-wrap .carousel .item img {
            min-height: 100vh;
            min-width: 250vh;
        }
    }
    @media (max-width: 480px) {
        .slideshow-wrap .carousel .item img {
            min-height: 450px;
            min-width: 200vh;
        }
    }
.slideshow-wrap .carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: auto;
    top: 0;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
    padding-top: 15px;
    padding-bottom: 15px;
    min-height: 100px;

    margin: 0;
    padding: 0;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-flex-flow: column;
    flex-flow: column;
    -ms-flexbox: column;
}


.slideshow-wrap .carousel-caption p.caption-text {
    font-size: 268.75%;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-transform: none;
    display: block;
    text-align: center;
    margin-bottom: 3px;
    word-wrap: break-word;
    text-shadow: none;
    line-height: 1.3;
    font-style: normal;
    text-decoration: none;
    letter-spacing: normal;
    word-spacing: normal;
}

.slideshow-wrap .carousel-caption p.alt-text {
    color: #fff; 
}
.slideshow-wrap .carousel p.alt-text-img {
    margin-top: 25px;
    margin-bottom: 10px;
}
.slideshow-wrap .carousel p.alt-text-img img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
    border-radius: 100px;
}
.slideshow-wrap .carousel p.alt-text-name {
    font-family: Tahoma, sans-serif;
    color: #ffffff;
    font-size: 181.25%;
    text-shadow: none;
    line-height: 1.3;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    margin-bottom: 5px;
}
.slideshow-wrap .carousel-caption p.caption-text,
.slideshow-wrap .carousel p.alt-text-name {
    font-family: Tahoma, sans-serif;
    font-weight: 400;
}

.slideshow-wrap .carousel p.alt-text-caption {
    font-family: Tahoma, sans-serif;
    color: #ffffff;
    font-size: 131.25%;
    text-shadow: none;
    line-height: normal;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
}
    @media (max-width: 767px) {
        .slideshow-wrap .carousel p.alt-text-caption {
            display: none;
        }
    }

.slideshow-wrap .carousel p.alt-text-caption a {
    font-family: Tahoma, sans-serif;
    color: #ffffff;
    font-size: 19px;
    text-shadow: none;
    line-height: 1.3;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: normal;
}

.slideshow-wrap .carousel p.alt-text-button {
    margin-top: 45px;
    margin-bottom: 15px;
}
.slideshow-wrap .carousel p.alt-text-button a {
    font-family: Tahoma, sans-serif;
    color: #ffffff;
    font-size: 100%;
    text-shadow: none;
    line-height: 1.5;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    background: rgba(255,255,255,0);
    opacity: 1;
    padding: 0.8em 1.5em 0.8em 1.5em;
    box-shadow: none;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255,255,255,1);
    border-radius: 99px;
}
.slideshow-wrap .carousel p.alt-text-button a:hover {
    background: #fff;
    color: #262626;
}


.slideshow-wrap a:hover {
    color: #fff; 
    text-decoration: none;
}

.carousel-indicators {
    bottom: 8px;
    text-align: center;
    z-index: 102;
    width: 100%;
    max-width: 1170px;
    margin: auto;
    left: 0;
    right: 0;
    padding-left: 7px;
}
    @media (max-width: 767px) {
        .carousel-indicators {
            bottom: 5px;
        }
    }
.carousel-indicators li {
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,0.5);
    border: 0px !important;
    border-radius: 40px;
    margin: 0 auto;
    margin-left: 8px;
}
.carousel-indicators .active {
    width: 11px;
    height: 11px;
    background: #fff;
    border: 0px !important;
    border-radius: 40px;
    margin-left: 8px;
}


/*----------------End Slideshow------*/

/*--------------------------------------------------------
					News and Events Feeds
--------------------------------------------------------*/
.evr-small-text {
    font-size: 12px !important;
}
/*--------------------------------------------------------
					Index / Home Page
--------------------------------------------------------*/

.btn-wrap {
    margin-top: 20px;
    margin-bottom: 40px;
}
.btn-wrap a {
    background: #648338;
    color: #fff;
    border-radius: 1px;
    font-size: 16px;
    font-family: Tahoma, sans-serif;
    font-weight: 400;
    padding: 8px 18px;
    text-decoration: none;
    text-align: center;
    border: 1px solid #648338;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
}
.btn-wrap a:hover, .btn-wrap a:focus {
    background: #569cd4;
    border: 1px solid #569cd4;
}


/* Welcome Message */

#welcome-section-wrap {
    padding: 50px 0px 20px;
}
#welcome-section-wrap h1, #welcome-section-wrap p {
    text-align: center;
}


/* Featured 4 Boxes */

#featured-box-wrap {
    margin-top: 30px;
    margin-bottom: 50px;
}
.featured-btn-wrap {
    text-align: center;
    margin-top: 30px;
}
.featured-btn-wrap a {
    background: #13918f;
    color: #fff;
    padding: 10px 30px 10px 30px;
    text-decoration: none;

}



/*--------------------------------------------------------
				CSS Styles for Inner Pages
--------------------------------------------------------*/
/*----------Responsive Nivo*/
div[id^=slider-container-FD], div[id^=slider_FD], .nivoSlider img {
	max-width: 100% !important;
	height: auto !important;
}
/*----------Nivo Controls*/
.nivo-prevNav, .nivo-nextNav {
	background-image: none !important;
	width: 25px !important;
	top: 25% !important; /*Fallback for browsers that don't support calc*/
	top: calc( 50% - 50px) !important;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 75px;
	font-family: Arial, sans-serif;
	text-shadow: 0px 0px 10px rgba(51,51,51,0.4);
}
.nivo-prevNav:hover, .nivo-nextNav:hover {
	text-decoration: none;
	color: #ae0e0d;
	text-shadow: none;
}
.nivo-prevNav {
	left: 10px !important;
}
.nivo-nextNav {
	right: 10px !important;
}
.nivo-prevNav:after {
	content: "‹";
}
.nivo-nextNav:after {
	content: "›" ;
}



/*--------------------------------------------------------------
                        Modal Log In
--------------------------------------------------------------*/
.modal{
    overflow-y: visible;
}
.modal-dialog{
    max-width: 280px;
    margin: 50px auto;
}
.modal-header{
    text-align: center;
}
.modal-body {
    padding: 15px 23px;
}
.login-form input {
    width: 203px!important;
    height: 30px;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 0px 15px;
    margin-left: 15px;
    background: #fff;
    font-size: 16px;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #13918f;
    border: 1px solid #13918f;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 18px;
    font-family: Tahoma, sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 20px;
    height: auto;
}
.login-form input[type="submit"]:hover, .login-form input[type="submit"]:focus {
    background: transparent;
    border: 1px solid #13918f;
    color: #13918f;
    text-decoration: none;
}
.login-form a {
    color: #14cfca;
    display: block;
    margin-left: 15px;
    font-size: 14px;
    padding-bottom: 10px;
    text-decoration: underline;
}
.login-form a:hover, .login-form a:focus {
    color: #13918f;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h4.modal-title {
    font-size: 22px;
    padding-bottom: 0px;
    color: #505050;
}



/*--------------------------------------------------------
						Footer
--------------------------------------------------------*/

#footer-widget-wrap {
    background: #f7f8f8;
    margin-top: 50px;
    padding: 90px 0px 50px;
    font-weight: 300;
}
.footer-widget-title {
    width: 100%;
    max-width: 300px;
}
.footer-widget-title h4 {
    color: #2d2d2d;
    font-size: 18px;
    margin: 0 0 5px;
    text-transform: uppercase;
    padding-bottom: 3px;
}
.footer-widget-title h4 span {
    color: #13918f;
}
.footer-widget-title > span {
    color: #a9a9a9;
    font-family: Tahoma, sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    width: 100%;
}
.footer-social-icons ul {
    margin: 0;
    padding: 0;
}
.footer-social-icons ul .footer-social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-top: 50px;
}
.footer-social-icons ul li svg {
    width: 37px;
    height: 37px;
    margin-right: 5px;
}
.footer-social-icons ul li img {
    margin-right: 5px;
}
.footer-social-icons ul li a:hover svg .cls-1  {
    fill: #13918f !important;
}

.footer-widget-text .textwidget {
    padding: 20px 25px 30px;
    width: 100%;
}
.footer-widget-text .textwidget img {
    height: auto;
    max-width: 100%;
}


footer#main-footer {
    background: #10222d;
    padding: 36px 0px 30px;
    font-family: Tahoma, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
footer#main-footer a {
    color: #039be5;
    text-decoration: none;
    font-family: Tahoma, sans-serif;
    font-weight: 400;
}
footer#main-footer p {
    color: #cbc9c9;
    font-family: Tahoma, sans-serif;
    font-size: 13px;
    margin-bottom: 0px;
}


/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/



/*----------- MEDIA QUERY --------------------*/


@media (min-width: 1200px) {

}

@media (min-width: 1000px) {
	.container {}


}

@media (min-width: 990px) and (max-width: 1199px) {
	.container {}

    .social-menu-inside-wrap {
        margin-top: 8px;
    }
    .social-media-wrap svg {
        width: 30px;
        height: 30px;
    }
    .slideshow-wrap {
        padding-top: 0px;
    }
}



@media (min-width: 768px) and (max-width: 990px) {
	.container {}

    .social-menu-inside-wrap {
        margin-top: 8px;
    }
    .social-media-wrap svg {
        width: 30px;
        height: 30px;
    }
    .slideshow-wrap {
        padding-top: 0px;
    }
    .featured-btn-wrap a {
        padding: 10px 20px;
        font-size: 15px;
    }
    footer#main-footer .text-left {
        text-align: center;
    }


}


@media (max-width: 767px) {
	.container {}

    .social-menu-inside-wrap {
        margin-top: 10px;
    }
    .social-media-wrap svg {
        width: 25px;
        height: 25px;
    }
    .slideshow-wrap {
        padding-top: 0px;
    }
    #featured-box-wrap .column {
        margin-bottom: 30px;
    }
    footer#main-footer .text-left {
        text-align: center;
    }


}


@media (min-width: 560px) and (max-width: 767px) {
    #footer-widget-wrap .footer-widget-one {
        width: 66.66666667%;
    }
    #footer-widget-wrap .footer-widget-two {
        width: 33.33333333%;
    }
}


@media (max-width: 480px) {
    .container {}

}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
    ::i-block-chrome, div {
    	
    }

}

/* Internet Browser */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  

}