@import url('https://fonts.googleapis.com/css2?family=Labrada:wght@300&display=swap');

*,
*::after,
*::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: cursive,'Labrada', serif;
}
html{
    font-size: 62.5%;
}

/* utility class */
.container{
    max-width: 1200px;
    width: 90%;
    margin : auto;
}
.btn{
    display: inline-block;
    padding: 1em 2.5em;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    margin-top: 1em;
    text-transform: uppercase;
    font-weight: 500;
}
.btn-primary{
  border: 0;
  background: #e5f6ff;
  border-radius: 25px;
  box-shadow: 0 5px 0 #cce9f9;
  color: #1d3b76;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 12px 20px;
  transition: all .1s linear;
}

/*  nav bar styling*/
/* for desktop mode */
.navbar input[type='checkbox'],
.navbar .hamburger-lines{
    display: none;
}

.navbar{
    box-shadow: 0px 5px 10px 0px #dbfff9;
    position: fixed;
    width: 100%;
    background: #edffff;
    opacity: 0.85;
    z-index:999;

}
.navbar-container{
    display: flex;
    justify-content: space-between;
    height:52px;
    align-items:center;
}

.menu-items{
    order:2;
    display:flex;
}
.menu-items li{
    font-size: 1.8rem;
    margin-left: 1.5rem;    
    list-style: none;
}
.logo img{
    order:1;
    height: 42px;
    width: auto;
}
.logo img:hover{
    opacity: 0.85;
    transform: scale(1.01);
}

.showcase-area{
    height: 50vh;
    background: url("./images/head.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.showcase-container{
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.main-title{
    color: #1d3b76;
    font-size: 2.8rem;
    font-weight: 550;
    margin-bottom: 1rem;
}
.showcase-container input{
    display: block;
    background: transparent;
    opacity:1;
    width: 20%;
    border: none;
    border-bottom: 2px solid rgb(162, 162, 162);
    padding: 0.9rem 0;
    box-shadow: none;
    outline: none;
    font-weight: 550;
    color: rgba(5, 98, 175, 0.685);
    margin-top: 0.8rem;
}
input:focus::placeholder,textarea:focus::placeholder {
    color: transparent;
  }
.showcase-container a{
    font-size: 1.35rem;
    margin-top: 0.5em;
}

/* about us */
#about{
    padding: 50px 0px;
}
.about-wrapper{
    display: flex;
    flex-wrap: wrap;
}
#about p{
    font-size: 1.6rem;
    color: #757575;
}
.about-img{
    flex: 1 1 400px;
    padding: 30px;
    transform: translateX(150%);
    animation: about-img-animation 4s ease-in-out forwards;
    opacity: 0.88;
}
@keyframes about-img-animation {
    100%{
        transform: translateX(0);
    }
}
.about-text{
    flex: 1 1 400px;
    padding: 30px;
    margin: auto;
    transform: translateX(-150%);
    animation: about-text-animation 4s ease-in-out forwards;
}
@keyframes about-text-animation {
    100%{
        transform: translateX(0);
    }
}
.about-img2{
    flex: 1 1 400px;
    padding: 30px;
    transform: translateX(-150%);
    animation: about-img-animation2 4s ease-in-out forwards;
    opacity: 0.88;
}
@keyframes about-img-animation2 {
    100%{
        transform: translateX(0);
    }
}
.about-text2{
    flex: 1 1 400px;
    padding: 30px;
    margin: auto;
    transform: translateX(150%);
    animation: about-text-animation2 4s ease-in-out forwards;
}
@keyframes about-text-animation2 {
    100%{
        transform: translateX(0);
    }
}
.about-head{
    color: #1d3b76;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}
.about-img img{
    display: block;
    height: 400px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: right;
}
.about-img2 img{
    display: block;
    height: 400px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: left;
}

#services{
    padding: 5rem 0 10rem 0;
}
.service-container{
    display: flex;
    justify-content: space-between;
}
.service-container img{
    display: block;
    width: 100%;
    margin: auto;
    max-height: 300;
    object-fit: cover;
    object-position: center;
    opacity: 0.84;
}
.img-container{
    margin: 0 1rem;
    position: relative;
}
.img-content{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease-in-out 0.1s;
}
.img-content h3{
    color: #1d3b76;
    font-size: 2.4rem;
}
.img-container::after{
    content:"";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(211, 211, 216);
    z-index: 1;
    transform: scaleY(0);
    transform-origin: 100% 100%;
    transition: all 0.3s ease-in-out;
}
.img-container:hover::after{
    opacity: 1;
    transform: scaleY(1);
}
.img-container:hover .img-content{
    opacity: 1;
    top: 40%;
}


#pricing{
    padding: 50px 0px;
}
.pricing-container{
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0 30px 0;
}
.pricing-container img{
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.pricing-item{
    display: flex;
    flex: 1 1 600px;
    justify-content: space-evenly;
    margin-bottom: 3rem;
}
.pricing-description{
    margin: auto 1.5rem;
}
.pricing-title{
    font-size: 2.2rem;
    font-weight: 500;
    color: #1d3b76;
}
.pricing-description p{
    font-size: 1.4rem;
    color: #6d6d6d;
    font-weight: 470;
}
.pricing-description .item-price{
    color: #4c4040;
    font-weight: 460;
}

#testimonials{
    padding: 5rem 0;
    background: #e9eef6;
}
.testimonial-container{
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
    padding: 1rem;
}
.testimonial-container .checked{
    color: #ff9529;
}
.testimonial-box{
    text-align: center;
    padding: 1rem;

}
.testimonial-box .testimonial-text{
    margin: 1rem 0;
    color: #123a8a;
}
.customer-photo img{
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: auto;
}
.customer-name{
    color: #02153a;
}

#contact{
    padding: 5rem 0;
    background: #ffffff;
}
.contact-container{
    display: flex;
    background: #ffffff;
}
.conatact-image{
    width: 50%;
}
.contact-container img{
    display: block;
    height: 400px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.form-container{
    padding: 1rem;
    width: 49.5%;
    margin: auto;
    margin-left: 2.5rem;
}
.form-container input{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(234, 234, 234);
    padding: 1rem 0;
    box-shadow: none;
    outline: none;
    margin-bottom: 1rem;
    color: #3d0065;
    font-weight: 400;
}
.form-container textarea{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(234, 234, 234);
    padding: 1rem 0;
    outline: none;
    box-shadow: none;
}
.form-container a{
    font-size: 1.2rem;
    margin-top: 0.7rem;
}

#footer h3{
    text-align: center;
    font-size: 1.7rem;
    padding: 2rem;
    font-weight: 500;
    color: #1d3b76;
}