/* container */
.container {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
}

/* images */
img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
    margin: 40px auto;
}

/* alignement */
.large-width {
  	max-width: 899px;
}
.medium-width {
  	max-width: 580px;
}
.small-width {
  	max-width: 275px;
}
.full-width {
  	width: 100%;
}
.pull-left img, 
.pull-right img {
  	margin: 0;
}
.pull-left {
	float: left;
	margin: 0px 50px 28px 0;
	max-width: 70%;
    display: inline-block;
    vertical-align: top;
}
.pull-right {
    float: right;
    margin: 0px 0 28px 50px;
    max-width: 70%;
    display: inline-block;
    vertical-align: top;
}

/* paragraph */
p {
  	margin: 0 0 28px;
}

/* image-link */
.image-link {
    display: block;
    overflow: hidden;
    margin: auto;
}
.image-link.pull-left {
    margin: 0px 50px 28px 0;
}
.image-link.pull-right {
    margin: 0px 0 28px 50px;
}
.image-link img {
    margin: 0;
    width: 100%;
    -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.image-link:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

/* headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Bitter', serif;
    font-style: normal;
    margin: 0;
}
h1,
.h1 {
    margin-bottom: 28px;
    font-size: 55px;
    line-height: 55px;
}
h2,
.h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 32px;
}
h3,
.h3 {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 30px;
}
h4,
.h4 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 28px;
}
h5,
.h5{
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 26px;
}
h6,
.h6 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 24px;
}
.headings-alt-style {
	font-family: 'Montserrat', sans-serif;
}
.green {
	color: #3bb08e;
}
.blue {
    color: #4c9cb9;
}
.red {
    color: #e95050;
}

strong {
  font-weight: 700;
}

/* links */
.wysiwyg a {
    color: #4c9cb9;
    text-decoration: underline;
    outline: none!important;
    font-weight: 400;
}
.wysiwyg a:hover,
.wysiwyg a:focus {
    color: #e95050;  
}

/* table */
table {
    margin-bottom: 28px;
}

/* form */
form {
    margin-bottom: 28px;
}

/* nav */
nav {
	margin-bottom: 28px;
}
nav ul,
nav .pagination {
	margin: 0!important;
    padding: 0!important;
}

/* lists */
ul, ol, dl {
    padding: 0px;
    margin: 0;
    list-style: none;    
}
ul li, ol li, dl li {
    margin: 0;
    padding: 0;
    position: relative;
}
.wysiwyg ul li, .wysiwyg ol li, .wysiwyg dl li {
    margin: 0 0 15px;
    font-weight: 600;
}
.wysiwyg ul, .wysiwyg ol, .wysiwyg dl {
    padding-left: 20px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 23px;
}
.wysiwyg ul {
    list-style-type: none;
    font-size: 16px;
    line-height: 23px;
    color: #2f2e2e;
}
.wysiwyg ul ul {
    margin-top: 15px;
    margin-bottom: 0;
}
.wysiwyg ul li:before {
    content: "\2022";
    position: absolute;
    color: #e95050;
    left: -20px;
    top: 0px;
    font-size: 20px;
}
.wysiwyg ol {
    list-style-type: none;
    counter-reset: cnt;
    font-size: 16px;
    line-height: 23px;
    color: #2f2e2e;
}
.wysiwyg ol ol {
    margin-top: 15px;
    margin-bottom: 0;
}
.wysiwyg ol li:before {
    counter-increment: cnt;
    content: counter(cnt) ".";
    position: absolute;
    color: #e95050;
    left: -20px;
    top: 0px;
}
.wysiwyg dl {
    font-size: 16px;
    line-height: 23px;
    color: #2f2e2e;
}
.wysiwyg dl dl {
    margin-top: 15px;
    margin-bottom: 0;
}
.list-unstyled {
    padding-left: 0!important;
}
.list-unstyled ul, .list-unstyled ol, .list-unstyled dl {
    padding-left: 0!important;
}
.list-unstyled li:before {
    display: none;
}
.list-inline {
    padding-left: 0!important;
    margin-left: 0;
}
.list-inline > li:before {
    display: none;
}
.list-inline > li {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-right: 20px!important;
    margin-bottom: 0!important;
}
.list-inline > li:last-of-type {
    margin-right: 0!important;
}

hr {
    border-width: 2px;
    border-color: rgba(154, 162, 147, 0.48);
    margin-top: 60px;
    margin-bottom: 60px;
}

/* blockquote */
blockquote {
    border: none;
    text-align: center;
}
.blockquote-reverse, 
blockquote.pull-right {
    border: none;
}
blockquote .quote {
    font-size: 30px;
    line-height: 34px;
    color: #4c9cb9;
    font-family: 'Bitter', serif;
    font-weight: 400;
    font-style: italic;
}
blockquote.pull-left,
blockquote.pull-right {
    max-width: 35%;
}

/* buttons */
.btn {
    -moz-user-select: none;
    background-image: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700!important;
    text-decoration: none!important;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 15px 20px;
    border: none;
    color: #000000;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);    
}
.btn-lg {
    font-size: 19px;
    line-height: 19px;
    padding: 17px 25px;
    text-transform: uppercase;
}
.btn-sm {
    font-size: 15px;
    line-height: 15px;
    padding: 13px 18px;
}
.btn-xs {
    font-size: 13px;
    line-height: 13px;
    padding: 10px 15px;
}
.btn-default {
    color: #f7f7ed!important;
    background-color: #4c9cb9;
}
.btn-default:focus,
.btn-default.focus {
    color: #f7f7ed!important;
    background-color: #3f7c92;
}
.btn-default:hover {
    color: #f7f7ed!important;
    background-color: #3f7c92;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #f7f7ed!important;
    background-color: #3f7c92;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
    color: #f7f7ed!important;
    background-color: #3f7c92;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
    background-color: #3f7c92;
}
.btn-default.red {
    color: #f7f7ed!important;
    background: #e95050;
}
.btn-default.red:focus,
.btn-default.red.focus {
    color: #f7f7ed!important;
    background-color: #c44747;
}
.btn-default.red:hover {
    color: #f7f7ed!important;
    background-color: #c44747;
}
.btn-default.red:active,
.btn-default.red.active,
.open > .dropdown-toggle.btn-default.red {
    color: #f7f7ed!important;
    background-color: #c44747;
}
.btn-default.red:active:hover,
.btn-default.red.active:hover,
.open > .dropdown-toggle.btn-default.red:hover,
.btn-default.red:active:focus,
.btn-default.red.active:focus,
.open > .dropdown-toggle.btn-default.red:focus,
.btn-default.red:active.focus,
.btn-default.red.active.focus,
.open > .dropdown-toggle.btn-default.red.focus {
    color: #f7f7ed!important;
    background-color: #c44747;
}
.btn-default.red:active,
.btn-default.red.active,
.open > .dropdown-toggle.btn-default.red {
    background-image: none;
}
.btn-default.red.disabled:hover,
.btn-default.red[disabled]:hover,
fieldset[disabled] .btn-default.red:hover,
.btn-default.red.disabled:focus,
.btn-default.red[disabled]:focus,
fieldset[disabled] .btn-default.red:focus,
.btn-default.red.disabled.focus,
.btn-default.red[disabled].focus,
fieldset[disabled] .btn-default.red.focus {
    background-color: #c44747;
}
.btn-primary {
    color: #f7f7ed!important;
    background-color: #3bb08e;
}
.btn-primary:focus,
.btn-primary.focus {
    color: #f7f7ed!important;
    background-color: #2fa381;
}
.btn-primary:hover {
  	color: #f7f7ed!important;
  	background-color: #2fa381;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  	color: #f7f7ed!important;
  	background-color: #2fa381;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  	color: #f7f7ed!important;
  	background-color: #2fa381;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  	background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  	background-color: #2fa381;
}
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
    border-color: transparent!important;
    color: #f7f7ed!important;
}

/* pagination */
.pagination {
    vertical-align: top;
}
.pagination > li:before {
    display: none;
}
.pagination > li > a,
.pagination > li > span {
  	color: #3f7c92;
    text-decoration: none!important;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  	z-index: 2;
  	border-color: #3f7c92;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  	z-index: 3;
  	color: #ffffff;
  	background-color: #4c9cb9;
  	border-color: #3f7c92;
  	cursor: default;
}

/* forms */
.form-group {
    margin-bottom: 25px;
    position: relative;
}
label {
    font-weight: 400;
    margin-bottom: 10px;
    max-width: 100%;
    font-size: 18px;
    line-height: 18px;
    color: #3e3e3e;
}
.form-control {
    background-color: #ffffff;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    color: #3e3e3e;
    display: block;
    font-size: 18px;
    line-height: 18px;
    padding: 18px 20px;
    width: 100%;
    height: auto;
    border: solid 2px rgba(154, 162, 147, 0.48);
    font-family: 'Source Sans Pro', sans-serif;
}
.search .form-control {
    padding-left: 50px;
}
.form-control::-webkit-input-placeholder {
    color: #3e3e3e;
}
.form-control:-moz-placeholder {
    color: #3e3e3e;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #3e3e3e;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #3e3e3e;
}
.form-control:focus {
    border-color: #e95050;
    outline: none;
    box-shadow: none;
}
.radio, .checkbox {
    display: block;
    margin-bottom: 25px;
    margin-top: 0px;
    position: relative;
}
.radio ul, .checkbox ul {
    margin: 0;
    padding: 0;
}
.radio ul li, .checkbox ul li {
    margin: 0;
    margin-bottom: 15px;
}
.radio ul li:before, .checkbox ul li:before {
    display: none;
}
.radio ul li:last-of-type, .checkbox ul li:last-of-type {
    margin-bottom: 0;
}
.checkbox input[type="checkbox"],
.radio input[type="radio"] {
    display: none;
}
.radio label, .checkbox label {
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
    min-height: 24px;
    line-height: 16px;
    font-size: 14px;
    padding: 4px 0 4px 34px;
    position: relative;
}
.checkbox label:before {
    display: block;
    content: "\f00c";
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: solid 1px #b8b8b8;
    color: #ffffff;
    -webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 14px;
    text-align: center;
    line-height: 22px;    
}
.checkbox ul li input[type="checkbox"]:checked + label:before {
    color: #e95050;
}
.radio label:before {
    display: block;
    content: "\f111";
    position: absolute;
    left: 0px;
    top: 50%;
    border-radius: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: solid 1px #b8b8b8;
    color: #ffffff;
    -webkit-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 8px;
    text-align: center;
    line-height: 22px;    
}
.radio ul li input[type="radio"]:checked + label:before {
    color: #e95050;
}

/* -------------------------------------------------------- */
/* --------- Only Large & Medium devices styles ----------- */
/* -------------------------------------------------------- */

@media (min-width: 992px) { 
}

/* ----------------------------------------- */
/* --------- Large devices styles ---------- */
/* ----------------------------------------- */

@media (min-width: 1200px) {
    
}

/* -------------------------------------- */
/* ------- Medium devices styles -------- */
/* -------------------------------------- */

@media (min-width: 992px) and (max-width: 1199px) {
    
    /* alignement */
    .large-width {
        max-width: 560px;
    }
    .medium-width {
        max-width: 400px;
    }
    .small-width {
        max-width: 200px;
    }
    .full-width {
        width: 100%;
    }
    
}

/* ----------------------------------------- */
/* --------- Small devices styles ---------- */
/* ----------------------------------------- */

@media (min-width: 768px) and (max-width: 991px) {  
  
    /* alignement */
    .large-width {
        max-width: 560px;
    }
    .medium-width {
        max-width: 400px;
    }
    .small-width {
        max-width: 200px;
    }
    .full-width {
        width: 100%;
    }

    .form-group {
        margin-bottom: 25px!important;
    }

    h1,
    .h1 {
        font-size: 38px;
        line-height: 40px;
    }

}

/* ------------------------------------------------ */
/* --------- Extra small devices styles ----------- */
/* ------------------------------------------------ */

@media (max-width: 767px) { 
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* alignement */ 
    .pull-left, 
    .pull-right {
        max-width: 100%;
        margin: auto!important;
        margin-bottom: 30px!important;
        float: none!important;
        display: block;
    }
    .large-width {
        max-width: 100%;
    }
    .medium-width {
        max-width: 100%;
    }
    .small-width {
        max-width: 100%;
    }

    h1,
    .h1 {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    h2,
    .h2 {
        font-size: 20px;
        line-height: 22px;
    }
    h3,
    .h3 {
        font-size: 18px;
        line-height: 20px;
    }
    h4,
    .h4 {
        font-size: 16px;
        line-height: 18px;
    }
    h5,
    .h5 {
        font-size: 15px;
        line-height: 17px;
    }
    h6,
    .h6 {
        font-size: 14px;
        line-height: 16px;
    }

    blockquote .quote {
        font-size: 24px;
        line-height: 28px;
    }
    blockquote.pull-left, blockquote.pull-right {
        max-width: 100%;
    }

    .wysiwyg ul, .wysiwyg ol, .wysiwyg dl {
        margin-bottom: 30px;
    }

    .wysiwyg .table-holder {
        overflow: auto;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    .wysiwyg .table-holder .msg {
        display: none;
        font-size: 10px;
        line-height: 20px; 
    }
    .wysiwyg .table-holder table {
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 25px!important;
    }

    hr {
        margin-bottom: 40px;
        margin-top: 40px;
    }

}