
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
     font-family: "Questrial", sans-serif;
    background:#fff;
    color:#111;
    min-height:100vh;
    overflow-x:hidden;
}

.container{
    width:min(1400px,90%);
    margin:auto;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    position:relative;
    z-index:2;
}

/* Header */

header{
    padding:35px 0;
    background-color: #fff;
    position: sticky;
    top: 0px;
}

.logo img{
    width:220px;
    max-width:100%;
}

/* Center */

.hero{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero h1{
    font-size:clamp(70px,11vw,200px);
    font-weight:400;
    line-height:1;
    color:#000;
}

/* Footer */

footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    padding:50px 0;
    max-width:800px;
}


footer p{
   font-size:20px;
   line-height:30px;
   color:#000;
}
.footer-left p{
   font-size:20px;
   line-height:30px;
   color:#000;
}

.footer-left strong{
    display:block;
    margin-bottom:5px;
    font-weight:700;
}

.foot-gst{
    margin-top: 20px;
}
.border-line{
    width: 100%;
    height: 1px;
    background-color: #000;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

footer a, footer strong{
    color:#111;
    text-decoration:none;
    transition:all .5s ease;
    font-weight: 700; 
   
}

.footer-right a:hover{
    color:#d3af37;
    
}


.footer-right strong{
    font-weight:600;
}
a{text-decoration:none;}
/* Background watermark */

.bg-logo{
    position:fixed;
    right:0;
    bottom:0;
    width:460px;
    opacity:1;
    z-index:20;
    pointer-events:none;
}

.cta-wrap{
	display:flex;
	position:fixed;
	bottom:0px;
	width:100%;
	padding: 10px;
	z-index: 25;
    justify-content:space-evenly;
	gap:15px;
	flex-direction:row;
	background-color:#d3af37
}
.cta-link .cta-img{width:100%;height:25px;}
.cta-link{flex-direction:row;gap:5px;color:white;text-align:center;}

@media(min-width:640px){
.cta-wrap{
	bottom:20%;
	background-color:transparent;
	gap:10px;
	flex-direction:column;
	right:-280px;
	width:350px;
	}	
	
.cta-link{display:flex;gap:10px;align-items:center;transition: 0.3s linear;text-decoration:none;flex-direction:row;gap:5px;background-color:transparent;}
.cta-link .cta-img
{display:flex;justify-content:center;align-items:center;padding:5px;border-radius:50%;width:55px;height:55px;background-color:#d3af37;color:#fff}
.cta-link p{color:#000;font-size:16px;line-height:20px;}
.mbl:hover{
	    transform: translateX(-65px);
}
.wp:hover{
	    transform: translateX(-96px);
}
.mail:hover{
	    transform: translateX(-60px);
}
}


/* Tablet */

@media(max-width:991px){

header{
    padding:30px 0;
}

.logo img{
    width:190px;
}

.hero h1{
    font-size:90px;
}

footer{
    flex-direction:column;
    align-items:flex-start;
    gap:25px;
	padding-bottom:30px;
}

footer p, .footer-left p{
   font-size:18px;
   line-height:26px;
   color:#000;
}

.bg-logo{
    width:320px;
}
}

/* Mobile */

@media(max-width:600px){

.container{
    width:90%;
}

header{
    text-align:center;
}

.logo img{
    width:170px;
}

.hero{
    padding:40px 0;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
}

footer{
    padding:30px 0 40px;
}

.footer-left,
.footer-right{
    font-size:15px;
    line-height:1.8;
}

.bg-logo{
    width:220px;
}
}