
body::before{
    display: block;
    content: '';
    height: 60px;
}
.index{
    background-image: url("./image/two.jpg");
    background-size: 100% 100%;
}
.overlay{
    min-height: 40vh;
   
}
.overlay-center{
    text-align: center;
    background-color:  rgba(0, 0, 0, 0.6);
    width: 40vw;
    min-height: 25vh;
    border-radius: 5px;
}
.overlay-center p{
    font-size: 25px;
}
.index2{
    background-image: url('./image/bg1.png');
    background-size: 100% 100%;
}
.sec2-center{
    width: 40vw;
    min-height: 30vh;
    text-align: center;
    padding-top: 20px;
}
.sec2-article{
    font-size: 17px;
}
.btt{
    background-color: #4c0633;
    height: 6rem;
}
.btt-items{
    padding-top: 20px;
    height: 100%;;
}
.btt-items p{
    font-size: 20px;
}
.test{
    font-size: 20px;
}
.sec5{
    background: #fddef2;
    min-width: 100%;
}
p.w5{
    width: 65%;
}
.card-svg{
    width: 40px;
    height: 40px;
}
.footer{
    border-top: .7px solid #101e1d;
}
.footer-svg{
    height: 30px;
    width: 30px;
    padding-right: 5px;
    font-weight: bold;
}
.footer-list{
    list-style-type: none;
}
.footer-list li a{
    text-decoration: none;
    padding: 10px;
}
.footer-items label{
    padding: 5px;
    font-weight: bold;
}
.nav-item{
    position: relative;
    margin: 0 5px;
}
.nav-item::after{
    content: "";
    position: absolute;
    bottom: -5px;
    height: 5px;
    width: 100%;
    left: 0;
    background-color: aliceblue;
    transition: 0.4s;
    transition-timing-function: ease-in-out;
    transform: scaleX(0);
}
.nav-item:hover::after{
    transform: scaleX(1);
}

/* whatsapp and call btn */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #5a4949;
  z-index:100;
}
.float2{
	position:fixed;
	width:60px;
	height:60px;
	bottom:150px;
	right:40px;
	background-color:#d37325;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #292323;
  z-index:100;
}

.my-float{
	margin:auto;
    width: 100%;
}


@keyframes moveL {
    from{
        transform: translateX(-300px);
    }
    to{
        transform: translateX(0);
    }
}
@keyframes moveR{
    from{
        transform: translateX(300px);
    }
    to{
        transform: translateX();
    }
}
@keyframes moveD{
    from{
        transform: translateY(100px);
    }
    to{
        transform: translateY(0);
    }
}

.card-one{
    animation: moveL 1s ease-in;
}

.card-four{
    animation: moveR 1s ease-in;
}
.card-two,.card-three{
    animation: moveD 1s ;
}

@media(max-width: 768px){
    .overlay-center{
        font-size: 18px;
        min-height: 18vh;
    }
    .overlay-center p{
        font-size: calc(.05rem + 3vw);
    }
    .overlay{
        min-height: 30vh;
    }
    .sec2-center h2{
        font-size: 1rem;
    }
    .sec2-center{
        width: 90vw;
    }
    .index2{
        background:none
    }
    .sec2-article{
        font-size: calc(.3rem + 2vw);
    }
    .btt{
        height: 8rem;
    }
    .btt-items{
        text-align: center;
    }
    .btt-items p{
        font-size: 16px;
    }
    p.w5{
        font-size: 16px;
    }
    .sec5{
        min-height: 1rem;
    }
    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler-icon:focus {
        outline: none;
        box-shadow: none;
        border: none;
    }
}