*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --main-grey-white-color: #EBEBEB;
    --main-black-color:#232323;
    --special-tags-color: rgba(216, 209, 193, 0.63);
    --button-color:#d8d8d8;
}

body{
    list-style: none;
    background-color: #EBEBEB;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    overflow-x: hidden;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}
.header {
    padding: 1.6rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 61px;
}

.header img {
    height: 53px;
}

.navbar-lists {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-lists li {
    margin-right:43px;
}

.navbar-lists li:last-child {
    margin-right: 0;
}

.navbar-link {
    color: var(--main-black-color);
    transition: background-color 0.3s;
}

.navbar-lists li i{
    color: var(--main-black-color);
    cursor: pointer;
}

.icon {
    display: none;
}
.navbar-lists li:nth-child(1) i {
    color: rgb(48, 87, 15);
}

.navbar-lists li:nth-child(2) i {
    color: rgb(0, 0, 0);
}

.navbar-lists li:nth-child(3) i {
    color: rgb(11, 12, 11);
}

.dropdown-content a:nth-child(1) i {
    color: rgb(73, 86, 110);
}

.dropdown-content a:nth-child(2) i {
    color: rgb(255, 255, 255);
}

.dropdown-content a:nth-child(3) i {
    color: rgb(255, 255, 255);
}


@media screen and (max-width: 768px) {
    img{
        display: none;
    }
    .icon {
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 999;
        color: var(--main-black-color);
        font-size: 24px;
        cursor: pointer;
        flex-direction: row-reverse;
    }

    .navbar-lists {
        display: flex;
        position: fixed;
        top: 61px;
        left: -100%;
        background-color: var(--main-black-color);
        width: 35%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: left 0.3s ease;
        z-index: 998;
        padding-left: 20px;
    }

    .navbar-lists i{
        padding-left: 30px;

    }

    .navbar-lists.responsive {
        left: 0;
        margin-right: 2rem;
    }

    .navbar-lists.responsive li {
        margin: 10px 0;
    }

    .navbar-link {
        padding: 5px 20px;
        text-align: left;
        width: 100%;
    }

    .navbar-link i {
        display: none;
    }

}




@media screen and (max-width: 768px) {
  
}


/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    color: var(--main-grey-white-color);

}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: var(--main-black-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    border: none;
    cursor: pointer;
}


.dropbtn i {
    margin-left: 4px;
    color: var(--main-black-color);

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--main-black-color);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    width: 160px;
}

.dropdown-content a {
    color: var(--main-grey-white-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
}

.dropdown-content a i {
    margin-right: 5px;
    color: var(--main-grey-white-color);
}

.dropdown-content a:hover {
    background-color: #a0a0a0c9;
}

.dropdown:hover .dropdown-content {
    display: block;
}


@media screen and (max-width: 768px) {
    .dropdown {
        display: block;
        margin-bottom: 10px;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        min-width: auto;
        border-radius: 0;
        width: 100%;
        top: initial;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropbtn {
        padding: 10px 20px;
    }

    .dropdown-content a {
        padding: 10px 20px;
    }

    .dropdown-content a i {
        display: none;
    }

    .dropdown:hover .dropdown-content a i {
        display: inline-block;
    }
}
.back-arrow{
    display: flex;
    width: 15%;
    padding: 2%;
    font-size: 25px;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #232323;
}

.wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

.top_section h1{
    font-size: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 2.3rem;
}
/* Main */

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
  grid-template-areas:
            "item1"
            "item2"
            "item3"
            "item4"
            "item5"
            "item6"
            "item7"
            "item8"
            "item9"
            "item10"
            "item11"
            "item12"
            "item13";
}

.grid-container .item {
  height: 300px;
}

.grid-container .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */

footer {
  height: 3rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(136, 136, 136, 0.42);
}

footer p {
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
}

footer span.author {
  font-weight: 700;
}

/* Grid - Named areas */

/* .item1 {
  grid-area: item1;
}
.item2 {
  grid-area: item2;
}
.item3 {
  grid-area: item3;
}
.item4 {
  grid-area: item4;
}
.item5 {
  grid-area: item5;
}
.item6 {
  grid-area: item6;
}
.item7 {
  grid-area: item7;
}
.item8 {
  grid-area: item8;
}
.item9 {
  grid-area: item9;
}
.item10 {
  grid-area: item10;
} */


/* Media queries */

@media only screen and (min-width: 700px) {


  .grid-container {
    grid-template-areas:
              "item1 item2 item3 item4"
              "item4 item5 item6"
              "item5 item7"
              "item7 item7"
              "item7 item7"
              "item8 item9"
              "item10 item10";
  }

  .grid-container .item5 {
    height: auto;
  }

  .grid-container .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* Picture text overlay */
.item {
    position: relative;
  }
  
   .item img {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .2s ease;
    backface-visibility: hidden;
  }
  
  .item .middle {
    transition: .2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .item:hover .middle {
    opacity: 1;
    background-color: transparent;
  }
  
  .text {
    background-color: #e6e6e6dc;
    color: rgba(27, 27, 27, 0.664);
    font-size: 12px;
    padding: 10px 80px;  }

    /* Gallery Picture Positions */
.wrapper {
    padding: 40px 2vw;
    margin-bottom: 20px;
}
.wrapper .grid-container {
    display: grid;
    grid-template-columns: 13vw 13vw 13vw 13vw 13vw 13vw auto;
    grid-template-rows: 13vw 13vw 13vw auto;
    grid-gap: 20px;
    padding: 0;
    margin: 0 auto;
}
.wrapper .grid-container > div {
    overflow: hidden;
}
.wrapper .grid-container .item1 {
    grid-column: 1 / span 1;
    grid-row: 1 / span 5;
}
.wrapper .grid-container .item2 {
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
}
.wrapper .grid-container .item3 {
    grid-column: 3 / span 1;
    grid-row: 1 / span 2;
}
.wrapper .grid-container .item4 {
    grid-column: 4 / span 1;
    grid-row: 1 / span 2;
}
.wrapper .grid-container .item5 {
    grid-column: 6 / span 7;
    grid-row: 1 / span 1;
}
.wrapper .grid-container .item6{
    grid-column: 5 / span 1;
    grid-row: 3 / span 1;
}
.wrapper .grid-container .item7{
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
}
.wrapper .grid-container .item8{
    grid-column: 5 / span 1;
    grid-row: 1 / span 4;
}
.wrapper .grid-container .item9 {
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
}
/* .wrapper .grid-container .item10{
    grid-column: 6 / span 3;
    grid-row: 4 / span 1;
} */
.wrapper .grid-container .item11 {
    grid-column: 3 / span 2;
    grid-row: 3 / span 1;
}
.wrapper .grid-container .item13 {
    grid-column: 6 / span 7;
    grid-row: 2;
}

.wrapper .grid-container .item12{
    grid-column: 6 / span 7;
    grid-row: 3;
}


@media only screen and (max-width: 1120px) {
    .wrapper {
        padding: 40px 0;
        overflow: hidden;
    }
}
