@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;500&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	background-color: #e1e1e1;
}

html {
	font-size: 10px;
	font-family: 'Josefin Sans', sans-serif;
}

a {
	text-decoration: none;
}

.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

html,
body {
  position: relative;
  height: 100%;
}

section #head {
    background-color: #33383b;
}

body {
  background: #afafaf;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}


#head {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}

.sub-heading {
    text-align: center;
    color: #545454;
    font-size: 2rem;
    padding-top: 10rem;
    font-weight: 450;
}

.heading {
    text-align: center;
    color: #000000;
    font-size: 3rem;
    padding-top: 2rem;
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 100px;
}



#head .head {
	min-height: 8vh;
	background-color: #202020;
}

#head .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#head .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}


#head .nav-list ul.active {
	left: 0%;
}

#head .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: .2rem;
	text-decoration: none;
	color: #e1e1e1;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}

#head .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(62,61,61,0.45);
	font-size: 8rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 1s ease letter-spacing;
}

#head .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}

#head .nav-list ul li:hover a {
	color: #FFFFFF;
}

#head .hamburger {
	height: 35px;
	width: 35px;
	display: inline-block;
	border: 1px solid #e1e1e1;
	border-radius: 10%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	
}

#head .hamburger .bar {
	height: 2px;
	width: 20px;
	position: relative;
	background-color: #e1e1e1;
	z-index: -1;
}

#head .hamburger .bar::after,
#head .hamburger .bar::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: #e1e1e1;
	transition: .3s ease;
	transition-property: top, bottom;
}


#head .hamburger .bar::after {
	top: 8px;
}

#head .hamburger .bar::before {
	bottom: 8px;
}

#head .hamburger .active .bar::before {
	bottom: 0;
}

#head .hamburger .active .bar::after {
	top: 0;
}

/* Home Starts Here */

.home {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    background-color: #919191;
}

.home .home-slider .slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 2rem;
    padding-top: 9rem;
    padding-left: 100px;
    padding-right: 100px;
    animation-delay: 3ms;
    margin-bottom: 10rem;
    
}



.home .home-slider .slide .content {
    flex: 1 1 45rem;
}

.home .home-slider .slide .image {
    flex: 1 1 45rem;
}

.home .home-slider .slide .image img {
    width: 100%;
}

.home .home-slider .slide .content span {
    color:#FFFFFF;
    font-size: 1.5rem;
}

.home .home-slider .slide .content h3{
    color: #FFFFFF;
    font-size: 4rem;
}

.home .home-slider .slide .content p{
    color: var(#000000);
    font-size: 1.5rem;
    letter-spacing: .1rem;
    font-weight: 450;
    padding: 1rem 0;
}

.btn {
    font-size: 10px;
	display: inline-block;
	padding: 15px 115px;
	color: #919191;
	background-color: #202020;
	border: 1px solid #202020;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .1px;
	margin-top: 25px;
	transition: .3s ease background-color;
	transition-property: background-color, colour;
}

.btn:hover {
    color: #FFFFFF;
	background-color: #000000;
}

section .new {
    background-color: #545454;
}

.swiper-pagination-bullet-active {
    background-color: #000000;
}

/* Body Starts Here */

.section body {
    background-color: #545454;
}

.body .box-container {
    padding-left: 100px;
    padding-right: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 1.5rem;
}

.body .box-container .box {
    padding: 0rem;
    background: #cecece;
    border: .1rem solid rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.body .box-container .box img {
    margin: 1rem 0;
} 

.body .box-container .box h3 {
    color: #000000;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding-left: 2.5rem;
}

.body .box-container .box p {
    padding: 0 0 2.5rem;
    padding-left: 2.5rem;
}

/* Body Starts Here */

.section .bodyy {
    color: #545454;
    margin-bottom: 10px;
}

.bodyy .box-container {
    padding-left: 100px;
    padding-right: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 1.5rem;
}

.bodyy .box-container .box {
    padding: 0rem;
    background: #cecece;
    border: .1rem solid rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    justify-content: center;
    margin-bottom: 10rem;
}

.bodyy .box-container .box img {
    margin: 1rem 0;
} 

.bodyy .box-container .box h3 {
    color: #000000;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding-left: 2.5rem;
}

.bodyy .box-container .box p {
    padding: 0 0 2.5rem;
    padding-left: 2.5rem;
}

@media only screen and (min-width: 1200px) {
	#head .hamburger {
		display: none;
    
	}
	#head .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#head .nav-list ul li {
		display: inline-block;
	}
	#head .nav-list ul li a {
		font-size: 1.5rem;
	}
	#head .nav-list ul a::after {
		display: none;
	}

}



    @media (max-width:991px) {
        html {
            font-size: 50%;
        }
        .body .box-container .box img {
            height: auto;
            width: 100%;
        } 
    }

    @media (max-width:991px) {
        html {
            font-size: 50%;
        }
        .bodyy .box-container .box img {
            height: auto;
            width: 100%;
        } 
    }

    /* Footer Section */

    .footer-distributed{
        background: #545454;
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
        box-sizing: border-box;
        width: 100%;
        font: bold 16px sans-serif;
        text-align: left;
        padding: 50px 60px 40px;
        overflow: hidden;
    }
    
    
    
    /* Footer left */
    
    .footer-distributed .footer-left{
        float: left;
    }
    
    /* The company logo */
    
    .footer-distributed h3{
        color:  #ffffff;
        margin: 0 0 10px;
    }
    
    .footer-distributed h3 span{
        color:  #5383d3;
    }
    
    /* Footer links */
    
    .footer-distributed .footer-links{
        color:  #000000;
        margin: 0 00px 0px;
        padding: 10;
    }
    
    .footer-distributed .footer-links a{
        display:inline-block;
        line-height: 1.8;
        text-decoration: none;
        font-size: 16px;
        font-weight: 450;
        color:  inherit;
        margin: 10px;
    }
    
    .footer-distributed .footer-links a:hover {
        color: #ffffff;
    }
    
    
    
    .footer-distributed .footer-company-name{
        color:  #939393;
        font-size: 12px;
        font-weight: normal;
        margin: 0;
        margin-top: 20px;
        padding: 0 10px 00;
    }
    
    /* Footer social icons */
    
    .footer-distributed .footer-icons{
        margin-top: 40px;
    }
    
    .footer-distributed .footer-icons a{
        display: inline-block;
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-color:  #33383b;
        border-radius: 2px;
    
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        line-height: 35px;
    
        margin-right: 3px;
        margin-bottom: 5px;
    }
    
    /* Footer Right */
    
    .footer-distributed .footer-right{
        float: right;
    }
    
    .footer-distributed .footer-right p{
        display: inline-block;
        vertical-align: top;
        margin: 15px 42px 0 0;
        color: #000000;
        font-weight: 450;
        font-size: 16;
    }
    
    /* The contact form */
    
    .footer-distributed form{
        display: inline-block;
    }
    
    .footer-distributed form input,
    .footer-distributed form textarea{
        display: block;
        border-radius: 3px;
        box-sizing: border-box;
        background-color:  #1f2022;
        border: none;
        resize: none;
    
        font: inherit;
        font-size: 14px;
        font-weight: normal;
        color:  #d1d2d2;
    
        width: 400px;
        padding: 18px;
    }
    
    .footer-distributed ::-webkit-input-placeholder {
        color:  #5c666b;
    }
    
    .footer-distributed ::-moz-placeholder {
        color:  #5c666b;
        opacity: 1;
    }
    
    .footer-distributed :-ms-input-placeholder{
        color:  #5c666b;
    }
    
    
    .footer-distributed form input{
        height: 55px;
        margin-bottom: 15px;
    }
    
    .footer-distributed form textarea{
        height: 100px;
        margin-bottom: 20px;
    }
    
    .footer-distributed form button{
        border-radius: 3px;
        background-color:  #202020;
        color: #919191;
        border: 0;
        padding: 15px 50px;
        font-weight: bold;
        float: right;
    }
    
    .footer-distributed form button:hover {
        background-color:  #000000;
        color: #ffffff;	
    }
    
    /* If you don't want the footer to be responsive, remove these media queries */
    
    @media (max-width: 1000px) {
    
        .footer-distributed {
            font: bold 14px sans-serif;
        }
    
        .footer-distributed .footer-company-name{
            font-size: 12px;
        }
    
        .footer-distributed form input,
        .footer-distributed form textarea{
            width: 250px;
        }
    
        .footer-distributed form button{
            padding: 10px 35px;
        }
    
    }
    
    @media (max-width: 800px) {
    
        .footer-distributed{
            padding: 30px;
        }
    
        .footer-distributed .footer-left,
        .footer-distributed .footer-right{
            float: none;
            max-width: 300px;
            margin: 0 auto;
        }
    
        .footer-distributed .footer-left{
            margin-bottom: 40px;
        }
    
        .footer-distributed form{
            margin-top: 30px;
        }
    
        .footer-distributed form{
            display: block;
        }
    
        .footer-distributed form button{
            float: none;
        }

    }
    