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

*{
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar {
    width: 1px;}
body{
    width: 100%;
    height: auto;
    font-family: fontEdil;
}
.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%;
        }
    }
}
@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);}
}
@media screen and (min-width:320px) and (max-width:820px) and (orientation: portrait){
.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.9vh;
}

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

    .cntImgOne {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        

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

    .textRightS2 {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        h1{
          font-size: 2vh;
          text-align: center;
        }
        p {
            text-align: center;
            font-size: 1.8vh;
            letter-spacing: 2px;
            word-spacing: 2px;
            max-width: 90%;
            line-height: 140%;
        }
    }
}
.footerContainer{
    overflow: hidden;
    width: 100%;
    height: fit-content;
    background-color: #1f676b;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 8px solid gray;
    border-bottom: 8px solid gray;

}
.sizeFoot{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;   
    height: 100%;
    font-family: fontEdil;
    color: white;
    p{ 
        width: 90%;
        word-spacing: 2px;
        text-align: center;
        letter-spacing: 2px;
        font-size: 1.8vh;
        text-transform: uppercase;
        user-select: text;
    }
}
.footSecTwo{
    padding: 10px;
    border-top: solid 3px gray;
    border-bottom: solid 3px gray;
}
.footSecOne{
    gap: 5px;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
}

@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);}
}
}