/* Nice select styles start */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select.open,
.nice-select:active,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}
/* Nice select styles end */

/* ------- Infobox styles start ------- */
.infobox {   
    border: 0.932153px solid #A1A1A1;
    border-radius: 4.66077px;
    margin: 0 15px;
    min-height: 250px;
    position: relative;
    transition: all .3s;
    margin-bottom: 25px;
}

.infobox:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    background: #F2F8F3;
}

.infobox-link {
    height: 100%;
    width: 100%;
    display: block; 
    padding: 36px 62px;
}

.infobox-icon {
    margin-bottom: 23px;
}

.infobox-title {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    color: #404040;
    font-weight: 700;
    font-size: 16.7788px;
    line-height: 28px;
}
/* ------- Infobox styles end ------- */

/* ------- Customer Feedback styles start ------- */
.feedback-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.feedback-title {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 25.8px;
    line-height: 43px;
    border-right: 1px solid #000000;
    padding: 0 25px;
}

.feedback-text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #212529;
    max-width: 410px;
    width: 100%;
}
/* ------- Customer Feedback styles end ------- */

/* ------- Customer Latest News styles start ------- */
.latest-news {
    background: #FFFFFF;
    border: 0.954939px solid #BABABA;
    padding: 30px 22px;
    height: 100%;
}

.latest-news--title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42.0173px;
    line-height: 53px;
    color: #333333;
    margin-bottom: 30px;
}

.latest-post {
    display: flex;
}

.latest-post--thumb {
    padding: 0 50px;
}

.latest-post--title {
    font-family: 'Inter', sans-serif;
    color: #444444;
    font-weight: 700;
    font-size: 19.0988px;
    line-height: 23px;
    margin-bottom: 10px;
}

.latest-post--date {
    color: #666666;
    font-style: normal;
    font-weight: 400;
    font-size: 11.4593px;
    line-height: 16px;
    margin-bottom: 12px;
}

.latest-post-excerpt {
    color: #333333;
    font-weight: 300;
    font-size: 15.279px;
    line-height: 23px;
    margin-bottom: 15px;
}

.read-more {
    border: 0.954939px solid #888888;
    padding: 5px 12px;
    color: #888888;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.latest-news--media {
    background: #F2F2F2;
    border: 0.954939px solid #BABABA;
    padding: 51px 21px 31px;
}
/* ------- Customer Latest News styles end ------- */

/* ------- About Us block styles start ------- */
.about-us--image-wrap {
    position: relative;
    height: 100%;
}

.about-us--image {
    position: absolute;
	height: auto;
	bottom: 0;
	z-index: 1;
	width: 131%;
}

.about-us--content {
    padding: 64px 90px 79px 90px;
}

.about-us--title {
    font-weight: 500;
    font-size: 44px;
    line-height: 95px;
    text-transform: uppercase;
    color: #070400;
    margin-bottom: 10px;
}

.about-us--descr {
    color: #212529;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
/* ------- About Us block styles end ------- */

/* ------- WhiteList styles start ------- */
.white-list--wrap {
    padding: 13% 12%;
}

.white-list--title {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-weight: 900;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 25px;
}

.white-list {
    padding-left: 0 !important;
}

.white-list--item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.white-list--icon {
    max-width: 40px;
    width: 100%;
    height: auto;
}

.list-dot {
    background: #FCE1BE;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    padding: 0 20px;
}

.white-list--item-title {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-left: 25px;
}
/* ------- WhiteList styles end ------- */

/* ------- BlackList styles start ------- */
.black-list--wrap {
    padding: 0;
}

.black-list--title {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-weight: 900;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 25px;
}

.black-list {
    padding-left: 0 !important;
}

.black-list--item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.black-list--icon {
    max-width: 40px;
    width: 100%;
    height: auto;
}

/* .list-dot {
    background: #FCE1BE;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    padding: 0 20px;
} */

.black-list--item-title {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-left: 25px;
}
/* ------- BlackList styles end ------- */

/* ------- Header v2 styles start ------- */
.header-v2 {
    position: relative;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.header-v2--wrapper {
    background: #000000;
    padding: 54px 34px;
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
}

.header-v2--title {
    font-weight: 700;
    font-size: 37px;
    line-height: 44px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.header-v2--descr {
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 30px;
}
/* ------- Header v2 styles end ------- */

/* ------- Contact form styles start ------- */
.safezone-contact-form {
    max-width: 535px;
    width: 100%;
    margin: 54px auto 0;
}

.safezone-contact-form--title {
    color: #404040;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom:  5px;
}

.safezone-contact-form--descr {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 30px;
}

.input-wrap {
    margin-bottom: 15px;
}

.form-submit,
.wpforms-submit {
    background: #006E49;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    cursor: pointer;
}

.wpforms-field-medium {
	width: 100%;
	min-width: 100%;
}

.online {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 11px;
    line-height: 26px;
    background: #006E49;
    border-radius: 17.5px;
    padding: 6px 16px;
    position: relative;
    bottom: 5px;
    left: 10px;
}

.online i {
    margin-right: 5px;
    font-size: 5px;
}
/* ------- Contact form styles end ------- */

/* ------- Head Office styles start ------- */
.wp-block-lazyblock-safezone-head-office {
    height: 100%;
}

.head-office {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.head-office--title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 2.4px;
    text-transform: uppercase;  
    color: #000000;
    margin-bottom: 25px;
}

.head-office--list {
    padding-left: 0 !important;
    list-style: none !important;
}

.head-office--item {
    margin-bottom: 30px;
}

.contact-name {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}

.contact-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;  
    color: #666666;
}
/* ------- Head Office styles end ------- */

/* ------- Benefits grid styles start ------- */
.benefit {
    background: #F2F8F3;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 40px;
    min-height: 280px;
}

.benefit-icon {
    max-width: 40px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.benefit-dot {
    background: #FCE1BE;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    display: block;
    margin-bottom: 20px;
}

.benefit-title {
    font-family: 'Inter', sans-serif;
    color: #112231;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 25px;
}

.benefit-descr {
    color: #112231;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
/* ------- Benefits grid styles end ------- */

/* ------- alk to team styles start ------- */
.talk-to-team {
    padding: 56px 30px 56px 0;
    background-repeat: no-repeat !important;
    background-size: 50% !important;
    border-right: 1px solid #DDDDDD;
    background-position-y: 100% !important;
}

.talk-to-team--top {
    max-width: 60%;
    margin-left: auto;
    border-bottom: 1px solid #DDDDDD;
}

.talk-to-team--top-title {
    color: #000000;
    font-weight: 900;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.talk-to-team--top-descr {
    color: #666666;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px;
}

.talk-to-team--top-slogan {
    color: #666666;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 42px;
}

.talk-to-team--bottom {
    max-width: 50%;
    margin-left: auto;
    padding: 30px 0;
}

.talk-to-team--top-phone,
.talk-to-team--top-email {
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 17px;
}

.talk-to-team--top-open {
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    color: #666666;
    margin-top: 30px;
}
/* ------- Talk to team styles end ------- */

/* ------- Divider styles start ------- */
.hazard-background {
  color: white;
  background-image: repeating-linear-gradient(
    -55deg,
    #000,
    #000 20px,
    #F7A346 20px,
    #F7A346 40px
  );
}
/* ------- Divider styles end ------- */

/* ------- Download files list styles start ------- */
.files-list {
	padding: 0;
}

.files-list--item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ededed;
	padding: 40px 30px;
	margin-bottom: 40px;
}

.file-item--title {
	color: #212529;
	margin-bottom: 7px;
}

.file-item--download i {
	font-size: 38px;
	margin-bottom: 7px;
}
/* ------- Download files list styles end ------- */

/* ------------jquery mb.ytplayer css------------- */

@charset "UTF-8";@font-face{font-family:ytpregular;src:url("font/ytp-regular.eot.html")}@font-face{font-family:ytpregular;src:url(data:application/x-font-woff;charset=utf-8;base64,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)format('woff'),url("font/ytp-regular.ttf.html")format('truetype');font-weight:400;font-style:normal}.mb_YTPlayer:focus{outline:0}.YTPWrapper{display:block;transform:translateZ(0)translate3d(0,0,0);transform-style:preserve-3d;perspective:1000;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}.mb_YTPlayer .loading{position:absolute;top:10px;right:10px;font-size:12px;color:#fff;background:rgba(0,0,0,.51);text-align:center;padding:2px 4px;border-radius:5px;font-family:"Droid Sans",sans-serif;-webkit-animation:fade .1s infinite alternate;animation:fade .1s infinite alternate}@-webkit-keyframes fade{0%{opacity:.5}100%{opacity:1}}@keyframes fade{0%{opacity:.5}100%{opacity:1}}.YTPFullscreen{display:block!important;position:fixed!important;width:100%!important;height:100%!important;top:0!important;left:0!important;margin:0!important;border:none!important;opacity:1!important;background-color:#000!important;padding:0!important}.inlinePlayButton{font-family:ytpregular;font-size:45px;color:#fff;text-align:center;border-radius:100%;background-color:rgba(0,0,0,.4);position:absolute;width:80px;height:80px;line-height:80px;top:0;bottom:0;left:0;right:0;margin:auto;cursor:pointer;opacity:.8;transition:all .4s;transform:scale(1.3)}.mb_YTPlayer:hover .inlinePlayButton{opacity:1;transform:scale(1)}.inlinePlayButton:hover{background-color:rgba(0,0,0,1);transform:scale(1.3)!important}.mbYTP_wrapper iframe{max-width:8000px!important}.inline_YTPlayer{margin-bottom:20px;vertical-align:top;position:relative;left:0;overflow:hidden;border-radius:4px;box-shadow:0 0 5px rgba(0,0,0,.7);background:rgba(0,0,0,.5)}.inline_YTPlayer img{border:none!important;margin:0!important;padding:0!important;transform:none!important}.mb_YTPBar,.mb_YTPBar .buttonBar{box-sizing:border-box;left:0;padding:5px;width:100%}.mb_YTPBar .ytpicon{font-size:20px;font-family:ytpregular}.mb_YTPBar .mb_YTPUrl.ytpicon{font-size:30px}.mb_YTPBar{transition:opacity .5s;display:block;height:10px;background:#333;position:fixed;bottom:0;text-align:left;z-index:1000;font:14px/16px sans-serif;color:#fff;opacity:.1}.mb_YTPBar.visible,.mb_YTPBar:hover{opacity:1}.mb_YTPBar .buttonBar{transition:all .5s;background:0 0;font:12px/14px san-serif;position:absolute;top:-30px;height:40px}.mb_YTPBar:hover .buttonBar{background:rgba(0,0,0,.4)}.mb_YTPBar span{display:inline-block;font:16px/20px sans-serif;position:relative;width:30px;height:25px;vertical-align:middle}.mb_YTPBar span.mb_YTPTime{width:130px}.mb_YTPBar span.mb_OnlyYT,.mb_YTPBar span.mb_YTPUrl{position:absolute;width:auto;display:block;top:6px;right:10px;cursor:pointer}.mb_YTPBar span.mb_YTPUrl img{width:60px}.mb_YTPBar span.mb_OnlyYT{left:300px;right:auto}.mb_YTPBar span.mb_OnlyYT img{width:25px}.mb_YTPBar span.mb_YTPUrl a{color:#fff}.mb_YTPBar .mb_YTPMuteUnmute,.mb_YTPBar .mb_YTPPlayPause,.mb_YTPlayer .mb_YTPBar .mb_YTPPlayPause img{cursor:pointer}.mb_YTPBar .mb_YTPProgress{height:10px;width:100%;background:#222;bottom:0;left:0}.mb_YTPBar .mb_YTPLoaded{height:10px;width:0;background:#444;left:0}.mb_YTPBar .mb_YTPseekbar{height:10px;width:0;background:#bb110e;bottom:0;left:0;box-shadow:rgba(82,82,82,.47)1px 1px 3px}.mb_YTPBar .YTPOverlay{backface-visibility:hidden;-webkit-backface-visibility:hidden;-webkit-transform-style:"flat";box-sizing:border-box}.YTPOverlay.raster{background:url("images/raster.png.html")}.YTPOverlay.raster.retina{background:url("images/raster@2x.png.html")}.YTPOverlay.raster-dot{background:url("images/raster_dot.png.html")}.YTPOverlay.raster-dot.retina{background:url("images/raster_dot@2x.png.html")}.mb_YTPBar .simpleSlider{position:relative;width:100px;height:10px;border:1px solid #fff;overflow:hidden;box-sizing:border-box;margin-right:10px;cursor:pointer!important;border-radius:3px}.mb_YTPBar.compact .simpleSlider{width:40px}.mb_YTPBar.compact span.mb_OnlyYT{left:260px}.mb_YTPBar .simpleSlider.muted{opacity:.3}.mb_YTPBar .level{position:absolute;left:0;bottom:0;background-color:#fff;box-sizing:border-box}.mb_YTPBar .level.horizontal{height:100%;width:0}.mb_YTPBar .level.vertical{height:auto;width:100%}

/*---------Video Header------*/
.video-area .video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 650px;
    z-index: 0;
}

.video-area.v1 {
    height: 650px;
}

.video-area.v1 .video-content {
    z-index: 1001;
    padding-top: 150px;
}

.video-area.v1 .overlay {
    z-index: 1001;
}

.video-area.v1 .video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 650px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.video-area.v1 #video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    overflow: hidden;
    z-index: 999;
}