@font-face {
    font-family: fontEdil;
    src: url(/Conthrax-SemiBold.otf);
}

*{
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar {
    width: 1px;}
  
.hamburgerMenu{
    display: none;
}
.cntMenu{
    display: none;
}
body{
    width: 100%;
    height: auto;
    font-family: fontEdil;
}

.navBar{
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 10vh;
    background-color: gray;
    position: sticky;
    top: 0;
    border-bottom: solid 2px #1f676b;
}
.logoBox{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    width: 33.3%;
    .logoImg{
        height: 100%;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.672));
    }
    h1{font-family: fontEdil;
        color: white;
        font-size: 0.8vw;
         filter: drop-shadow(2px 2px 4px rgb(0, 0, 0));
    }
}
.menuNav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3%;
    height: 100%;
    gap: 20px;
    a{
        font-family: fontEdil;
        text-decoration: none;
        color: #ffffff;
        filter: drop-shadow(2px 2px 2px #1f676b);
        font-size: 0.9vw;
    }
    a:hover{
        color: #1f676b;
    }
}
.btnBox{
    width: 33.3%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    a{text-decoration: none;}
}
.callBtn{
    background-color: #1f676b;
    width: 98%;
    height: 30%;
    padding: 8px 0px;
    border-radius: 15px;
    color: white;
    font-family: fontEdil;
    border-color: #ffffff;
    border-width: 4px;
    filter: drop-shadow(1px 1px 2px black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.8vw;
}
.callBtn:hover{
    background-color: #ffffff;
    color: #1f676b;
    border-color: #1f676b;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}
.sectionOne {
    width: 100%;
    height: fit-content;
    display: grid;
    gap: 30px;
    grid-template-areas:
        "One"
        "Two"
    ;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.secOne {
    grid-area: One;
    font-family: fontEdil;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 1.1vw;
}

.secTwo {
    grid-area: Two;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    .cntImgOne {
        width: 40%;
        

        img {
            width: 80%;
            border: 2px solid  #1f676b;
            border-radius: 10px;
            filter: drop-shadow(2px 2px 5px black);
        }
    }

    .textRightS2 {
        width: 40%;
        display: flex;
        flex-direction: column;
        gap: 30px;

        p {
            font-size: 0.8vw;
            letter-spacing: 2px;
            word-spacing: 2px;
            max-width: 90%;
            line-height: 140%;
        }
    }
}
.footerContainer{
    width: 100%;
    height: 25vh;
    background-color: #1f676b;
    display: flex;
    border-top: 8px solid gray;
    border-bottom: 8px solid gray;

}
.sizeFoot{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;   
    height: 100%;
    font-family: fontEdil;
    color: white;
    text-align: center;
    p{
        width: 90%;
        word-spacing: 2px;
        text-align: center;
        letter-spacing: 2px;
        font-size: 0.9vw;
        text-transform: uppercase;
        user-select: text;
    }
    a{
        cursor: pointer;
        text-decoration: underline;
        color: white; 
        width: 90%;
    }
}
.footSecTwo{
    border-right: solid 3px gray;
    border-left: solid 3px gray;
}
.footSecOne{
    flex-direction: column;
    justify-content: space-around;
}

@keyframes animBtn {
  0%   {filter: drop-shadow(1px 1px 2px black);}
  25%  {filter: drop-shadow(1px 1px 2px black);}
  50%  {filter: drop-shadow(1px 1px 2px black);}
  75%  {filter: drop-shadow(1px 1px 2px black);}
  100% {filter: drop-shadow(1px 1px 2px black);}
}