:root {
	--whitetext-colour: #ff7f27;
	--blacktext-colour: #000;
	--button-colour: #ff7f27;
	--buttonhover-colour: #ff9327;
	--lightshadow-rgba: rgba(255,127,39,0.13);
	--darkshadow-rgba: rgba(255,127,39,0.5);
}

body{
    margin:0px;
    padding: 0px;
    font-family: 'Alata', sans-serif;
	background-color: #000;
	background-image: url("../images/Render1_3840x2967.jpg");
}
*{
    box-sizing: border-box;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.main{
    width:100%;
    height:100vh;
    background-size: cover;
    background-position: centre;
    position: relative;
}
.logo img{
    height: 55px;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px 20px;
    background-color:#fff;
    box-shadow: 2px 2px 20px var(--lightshadow-rgba);
    z-index: 1;
    width:100%;
    position: fixed;
    left: 0px;
    top: 0px;
}
nav ul{
    display: flex;
    margin:0px;
    padding: 0px;
}
nav ul li a{
    height:40px;
    line-height: 43px;
    margin: 8px;
    padding: 0px 22px;
    display: flex;
    font-size: 0.9rem;
    font-weight: 400;
    color:#111;
    letter-spacing: 1px;
}
nav ul li a:hover{
    background-color: var(--button-colour);
    color:#fff;
	border-radius: 5px;
    box-shadow: 5px 10px 30px var(--darkshadow-rgba);
    transition: all ease 0.2s;
}
.home-content{
    display: flex;
    justify-content: space-around;
	text-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    width:90%;
	flex-direction: column;
}
.home-text{
    width:500px;
    margin:20px;
	background: linear-gradient(90deg, #000, #ff7f27, #000);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-repeat: no-repeat;
	background-size: 110%;
	animation: shine 7s linear infinite;
	position: relative;
}

@keyframes shine {
  0% {
    background-position-x: -90%;
  }
  25% {
    background-position-x: 0%;
  }
  50% {
    background-position-x: 90%;
  }
  75% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -90%;
  }
}
.home-text h1{
    font-size: 4.5rem;
    line-height: 75px;
    color: inherit;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0px;
}
.home-text p{
    font-size: 2.0rem;
	font-weight: 700;
    color: inherit;
}
.main-btn{
    width:100px;
    height:40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
	border-radius: 5px;
    box-shadow: 5px 10px 30px 20px var(--darkshadow-rgba);
	margin: 0px auto;
}
.main-btn:hover{
    background-color: var(--buttonhover-colour);
	-webkit-text-fill-color:#fff;
    transition: all ease 0.3s;
}
.arrow{
    align-self: end;
    width:50%;
    border-right: 1px solid var(--button-colour);
    height: 20%;
    margin-bottom:4em ;
    position: absolute;
    bottom: 5px;
    right: 70px;
    animation: arrow-animation ease 1.5s;
}
.arrow::after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 11px 0px 11px;
    border-color: var(--button-colour) transparent transparent transparent;
    right: -0.7em;
    bottom: -2px;
}
.scroll{
    position: absolute;
    bottom: 20px;
    right:55px;
    font-weight: 600;
}
@keyframes arrow-animation{
    0%{
        bottom: 70px;
        opacity: 0.2;
    }
    100%{
        bottom: 5px;
        opacity: 1;
    }
}
.services-heading{
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	color: var(--whitetext-colour);
	text-shadow: 1px 1px rgba(167,167,167,0.2);
    flex-direction: column;
}
.services-heading h2{
    line-height: 55px;
    font-size: 2.2rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0px;
}
.services-heading p{
    font-size: 1rem;
    width:50%;
}
.box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px;
}
.box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:200px;
    height: 200px;
    text-align: center;
    box-shadow: 2px 2px 20px var(--lightshadow-rgba);
    border-radius: 10px;
    background-color: #fff;
    margin: 30px 60px 30px 60px;
    flex-grow: 1;
}
.box font{
    font-size: 1.5rem;
    color: var(--blacktext-colour);
    letter-spacing: 1px;
    font-weight: 700;
}
.box p{
    font-size: 1rem;
    color: #777474;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}
.box a{
    width:100px;
    height:40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--button-colour);
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--button-colour);
    margin: 0px;
}

.box a:hover{
    background-color: var(--button-colour);
    color:#fff;
    box-shadow: 5px 10px 30px var(--darkshadow-rgba);
    transition: all ease 0.3s;
}
footer{
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 5%;
}
footer a,
footer p{
    color:#fff;
	text-shadow: 1px 1px rgba(167,167,167,0.2);
}
nav .menu-btn{
    display: none;
}

@media(max-width:1920px){
	body{
		background-image: url("../images/Render1_1920x1484.jpg");
	}
}
@media(max-width:1280px){
	body{
		background-image: url("../images/Render1_1280x989.jpg");
	}
    nav{
        justify-content: space-between;
        height: 65px;
    }
    .menu{
        display: none;
        position: absolute;
        top: 65px;
        left: 0px;
        background-color: #fff;
        border-bottom: 4px solid var(--button-colour);
        width:100%;
    }
    .menu li{
        width:100%;
    }
    nav .menu li a{
        width:100%;
        height: 40px;
        justify-content: center;
        align-items: center;
        margin:0px;
        padding: 25px;
        border:1px solid rgba(38,38,38,0.03);
    }
    nav .menu-icon{
        cursor: pointer;
        float: right;
        padding: 28px 20px;
        position: relative;
        -webkit-user-select: none;
    }
    nav .menu-icon .nav-icon{
        background-color: #333333;
        display: block;
        height: 2px;
        position: relative;
        transition: background 0.2s ease-out;
        width:18px;
    }
    nav .menu-icon .nav-icon:before,
    nav .menu-icon .nav-icon:after{
        background: #333333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all ease-out 0.2s;
        width:100%;
    }
    nav .menu-icon .nav-icon:before{
        top: 5px;
    }
    nav .menu-icon .nav-icon:after{
        top:-5px;
    }
    nav .menu-btn:checked ~ .menu-icon .nav-icon{
        background: transparent;
    }
    nav .menu-btn:checked ~ .menu-icon .nav-icon:before{
        transform: rotate(-45deg);
        top: 0;
    }
    nav .menu-btn:checked ~ .menu-icon .nav-icon:after{
        transform: rotate(45deg);
        top: 0;
    }
    nav .menu-btn{
        display: none;
    }
    nav .menu-btn:checked ~ .menu{
        display: block;
    }
    .home-img{
        display: none;
    }
    .home-text{
        width:100%;
        justify-content: center;
		text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        height: 45vh;
        margin: 0px;
    }
    .home-content{
        width:100%;
        margin:0px;
        position: static;
        transform: translate(0px,70px);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top right;
    }
    .home-text h1{
        color:#fff;
        padding: 0px 20px;
        font-size: 2.5rem;
        border: 1px solid #fff;
    }
    .home-text p{
        color:rgba(255,255,255,0.85);
        margin: 10px 0px 20px 0px;
        width:50%;
    }
    .arrow{
        height: 70px;
    }
   .main{
       background-size: 600px;;
   }
   .timing,.arrow,.scroll{
       bottom: 40px;
   }
}
@media(max-width:960px){
	body{
		background-image: url("../images/Render1_960x742.jpg");
	}
    .home-text p{
        width:70%;
        text-align: center;
    }
    .arrow,.scroll{
        display: none;
    }
    .home-content h1{
        font-size: 1.9rem;
        padding: 10px 10px;
        line-height: 30px;
    }
    .services-heading{
        margin:20px;

    }
    .services-heading h2{
        font-size: 1.7rem;
        line-height: 40px;
    }
    .services-heading p{
        width:100%;
    }
    .box{
        width:100%;
        margin: 20px 0px !important;
        padding: 0px 20px;
        flex-grow: 1;
    }
    .box img{
        height: 100px;
        width:100%;
        object-fit: contain;
    }
    footer p,a{
        font-size: 0.9rem;
        text-align: center;
    }
    footer{
        padding: 0px 10px;
    }
}
