
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital@1&family=Merienda&family=Parisienne&display=swap');

*{
    position: relative;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
}

#slideImg{
    width: 100%;
    height: 100%;
    animation: zoom 4s linear infinite;
}

@keyframes zoom{
    0%{
        transform: scale(1.3);
    }
    15%{
        transform: scale(1);
    }
    85%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.3);
    }
}

.overlay{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)) ;
    position: absolute;
    top: 0;
}

.content{
    width: 60%;
    margin: 160px auto 0;
    text-align: center;
    color: white;
}

.content h1{
    font-size: 55px;
}
.content h3{
    width: 70%;
    margin: 20px auto 100px;
    font-weight: 100;
    line-height: 25px;
    font-family: 'Cormorant', serif;
}

.about{
    position: relative;
    width: 100%;
    display: flex;
    background: #162c3b;
}

.about .contentBx{
    background: #162c3b;
    width: 50%;
    padding: 100px;
}

h2.heading{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

p.text{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about .ImgBx{
    background: url('../Images/About/Img1.jpg');
    width: 50%;
    background-position: center;
    background-size: cover;
}

.services{
    background: #12222d;
    padding: 100px;
    text-align: center;
}

.services .contnr{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.services .contnr .serviceBx{
    position: relative;
    background: #fff;
    width: 300px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: 1s ease-in-out;
	transform-style: preserve-3d;
}

.services .contnr .serviceBx:hover{
    transform: rotateY(0.5turn);
}

.services .contnr .serviceBx .cardface{
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    backface-visibility: hidden;
	transition: 1s ease-in-out;
    background-image: linear-gradient(to bottom right, rgb(41, 126, 223), rgb(247, 138, 201));
	/* -webkit-box-reflect: below 0 linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.4)); */
}

.services .contnr .serviceBx img{
    width: 300px;
    height: 350px;
    object-fit: cover;
}

.services .contnr .serviceBx .--back{
    transform: rotateY(0.5turn);
}

.myheadSt{
    padding-top: 25px;
}