@media screen and (min-width:320px) and (max-width:820px) and (orientation: portrait){
body{
    overflow-x: hidden;
}
    .navBar{
        overflow-x: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    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: 80%;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.672));
    }
    h1{ display: none;
        font-family: fontEdil;
        color: white;
        font-size: 0.8vw;
         filter: drop-shadow(2px 2px 4px rgb(0, 0, 0));
    }
}
.menuNav{
    position: relative;
    display: none;
    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{
    margin: auto;
    background-color: #1f676b;
    width: 90%;
    height: fit-content;
    padding: 10px;
    border-radius: 15px;
    color: white;
    font-family: fontEdil;
    border-color: #ffffff;
    border-width: 4px;
    filter: drop-shadow(0px 0px 0px black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.4vh;
}
.callBtn:hover{
    background-color: #ffffff;
    color: #1f676b;
    border-color: #1f676b;
    transition: all 300ms ease-in-out;
}
/*BODY*/


.containerSelect {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "selOne"
        "selTwo"
        "selThree"
        "selFour";
}
.backGroundOne{
    filter: grayscale(0);
}
.backGroundTwo{
    filter: grayscale(0);
}
.backGroundThree{
    filter: grayscale(0);
}
.backGroundFour{
    filter: grayscale(0);
}
.textOne { 
    font-size: 2.1vw;
}
.textTwo{
    font-size: 2.1vw;
    z-index: 1;
}
.textThree{
    font-size: 2.1vw;
    z-index: 1;
}
.textFour{
    font-size: 2.1vw;
    z-index: 1;
}
.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);}
}
/*NAVMOBILE*/
.hamburgerMenu{
  display: block;
  position: relative;
  width: 33.3%;
  height: 100%;
  z-index: 120;
}
.cntMenu{
    display: flex;
    transform: translateX(-100%);
    justify-content: start;
    flex-direction: column;
    gap: 50px;
    padding: 20px;
    position: fixed;
    background-color: gray;
    width: 70%;
    height: 100%;
    z-index: 110;
    font-family: fontEdil;
    transition: all 500ms ease-in-out;
    border-right: 4px solid #1f676b;
    color: white;
    a{
        text-decoration: none;
        color: white;
    }
    p{
        margin-top: 20px;
        text-align: center;
        background-color: #1f676b;
        padding: 13px 5px;
        border-radius: 10px;
        border: 2px solid white;
    }
}
.imgMenu{
   display: flex;
   justify-content: center;
}
.cntActive{
    transition: all 500ms ease-in-out;
    transform: translateX(0);
}
.menu {
  box-sizing: content-box;
  z-index: 110;
  position: absolute;
  right: 10px;
  top: 25px;
  width: 30%;
  height: 50%;
  background-color: transparent;
  border: none;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
}