:root {
   --white-color: #fff;
   --blue-color: #eff2f6;
   --grey-color: #707070;
   --grey-color-light: #aaa;
   --blue-color-hover: #e3e6ed;
   --link-hover: #333;
   --text-color: #141824;
   --border: #cbd0dd;
   --border-hover: #333;
   --sidebar: #fff;
   --navbar: #fff;
   --navbar-blur: rgba(255, 255, 255, 0.5);
   --button: #f5f7fa;
   --button-hover: #cbd0dd;
   --scrollbar: #fff;
   --scrollbar-thumb: rgb(170, 175, 186);
   --scrollbar-thumb-hover: #d3d6de;
   --body: #f5f7fa;
   --toast: #777;
   --toast-color: #e3e6ed;
   --sidebar-blur: rgba(255, 255, 255, 0.5);
   --selection: #141824;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: "Open Sans", sans-serif;
   background-color: #f2f4f7;
}

img {
   max-width: 100%;
   width: 250px;
   height: auto;
}

.search-container {
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
   height: 100vh;
   gap: 30px;
}

.search-container input {
   width: 500px;
   height: 50px;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 25px;
   outline: none;
   font-size: 18px;
   transition: 0.3s;
   word-spacing: 2px;
}

.search-container input:focus {
   border-color: #ff6b6b;
}

.search-container #search-suggestions {
   width: 500px;
   margin-top: -25px;
   border: 1px solid #ddd;
   border-radius: 12px;
   overflow: hidden;
   background-color: #fff;
   user-select: none;
   transition: all 0.3s;
   animation: popup 0.3s ease-in-out;
   display: none;
}

.search-container #search-suggestions div {
   padding: 10px;
   border-bottom: 1px solid #ddd;
   cursor: pointer;
}

.search-container #search-suggestions div:hover {
   background-color: #f4f4f4;
}

@keyframes popup {
   from {
      transform: scale(0);
   }
   to {
      transform: scale(1);
   }
}

.hidden {
   display: none !important;
}

#search-results {
   display: flex;
   justify-content: start;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 150px;
   margin-bottom: 30px;
}

#search-results .item:nth-child(1) {
   width: 40vw;
   min-width: 400px;
   border: none;
   margin-left: 5%;
}

#search-results .item {
   width: 25vw;
   min-width: 300px;
   padding: 10px;
   border-radius: 20px;
   background-color: #fff;
   transition: 0.3s;
   box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
   height: fit-content;
}

.result {
   padding: 15px;
   margin-bottom: 20px;
   background-color: #fff;
}

.top {
   display: flex;
   align-items: center;
   margin-bottom: 10px;
}

.top img {
   width: 20px;
   height: 20px;
   max-width: 20px;
   max-height: 20px;
   border-radius: 50%;
   margin-right: 10px;
}

.top a {
   color: #202124;
   text-decoration: none;
   font-size: 12px;
}

.bottom h3 {
   font-size: 18px;
   color: #1906a7;
   max-width: 70%;
   word-break: break-word;
   line-height: 1.6;
   font-size: 16px;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   width: fit-content;
   font-weight: normal;
}

.bottom p {
   color: #202124;
   font-size: 14px;
}

.bottom a {
   color: #180ea4;
   text-decoration: none;
   font-size: 18px;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   width: 200px !important;
}

.bottom a:hover {
   text-decoration: underline;
}

.miniHeading {
   font-size: 24px;
   color: #202124;
   margin-bottom: 10px;
   margin-left: 20px;
}

.borderX {
   border-top: 1px solid #ddd;
   margin-top: 20px;
   padding-top: 20px;
}

.resultNews {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 20px;
   margin-bottom: 30px;
}

.resultN {
   border-radius: 15px;
   padding: 8px;
   border: 1.5px solid #ddd;
   cursor: pointer;
   transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
   user-select: none;
   width: 195px;
   height: 150px;
   position: relative;
   overflow: hidden;
}

.resultN img {
   width: 100% !important;
   height: 100% !important;
   object-fit: cover;
   pointer-events: none;
   user-select: none;
   object-fit: cover;
   transform: scale(1.1);
   image-rendering: optimizeSpeed;
   image-rendering: -webkit-optimize-contrast;
   image-rendering: -moz-crisp-edges;
}

.resultN a {
   color: white;
   text-decoration: none;
   font-size: 14px;
   font-weight: bold;
   position: absolute;
   bottom: 0px;
   left: 0px;
   z-index: 1;
   background-color: rgba(0, 0, 0, 0.5);
   padding: 8px;
   border-radius: 5px;
   transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
   backdrop-filter: blur(5px);
}

.resultN a:hover {
   background-color: rgba(0, 0, 0, 0.8);
}

.popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 9999;
   user-select: none;
}

.popup-content {
   position: relative;
   width: 80%;
   max-width: 800px;
   max-height: 80%;
   background-color: #fff;
   padding: 20px;
   border-radius: 8px;
   overflow: hidden;
}

.close {
   position: absolute;
   top: 5px;
   right: 25px;
   font-size: 54px;
   color: #fff;
   cursor: pointer;
   z-index: 999;
   transition: 0.3s;
   padding: 5px;
   user-select: none;
}

.close:hover {
   color: #ff6b6b;
}

iframe {
   width: 100%;
   height: 512px;
   border: none;
}

.resultVideos {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 20px;
   margin-bottom: 30px;
}

.resultV {
   border-radius: 15px;
   padding: 8px;
   border: 1.5px solid #ddd;
   cursor: pointer;
   transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
   user-select: none;
   width: 195px;
   height: 150px;
   position: relative;
   overflow: hidden;
}

.resultV img {
   width: 100% !important;
   height: 100% !important;
   background-image: url("https://upload.wikimedia.org/wikipedia/commons/1/14/No_Image_Available.jpg");
   object-fit: cover;
   pointer-events: none;
   user-select: none;
   object-fit: cover;
   transform: scale(1.1);
   image-rendering: optimizeSpeed;
   image-rendering: -webkit-optimize-contrast;
   image-rendering: -moz-crisp-edges;
}

.resultV h3 {
   width: 100%;
   color: white;
   text-decoration: none;
   font-size: 14px;
   font-weight: bold;
   position: absolute;
   bottom: 0px;
   left: 0px;
   z-index: 1;
   background-color: rgba(0, 0, 0, 0.5);
   padding: 8px;
   border-radius: 5px;
   transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
   backdrop-filter: blur(5px);
}

.resultV h3:hover {
   background-color: rgba(0, 0, 0, 0.8);
}

.resultV:hover {
   transform: scale(1.05);
   box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.resultProducts {
   display: flex;
   justify-content: center;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 20px;
   margin-bottom: 30px;
}

.product {
   border-radius: 15px;
   padding: 8px;
   border: 1.5px solid #ddd;
   cursor: pointer;
   transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
   user-select: none;
   width: 45%;
   height: 250px;
   position: relative;
   overflow: hidden;
}

.product img {
   width: 100% !important;
   height: 80% !important;
   object-fit: cover;
   pointer-events: none;
   user-select: none;
   object-fit: cover;
   transform: scale(0.5);
   image-rendering: optimizeSpeed;
   image-rendering: -webkit-optimize-contrast;
   image-rendering: -moz-crisp-edges;
}

.product .info {
   width: 100%;
   color: white;
   text-decoration: none;
   font-size: 12px;
   font-weight: bold;
   position: absolute;
   bottom: 0px;
   left: 0px;
   z-index: 1;
   background-color: rgba(0, 0, 0, 0.5);
   padding: 8px;
   border-radius: 5px;
   transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
   backdrop-filter: blur(5px);
}

.product .info:hover {
   background-color: rgba(0, 0, 0, 0.8);
}

.product:hover {
   transform: scale(0.95);
   box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.product .info p {
   margin: 0;
   padding: 0;
   font-size: 16px;
   font-weight: normal;
}

.product .info .sale {
   color: #ff9f21;
   font-weight: bold;
}

.product .info a {
   display: none;
}

.abstract {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 20px;
   margin-bottom: 30px;
}

.abstract p {
   color: #202124;
   font-size: 14px;
   line-height: 1.6;
   padding-left: 10px;
   padding-right: 10px;
   text-align: justify;
}

.abstract a {
   color: #180ea4;
   text-decoration: none;
   font-size: 16px;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   width: 200px !important;
}

.abstract a:hover {
   text-decoration: underline;
}

#header {
   display: flex;
   flex-direction: column;
   position: fixed;
   width: 100%;
   z-index: 1000;
   top: 0;
   background-color: rgba(249, 250, 253, 0.5);
   backdrop-filter: blur(10px);
}

#search-container2 {
   padding: 20px;
}

#search-box {
   width: 30%;
   padding: 10px;
   font-size: 16px;
   border: 1px solid #ddd;
   border-radius: 25px;
   outline: none;
   transition: 0.3s;
   word-spacing: 2px;
   background-color: rgba(249, 250, 253, 0.7);
   backdrop-filter: blur(10px);
   margin-left: 80px;
}

#search-button {
   padding: 10px;
   font-size: 16px;
   border: 1px solid #ddd;
   border-radius: 25px;
   outline: none;
   transition: 0.3s;
   word-spacing: 2px;
   background-color: rgba(249, 250, 253, 0.7);
   backdrop-filter: blur(10px);
   margin-left: 10px;
   cursor: pointer;
   width: 50px;
}

#search-button:hover {
   background-color: rgba(249, 250, 253, 0.9);
   border-color: #ff9f21;
}

#search-box:focus {
   border-color: #ff9f21;
}

nav {
   padding: 10px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
   padding: 10px;
   text-decoration: none;
   color: #202124;
   margin-right: 10px;
   transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
   font-size: 16px;
   width: fit-content;
   height: 45px;
}

nav a i {
   margin-right: 5px;
   color: #141824 !important;
}

nav a:hover {
   border-bottom: 2px solid #ff9f21;
   background-color: rgba(245, 247, 250, 0.5);
}

nav a:nth-child(1) {
   margin-left: 90px;
}

.selected {
   color: #ff9f21;
   border-bottom: 2px solid #ff9f21;
}

.skeleton-container {
   text-align: center;
}

.skeleton-text {
   height: 20px;
   background: linear-gradient(
      90deg,
      var(--blue-color) 45%,
      var(--blue-color-hover) 70%,
      var(--border) 95%
   );
   background-size: 200% 100%;
   animation: loading5 5.5s infinite;
   margin-bottom: 10px;
   border-radius: 5px;
}

.width-300 {
   width: 300px;
}

.width-400 {
   width: 400px;
}

::selection {
   background-color: lightblue;
   color: #141824;
}

#image-results {
   margin-top: 150px;
   margin-bottom: 30px;
}

.gallery {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.gallery .images {
   gap: 15px;
   max-width: 85%;
   margin-top: 40px;
   columns: 5 340px;
   list-style: none;
}

.gallery .images .card {
   display: flex;
   cursor: pointer;
   overflow: hidden;
   position: relative;
   margin-bottom: 14px;
   border-radius: 12px;
}

.gallery .images img {
   width: 100%;
   z-index: 2;
   position: relative;
}

.images .details {
   position: absolute;
   z-index: 4;
   width: 100%;
   bottom: -100px;
   display: flex;
   align-items: center;
   padding: 15px 20px;
   justify-content: space-between;
   transition: bottom 0.1s ease;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.images li:hover .details {
   bottom: 0;
}

.photographer {
   color: #fff;
   display: flex;
   align-items: center;
}

.photographer i {
   font-size: 1.4rem;
   margin-right: 10px;
}

.photographer span {
   font-size: 1.05rem;
}

button,
i {
   outline: none;
   border: none;
   cursor: pointer;
   border-radius: 5px;
   transition: 0.2s ease;
}

.details button {
   background: #fff;
   font-size: 1.1rem;
   padding: 3px 8px;
}

.details .download-btn:hover {
   background: #f2f2f2;
}

.gallery .load-more {
   color: #fff;
   background: #4aa7e4;
   margin: 50px 0;
   font-size: 1.2rem;
   padding: 12px 27px;
}

.gallery .load-more.disabled {
   opacity: 0.6;
   pointer-events: none;
}

.gallery .load-more:hover {
   background: rgb(50, 152, 220);
}

@media screen and (max-width: 688px) {
   .gallery .images {
      max-width: 100%;
      padding: 0 13px;
      margin-top: 20px;
   }

   .images .details {
      bottom: 0px;
   }

   .gallery .load-more {
      padding: 10px 25px;
      font-size: 1.05rem;
   }
}

.lightbox {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.8);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 9999;
   user-select: none;
}

.lightbox .content {
   position: relative;
   max-width: 95%;
   max-height: 95vh;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 20px;
   box-sizing: border-box;
   overflow: auto;
}

.lightbox .content img {
   width: fit-content;
   height: 512px;
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
}

.lightbox .content .details {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 50px;
   margin-top: 20px;
}

.lightbox .content .details .photographer {
   display: flex;
   align-items: center;
   color: #fff;
}

.lightbox .content .details .photographer i {
   font-size: 1.4rem;
   margin-right: 10px;
}

.lightbox .content .details .photographer span {
   font-size: 1.05rem;
}

.lightbox .content .details button {
   outline: none;
   border: none;
   cursor: pointer;
   background: #fff;
   font-size: 1.1rem;
   padding: 3px 8px;
   border-radius: 5px;
   transition: 0.2s ease;
}

.lightbox .content .details button:hover {
   background: #f2f2f2;
}

.lightbox .content .close-icon {
   position: absolute;
   top: 10px;
   right: 10px;
   color: #fff;
   font-size: 1.5rem;
   cursor: pointer;
}

#goTOP {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background-color: #ff9f21;
   color: #fff !important;
   padding: 10px;
   border-radius: 50%;
   cursor: pointer;
   transition: 0.3s;
   z-index: 9999;
   width: 40px;
   height: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
}

#goTOP a {
   color: #fff;
}

#goTOP:hover {
   background-color: #ff6b6b;
}

@media screen and (max-width: 1088px) {
   .lightbox .content img {
      height: 300px;
   }

   .lightbox .content .details {
      flex-direction: column;
      gap: 20px;
   }

   .lightbox .content .details .photographer {
      margin-top: 20px;
   }

   .lightbox .content .details .photographer span {
      font-size: 1rem;
   }

   .lightbox .content .details button {
      padding: 8px 20px;
      font-size: 1rem;
   }

   .lightbox .content .close-icon {
      top: 5px;
      right: 5px;
      font-size: 1.3rem;
   }

   .lightbox .content .close-icon:hover {
      color: #ff6b6b;
   }

   .lightbox .content .details button:hover {
      background: #f2f2f2;
   }

   .lightbox .content .details .photographer i {
      font-size: 1.2rem;
   }

   .lightbox .content .details .photographer span {
      font-size: 0.9rem;
   }

   .lightbox .content .details button {
      padding: 6px 15px;
      font-size: 0.9rem;
   }

   .lightbox .content .details button:hover {
      background: #f2f2f2;
   }

   #search-results .item:nth-child(1) {
      width: 90vw;
      min-width: 250px;
      border: none;
   }

   #search-results .item {
      width: 90vw;
      min-width: 200px;
      padding: 10px;
      border-radius: 20px;
      background-color: #fff;
      transition: 0.3s;
      box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
      height: fit-content;
      margin: auto;
   }

   #header {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      position: relative;
   }

   #searchBoxForm {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      width: 100%;
      min-width: 200px;
   }

   #searchBoxForm input {
      width: 50vw;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ddd;
      border-radius: 25px;
      outline: none;
      transition: 0.3s;
      word-spacing: 2px;
      background-color: rgba(249, 250, 253, 0.7);
      backdrop-filter: blur(10px);
   }

   #searchBoxForm button {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ddd;
      border-radius: 25px;
      outline: none;
      transition: 0.3s;
      word-spacing: 2px;
      background-color: rgba(249, 250, 253, 0.7);
      backdrop-filter: blur(10px);
      cursor: pointer;
      width: 50px;
   }

   #searchBoxForm button:hover {
      background-color: rgba(249, 250, 253, 0.9);
      border-color: #ff9f21;
   }

   #searchBoxForm input:focus {
      border-color: #ff9f21;
   }

   #header nav {
      padding: 5px;
      width: 100%;
      margin: auto;
      display: flex;
      justify-content: center;
      gap: 10px;
   }

   #header nav a {
      margin: 0;
      padding: 10px;
      text-decoration: none;
      color: #202124;
      transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
      font-size: 14px;
      width: fit-content;
      min-width: none;
      height: 65px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
   }

   #header nav a i {
      margin-right: 0;
   }

   #header nav a:nth-child(1) {
      margin-left: 0px;
   }

   #search-results {
      margin-top: 10px;
      margin-bottom: 30px;
   }

   #image-results {
      margin-top: 10px;
      margin-bottom: 30px;
   }

   #search-container {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      width: 100vw;
      height: 100vh;
      gap: 30px;
   }

   #search-input {
      width: 90vw;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 25px;
      outline: none;
      font-size: 16px;
      transition: 0.3s;
      word-spacing: 2px;
      background-color: rgba(249, 250, 253, 0.7);
      backdrop-filter: blur(10px);
   }

   .search-container #search-suggestions {
      width: 90vw;
      height: 200px;
      margin-top: -25px;
      border: 1px solid #ddd;
      border-radius: 12px;
      overflow: auto;
      background-color: #fff;
      user-select: none;
      transition: all 0.3s;
      animation: popup 0.3s ease-in-out;
      display: none;
   }

   .search-container #search-suggestions div {
      padding: 10px;
   }

   #abstract {
      margin-top: 10px;
      margin-bottom: 30px;
   }

   #abstract p {
      padding-left: 10px;
      padding-right: 10px;
   }

   #video-results {
      margin-top: 10px;
      margin-bottom: 30px;
   }
}

#loading {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
   z-index: 99;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(255, 255, 255, 1);
}

.loader {
   border: 16px solid rgba(243, 243, 243, 0.5);
   border-top: 16px solid rgba(52, 152, 219, 0.74);
   border-radius: 50%;
   width: 120px;
   height: 120px;
   animation: spin 2s linear infinite;
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

.resultLocations {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 10px;
   margin-bottom: 30px;
}

.resultLocations .location {
   width: 200px;
   min-width: 100px;
   height: 200px;
   padding: 10px;
   border-radius: 20px;
   background-color: #fff;
   transition: 0.3s;
   box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.location img {
   width: 100px;
   height: 100px;
   object-fit: cover;
   border-radius: 20px;
   background-image: url("https://kingdombythesea.nl/site/wp-content/uploads/2016/08/location-unknown-2.png");
}

.location .info {
   margin-top: 10px;
}

.location .info h3 {
   font-size: 18px;
   text-align: center;
   max-width: 170px;
   word-break: break-word;
   line-height: 1.6;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
}

.location .info p {
   font-size: 14px;
   color: #202124;
}
.location .info a {
   color: #180ea4;
   text-decoration: none;
   font-size: 18px;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   width: 200px !important;
}

.location .info a:hover {
   text-decoration: underline;
}

.location:hover {
   transform: scale(1.05);
   box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
   cursor: pointer;
}

.resultPlaces {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 10px;
   margin-bottom: 30px;
}

.resultPlaces .place {
   width: 200px;
   min-width: 100px;
   height: 200px;
   padding: 10px;
   border-radius: 20px;
   background-color: #fff;
   transition: 0.3s;
   box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   cursor: pointer;
}

.place img {
   width: 175px;
   height: 100px;
   object-fit: cover;
   border-radius: 20px;
   background-image: url("https://kingdombythesea.nl/site/wp-content/uploads/2016/08/location-unknown-2.png");
}

.place .info {
   margin-top: 10px;
}

.place .info h3 {
   font-size: 16px;
   text-align: center;
   font-weight: normal;
   max-width: 170px;
   word-break: break-word;
   line-height: 1.6;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
}

.place .info p {
   font-size: 12px;
   color: #202124;
}

.place .info p:nth-child(3) {
   font-size: 14px;
   color: #180ea4;
}

.place:hover {
   box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.vetura {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 20px;
}

.vetura a {
   text-decoration: none;
   color: #202124;
   font-size: 16px;
   width: fit-content;
   margin-right: 20px;
   max-width: 300px;
   padding: 10px;
   border-radius: 20px;
   background-color: #fff;
   transition: 0.3s;
   box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
}

.vetura a:hover {
   box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
/* 
.videos {
   display: flex;
   justify-content: center;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 15px;
   margin-top: 150px;
   margin-bottom: 30px;
   list-style: none;
}

.vCard {
   width: 100%;
   max-width: 400px;
   background-color: #fff;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   overflow: hidden;
}

.vCard video {
   width: 100%;
   height: 300px;
   border-radius: 8px 8px 0 0;
}

.vCard .vDetails {
   padding: 10px;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
}

.vCard .vPhotographer {
   display: flex;
   align-items: center;
   margin-bottom: 8px;
}

.vCard .vPhotographer i {
   margin-right: 4px;
}

.vCard .vPhotographer span {
   font-size: 16px;
   color: #606060;
}

.vCard button {
   border: none;
   background-color: transparent;
   cursor: pointer;
}

.vCard button i {
   font-size: 20px;
   color: #606060;
}

.vCard button:hover i {
   color: #ff0000;
} */

.videos {
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-top: 150px;
   margin-bottom: 30px;
}

.videos .video {
   gap: 15px;
   max-width: 85%;
   margin-top: 40px;
   columns: 5 340px;
   list-style: none;
}

.videos .video .vCard {
   display: flex;
   cursor: pointer;
   overflow: hidden;
   position: relative;
   margin-bottom: 14px;
   border-radius: 12px;
}

.videos .video video {
   width: 100%;
   height: 300px;
   z-index: 2;
   position: relative;
}

.video .vDetails {
   position: absolute;
   z-index: 4;
   width: 100%;
   top: 0px;
   display: flex;
   align-items: center;
   padding: 15px 20px;
   justify-content: space-between;
   transition: bottom 0.1s ease;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.vPhotographer {
   color: #fff;
   display: flex;
   align-items: center;
}

.vPhotographer i {
   font-size: 1.4rem;
   margin-right: 10px;
}

.vPhotographer span {
   font-size: 1.05rem;
}

.vDetails button {
   background: #fff;
   font-size: 1.1rem;
   padding: 3px 8px;
}

.vDetails .download-btn:hover {
   background: #f2f2f2;
}

.videos .load-more-video {
   color: #fff;
   background: #4aa7e4;
   margin: 50px 0;
   font-size: 1.2rem;
   padding: 12px 27px;
}

.videos .load-more-video.disabled {
   opacity: 0.6;
   pointer-events: none;
}

.videos .load-more-video:hover {
   background: rgb(50, 152, 220);
}
