/* Site framework */

body {
    font-family: 'Baloo Paaji 2';
    font-size: 16px;
    background: url(../images/watermark.svg) center 0px no-repeat #fff;
    overflow-x: hidden;
}

@font-face {
    font-family: "Baloo Paaji 2 Bold";
    src: url(../fonts/BalooPaaji2-Bold.ttf);
}

@font-face {
    font-family: "Baloo Paaji 2 Semi Bold";
    src: url(../fonts/BalooPaaji2-SemiBold.ttf);
}

@font-face {
    font-family: "Baloo Paaji 2";
    src: url(../fonts/BalooPaaji2-Regular.ttf);
}

.contentDiv {
    min-height: 600px;
}
.logo img{
height: auto;
}

.AB-parent+.header_wrap {
    top: 50px;
}

.content_wrap {
    margin-top: 100px;
    position: relative;
}


/*Homepage Header*/

body[data-page=""] .header_wrap {
    background: #fff;
    height: 140px;
    border: 0;
    border-bottom: 0;
}

body[data-page=""] .header_wrap .logo {
    line-height: 140px;
    height: 140px;
}

body[data-page=""] .mainmenu>li>a {
    color: #000;
}

body[data-page=""] .content_wrap {
    margin-top: 140px;
}

body[data-page=""] .header_wrap .full-logo {
    width: initial;
    opacity: 1;
    transition: ease all .5s;
    max-width: 98%;
}

body[data-page=""] .header_wrap .logo-internal {
    width: 0;
    opacity: 0;
    transition: ease all .5s;
}

body[data-page=""] .header_wrap .menu_wrap_container {
    margin-top: 40px;
    transition: ease all .5s;
}

body[data-page=""] .menu_wrap .more-menu-button {
    background: rgba(236, 65, 27, .7);
}

body[data-page=""] .menu_wrap .more-menu {
    height: 50px;
    transition: ease all .5s;
}

body[data-page=""] .mainmenu>li.has-children>a:before {
    top: 50px;
}

body.sticky[data-page=""] .header_wrap {
    background: #fff;
    border-bottom: 1px solid #EEECEC;
}

body.sticky[data-page=""] .mainmenu>li>a {
    color: #585859;
}

body.sticky[data-page=""] .header_wrap .full-logo {
    width: 0;
    opacity: 0;
    transition: ease all .5s;
}

body.sticky[data-page=""] .menu_wrap .more-menu-button {
    background: #EC411B;
}


/*Sticky*/

body.sticky .header_wrap {
    height: 80px;
    transition: ease all .5s;
}

body.sticky .header_wrap .menu_wrap_container {
    margin-top: 0px;
    transition: ease all .5s;
}

body.sticky .header_wrap .logo {
    line-height: 80px;
    height: 80px;
    transition: ease all .5s;
}

body.sticky .header_wrap .logo .full-logo,
body.sticky .header_wrap .logo .logo-internal {
    opacity: 0;
    width: 0;
    transition: ease all .5s;
}

body.sticky .header_wrap .logo .logo-internal {
    opacity: 1;
    width: initial;
    transition: ease all .5s;
}

body.sticky .mainmenu li {
    line-height: 80px;
}

body.sticky .menu_wrap .more-menu {
    height: 80px;
}

body.sticky .mainmenu>li>ul {
    top: 65px;
}

body.sticky .mainmenu>li.has-children>a:before {
    top: 64px;
}


/* Header */

.header_wrap {
    margin-bottom: 10px;
    height: 100px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #EEECEC;
    transition: ease all .5s;
}

.header_wrap a:hover {
    text-decoration: none;
}

.header_wrap .logo {
    line-height: 100px;
    height: 100px;
    display: block;
    text-align: left;
    transition: ease all .5s;
}

.header_wrap .logo .full-logo {
    opacity: 0;
    width: 0;
    transition: ease all .5s;
	height:auto;
}

.header_wrap .logo .logo-internal {
    opacity: 1;
    width: initial;
    transition: ease all .5s;
	height:auto;
}
.cookie-header img {
	max-width: 82%;
	height: auto;
}


/* Main Menu */

.menu_wrap_container {
    position: relative;
    z-index: 1000;
    margin-top: 0px;
    transition: ease all .5s;
}

.menu_wrap {
    display: flex;
    align-items: center;
    color: #fff;
    text-align: left;
    line-height: 50px;
}

.menu_wrap .mainmenu {
    flex: 1;
    width: 0;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    z-index: 3000;
    padding: 0;
    position: relative;
    list-style: none;
}

.menu_wrap .more-menu {
    flex: 0 0 auto;
    width: 58px;
    height: 100px;
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: ease-in-out all .5s;
    z-index: 4000;
}

.menu_wrap .more-menu .more-menu-button {
    display: block;
    height: 100%;
    width: 100%;
    background: #EC411B;
    position: relative;
    transition: ease-in-out all .5s;
    z-index: 5000;
}

.more-menu-button>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.more-menu-button>div>div {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #fff;
    margin: 0 2px;
}

.menu_wrap .more-menu .more-menu-button:hover>div>div {
    animation: shadow-pulse 1s;
    animation-iteration-count: 3;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

.menu_wrap .more-menu ul {
    display: none;
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 0;
    width: 267px;
    list-style: none;
    padding: 30px 0 15px;
}

.menu_wrap .more-menu ul li {
    padding: 0 15px 7px 15px;
    text-align: left;
}

.menu_wrap .more-menu ul li a {
    color: #fff;
}

.menu_wrap .more-menu ul li a:hover {
    color: #79b246;
}

.menu_wrap .more-menu ul li ul {
    display: none;
}

.menu_wrap .more-menu .more-menu-button.open {
    background: #ec411b;
    transition: ease all .5s;
}


/*Mega Menu*/

.mainmenu {
    z-index: 3000;
    margin: 0 auto;
    padding: 0;
    text-transform: uppercase;
    list-style: none;
    display: flex;
    align-items: center;
}

.mainmenu>li {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 50px;
}

.mainmenu li a {
    display: block;
    position: relative;
    text-align: left;
    padding: 0 25px;
    margin: 0;
    font-size: 14px;
    color: #252626;
    text-transform: capitalize;
    text-align: center;
    transition: ease all .5s;
}

.mainmenu>li.active>a {
    color: #ec411b !important;
}

.mainmenu>li>a {
    font-family: "Baloo Paaji 2 Semi Bold";
    font-size: 18px;
}

.mainmenu li a:hover {
    color: #ec411b;
    transition: ease all .5s;
}

.mainmenu li ul {
    position: absolute;
    width: 240px;
    display: none;
    box-sizing: border-box;
    z-index: 1000;
    margin: 0;
    background: #fff;
    padding: 20px;
    text-align: left;
    clear: both;
}

.mainmenu li ul.active {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.mainmenu>li>ul {
    -webkit-box-shadow: 1px 4px 5px 0px rgba(140, 140, 140, 0.44);
    -moz-box-shadow: 1px 4px 5px 0px rgba(140, 140, 140, 0.44);
    box-shadow: 0px 1px 5px 0px rgba(140, 140, 140, 0.44);
    border-radius: 10px;
}

.mainmenu li ul:after {
    content: " ";
    display: block;
    clear: both;
}

.mainmenu li ul li {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 240px;
    flex: 0 0 auto;
}

.mainmenu li ul li:nth-child(5n+1) {
    clear: both;
}

.mainmenu li ul li a {
    text-align: left;
    color: #414B55;
    font-family: "Baloo Paaji 2 Semi Bold";
    font-size: 14px;
    padding: 5px 15px;
    z-index: 100;
    word-wrap: break-word;
    line-height: 22px;
}

.mainmenu li ul li ul {
    padding: 0;
    display: block !important;
    position: relative;
    top: 0;
    left: initial;
    box-shadow: none;
}

.mainmenu li ul li ul li {
    float: none;
    width: auto;
}

.mainmenu li ul li ul li a {
    text-align: left;
    color: #252626;
    font-family: "Baloo Paaji 2";
    font-size: 12px;
    padding: 5px 15px;
    word-wrap: break-word;
    line-height: 22px;
}

.mainmenu>li.has-children:hover>a:before {
    content: '';
    height: 0;
    position: absolute;
    left: calc(50% - 3px);
    position: absolute;
    top: 50px;
    width: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #EC411B;
    z-index: 10001;
}

.overlay {
    background: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    left: 0;
    z-index: 999;
}


/* Footer */

.footer_wrap {
    padding-top: 45px;
    padding-bottom: 45px;
    line-height: 26px;
    color: #fff;
    font-size: 14px;
    margin-top: 0px;
    position: relative;
    background: #414B55;
}

.footer_wrap div {
    position: relative;
}

.footer_wrap span {
    font-family: "Baloo Paaji 2 Bold";
    display: block;
    padding-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.footer_wrap .footer-phone {
    display: block;
    padding-left: 23px;
    padding-bottom: 5px;
    color: #fff;
    position: relative;
}

.footer_wrap .footer-phone:after {
    font-family: "Font Awesome 5 Free";
    content: '\f3cd';
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    color: #EC411B;
    position: absolute;
    left: 0px;
    font-size: 19px;
}

.footer_wrap .footer-email {
    padding-left: 23px;
    line-height: 30px;
    color: #fff;
    position: relative;
    display: block;
    position: relative;
}

.footer_wrap .footer-email:after {
    font-family: "Font Awesome 5 Free";
    content: '\f0e0';
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    color: #EC411B;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
    line-height: 18px;
}

.footer_wrap .social {
    margin-top: 10px;
    padding-top: 10px;
    text-align: left;
}

.footer_wrap .social a {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: 0 10px 0 0;
    box-sizing: border-box;
}

.footer_wrap .social .linkedin {
    background: url(../images/linkedin.svg) center center no-repeat;
}

.footer_wrap .social .twitter {
    background: url(../images/twit.svg) center center no-repeat;
}

.footer_wrap .social .facebook {
    background: url(../images/fb.svg) center center no-repeat;
}

.footer_wrap .social .youtube {
    background: url(../images/youtube.svg) center center no-repeat;
}

.footer_wrap .social a:hover {
    transition: all ease-in-out .3s;
    transform: rotate(360deg);
}

.footer_touch p {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
}

.footer_touch .newsletter {
    background: #fff;
    width: 300px;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}

.footer_touch .newsletter input {
    padding-left: 50px;
    line-height: 50px;
    position: relative;
    width: 80%;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    background: url(../images/mail.svg) 10px center no-repeat;
    font-size: 16px;
    height: 50px;
}

.footer_touch .newsletter a {
    display: block;
    position: relative;
    width: 20%;
    background: #ec411b;
    height: 50px;
}

.footer_touch .newsletter a:after {
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    clip-path: polygon(0 0, 0 100%, 78% 48%);
    -webkit-clip-path: polygon(0 0, 0 100%, 78% 48%);
    display: inline-block;
    position: absolute;
    right: calc(50% - 11px);
    top: calc(50% - 7px);
}

.footermenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footermenu li {
    margin: 0;
    padding: 0 0 15px 0px;
    display: block;
    line-height: 24px;
    position: relative;
    transition: ease all .5s;
}

.footermenu li a {
    display: block;
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    transition: ease all .5s;
}

.footermenu li a:hover {
    color: #EC411B;
    font-size: 16px;
    transition: ease all .5s;
}

.footermenu li ul {
    display: none;
}

.footermenu li a:before,
.footermenu li a:after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    border-radius: 50%;
    background: #EC411B;
    opacity: 1;
    transition: transition: all ease .5s;
}

.footermenu li a:before {
    transition: all ease .5s;
}

.footermenu li a:after {
    width: 1px;
    height: 100%;
    left: 4px;
    border-radius: 0;
}

.footermenu li a:hover:before {
    width: 12px;
    height: 12px;
    transition: all ease .5s;
    left: -2px;
    top: 6px;
}

.footermenu li:last-child a:after {
    content: none;
}


/* Byline */

.byline-wrap {
    padding: 30px 0;
    text-align: center;
    background: #282B2D;
}

.byline-wrap span {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    display: block;
    padding-bottom: 20px;
}

.byline_menu {
    list-style: none;
    padding: 0;
    line-height: 14px;
    margin: 0;
    padding-bottom: 20px;
}

.byline_menu li a {
    color: #FFFFFF;
    font-size: 14px;
    padding: 0 10px;
    border-right: 1px solid #FFFFFF;
    line-height: 14px;
    text-transform: capitalize;
}

.byline_menu li {
    display: inline-flex;
    padding: 0;
    line-height: 18px;
}

.byline_menu li:last-child a {
    border: 0;
}

.byline-wrap .dmac {
    line-height: 20px;
}

.byline-wrap .dmac a {
    font-size: 12px;
    font-weight: normal;
    color: #A8A8A8;
}

.byline-wrap .dmac a:hover {
    text-decoration: none;
}


/* Contact Forms */

.customform {
    font: 12px arial;
    color: #333;
}

.customform .fullwrap {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.customform .linewrap {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.customform .linewrap .leftwrap {
    float: left;
    width: 30%;
    height: 30px;
}

.customform .linewrap .leftwrap label {
    display: block;
    text-align: right;
    padding-right: 10px;
}

.customform .linewrap .rightwrap {
    float: left;
    width: 70%;
}

.customform .linewrap .textareawrap textarea {
    width: 95%;
    height: 120px;
    font: 13px Trebuchet MS;
    color: #000;
}

.customform .linewrap .textinputwrap input {
    width: 95%;
    font: 13px Trebuchet MS;
    color: #000;
}

.customform .linewrap .dropdownwrap select {
    width: 100%;
    font: 13px Trebuchet MS;
    color: #000;
}

.customform .infowrap {
    margin: 10px 0;
    font-weight: bold;
}


/*System change*/

.AB-editContentContainer {
    display: flex;
    align-items: flex-end;
}


/* Fonts */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

b {
    font-family: "Baloo Paaji 2 Bold";
}

strong {
    font-family: "Baloo Paaji 2 Bold";
}

html {
    overflow-y: scroll;
}

h1 {
    display: block;
    font-size: 38px;
    margin: 0 0;
    padding: 0 0 10px 0;
    line-height: 42px;
    color: #414B55;
    font-weight: normal;
}

h2 {
    display: block;
    font-size: 32px;
    margin: 0 0;
    padding: 0 0 10px 0;
    line-height: 36px;
    color: #414B55;
    font-weight: normal;
}

h3 {
    display: block;
    font-size: 30px;
    margin: 0 0;
    padding: 0 0 10px 0;
    line-height: 34px;
    color: #414B55;
    font-weight: normal;
}

h4 {
    display: block;
    font-size: 26px;
    margin: 0 0;
    padding: 0 0 10px 0;
    line-height: 30px;
    color: #EC411B;
    font-weight: normal;
}

h5 {
    display: block;
    font-size: 24px;
    margin: 0 0;
    padding: 0 0 10px 0;
    line-height: 30px;
    color: #414B55;
    font-weight: normal;
}

h6 {
    display: block;
    font-size: 20px;
    margin: 0 0;
    padding: 0 0 10px 0;
    line-height: 30px;
    color: #EC411B;
    font-weight: normal;
}

p {
    padding: 5px 0 20px 0;
    font-size: 16px;
    color: #504e4e;
    line-height: 24px;
}

ul {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 14px;
    color: #3a3a38;
    list-style-type: disc;
    line-height: 24px;
}

ul li {
    padding: 0 0 15px 0;
    line-height: 20px;
}

ul li a:hover {
    text-decoration: none;
}

ol {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 14px;
    color: #3a3a38;
    list-style-type: circle;
    line-height: 24px;
}

ol li {
    padding: 0 0 5px 0;
}

hr {
    color: #dadbdc;
    background: #dadbdc;
    height: 1px;
    border: 0;
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.full-width-fix {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -10px;
}

.flexslider {
    transition: all 0.3s ease-in-out 0s;
    height: auto;
}

.flex-viewport {
    height: 100% !important;
}

.flexslider .slides {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.flexslider .slides>li {
    display: none;
    -webkit-backface-visibility: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    min-height: 100px;
}

.flexslider .slides {
    height: 100%;
}

.flexslider .slides>li.flex-active-slide {
    display: flex !important;
    flex-direction: column
}

.flexslider .slides>li>a {
    display: block;
    height: 100%;
}

.flexslider .slides>li>img,
.flexslider .slides>li>a>img {
    width: 100%;
    display: block;
    z-index: 4;
}

.flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .flexslider .slides {
    display: block;
}

* html .flexslider .slides {
    height: 1%;
}

.no-js .flexslider .slides>li:first-child {
    display: block;
}

.flexSliderContainer.arrow {
    position: relative;
}

.flexSliderContainer.arrow .flexslider {
    margin-bottom: -30px;
}

.flexSliderContainer.arrow .slides>li,
.flexSliderContainer.arrow .slides>li>a {
    clip-path: polygon(0 calc(100% - 30px), calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px), 100% 0, 0 0);
    -webkit-clip-path: polygon(0 calc(100% - 30px), calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px), 100% 0, 0 0);
}

.flex-caption {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
}

.flex-caption>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    height: auto;
}

.flex-caption>div.background {
    background: rgba(255, 255, 255, .6);
    padding: 20px 60px;
}

.flex-caption:empty {
    display: none;
}

.flex-caption.halign-right {
    align-items: flex-end;
}

.flex-caption.halign-left {
    align-items: flex-start;
}

.flex-caption.halign-center {
    align-items: center;
}

.flex-caption.valign-top {
    justify-content: flex-start;
}

.flex-caption.valign-center {
    justify-content: center;
}

.flex-caption.valign-bottom {
    justify-content: flex-end;
}

.flex-caption h1 {
    font-size: 42px;
    line-height: 50px;
}

.flex-caption p {
    font-size: 22px;
    line-height: 28px;
    padding: 0;
    margin: 0;
}

.flex-caption a {
    font-size: 24px;
}

.flex-caption .fs-button {
    border: 1px solid #0f71b5;
    width: 192px;
    height: 50px;
}

.flex-caption .fs-button a {
    color: #fff;
    font-weight: bold;
    width: 192px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
}

.flex-caption .fs-button a:hover {
    background: #0f71b5;
    transition: ease all .5s;
}

.flex-control-paging {
    position: absolute;
    bottom: 20px;
    display: flex;
    width: 100%;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 60
}

.flex-control-paging {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.flex-control-paging>li {
    padding: 0;
    margin: 0;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-control-paging>li>a {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid #5d2956;
    margin: 0 8px;
    background: #fff;
}

.flex-control-paging>li>a.flex-active {
    background: #5d2956;
}


/*Fullscreen gallery arrows*/

.flex-direction-nav {
    position: absolute;
    top: 50%;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.flex-direction-nav li {
    padding: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    position: absolute;
    z-index: 10;
}

.flex-direction-nav li a {
    font-size: 0;
    display: block;
}

.flex-direction-nav li a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-size: 40px;
    vertical-align: middle;
    color: #d3d6d6;
    opacity: .6;
}

.flex-direction-nav .flex-nav-next {
    right: 10px;
}

.flex-direction-nav .flex-nav-prev {
    left: 10px;
}

.flex-direction-nav .flex-nav-next a:before {
    content: "\f138";
}

.flex-direction-nav .flex-nav-prev a:before {
    content: "\f137";
}

.flex-direction-nav li:hover a:before {
    opacity: 1;
    transition: ease all .3s;
}


/*Contact Form*/

.contact-form {
    background: #fff;
    padding: 10px;
    border: 1px solid #E3E3E3;
}

.contact-form .cf-input {
    line-height: 30px;
    padding-bottom: 30px;
    position: relative;
}

.contact-form .cf-select {
    line-height: 30px;
    padding-bottom: 10px;
}

.contact-form label {
    color: #EC411B;
    font-size: 16px;
}

.contact-form .cf-input label {
    position: absolute;
    display: inline-block;
    background: #fff;
    top: -7px;
    left: 12px;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 15px;
}

.contact-form input:not([type=checkbox]):not([type=radio]),
.contact-form select {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-indent: 10px;
}

.contact-form input:not([type=checkbox]):not([type=radio]),
.contact-form textarea,
.contact-form select {
    width: 100%;
    font-size: 16px;
    border: 1px solid #E3E3E3;
    box-sizing: border-box;
    padding: 0 5px;
}

.contact-form label span {
    color: #EC411B;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
    height: 80px;
    padding: 10px;
}

.contact-form .cf-buttons {
    line-height: 0;
    font-size: 0;
    text-align: right;
    margin-top: 5px;
}

.contact-form .cf-buttons a {
    line-height: 48px;
    width: 104px;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    text-transform: uppercase;
    margin-left: 20px;
    text-align: center;
    border-radius: 5px;
}

.contact-form .cf-buttons a.cf-submit {
    color: #fff;
}

.contact-form .cf-reset {
    display: none !important;
}

.contact-form .cf-validation {
    text-align: center;
    height: 0;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 16px;
    color: #ee660b;
    font-weight: bold;
    transition: all 2s ease-in-out 0s;
}

.contact-form .cf-text {
    color: #2B2B2B;
    font-size: 18px;
    line-height: 18px;
    font-family: "Baloo Paaji 2 Bold";
    padding: 10px 0 10px 15px;
    border-left: 1px solid #EC411B;
    margin-bottom: 20px;
    width: 100%;
}

.contact-form .denotes {
    float: left;
    font-size: 12px;
    color: #2B2B2B;
}

.contact-form .cf-buttons a:hover {
    text-decoration: none;
}

.contact-form .cf-radiobox {
    margin-bottom: 10px;
}

.contact-form .cf-radiobox span {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}

.contact-form .cf-radiobox input,
.contact-form .cf-checkbox input {
    width: 14px;
    margin: 0 10px;
}

.contact-form .cf-checkbox label {
    display: block;
}

.contact-form .cf-checkbox span {
    display: block;
}


/********Block Layout Module********/

.form-group label {
    margin-top: .5rem;
}

.form-group select {
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

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

.block_layout_module:after {
    content: "";
    display: block;
    clear: both;
}

.layout_block {
    margin: 0;
    min-height: 490px;
    display: flex;
    align-items: center;
}

.block_layout_module .layout_image {
    width: 50%;
}

.block_layout_module .layout_inner {
    width: 750px;
    padding: 0 15px;
}

.block_layout_module .layout_title {
    font-size: 42px;
    line-height: 46px;
    color: #414B55;
    margin-bottom: 20px;
    font-family: "Baloo Paaji 2 Semi Bold";
}

.block_layout_module .layout_subtitle {
    color: #EC411B;
    font-size: 18px;
    font-family: "Baloo Paaji 2 Bold";
}

.block_layout_module .layout_text {
    color: #454646;
    font-size: 18px;
    line-height: 32px;
}

.block_layout_module .layout_link {
    display: inline-block;
    font-size: 18px;
    color: #fff !important;
    text-align: center;
    position: relative;
    font-family: "Baloo Paaji 2 Bold";
    border-radius: 3px;
    background: #EC411B;
    padding: 10px 20px;
    margin-top: 20px;
    transition: ease all .3s;
    padding-right: 40px;
    text-transform: uppercase;
}

.block_layout_module .layout_link:after {
    content: "";
    position: absolute;
    right: 17px;
    top: calc(50% - 4px);
    transform: rotate(225deg);
    border-radius: 1px;
    border: 2px solid #fff;
    border-width: 0 0 2px 2px;
    height: 8px;
    width: 8px;
}

.block_layout_module .layout_pos_Left {
    flex-direction: row-reverse;
}

.block_layout_module .layout_pos_Left .layout_content {
    justify-content: flex-end;
    display: flex;
    margin-right: -20px;
}

.block_layout_module .layout_content {
    background: #F3F3F2;
    width: 55%;
    padding: 30px 20px;
    -webkit-box-shadow: 0px 5px 29px -14px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 29px -14px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 29px -14px rgba(0, 0, 0, 0.75);
    margin-left: -20px;
}

.block_layout_module .layout_image {
    justify-content: flex-end;
    display: flex;
}

.block_layout_module .layout_pos_Left .layout_image {
    justify-content: flex-start;
}


/*IconGallery Module*/

.image_gallery_module {
    margin-bottom: 20px;
    animation-delay: 1.2s;
    position: relative;
    z-index: 50;
}

.image_gallery_module .container {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.im_box {
    display: flex;
    flex-shrink: 0;
    flex-grow: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 0px 2px;
    border: 1px solid #E1DFDF;
    background: rgba(255, 255, 255, 1);
    transition: all ease-in-out .5s;
}

.im_image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.im_image img {
    width: 100%;
}

.im_title {
    color: #414B55;
    font-size: 20px;
    line-height: 30px;
    font-family: "Baloo Paaji 2 Semi Bold";
}

.im_link {
    color: #FFFFFF;
    opacity: 0;
    height: 0;
    text-decoration: underline;
}

.im_box .im_hoverImage {
    width: 0;
    opacity: 0;
}

.im_box .im_mainImage {
    width: initial;
    opacity: 1;
}


/*Hover*/

.im_box:hover {
    background: rgba(236, 65, 27, .9);
    transform: scale(1.1);
}

.im_box:hover .im_title {
    color: #FFFFFF;
}

.im_box:hover .im_mainImage {
    width: 0;
    opacity: 0;
}

.im_box:hover .im_hoverImage {
    width: initial;
    opacity: 1;
}

.im_box:hover .im_link {
    height: initial;
    opacity: 1;
    color: #fff;
    text-decoration: underline;
}

.image_gallery_slider {
    display: flex;
}

.image_gal_next,
.image_gal_prev {
    width: 18px;
    height: 18px;
    border: 4px solid #EC411B;
    border-width: 4px 4px 0 0;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: -20px
}

.image_gal_prev {
    transform: rotate(-135deg);
    right: initial;
    left: -20px;
}

.image_gallery_module .caroufredsel_wrapper {
    padding: 20px 0;
}


/* Payment Module */

.payment_module {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.payment_module h1 {
    padding-bottom: 10px;
    border-bottom: 2px solid #EC411B;
    margin-bottom: 30px;
}

.payment_module .paymentForms {
    padding: 20px 10px 60px;
    background: #fff;
    box-shadow: 0px 0px 5px #00000029;
    width: 700px;
}

.paymentForms>form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.paymentForms>form h2 {
    width: 100%;
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 20px;
    font-weight: normal;
    padding: 0 0 0 10px;
    border-left: 1px solid #EC411B;
}

.paymentForms>form>div {
    width: 0;
    flex: auto;
    margin: 0 40px 30px 0;
    position: relative;
}

.paymentForms>form>div:nth-of-type(2),
.paymentForms>form>div:last-child {
    margin-right: 0;
}

.paymentForms>form>div:nth-of-type(n+3):nth-child(-n+5) {
    width: 100%;
    flex: 0 0 auto;
    margin: 0 0 30px 0;
}

.paymentForms>form>div>input {
    height: 50px;
    border: 1px solid #E3E3E3;
    width: 100%;
    padding: 0 5px;
}

.paymentForms>form>div>label {
    position: absolute;
    top: -10px;
    line-height: 20px;
    left: 10px;
    color: #EC411B;
    font-size: 12px;
    background: #fff;
    padding: 0 10px;
}

.paymentForms>form>div>span {
    position: absolute;
    top: 0px;
    line-height: 52px;
    left: 10px;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}

.paymentForms>form>div>input[type=number] {
    padding-left: 30px;
    background: #FBF9F9;
}

.paymentForms>form button {
    background: #EC411B;
    border-radius: 3px;
    border: 1px solid #EC411B;
    height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 40px;
    width: 200px;
    margin-left: auto;
    flex: 0 0 auto;
}

#card-errors {
    margin: 0;
    color: #fa755a;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}


/* Calendly */

.calendly {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
}

.calendly>div:first-child {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: url(../images/consulting.svg) no-repeat center #EC411B;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.calendly>div:last-child {
    border-radius: 3px;
    box-shadow: 3px 3px 6px #000000CC;
    position: relative;
    z-index: 1;
    left: -20px;
    background: #EC411B;
    padding: 10px 10px 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    width: 150px;
    line-height: 18px;
    font-weight: bold;
    flex: 0 0 auto;
    text-align: center;
}

.calendly>div:last-child:after {
    content: '';
    margin-left: 5px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.calendly.nofix {
    position: absolute;
    bottom: 20px;
}