:root {
    font-size: 16px;
    box-sizing: border-box;
}

body {
  font-family: OpenSans;
/*   color: #2c6c8bff; */
  color: #000000;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

*, *::before, *::after {
    box-sizing: inherit;
}

nav {
    font-size: 14px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav > div {
    width: clamp(240px, 714px, 714px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c6c8bff;
}

nav > div > a {
    font-weight: 600;
}

.current-site {
    font-weight: 600;
}

.logo > p {
    margin: 0 0 0 10px;
    display: inline-block;
}

.logo {
    display: flex;
    align-items: center;
}

.inln-blk {
    display: inline-block;
}

#btn-mehr {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
}

.down-arrow {
    margin-left: 2px;
    width: auto;
    height: 7px;
}

.tgl-dropdown {
    opacity: 0;
    transition: all .3s ease-in-out;
    visibility: hidden;
    font-size: 14px;
}

.trnst-appear {
    visibility: visible;
    opacity: 1;
}

.con-dropdown {
    display: flex;
    justify-content: center;
    height: 120px;
    background-color: transparent;
}

.tgl-dropdown {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 714px;
}

.tgl-dropdown > li {
    display: flex;
    justify-content: flex-end;
}

.con-dropdown-mobile {
    display: grid;
    grid-template-rows: 0fr;
    justify-content: center;
    background-color: transparent;
    transition: grid-template-rows .3s;
}

.tgl-dropdown-mobile {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 90vw;
    overflow: hidden;
}

.tgl-dropdown-mobile > li {
    display: flex;
    justify-content: center;
}

.height-active {
    grid-template-rows: 1fr;
}

nav > div > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.mrgn-top {
    margin-top: 10px;
}

.mrgn-right {
    display: inline-block;
    margin-right: 30px;
}

nav > div > a > img {
    height: 25px;
    width: auto;
}

nav > div > a, nav > div > ul > li > a, .tgl-dropdown > li > a, .tgl-dropdown-mobile > li > a {
    text-decoration: none;
    color: #2c6c8bff;
    font-size: 14px;
}

footer {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    background-color: #2c6c8bff;
    width: 100%;
    height: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.con-footer {
    width: 714px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Icon Animation */

.con-footer > a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

#nav-icon3 span:nth-child(1) {
    top: 0px;
  }
  
  #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 10px;
  }
  
  #nav-icon3 span:nth-child(4) {
    top: 20px;
  }
  
  #nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
  #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

#nav-icon3 {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #2c6c8bff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

/* Responsive */

@media (max-width: 750px) {
    .con-footer, nav, .con-dropdown {
        width: 90vw;
    }
    nav, .con-dropdown {
        margin: 0 auto 0 auto;
    }
}

@media (max-width: 555px) {
    .con-footer > a {
        font-size: 11px;
    }
    .con-dropdown, nav > div > ul {
        display: none;
    }
    #nav-icon3 {
        display: block;
    }
}