@font-face {
    font-family: 'Cocon';
    src: url('../fonts/Cocon-Regular.woff2') format('woff2'),
        url('../fonts/Cocon-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: 'Cocon';
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.container{
    max-width: 85%;
    margin: 0 auto;
    padding: 0 15px;
}
/* ***** End Common Css **** */

/* ***** Hero ***** */
.hero-banner{
    position: relative;
}
.videofrem{
    width: 100%;
    height: 100vh;
    position: relative;
}
.videofrem video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}
.videofrem:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.50;
    top: 0;
    left: 0;
}
.banner-center{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.logobox img{
    width: 120px;
    margin: 0 0 10px;
}
.banner-data h2{
    font-size: 31px;
    font-weight: normal;
    color: #fff;
    margin: 0 0 10px;
}
.banner-data h1{
    font-size: 51px;
    font-weight: normal;
    color: #fff;
    margin: 0 0 10px;
}
.banner-data ul{
    display: flex;
    align-items: center;
    margin: 0 0 85px;
}
.banner-data ul li{
    margin-right:40px;
    position: relative;
    font-size: 30px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.75);
}
.banner-data ul li:last-child{
    margin: 0;
}
.banner-data ul li:after{
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: #ED127B;
    border-radius: 50%;
    right: -25px;
    top: 15px;
}
.banner-data ul li:last-child:after{display: none;}
.banner-data h3{
    font-size: 24px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 15px;
}
.banner-data .btn-group{
    display: flex;
    align-items: center;
}
.banner-data .btn-group a{
    margin-right: 15px;
}
.banner-data .btn-group a:last-child{
    margin: 0;
}
.banner-data .btn-group a img{
    height: 51px;
}
.banner-data .btn-group a:hover{
    opacity: 0.60;
}

.footer-row{
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
}
.footer-row ul{
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}
.footer-row ul li{
    margin-right: 20px;
}
.footer-row ul li:last-child{
    margin: 0;
}
.footer-row ul li a{
    font-size: 12px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
}
.footer-row ul li a:after{
    position: absolute;
    content: '-';
    font-size: 12px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.75);
    right: -13px;
    top: 0px;
}
.footer-row ul li:last-child a:after{display: none;}
.footer-row ul li a:hover{
    color: #fff;
}
.footer-row p{
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}
.footer-row p img{
    margin: 0 5px;
    width: 10px;
}
/* ***** End Hero ***** */