@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
section
{
    width: device-width;
    background: #111;
    min-height: 100vh;
}
section .bannerVideo
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section .bannerVideo video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
section .bannerVideo video.active
{
    opacity: 1;
}
.container
{
    width: device-width;
    position: relative;
    padding: 0 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
}
.container::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    backdrop-filter: blur(15px);
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.05);

}
.container header
{    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
}
.container header .logo
{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
}
.container header ul
{
    position: relative;
    display: flex;
}
.container header ul li
{
    list-style: none;
    margin: 0 20px;
}
.container header ul li a
{
    position: relative;
    text-decoration: none;
    font-size: 15px;
    padding: 4px 10px;
    color: #fff;
}
.container header ul li a:hover,
.container header ul li a.active
{
    background: #fff;
    color: #111;
}
.container .content
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.container .content .bannerText
{
    position: relative;
    max-width: device-width;
}
.container .content .bannerText div
{
    display: none;
    transition: 0.5s ease-in-out;
}
.container .content .bannerText div.active
{
    display: initial;
}
.container .content .bannerText div h3
{
    color: #fff;
    font-size: 6em;
    line-height: 1em;
    font-weight: 600;
}
.container .content .bannerText div p
{
    color: #fff;
    font-size: 18px;
    margin: 20px 0;
}
.sci
{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
}
.sci li
{
    list-style: none;
}
.sci li a
{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.sci li a:hover
{
    background: #f5f5f5;
}
.sci li a img
{
    display: inline-block;
    max-height: 24px;
}
.controls
{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
}
.controls li
{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    cursor: pointer;
}
.controls li:hover
{
    background: #f5f5f5;
}
.menuIcon
{
    display: none;
}
@media (max-width: 800px)
{
    .container
    {
        padding: 20px;
    }
    .container::before
    {
        width: 100%;
    }
    .container header
    {
        padding: 10px 20px;
    }
    .container .content .bannerText div h3
    {
        font-size: 3em;
    }
    .container .content .bannerText
    {
        text-align: center;
    }    
    .container .content .bannerText div p
    {
        font-size: 15px;
    }
    .container header ul
    {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .container header.active ul
    {
        display: flex;
    }
    .container header ul li
    {
        text-align: center;
        margin: 10px;
    }
    .container header ul li a
    {
        color: #333;
        font-size: 1.5em
    }
    .container header ul li a:hover
    {
        color: #f00;
        font-size: 1.75em
    }
    .menuIcon
    {
        position: fixed;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        display: initial;
        z-index: 10000;
        background: #fff url(/images/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
    }
    .menuIcon.active
    {
        background: #fff url(/images/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;        
    }
    .sci li a
    {
        width: 50px;
        height: 50px;
    }
    .controls
    {
        width: 60px;
        height: 60px;
    }
    .container::before
    {
        content: '';
        position: relative;
        top: 0;
        left: 0;
        width: 0%;
        height: 0%;
        backdrop-filter: blur(0px);
        box-shadow: 10px 0 15px rgba(0, 0, 0, 0.05);

    }
}


/*--start-about--*/
.about-main {
	text-align:center;
	margin-top: 5%;
    width: device-width;
}
.about{
	background:url(../images/banner.jpg) no-repeat;
	background-size:100% 100%;
	min-height: 720px;
    width: device-width;
}
.about-left h4{
	color:#fff;
	font-size:2.3em;
	font-weight:300;
	margin: 18px 0px 10px 0px;
}
.about-left h5{
	color:#fff;
	font-size:1em;
	font-weight:700;
	margin:0;
}
.about-left ul{
	padding:0;
	margin-top:1.2em;
}
.about-left ul li{
	list-style:none;
	display:inline-block;
	margin-right: 5px;
}
.about-left ul li span.sap{
	background-position:-136px 0px;
}
.about-left ul li span.sap:hover{
	background-position:-136px -38px;
}
.about-top{
	background:#333333;
	padding: 5em 0px;
	margin-top: 3%;
}
.about-main h3 {
	color: #fff;
	font-size: 1.8em;
	letter-spacing: 2px;
	font-weight: 700;
	margin: 0;
}
/*--end-about--*/
.container1
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;   
    width: device-width;
    transform-style: preserve-3d;
    background:#111
}
.container1 .box
{
    position: relative;
    width: 400px;
    height: 500px;
    margin: 40px;
    background: #232323;
    border-radius: 20px;
    transform-style: preserve-3d;
}
.container1 .box::before
{
    content: 'PID';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5em;
    font-weight: 900;
    color: rgb(228, 15, 15);
    font-style: italic;
    opacity: 0;
    transition: 0.5s;
}
.container1 .box::after
{
    content: 'PID';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3em;
    font-weight: 900;
    color: rgb(6, 78, 211);
    font-style: italic;
    opacity: 0;
    transition: 0.5s;
}

.container1 .box:hover::before,
.container1 .box:hover::after
{
    opacity: 0.04;
}
.container1 .box .name
{
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
    width: 100%;
    transform-style: preserve-3d;
    transform: translate3d(0,0,75px);
    transition: 0.5;
    opacity: 0;
    z-index: 10;    
}
.container1 .box:hover .name
{
    top: 40px;
    opacity: 1;
}
.container1 .box .buy
{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate3d(-50%,0,75px);
    color: #fff;
    background: #333;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.5s;
    opacity: 0;
    z-index: 10;
}
.container1 .box:hover .buy
{
    bottom: 30px;
    opacity: 1;
}
.container1 .box .circle
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: 0.5s;
    background: #fff;
    transform-style: preserve-3d;
    z-index: 10;
    opacity: 1;
    transform: translate3d(-50%,-50%,35px);
}
.container1 .box .product
{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 300px;
    transition: 0.5s;
    z-index: 11;
    transition: 0.5s;
    transform-style: preserve-3d;
    transform: translate3d(-50%,-50%,40px) rotate(0deg);
}
.container1 .box:hover .product
{
    transform: translate3d(-50%,-50%,100px) rotate(-15deg);
}
.container1 .box:nth-child(1n+1) .circle,
.container1 .box:nth-child(1n+1) .buy
{
    background: #154601;
}

/*--start-what--*/
.what {
    width: device-width;
	background: #272727;
	padding: 6em 0px 2em 0px;
}
.what-main h3,.blog-main h3,.price-main h3,
.quality-main h3,.touch-main h3,.clients-mian h3{
	color: #e22e2e;
	font-size: 3.2em;
	font-weight: 900;
	letter-spacing: 1px;
	margin: 0;
	text-align: center;
	position: relative;
	background: url(../images/hexa1.png) no-repeat 500px 0px;
	padding: 1em 0px;
}
.what-main h4,.what-middle-right h4{
	color: #e22e2e;
	font-size: 2.3em;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
	line-height: 1.2em;
}
.what-main h4 span,.what-middle-right h4 span{
	font-weight:100;
}
.what-top-right,.what-middle-left{
	text-align:center;
}
.what-top-left {
	text-align: right;
	padding-right: 14%;
}
.what-top-left h5,.what-middle-right h5 {
	color: #7d7d7d;
	font-size: 1.15em;
	font-weight: 900;
	letter-spacing: 2px;
	margin: 1em 0px 0px 0px;
}
.what-top-left p,.what-middle-right p {
	color: #fff;
	font-size: 19px;
	line-height: 1.4em;
	font-weight: 400;
	letter-spacing: 1px;
	margin-top: 1em;
}
.what-top{
	margin: 8em 0px;
}
.what-middle{
	margin: 10em 0px;
}
.what-middle-right {
	text-align: left;
	padding-left: 19%;
}
/*--end-what--*/

.footer 
{
    width: device-width;
    background: #111;
    left: 20%;
    align-items: center;
    color: #fff
}