@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Roboto", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}


/***** Font Files *****/

@font-face {
    font-family: 'Cocogoose-Pro-bold';
    src: url(../fonts/Cocogoose-Pro-Darkmode-trial.ttf);
}

@font-face {
    font-family: 'Cocogoose-Pro-Semilight';
    src: url(../fonts/Cocogoose-Pro-Semilight-trial.ttf);
}

@font-face {
    font-family: 'Cocogoose-Pro-light';
    src: url(../fonts/Cocogoose-Pro-Light-trial.ttf);
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Roboto", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Roboto", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*header css start */

header {
    position: absolute;
    width: 100%;
    padding: 20px 0;
    z-index: 10;
}

.header-logo img {
    width: auto;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 12px;
    font-size: 16px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #02c8eb;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}


.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.navigation__checkbox {
    display: none;
}

.navigation {
    position: relative;
}

.navigation__button {
    position: relative;
    top: 1.5rem;
    right: 1.5rem;
    height: 5rem;
    width: 5rem;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    z-index: 200;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .navigation__button {
        top: 0;
        right: 0;
        height: 50px;
        width: 50px;
    }
}

.navigation__background {
    position: absolute;
    top: 2rem;
    right: 2rem;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background: #000000db;
    background-size: cover;
    background-position: center;
    z-index: 100;
    transition: all 800ms cubic-bezier(0.86, 0, 0.07, 1);
}

@media screen and (min-width: 768px) {
    .navigation__background {
        top: 0;
        right: 0;
        height: 50px;
        width: 50px;
    }
}

.navigation__nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    opacity: 0;
    width: 0;
    visibility: hidden;
    z-index: 199;
    transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 100%;
    list-style: none;
}

.navigation__item {
    margin: 0;
}
.navigation__item:not(:last-child) a{
    border-bottom: 1px solid #fff;
}
.navigation__link:link,
.navigation__link:visited {
    display: inline-block;
    padding: 8px 0px;
    text-transform: uppercase;
    color: #f4f4f4;
    font-size: 2.4rem;
    text-decoration: none;
    transition: all .2s;
    margin: 0 60px;
}

@media(min-width: 768px) {
    .navigation__link:link,
    .navigation__link:visited {
        font-size: 3.8rem;
    }
}

/*.navigation__link span {*/
    /*margin-right: 1.5rem;
    display: inline-block;
}

.navigation__link:hover {
    color: #00daff;
    transform: scale(1);
}

.navigation__checkbox:checked~.navigation__background {
    transform: scale(80)
}

.navigation__checkbox:checked~.navigation__nav {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.navigation__icon {
    position: relative;
    margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
    .navigation__icon {
        margin-top: 25px;
    }
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
    display: inline-block;
    width: 2.2rem;
    height: 3px;
    background-color: #000;
}

@media (min-width: 768px) {
    .navigation__icon,
    .navigation__icon::before,
    .navigation__icon::after {
        width: 25px;
    }
}

.navigation__icon::before,
.navigation__icon::after {
    content: '';
    position: absolute;
    left: 0;
    transition: all 200ms;
}

.navigation__icon::before {
    top: -7px;
}

.navigation__icon::after {
    top: 7px;
}

.navigation__button:hover .navigation__icon::before {
    top: -7px;
}

.navigation__button:hover .navigation__icon::after {
    top: 7px;
}

.navigation__checkbox:checked+.navigation__button .navigation__icon {
    background-color: transparent;
}

.navigation__checkbox:checked+.navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg);
}

.navigation__checkbox:checked+.navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg);
}
*/
.navbar-header {
    position: absolute;
    left: inherit;
    top: -34px;
    right: -70px;
}
.bar {
    background-color: #fff;
    display: block;
    width: 100%;
    height: 3px;
    border: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}

.bar+.bar {
    margin-top: 4px
}

.middle {
    top: 11px
}

.bottom {
    top: 22px
}

.toggle-button:hover {
    opacity: 1
}

.toggle-active .bar {
    background-color: #ffa400
}

.toggle-active .top {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg)
}

.toggle-button {
    position: absolute;
    top: 0;
    right: 20px;
    padding: 9px 10px;
    margin: 15px 10px 10px 0;
    height: 35px;
    width: 46px;
    cursor: pointer;
    z-index: 9999;
    bottom: 0;
    left: inherit;
    background: #02c8eb;
}

.toggle-active .middle {
    opacity: 0
}

.toggle-active .bottom {
    -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg)
}

.toggle-active .bar {
    background-color: #fff
}

.toggle-active .top {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg)
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: .5s;
    padding-top: 0px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
}

.sidenav a {
    color: #1b1e3e;
    text-decoration: none;
    line-height: 44px;
    font-size: 30px;
    padding: 8px 8px 8px 22px; 
    text-transform: capitalize;
    font-weight: 400;
    text-align: center;
    display: inline-block
}
.startss {
    background-image: url(https://elitesafetyconsulting.ca/images/star.jpg);
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    margin-top: 12px;
    margin-left: -25px;
}
.sidenav a span {
    color: #1b1e3e;
    font-size: 11px;
    top: -12px;
    position: relative
}

div#mySidenav ul {
    width: 90%;
    text-align: left;
    margin: 0 auto;
    display: table
}

.sidenav a:hover {
    color: #ffa400;
    padding-left: 40px;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px
}
.index_div ul li a small {
    font-size: 12px;
    float: left;
    width: 10%
}


.index_div ul li a span {
    float: right;
    font-size: 13px;
    position: relative;
    top: auto
}

.index_div ul li,
.index_div ul li a {
    width: 100%;
    text-align: left;
    font-size: 13px
}

.index_div ul li {
    border-bottom: 1px solid #ccc;
    list-style: none;
}

#mySidenav::-webkit-scrollbar {
    display: none
}

.index_div h5 {
    font-size: 25px;
    color: #333;
    font-weight: 600;
    margin: 0 0 20px;
    text-align: left;
    margin-left: 60px
}

.index_div input[type=text] {
    background-color: #fff;
    font-size: 14px;
    line-height: 20px;
    color: #575757;
    height: 60px;
    width: 90%;
    padding: 0 15px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 0 auto 40px;
    display: block
}

.index_div {
    margin: 100px 0 0
}

/*header css start */

/* search box css */

.top-shipping ul li {
    margin-right: 15px;
}

.top-shipping ul {
    align-items: baseline !important;
}

body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 60px;
    height: 60px;
    padding-top: 8px;
}

.close:hover {
    background: #00daff;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}


.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: #00daff;
    font-family: 'Cocogoose-Pro-Semilight';
    display: inline-block;
}

.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Cocogoose-Pro-Semilight';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #00daff;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #55cd6c;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Cocogoose-Pro-light';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Cocogoose-Pro-light';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Cocogoose-Pro-light', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}

.search_hamburger>ul {
    display: flex;
    justify-content: flex-end;
    position: relative;
    align-items: center;
    margin-bottom: 0;
    gap: 50px;
}
.contact_header span {
    color: #e1d6a6;
    font-size: 19px;
    font-weight: 600;
}
.contact_header {
    display: flex !important;
    align-items: center;
    gap: 18px;
}
.search_hamburger>ul li {
    position: relative;
}

.search_hamburger>ul li:first-child:after {
    content: '';
    height: 100%;
    position: absolute;
    width: 2px;
    background-color: #fff;
    right: -20px;
}

.search_hamburger>ul li a {
    color: #fff;
    font-size: 18px;
}

.search_hamburger>ul li a span {
    color: #00daff;
}

.navigation__button:hover {
    background: #03cdf0;
}

.navigation__button:hover span {
    background: #fff;
}

.navigation__button:hover span:before {
    background: #fff;
}

.navigation__button:hover span:after {
    background: #fff;
}

a.navigation__link {
    font-family: 'Cocogoose-Pro-Light';
    font-size: 14px !important;
    display: flex !important;
    align-items: center;
    text-transform: capitalize !important;
    justify-content: space-between;
}

/* end search box css */

/* search box */

#search-btn {
    font-size: 20px;
    color: #fff;
}

.search-box {
    display: none;
    z-index: 4;
    position: absolute;
    bottom: -60px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    right: 0;
}

.search-box>form {
    display: flex;
    align-items: center;
    width: 300px;
    height: 50px;
}

.search-box>form input {
    height: 100%;
    width: 80%;
    border: none;
    text-indent: 20px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.search-box>form input::placeholder {
    color: #000;
}

.search-box>form button {
    width: 20%;
    height: 100%;
    border: none;
    color: #fff;
    font-size: 25px;
    background: #000;
}

/* search box */

.main_header ul.meenu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.main_header ul.meenu>li>a {
    font-size: 18px;
    color: #fff;
}

/* banner */

/*.banner_secc {*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  height: 80vh;*/
/*  text-align: center;*/
/*  background-image: url(../images/banner.jpg);*/
  
    
/*  background-attachment: fixed;*/
/*  background-position: 0px -180px;*/
/*}*/

.banner_secc {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
    background-image: url(../images/banner.jpg);
    /* background-attachment: fixed; */
    background-position: 0px -330px;
    /* background-size: 100%; */
}

.banner_secc .container {
    margin-top: 8%;
}
.banner_secc>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
    object-position: 0 -130px;
    z-index: -1;
    height: 100%;
}

.banner_secc .banner_textt>h1 {
    font-size: 42px;
    color: #fff;
    font-family: 'Cocogoose-Pro-Semilight';
    line-height: 1.3;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.banner_secc .banner_textt>p {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-family: 'Cocogoose-Pro-Semilight';
}

/* banner */

/* banner bottom */

.banner_bottom {
    padding: 70px 0px;
    text-align: center;
}

.banner_bottom p {
    font-size: 20px;
    color: #000;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

.theme-btn {
    background-color: #02c8eb;
    color: #fff;
    font-size: 17.28px;
    font-weight: 500;
    padding: 0 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.theme-btn:hover {
    background: #17172e;
    color: #fff;
}

.banner_bottom .theme-btn {
    margin: 0 auto;
}

/* banner bottom */

.customize_sec {
    background-color: #17172e;
    padding: 70px 0px;
    padding-left: 9%;
}

.customize_sec .customize_textt>h2 {
    font-size: 31.98px;
    color: #fff;
    font-family: 'Cocogoose-Pro-Semilight';
    line-height: 1.3;
    margin-bottom: 20px;
    width: 85%;
}

.customize_sec .customize_textt>h2>span {
    font-family: "Roboto", sans-serif;
}

.customize_sec .customize_textt>h2>span {
    font-family: "Roboto", sans-serif;
}

.customize_sec .customize_textt>ul>li {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 25px;
}

.customize_sec .customize_textt>ul>li>span {
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    width: 90%;
}

.customize_sec .customize_textt>ul>li>i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #02c8eb;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
}


.customize_sec .customize_textt>ul {
    margin-bottom: 40px;
}

.cust_slider .slick-slide img {
    height: 600px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

.cust_slider .slick-current img {
    transform: scale(1);
}

.cust_slider .slick-slide {
    opacity: 1;
    margin:0;
}

.cust_slider .slick-prev {
    display: none !important;
}

.cust_slider .slick-next {
    right: 145px;
}

.cust_slider .slick-next:before {
    display: none;
}

.cust_slider .slick-prev:before {
    display: none;
}

.cust_slider .slick-next>i {
    color: #fff;
    background: #02c8eb;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    animation: blinkin 1.5s ease infinite;
}

@keyframes blinkin {
    0% {
        box-shadow: #02c8ebb3 0 0 0 0;
        border-radius: 35px;
    }

    100% {
        box-shadow: #02c8eb40 0 0 0 10px;
        border-radius: 35px;
    }
}

.strip_secc {
    padding: 60px 0px;
}

.strip_secc h2 {
    font-size: 40px;
    color: #000;
    font-family: 'Cocogoose-Pro-Semilight';
}

.strip_secc .theme-btn {
    margin: 0 auto;
}

.customize_sec .theme-btn:hover {
    background: #fff;
    color: #000;
}

.GAP_sec {
    background-image:url(https://www.elitesafetyconsulting.ca/form/newlp/images/pdf-sec-bg.jpg);
    background-size: cover;
      background-position: bottom;
      background-repeat: no-repeat;
      background-attachment: fixed;
    position: relative;
    /*height: 400px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    padding:120px 0;
}

.GAP_sec>img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.GAP_sec h2 {
    color: aliceblue;
    font-size: 40px;
    font-family: 'Cocogoose-Pro-Semilight';
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
    line-height: 1.3;
}

.GAP_sec p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    width: 70%;
    margin: 0 auto;
}

.GAP_sec p>a {
    color: #02c8eb;
}

.family_owned_secc {
    padding: 70px 0px;
}

.family_owned_secc h2 {
    text-align: center;
    color: #000;
    font-size: 40px;
    font-family: 'Cocogoose-Pro-Semilight';
    line-height: 1.3;
    margin-bottom: 40px;
}

.family_owned_secc h2>span {
    font-family: 'Roboto';
}

.family_boxx {
    position: relative;
    height: 420px;
    margin-bottom: 70px;
}
.family_boxx:hover .family_boxx_textt {
    opacity: 0;
    transition: 0.3s;
}

.family_boxx>span {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.family_boxx>span>img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.family_boxx:after {
    position: absolute;
    content: "";
    background: transparent;
    border: 10px solid #80e3f5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 5px;
    /*animation:zoomIn 1.2s infinite;*/
    /*background: #80e3f5;*/
    z-index: -1;
}

@keyframes zoomIn{
    0%{
        transform:scale(1);
        opacity:1;
    }
    50%{
        transform:scale(1.25);
        opacity:0;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}

.family_boxx>.family_boxx_textt {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 10px;
    text-align: center;
    width: 96%;
    height: 96%;
    top: 50%;
    margin: auto;
    margin-top: 0px;
    padding-top: 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #17172e96;
    transition:0.3s;
}
.family_boxx_texttbg_blue{
    
}
.family_boxx>.family_boxx_textt>p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.family_owned_secc p {
    text-align: center;
    font-size: 20px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 500;
}

.family_boxx_one {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    margin-top: 30px;
}

.family_boxx_one .family_boxx_one_inner {
    background: #17172e;
    padding: 30px;
    text-align: center;
    border-radius: 7px;
    width: 95%;
    /* box-shadow: 0 0 10px #000; */
    border: 8px solid #80e3f5;
}

.family_boxx_one .family_boxx_one_inner>img {
    width: 50%;
    margin-bottom: 20px;
}

.family_boxx_one .family_boxx_one_inner h3 {
    color: #fff;
    font-size: 31.98px;
    font-family: 'Cocogoose-Pro-light';
    line-height: 1.5;
}

.family_boxx_one .family_boxx_one_inner .theme-btn {
    width: 100%;
}

.family_boxx_one p {
    text-align: justify;
}

.family_boxx_one p>a {
    color: #02c8eb;
}

.family_boxx_one .family_boxx_one_inner .theme-btn:hover {
    background: #fff;
    color: #000;
}

.family_boxx_two {
    margin-top: 50px;
}

.family_boxx_two .family_box_img {
    width: 95%;
}
.family_boxx_two .family_box_img img {
    border-radius: 8px;
    /* box-shadow: 0 0 10px #000; */
    border: 8px solid #80e3f5;
}

.family_boxx_two h2 {
    text-align: left;
    font-size: 31px;
    margin-bottom: 20px;
}

.family_boxx_two ul>li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    font-size: 20px;
    color: #000;
    line-height: 1.3;
    text-align:justify;
    font-weight: 500;
}

.family_boxx_two ul>li:after {
    position: absolute;
    content: "";
    background: #000;
    width: 2px;
    height: 100%;
    left: 0;
    top: 0;
}

.family_boxx_two ul>li:last-child {
    margin: 0;
}

/*FOOTER*/

.main_footer {
    background-color: #17172e;
    padding-top: 60px;
    padding-bottom:30px;
}

.footer_about a {
    display: block;
    margin-bottom: 30px;
}

.footer_about img{
    width:40%;
}
.footer_about p {
    color: #fff;
    padding-right: 30px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    font-size: 18px;
}

.first_safety h3 {
    color: #fff;
    font-size: 66px;
    font-family: 'Cocogoose-Pro-Semilight';
    font-weight: 500;
    line-height: 1;
    margin-bottom: 50px;
    margin-top: 15px;
}

.footer_links h5 {
    font-size: 23px;
    font-family: 'Roboto';
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.footer_links ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer_links ul li a {
    color: #fff;
}

.footer_links ul li a:hover {
    color: #02c8eb;
}

.footer_links_add li a {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer_links_add li:not(:last-child) {
    margin-bottom: 25px !important;
}

.footer_links_add li i {
    color: #00daff;
    font-size: 20px;
    width: 10%;
}

.copy_rit p {
    color: #fff;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0;
    padding: 11px 0px;
}

.copy_rit p a {
    color: #fff;
}

.border_top {
    border-top: 2px solid #bfbfbf;
}

.copy_rit {
    padding: 12px 0;
}

.footer_btm {
    background-color: #17172e;
}

html, body {
    overflow-x: hidden !important;
}
.blue{
    color:#02c8eb;
}