@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: #0e193d;
}

header{
    width: 100%;
    height: 30vh;
    background-color: #ffffff;
}

.container{
    max-width: 120rem;
    width: 85%;
    margin: 0 auto;
}

nav{
    padding-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    font-size: 1rem;
}

.brand img{
    width: 30%;
    transform: translateX(-100rem);
    animation: slideIn .5s forwards;
}

nav ul{
    display: flex;
}

nav ul li{
    list-style: none;
    transform: translateX(100rem);
    animation: slideIn .5s forwards;
}

nav ul li:nth-child(1){
    animation-delay: 0s;
}

nav ul li:nth-child(2){
    animation-delay: .5s;
}

nav ul li:nth-child(3){
    animation-delay: 1s;
}

nav ul li:nth-child(4){
    animation-delay: 1.5s;
}

nav ul li a{
    padding: 1rem 0;
    margin: 0 6rem;
    position: relative;
}

nav ul li a:last-child{
    margin-right: 0;
}

nav ul li a::before,
nav ul li a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #B17D52;
    left: 0;
    transform: scaleX(0);
    transition: all .5s;
}

nav ul li a::before{
    top: 0;
    transform-origin: left;
}

nav ul li a::after{
    bottom: 0;
    transform-origin: right;
}

nav ul li a:hover::before,
nav ul li a:hover::after{
    transform: scaleX(1);
}

@keyframes slideIn {
    from{

    }
    to{
        transform: translateX(0);
    }
}

.icon{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    transform: translateX(100rem);
    animation: slideIn .5s forwards;
}
.columns{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 5px 0;
}
.column{
    flex: 1;
    margin: 2px;
    padding: 10px;
    transition: 0.3s;
}
.column:first-child{
    margin-left: 0;
}
.column:last-child{
    margin-left: 0;
}

.homeHead{
    font-weight: 600;
    font-size: 3rem;
    line-height: 1em;
    transform: translateX(-100rem);
    animation: slideIn .5s forwards;
}
.homeTxt{
    margin-top: 1em;
    font-size: 1.2rem;
    text-align: justify;
}
.mainImg{
    margin-top: 3em;
}


#section2{
    padding-top: 5rem;
}

.subHead{
    font-size: 1.6rem;
    padding-top: 2rem;
    transform: translateX(-100rem);
    animation: slideIn .5s forwards;
}
.subTxt{
    font-size: 1rem;
    padding-top: 4rem;
    text-align: justify;
}

#section3{
    padding-top: 5rem;
}

.card{
    background-color: #0e193d;
    color: #ffffff;
    text-align: center;
    margin: auto; 
    width: 30%;
    height: 7vh;
    border-top-right-radius: 3em;
    margin-top: -4rem;
}
.card p{
    padding-top: 15px;
    font-size: 1.2rem;
}
.cardTxt{
    font-size: 1.3rem;
    padding-top: 3rem;
    text-align: justify;
}
.card2{
    background-color: #0e193d;
    color: #ffffff;
    text-align: center;
    margin: auto; 
    width: 30%;
    height: 7vh;
    border-top-right-radius: 3em;
    margin-top: -2rem;
}
.card2 p{
    padding-top: 15px;
    font-size: 1.2rem;
}

.cardTxt2{
    font-size: 1.3rem;
    padding-top: 2rem;
    text-align: justify;
}

.services{
    background-color: #0e193d;
   
    width: 100%;
    padding: 5rem;
    margin-top: 5rem;
}

.box{
    border: solid white;
    padding: 1.5rem;
    width: 100%;
}

.box a{
    color: #ffffff;
    padding: 5rem;
}

.box a p{
    color: #ffffff;
    font-size: 1rem;
}
.box2{
    border: solid white;
    padding: 1.5rem;
    width: 205%;
}
.box2 a{
    color: #ffffff;
    padding: 5rem;
}

.box2 a p{
    color: #ffffff;
    font-size: 1rem;
}
.box3{
    border: solid white;
    padding: 1.5rem;
    width: 100%;
}
.box3 a{
    color: #ffffff;
    padding: 5rem;
}

.box3 a p{
    color: #ffffff;
    font-size: 1rem;
}
.contact{
    padding-top: 5rem;
}
.contactHead{
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1em;
}
.contactForm{
    position: relative;
    padding-top: 30px;
   justify-content: space-between;
}
.inputBox{
    position: relative;
    margin-bottom: 35px;
}
.inputBox.w50{
    width: 47%;
}
.inputBox.w100{
    width: 70%;
}
.inputBox input,
.inputBox textarea{
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #B17D52;
    border: none;
    outline: none;
    border-bottom: 1px solid #0e193d;
}
.inputBox textarea{
    height: 120px;
}

.inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 12px;
    font-weight: 300;
    transition: 0.3s;
}

.inputBox input:focus ~ span,
.inputBox input:valid ~ span,
.inputBox textarea:focus ~ span,
.inputBox textarea:valid ~ span
{
    transform:translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #B17D52;
    font-weight: 500;
}

.inputBox input[type="submit"]{
    position: relative;
    cursor: pointer;
    background-color: #0e193d;
    color: #ffffff;
    border: none;
    max-width: 150px;
    padding: 12px;

}
.inputBox input[type="submit"]:hover{
    background: #1c327a;
}
.address{
    padding-top:-1rem;
    font-size: 1.1rem;
}
.address p{
    margin-top: 1em;
    font-size: 1.1rem;
}

.footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0e193d;
    height: auto;
    width: 100vw;
    padding-top: 40px;
    color: #ffffff;
}

.footer-bottom{
    background-color: #0e193d;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom a span{
    text-transform: uppercase;
    opacity: 1;
    font-weight: 200;
    color: #B17D52;
}
@media  screen and (max-width: 980px) {
    .columns .column{
        margin-bottom: 5px;
        flex-basis: 40%;
    }
    .columns .column:last-child{
        margin: 0;
        flex-basis: 100%;
    }
    .columns .column:nth-last-child(2){
        margin-right: 0;
    
    }
    
    .box2{
        border: solid white;
        padding: 1.5rem;
        width: 100%;
    }
    .box2 a{
        color: #ffffff;
        padding: 5rem;
    }
    
    .box2 a p{
        color: #ffffff;
        font-size: 1rem;
    }
    .address{
      
        font-size: 1.1rem;
    }
    .address p{
        margin-top: 1em;
        font-size: 1.1rem;
    }
    .hidden-mobile {
        display: none;
      }
      .brand img{
        width: 60%;
        transform: translateX(-100rem);
        animation: slideIn .5s forwards;
    }
}
@media  screen and (max-width: 640px) {
    .columns .column{
        flex-basis: 100%;
        margin: 0 0 5px 0;
    }
    .box2{
        border: solid white;
        padding: 1.5rem;
        width: 100%;
    }
    .address{
       
        font-size: 1.1rem;
    }
    .address p{
        margin-top: 1em;
        font-size: 1.1rem;
    }
    .card{
        background-color: #0e193d;
        color: #ffffff;
        text-align: center;
        margin: auto; 
        width: 30%;
        height: 7vh;
        border-top-right-radius: 3em;
        margin-top: 4rem;
    }
    .card p{
        padding-top: 15px;
        font-size: 1.2rem;
    }
    .hidden-mobile {
        display: none;
      }
      .brand img{
        width: 60%;
        transform: translateX(-100rem);
        animation: slideIn .5s forwards;
    }
}
