html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Open Sans', sans-serif;
	color:#444;
    background-color: #f2f2f2 !important;
}
@media (min-width: 1200px){
    .container {
        max-width: 1600px !important;
    }
}


.myGallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, minmax(60px, 1fr));
  }
  
  .myGallery img {
    width: 112px;
    height: 75px;
    border: 1px solid #999999;
  }

.gm-style .gm-style-iw-c {
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    top: 0;
    left: 0;
    transform: translate(-50%,-100%);
    background-color: white;
    border-radius: 0px;
    padding: 12px;
    box-shadow: 0 2px 7px 1px rgb(0 0 0 / 30%);
}



@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url('https://fonts.googleapis.com/css?family=Raleway');

 .wrapper {
	 display: flex;
	 flex-direction: row;
	 flex-wrap: wrap;
	 align-items: center;
	 justify-content: center;
}
 h1 {
	 font-family: inherit;
	 margin: 0 0 0.75em 0;
	 color: white;
	 text-align: center;
}
 .box {
	 display: block;
	 min-width: 26px;
	 height: 30px;
     width: 58px;
	 /* margin-right: 10px; */
	 background-color: white;
	 border-radius: 0px;
	 border: 1px solid #999999;
	 transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	 overflow: hidden;
}
 .upload-options {
	 position: relative;
	 height: 30px;
	 background-color: white;
	 cursor: pointer;
	 overflow: hidden;
	 text-align: center;
	 transition: background-color ease-in-out 150ms;
}
 .upload-options:hover {
	 background-color: #2380CC;
}
 .upload-options input {
	 width: 0.1px;
	 height: 0.1px;
	 opacity: 0;
	 overflow: hidden;
	 position: absolute;
	 z-index: -1;
}
 .upload-options label {
	 display: flex;
	 align-items: center;
	 width: 100%;
	 height: 100%;
	 font-weight: 400;
	 text-overflow: ellipsis;
	 white-space: nowrap;
	 cursor: pointer;
	 overflow: hidden;
}
 .upload-options label::after {
	 content: '+';
	 font-family: 'Material Icons';
	 position: absolute;
	 font-size: 3.2rem;
	 color: rgba(230, 230, 230, 1);
	 top: calc(50% - 2.5rem);
	 left: calc(50% - 1rem);
	 z-index: 0;
}
 .upload-options label span {
	 display: inline-block;
	 width: 50%;
	 height: 100%;
	 text-overflow: ellipsis;
	 white-space: nowrap;
	 overflow: hidden;
	 vertical-align: middle;
	 text-align: center;
}
 .upload-options label span:hover i.material-icons {
	 color: lightgray;
}
 .js--image-preview {
	 height: 0px;
	 width: 100%;
	 position: relative;
	 overflow: hidden;
	 background-image: url('');
	 background-color: white;
	 background-position: center center;
	 background-repeat: no-repeat;
	 background-size: cover;
}
 .js--image-preview::after {
	 content: "photo_size_select_actual";
	 font-family: 'Material Icons';
	 position: relative;
	 font-size: 4.5em;
	 color: rgba(230, 230, 230, 1);
	 top: calc(50% - 3rem);
	 left: calc(50% - 2.25rem);
	 z-index: 0;
}
 .js--image-preview.js--no-default::after {
	 display: none;
}
 .js--image-preview:nth-child(2) {
	 background-image: url('http://bastianandre.at/giphy.gif');
}
 i.material-icons {
	 transition: color 100ms ease-in-out;
	 font-size: 2.25em;
	 line-height: 55px;
	 color: white;
	 display: block;
}
 .drop {
	 display: block;
	 position: absolute;
	 background: white;
	 border-radius: 100%;
	 transform: scale(0);
}
 .animate {
	 animation: ripple 0.4s linear;
}
 @keyframes ripple {
	 100% {
		 opacity: 0;
		 transform: scale(2.5);
	}
}
 
 










.control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}
    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: 5px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #cccccc;
}

.control input:checked ~ .control_indicator {
    background: #2380CC;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #2380CC;
}
.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 7px;
    top: 3px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}
.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}



.control2 {
    font-family: arial;
    display: inline;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}
    .control2 input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: 0px;
}
.control2:hover input ~ .control_indicator,
.control2 input:focus ~ .control_indicator {
    background: #cccccc;
}

.control2 input:checked ~ .control_indicator {
    background: #2380CC;
}
.control2:hover input:not([disabled]):checked ~ .control_indicator,
.control2 input:checked:focus ~ .control_indicator {
    background: #2380CC;
}
.control2 input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control2 input:checked ~ .control_indicator:after {
    display: block;
}


.control3 {
    font-family: arial;
    display: inline;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}
    .control3 input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: undefinedpx;
}
.control3:hover input ~ .control_indicator,
.control3 input:focus ~ .control_indicator {
    background: #cccccc;
}

.control3 input:checked ~ .control_indicator {
    background: #2380CC;
}
.control3:hover input:not([disabled]):checked ~ .control_indicator,
.control3 input:checked:focus ~ .control_indicator {
    background: #2380CC;
}
.control3 input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control3 input:checked ~ .control_indicator:after {
    display: block;
}
.control-radio .control_indicator {
    border-radius: 50%;
}

.control-radio .control_indicator:after {
    left: 6px;
    top: 6px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #ffffff;
    
}
.control-radio input:disabled ~ .control_indicator:after {
    background: #7b7b7b;
}.control-radio .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #2380CC;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}




/*common*/
.height-100per{
    height: 100%;
}
.table-class{
    display: table;
    width: 100%;
    height: 100%;
}
.table-cell-class{
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
	padding-bottom: 60px;
}
.container{
    width: 100%;
    max-width: 1265px;
}
/*header*/
.donate-button{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
    display: inline-block;
    color: #FF0F00;
}
.hidden-menu{
    background-color: #fff;
    padding-bottom: 20px;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 999;
    display: none;
}
.small-menu-button{
    position: absolute;
    left: 15px;
    top: 8px;
    display: none;
}
.close-menu{
    position: absolute;
    /* right: 10%; */
    top: 0;
    right: 0;
    padding: 10px 15px;
    border-radius: 100px;
}
.logo-mobile img{
    width: 100px;
    padding-top: 10px;
}
.mobile-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu  a{
    font-size: 14px;
    font-weight: 800;
    color: #14194a;
}
header{
    padding-top: 35px;
}
.logo{
    text-align: center;
}
.logo a{
    display: table;
    margin: auto;
    
}
.logo a p{
    font-size: 14px;
    font-weight: 800;
    color: #14194a;
    text-align: right;
    text-transform: uppercase;
    margin-bottom: 0;
}
.phone-top a{
    font-size: 13px;
    font-weight: 700;
    color: #141a4e;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
    display: block;
}
.phone-social-top{
    position: absolute;
    right: 15px;
    top: 0;
}
.social-top ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-top li{
    display: inline-block;
    margin-right: 5px;
}
.social-top li:last-child{
    margin-right: 0px;
}
.navigation {
    margin-bottom: 10px;
    margin-top: 5px;
}
.navigation ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.navigation ul li{
    display: inline-block;
    margin-right: 18px;
}
.navigation ul li:last-child{
    margin-right: 0px;
}
.navigation ul li a{
    font-size: 24px;
    font-weight: 800;
    color: #307f3e;
    display: block;
    text-transform: uppercase;
    padding: 9px;
}
.pop-up-header-text{
    margin-bottom: 20px;
}
.pop-up-header-text h6{
    font-size: 18px;
    color: #00a651;
}
.pop-up-header-text h6 span{
    font-weight: 900;
}
.pop-up-header-text p{
    font-size: 14px;
    color: #00a651;
    font-weight: 500;
    margin-bottom: 0;
}
.bottom-logo{
    margin: 20px 0;
}
.bottom-logo img{
    width: 100%;
}
/*slider*/
.slider{
    float: left;
    width: 100%;
}
.slider ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.slider ul li{
    display: inline-block;
    float: left;
    width: 100%;
    height: 100%;
}
.single-slide{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
}
.slider .bx-viewport{
    height: 500px;
}

.bx-wrapper {
    -moz-box-shadow: 0 0 0px #ccc !important;
    -webkit-box-shadow: 0 0 0px #ccc !important;
    box-shadow: 0 0 0px #ccc !important;
    border: 0px solid #fff !important;
    margin-bottom: 0 !important;
}
.bx-pager-link{
    background: #EEF5FF !important;
}
.bx-pager-link.active{
    background: #0B5FA3 !important;
}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 30px;
    width: 100%;
}
/*block*/
.info-title p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    display: block;
    color: #999999;
    margin-bottom: 20px;
}
.info-text p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    color: #666666;
}
.info-text p svg{
    margin-top: -7px;
}
.info-tiles-text p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
}
.info-tiles-svg{
    margin-bottom: 20px;
}
.line-wrap{
    position: relative;
}
.line-wrap:after{
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #CCCCCC;
}
.svg-border{
    display: table;
    margin: auto;
    border: 1px solid #D0D0D0;
    padding: 13px;
    border-radius: 100px;
}
.info-tiles-up p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    color: #00A0E3;
    margin-bottom: 0;
}
.info-tiles-down p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #999999;
}
.slider-tile-ul li{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #CCCCCC;
    height: 300px;
}
.slide_common{
    position: absolute;
    top: 53%;
}
.slider_prev{
    left: -45px;
}
.slider_next{
    right: -45px;
}
.svg-sub p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    color: #0B5FA3;
    line-height: 41px;
}
.svg-sub2 p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    color: #0B5FA3;
    line-height: 41px;
}
.errorMessage {
    color: tomato;
}
.plati {
    float: left;
    width: 52.53px;
    margin-left: 4px;
}
.plati-card {
    float: left;
    width: 100px;
    margin-left: 5px;
}
img.active-img {
    border-bottom: 7px solid #24B34A;
}
#fancybox-close {
    display:inline !important;
    top: -7px !important;
    right: 1px !important;
    width: 28px !important;
    height: 30px !important;

}
.popup-wrap {
    font-size: 16px;
}
.popup-wrap a{
    color:rgb(139, 174, 82);
    text-align:center;
}
.popup-wrap .titlu-modala {
    color: #028F5D;
    font-size: 16px;
    font-weight: bold;
}
.fancybox-content {
    max-width: 992px;
}
.title-edition {
    color:#cfeb9e;
    font-weight: bold;
    font-size: 5.5vw;
    text-transform: uppercase;
}
.title-s h3{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #2380CC;
}
.show-more {
    display: none;
}
.show-less {
    display: inline-block;
}
.home-list {
    padding-left:20px;
    list-style: none;
}
.home-list li {
    position:relative;
}
.home-list li:before {
    content: '-';
    position: absolute;
    left: -15px;
}
.text-t p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #999999;
}
.link-t{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #0B5FA3;
}
.plant-steps-l{
    float: left;
    margin-right: 15px;
}
.plant-steps-r h4{
    font-family: Open Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #2380CC;
}
.plant-steps-r h5{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
}
.plant-steps-r h6{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #999999;
}
.plant-steps-r{
    float: left;
}
.plant-steps p{
    float: left;
    display: block;
    width: 100%;
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    color: #028F5D;
}
.plant-steps{
    width: 270px;
    margin-bottom: 20px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}
.form label{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
    text-align: left;
}
.form label span{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
}
.form a{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #0B5FA3;
}
.single-check{
    line-height: 14px;
}
.in-full{
    padding: 5px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    width: 100%;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
}
.in-half{
    padding: 5px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    width: 48%;
}
.in-half select{
    width: 100%;
    border: none;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
    position: relative;
    z-index: 99;
    background: transparent;
}
.in-full select{
    width: 100%;
    border: none;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
    position: relative;
    z-index: 99;
    background: transparent;
}
.in-100{
    padding: 5px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    width: 100px;
    float: left;
}
.in-p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
    float: left;
    margin-left: 10px;
}
.in-p-b{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    color: #666666;
    float: left;
    width: 100%;
}
.form .row{
    margin-bottom: 10px;
}
.select-wrap{
    position: relative;
}
.select-svg{
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: #fff;
    z-index: 9;
}
.form-submit button{
    border: none;
    padding: 0;
}
.form-submit p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}
.form-submit a{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #0B5FA3;
}
.form-submit{
    margin-top: 50px;
}
.single-check input[type="checkbox"] {
    display: none;
}
.single-check label span {
    padding: 2px 0 5px 25px;
    background-image: url(../img/checkbox.jpg);
    background-repeat: no-repeat;
    /* background-size: 20px 20px; */
    background-position: left 0px;
    display: inline-block;
    cursor: pointer;
}
.single-check label input[type="checkbox"]:checked ~ * {
    background-image: url(../img/checkbox-checked.jpg);
}




.welcome-services{
    float: left;
    width: 100%;
}
.block-title h5{
    font-size: 18px;
    font-weight: 800;
    color: #2e813d;
    text-transform: uppercase;
}
.block-title h2{
    font-size: 48px;
    font-weight: 900;
    color: #14174a;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.block-image{
    float: left;
    width: 170px;
}
.block-image img{
    width: 100%;
}
.block-content{
    float: right;
    width: 68%;
}
.block-content p{
    font-size: 16px;
    font-weight: 500;
    color: #14174a;
    margin-bottom: 35px;
}
.block-content a.common-button{
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    padding: 23px 45px;
    display: table;
    margin-right: 0;
    background-color: #00a651;
    border-radius: 100px;
    float: right;
}
.block-list{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 85%;
}
.block-list li.block-list-li{
    background-image: url(../img/list-icon.png);
    background-position: left 6px;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 15px;
}
.block-list p{
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
    text-transform: uppercase;
}
.block-list p a{
    font-size: 14px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0;
    text-transform: uppercase;
}
/*refrences*/
.table-class-ref{
    display: table;
    height: 100%;
    margin: auto;
}
.table-cell-class-ref{
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.refrences{
    float: left;
    width: 100%;
}
.refrences-list .bx-wrapper {
    -moz-box-shadow: 0 0 0px #ccc !important;
    -webkit-box-shadow: 0 0 0px #ccc !important;
    box-shadow: 0 0 0px #ccc !important;
    border: 0px solid #fff !important;
    background: transparent !important;
    margin-bottom: 0 !important;
    margin: auto;
}
.block-title-center{
    display: table;
    margin: auto;
}
.refrence-slider li{
    border: 1px solid #c0d9c4;
    padding: 20px;
    height: 153px;
}
.refrence-slider li a{
    display: table;
    
}
.block-content-inner p{
    margin-bottom: 0;
}
.block-content-inner h6{
    font-size: 18px;
    font-weight: 900;
    color: #14174a;
    margin-bottom: 0;
}
.block-content-inner{
    margin-bottom: 20px;
}
/*contact*/
/*form*/
#contact_form{
    font-size: 16px;
}
#form_id{
    font-size: 16px;
}
#reseller_form_id{
    font-size: 16px;
}
.popup-wrap input[type="text"]{
    border: 1px solid #CCCCCC;
    padding: 5px;
    margin-bottom: 20px;
    width: 100%;
}
.popup-wrap input[type="email"]{
    border: 1px solid #CCCCCC;
    padding: 5px;
    margin-bottom: 20px;
    width: 100%;
}
.popup-wrap input[type="submit"]{
    background-color: #2380CC;
    color: #fff;
    padding: 15px;
    text-transform: uppercase;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: none;
}
.contact-form-wrap input[type="submit"]{
    border: 1px solid #CCCCCC;
    background-color: #232323;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-width: 1px;
    padding: 20px 60px;
    display: inline-block;
    text-transform: uppercase;
}
.popup-wrap textarea{
    border: 1px solid #CCCCCC;
    padding: 5px;
    margin-bottom: 20px;
    width: 100%;
    height: 70px;
}
.recaptcha-wrap{
    margin-bottom: 20px;
}
.form.popup-wrap input[type="checkbox"] {
    display: none;
}
.form.popup-wrap span {
    padding: 0px 0 0px 24px;
    background-image: url(img/checkbox.png);
    background-repeat: no-repeat;
    /* background-size: 20px 20px; */
    background-position: left 4px;
    display: inline-block;
    cursor: pointer;
}
.form.popup-wrap input[type="checkbox"]:checked ~ * {
    background-image: url(img/checkbox-c.png);
}
.contact{
    
}
.contact-inner{
    margin-bottom: 75px;
    width: 100%;
    max-width: 1030px;
    margin: auto;
}
.contact .block-content{
    float: right;
    width: 48%;
}
.contact-form h5{
    font-size: 18px;
    font-weight: 900;
    color: #14174a;
    margin-bottom: 35px;
}
.contact-form label{
    font-size: 14px;
    font-weight: 500;
    color: #14174a;
    margin-bottom: 7px;
}
.contact-form input[type="text"]{
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 17px;
    font-size: 14px;
}
.contact-form input[type="email"]{
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 17px;
    font-size: 14px;
}
.contact-form textarea{
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 17px;
    height: 75px;
    font-size: 14px;
}
.contact-form input[type="submit"]{
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    padding: 23px 45px;
    display: table;
    margin-right: 0;
    background-color: #00a651;
    border-radius: 100px;
    float: left;
    border: none;
}
.rand_captcha {
    margin-right: 20px;
    margin-top: 6px;
}
.rand_captcha ul {
    list-style: none;
}
.rand_captcha ul li {
    display: inline-block;
}
.rand_captcha input[type="number"] {
    width: 55px;
    padding: 8px 0;
    border-color: #f5f5f5;
    border-width: 3px;
    border-style: solid;
    text-align: center;
    border: 1px solid #CCCCCC;
    font-size: 14px;
    font-weight: 600;
}
.rand_captcha p{
    font-size: 14px;
    font-weight: 500;
    color: #14174a;
}
.form-response-text {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    padding-top: 18%;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 7px;
}
/*footer*/
.footer{
    float: left;
    width: 100%;
    padding: 20px 0;
}
.footer p{
    font-size: 12px;
    font-weight: 600;
    color: #9b9a9a;
}
.footer p span{
    font-size: 12px;
    font-weight: 600;
    color: #2d2d2d;
}
.footer p a{
    font-size: 12px;
    font-weight: 600;
    color: #2d2d2d;
}
.footer-copyright p{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    display: block;
    color: #999999;
}
.footer-menu li{
    display: inline-block;
    margin-right: 15px;
}
.footer-menu li:last-child{
    margin-right: 0;
}
.footer-menu li a{
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    display: inline-block;
    color: #2380CC;
}
.footer-border{
    width: 100%;
    height: 1px;
    background-color: #CCCCCC;
    margin-bottom: 15px;
}
/*popups*/
.pop-up-link{
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    padding: 23px 45px;
    display: table;
    margin: 100px auto 20px auto;
    background-color: #00a651;
    border-radius: 100px;
}
.fancybox-skin {
    padding: 65px !important;
    position: relative;
    background:white;
	/*background: #e0ebe2;*/
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.fancybox-close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    width: 36px !important;
    height: 36px !important;
    cursor: pointer !important;
    z-index: 8040 !important;
    background-image: none !important;
    background-color: transparent;
}
.fancybox-close:before {
    content: "[X]";
    font-style: normal;
    font-weight: 900;
    text-decoration: inherit;
    color: #232323;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 5px;
    left: 10px;
}
.block-list-pop {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.block-list-pop-check li{
    background-image: url(../img/tick.png) !important;
    background-position: left 6px;
    background-size: 15px 15px !important;
    background-repeat: no-repeat;
    padding-left: 20px;
}
.block-list-pop li.block-list-li-pop {
    background-image: url(../img/list-icon.png);
    background-position: left 6px;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 20px;
}
.block-list-pop.no-icon li.block-list-li-pop {
    background-image: none !important;
    background-position: left 6px;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 15px;
    position: relative;
}
.single_image_img {
    /* position: absolute; */
    top: 0;
    left: 100%;
    /* margin-left: 30px; */
    width: 100%;
    max-width:300px;
    z-index: 9;
    cursor: pointer;
    height: 300px;
    /* border: 1px solid #00a651; */
    background-size: cover;
    display: inline-block;
}
.block-list-pop p {
    font-size: 16px;
    font-weight: 600;
    color: #14174a;
    margin-bottom: 15px;
}

.block-list-inner-pop{
    list-style: none;
    margin: 0;
    width: 100%;
    margin-bottom: 30px;
    padding-left: 15px;
}
.block-list-inner-pop .block-list-inner-li-pop {
    background-image: url(../img/list-icon-cir.png);
    background-position: 15px 26px;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    padding: 20px 20px 20px 30px;
    position: relative;
    border: 1px solid #00a651;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.block-list-inner-pop p {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0;
    /* float: left; */
    width: 40%;
    display: inline-block;
    float: left;
}
.block-list-inner-pop a{
    font-size: 14px;
    font-weight: 600;
    color: #14174a !important;
    margin-bottom: 12px;
}
.block-list-pop-img{
    width: 75%;
    float: right;
}
.no-img li{
    background-image: none !important;
    padding-left: 0 !important;
}
.no-img p{
    margin-bottom: 0;
}
.popups h2{
    font-size: 36px;
    font-weight: 900;
    color: #14174a;
    text-transform: uppercase;
    margin-bottom: 30px !important;
}
.pop-img-pop{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    height: 100%;
    padding-top: 10%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9;
}
.pop-img-pop-inner{
    position: relative;
    display: table;
    margin: auto;
}
.close-img-pop{
    position: absolute;
    top: 0;
    z-index: 99;
    right: 0;
    font-size: 16px;
    background: #000;
    padding: 5px 10px;
    color: #fff;
    font-weight: 900;
}
section {
    float: left;
    width: 100%;
}
@media(max-width: 1720px){
    .slider_prev {
        left: 25px;
    }
    .slider_next {
        right: 25px;
    }
    .slide_common svg path{
        fill: #ffffff;
    }
}
@media(max-width: 1625px){
    .svg-title svg{
        width: 991px;
        height: 100px;
    }
}
@media(max-width: 1520px){
    .block-content {
        float: right;
        width: 58%;
    }
}
@media(max-width: 1415px){
    .single_image_img {
        /* position: absolute; */
        top: 0;
        left: 100%;
        /* margin-left: 30px; */
        width: 100%;
        max-width: 200px;
        z-index: 9;
        cursor: pointer;
        height: 200px;
        /* border: 1px solid #00a651; */
        background-size: cover;
        display: inline-block;
    }
}
@media(max-width: 1199px){
    .container{
        max-width: 100% !important;
    }
    .contact {
        max-width: 100%;
    }
}
@media(max-width: 1160px){
    .block-image img{
        width: 160px;
    }
}
@media(max-width: 1070px){
    .single_image_img {
        /* position: absolute; */
        top: 0;
        left: 100%;
        /* margin-left: 30px; */
        width: 100%;
        max-width: 100%;
        z-index: 9;
        cursor: pointer;
        height: 200px;
        /* border: 1px solid #00a651; */
        background-size: cover;
        display: inline-block;
    }
    .block-list-inner-pop p {
        font-size: 14px;
        font-weight: 500;
        color: #000000;
        margin-bottom: 20px;
        /* float: left; */
        width: 100%;
        display: inline-block;
        float: left;
    }
}
@media(max-width: 1090px){
    .info-tiles-svg-b svg{
        width: 100px;
        height: 100px;
    }
    .info-tiles-up p {
        font-family: Open Sans;
        font-style: normal;
        font-weight: 300;
        font-size: 28px;
        color: #00A0E3;
        margin-bottom: 0;
    }
}    
@media(max-width: 1030px){
    .svg-title svg {
        width: 500px;
        height: 100px;
    }
}
@media(max-width: 975px){
    .svg-wrap{
        text-align: center;
    }
    .svg-wrap svg{
        width: 100px;
        height: 100px;
    }
}    
@media(max-width: 900px){
    .block-image {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }
    .block-content {
        float: right;
        width: 100%;
    }
    .contact .block-content {
        float: right;
        width: 100%;
    }
    .block-list-pop-img{
        width: 100%;
    }
    .fancybox-skin {
        padding: 15px !important;
    }
    .fancybox-skin {
        padding: 40px 0 15px 0 !important;
    }
    .popups h2 {
        font-size: 20px;
    }
    
}
@media(max-width: 768px){
    .single_image_img {
        position: relative !important;
        top: 0;
        left: 0 !important;
        margin-left: 0px !important;
        width: 100%;
    }
    .small-menu-button{
        display: block;
    }
    .logo {
        text-align: left;
    }
    .logo a {
        display: table;
        margin-left: 45px;
    }
    .logo a img{
        width: 100px;
    }
    .logo a p {
        font-size: 11px;
        font-weight: 800;
        color: #14194a;
        text-align: right;
        text-transform: uppercase;
        margin-bottom: 0;
    }
    .navigation {
        display: none;
    }
    .slider {
        margin-top: 25px;
    }
    .single-slide {
        height: 300px;
    }
}
.footer-links{
    text-align: right;
}
.footer-copyright{
    text-align: left;
}
.footer-menu{
    padding: 0;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
@media(max-width: 767px){
    .info-tiles-text p{
        text-align: center;
    }
    .line-wrap:after {
        content: " ";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background-color: #CCCCCC;
        display: none;
    }
    .svg-title svg {
        width: 300px;
        height: 50px;
    }
    .footer-copyright{
        text-align: center !important;
    }
    .footer-links{
        text-align: center !important;
    }
    .fix-s-title{
        margin-top: 40px;
    }
    .info-tiles-svg-b svg{
        width: 120px;
        height: 120px;
    }
    .svg-wrap{
        display: none;
    }
}    
@media(max-width: 500px){
    .logo  svg{
        width: 200px;
        height:  100px;
    }
}    
.border4 {
text-align:center;
}

.border4 img {
border: 1px solid #ccc;
}

.bootbox.inregistratLocatie .bootbox-body{
    font-size: 14px;
    text-align: center;
}

@media (min-width: 576px)
{
    .bootbox.inregistratLocatie .modal-dialog {
        max-width: 300px;
    }
}
