*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    background-color: aliceblue;
}
.over-lay{
    height: 120px;
    width: 100vw;
    padding: 30px 10px 10px 30px;
    display: flex;
    gap: 360px;
    position: fixed;
    z-index: 4;
    background-color: transparent; 
}
.over-lay-scroll{
    height: 120px;
    width: 100vw;
    padding: 30px 10px 10px 30px;
    display: flex;
    gap: 360px;
    position: fixed;
    z-index: 4;
    background-color: wheat;
    animation: decend 200ms linear;
}
@keyframes decend{
    0%{
        height: 0;
    }
    100%{
        height: 120px;
    }
}
.logo-first-sec{
    display: flex;
}
.logo-txt > p{
    color: brown;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 2px 2px 5px black;
}
.second{
    padding-left: 18px;
}
.hamburger{
    display: none;
}
.navigation{
    padding-top: 18px;
    display: flex;
    gap: 50px;
    position: relative;
}
.navigation > li{
    list-style: none;
    background-color:  transparent;
    padding: 7px 12px 7px 12px;
    border-radius: 30px;
}
.navigation >li:hover{
    cursor: pointer;
    list-style: none;
    background-color:  transparent;
    padding: 7px 12px 7px 12px;
    border-radius: 30px;
    animation: none;

}
.navigation > li:hover .hidden{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
.verb{
    grid-row: span 2;
}
.navigation > li:hover{
    border-top: 7px solid purple;
}
.navigation > li > a{
    color: gold;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hidden{
    display: none;
    width: 370px;
    height: 200px;
    background-color: white;
    opacity: 0.5;
    position: absolute;
    right: 200px;
    padding: 10px;
}
.hidden > li{
    list-style: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hidden > li > a{
    text-decoration: none;
    color: #8B5A2B;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hidden-2{
    display: none;
    width: 370px;
    height: 200px;
    background-color: white;
    backdrop-filter: blur(6%);
    opacity: 0.5;
    position: absolute;
    right: 70px;
    padding: 10px;
}
.hidden-2 > li{
    list-style: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hidden-2 > li > a{
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #8B5A2B;
}
.navigation > li:hover .hidden-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
.introText{
    padding: 60px 150px 0px 150px;
}
.hero{
    width: 100%;
    height: 400px;
    background-image: url(../media/ourServicesHero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
h1{
    color: purple;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: 400;
}
.introText >p{
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.direct{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.direct > a{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    text-decoration: none;
    background-color: purple;
    color: gold;
}
.footer{
    background-color: black;
    display: flex;

}
.line{
    height: 80px;
    margin-top: 80px;
    border: 1px solid #8B5A2B;
}
.txt{
    margin-left: 20px;
    padding-top: 60px;
}
.txt >p{
    color: gold;
}
.telephoneLink{
    color: purple;
    text-decoration: none;
}
.telephoneLink:hover{
    color: #8B5A2B;
}
.emailLink{
    color: purple;
    text-decoration: none;
}
.emailLink:hover{
    color: #8B5A2B;
}
.bottom{
    margin-top: 30px;
    display: flex;
    gap: 10px;
}
.bottom >a{
    color: purple;
    text-decoration: none;
}
.bottom >a:hover{
    color: #8B5A2B;
}
.line-min{
    height: 19px;
    border: 1px solid #8B5A2B;
}
.right_sec{
    margin-left: 270px;
    padding-top: 160px;
    display: flex;
    gap: 40px;
}
.right_sec >a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: purple;
    font-size: 50px;
    text-decoration: none;
}
.right_sec > a i{
    pointer-events: none;
}