body{
    margin: 0;
    padding: 0;
    line-height: 0;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
}
button:focus, input:focus {
    outline: none !important;
}
h1{
    font-family: 'Futura';
    font-weight: 700;
    font-size: 50px;
    color: #FFF;
    text-transform: uppercase;
    line-height: 1em;
}
h3 {
    font-family: 'Futura Md BT';
    font-weight: 500;
    font-size: 28px;
    color: #FFF;
    line-height: 1em;
}
p {
    font-family: 'Futura Md BT';
    font-weight: 500;
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
    line-height: 1.4em;
}
.login_btn, .signup_btn {
    position: relative;
    display: inline-block;
    width: 180px;
    text-align: center;
    font-family: 'Futura Md BT';
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
    background: transparent;
    border-radius: 5px;
    line-height: 1em;
    padding: 12px 15px;
    transition: 0.3s;
}
.login_btn{
    background: #EE6F31;
    border: 2px solid #EE6F31;
}
.signup_btn {
    border: 2px solid #FDA123;
}
.login_btn::before, .signup_btn::before{
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px;
    transition: 0.3s;
    animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.1, 1.4);
    opacity: 0;
  }
}
.login_btn:hover::before, .signup_btn:hover::before{
    animation: inherit;
    background: transparent;
}






.primary_btn, .secondary_btn {
    position: relative;
    display: inline-block;
    font-family: 'Futura Md BT';
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
    font-size: 24px;
    border-radius: 5px;
    line-height: 1em;
    padding: 15px 35px;
    overflow: hidden;
    transition: 0.3s;
}
.primary_btn{
    background: #FD2B5E;
}
.secondary_btn {
    background: #000000;
    border: 2px solid #FD7621;
    box-shadow: 0px 0px 12px #FD7621;
    border-radius: 100px;
}
.secondary_btn img {
    width: 60px;
    margin-left: 20px;
}
.primary_btn span, .secondary_btn span{
    display: inline-block;
    transition: 0.3s;
    border: 2px solid transparent;
}
.primary_btn:hover span, .secondary_btn:hover span{
    transform: scale(1.1);
}

.primary_btn .effect:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #171618, #3bff3b);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.primary_btn .effect:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #171618, #3bff3b);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
.primary_btn .effect:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #171618, #3bff3b);
    animation: animate3 2s linear infinite;
}
@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.primary_btn .effect:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to top, #171618, #3bff3b);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}



.body_bg{
    background: url('../images/bg-1.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


.header_area {
    padding: 15px 0px;
    position: fixed;
    z-index: 11;
    width: 100%;
    left: 0;
    top: 0;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_area.fixed {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 5px rgb(255 255 255);
}
.logo img{
    width: 200px;
}
.menu ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.menu ul li{
    padding-left: 15px;
    padding-right: 15px;
}
.menu ul li:first-child{
    padding-left: 0;
}
.menu ul li:last-child{
    padding-right: 0;
}
.menu ul li a {
    display: inline-block;
    font-family: 'Futura Md BT';
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1em;
}

.banner_area {
    padding-top: 300px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
}
.banner_box {
    display: inline-block;
}
.banner_box.aos-init.aos-animate {
    animation: popout 1s ease;
    -webkit-animation: popout 1s ease;
}
@keyframes popout {
    from{
        transform:scale(0)
    }
    80%{
        transform:scale(1.1)
    }
    to{
        transform:scale(1)
    }
}
@-webkit-keyframes popout {
    from{
        -webkit-transform:scale(0)
    }
    80%{
        -webkit-transform:scale(1.1)
    }
    to{
        -webkit-transform:scale(1)
    }
}
.banner_box h1{
    font-family: 'Futura';
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2em;
    background: linear-gradient(to right, #CB4064, #DA8E46 30%); 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text;
}
.banner_box h3 {
    font-family: 'Futura';
    font-weight: 700;
    font-size: 54px;
    line-height: 1.2em;
    color: #FFF;
}
.banner_box h3 span{
    color: #CA3A64;
}
.banner_box a{
    margin-top: 15px;
}

.section_padding{
    padding: 80px 0px;
}
.provided_items {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0px 0px 1px #FFF;
}
.provided_items:hover .effect1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #171618, #3bff3b);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.provided_items:hover .effect2 {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #171618, #3bff3b);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
.provided_items:hover .effect3 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #171618, #3bff3b);
    animation: animate3 2s linear infinite;
}
@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.provided_items:hover .effect4 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to top, #171618, #3bff3b);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
.provided_items img{
    width: 100%;
    transition: 0.3s;
}
.provided_items:hover > img{
    transform: scale(1.1);
}
.provided_title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 30px;
    width: 100%;
}
.provided_title h3{
    font-family: 'Futura Md BT';
    font-weight: 500;
    font-size: 24px;
    color: #FDA123;
    text-transform: uppercase;
    line-height: 1em;
    padding-bottom: 10px;
    -webkit-text-stroke: 1px #FDA123;
    letter-spacing: 0.5px;
    
}
.provided_title.stoke_color h3{
    color: #D93963;
    -webkit-text-stroke: 1px #FDA123;
}
.provided_title p{
    font-family: 'Futura Md BT';
    font-weight: 500;
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1em;
}

.about_area{
    padding-bottom: 20px;
}
.about_box, .welcome_box, .brand_logo{
    max-width: 780px;
    margin: 0 auto;
}
.about_box h3 {
    padding-bottom: 30px;
}
.about_box p {
    padding-top: 30px;
    padding-bottom: 25px;
}

.welcome_box{
    position: relative;
}
.welcome_box img{
    width: 100%;
}
.welcome_subImg {
    position: absolute;
    bottom: -55px;
    right: -105px;
    width: 35% !important;
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}

.blog_area{
    padding-bottom: 30px;
}
.blog_area .col-lg-6{
    margin-top: 50px;
}
.blog_area .col-lg-6:first-child .blog_items {
    width: 95%;
    float: left;
}
.blog_area .col-lg-6:last-child .blog_items {
    width: 95%;
    float: right;
}
.blog_heading p{
    padding-top: 20px;
}
.blog_items {
    background: #322930;
    overflow: hidden;
    border-radius: 30px;
}
.blog_img{
    position: relative;
    padding-top: 56.25%;
}
.blog_img img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}
.blog_title {
    text-align: center;
    padding: 25px 25px;
}
.blog_title h3 {
    text-transform: uppercase;
}
.blog_title p{
    padding-top: 15px;
    padding-bottom: 25px;
}

.certified_area{
    padding-top: 30px;
    padding-bottom: 40px;
}
.certified_box {}
.certified_box h1{
    font-family: 'Futura Md BT';
    font-weight: 500;
    font-size: 20px;
}
.certified_box ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
    padding-top: 40px;
}
.certified_box ul li {
    width: 16.666666%;
    padding: 0px 7px;
}
.certified_box ul li img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

.footer_area{
    background: #000000;
    padding: 70px 0px;
}
.brand_logo ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -7px;
    margin-right: -7px;
}
.brand_logo ul li {
    width: 11.111111%;
    padding: 10px 7px;
}
.brand_logo ul li img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}
.copyright{
    background-image: linear-gradient(to right, #FD2B5E, #EE6F31);
    padding: 15px 0px;
    text-align: center;
}

.product_area{
    background: #FFF;
}
.product_items {
    background: #FF7621;
    padding: 15px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    height: 100%;
}
.product_area .col-lg-4 .product_items{
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding-top: 50px;
}
.pgaps{
    height: 100%;
}
.product_area .col-lg-8 .pgaps:first-child, .product_area .col-lg-8 .pgaps:last-child{
    height: 50%;
}
.product_area .col-lg-8 .pgaps:last-child, .product_area .col-12{
    padding-top: 25px;
}
.product_area .col-lg-8 .pgaps:first-child .product_items{
    background: #FD2B5E;
}
.product_area .col-lg-8 .pgaps:last-child .product_items{
    background: #000000;
}
.product_area .col-12 .product_items{
    background: #5553E6;
}
.product_items h3 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 15px;
}
.product_items a{
    background: #FFF;
    color: #000;
    font-size: 18px;
}
.product_items a.primary_btn::after{
  background: linear-gradient(to bottom, rgba(255, 165, 0, 0), rgba(255, 165, 0, 0.5) 50%, rgba(255, 165, 0, 0));
}

.product_img {
    display: inline-block;
    width: 200px;
    height: 210px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    border-radius: 30px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}


.Overview_area{
    background: #F4F4F4;
}
.Overview_area .col-md-4{
    margin-top: 60px;
}
.Overview_heading{}
.Overview_heading h1, .Overview_heading p{
    color: #000;
}
.Overview_heading p{
    padding-top: 20px;
}
.Overview_items{
    text-align: center;
}
.Overview_items h1 {
    font-size: 40px;
    color: #000;
}
.Overview_items p{
    color: #000;
    font-size: 16px;
    padding-top: 10px;
}
.blog_slider.owl-carousel {
    padding-left: 5%;
    margin-top: 50px;
}




