/* ----- Global CSS ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: none;
  outline: none;
  text-decoration: none;
}

::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

* > img {
  user-select: none;
  pointer-events: none;
  display: inline-block;
}

a {
  text-decoration: none;
  display: inline-block;
}

li {
  list-style: none;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-family: "Arial", Helvetica, Arial, Lucida, sans-serif;
}

.title {
  font-family: "Pushster", cursive;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* ----- Header ----- */
header {
  width: 100%;
  height: 120px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.5s ease;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
}

header .header_content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

/* Header > Header Logo */
header .header_logo {
  width: 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
}

header .header_logo img {
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

/* Fallback for IE */
@supports (-ms-ime-align: auto) {
  header .header_logo img {
    height: 100%;
    width: auto;
  }
}

/* Header > Hamburger menu */
.hamburger_menu {
  display: none;
}

/* Header > Links Container */
header .links_cont .main_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

header .links_cont .main_links li a,
header .links_cont .main_links .sub_links li a {
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
  color: #0c71c3cf;
}

header .links_cont .main_links li a:hover,
header .links_cont .main_links .sub_links li a:hover {
  color: #2ea3f2;
}
header .links_cont .main_links .menu_item.active a {
  color: #2ea3f2;
}

header .links_cont .main_links li.active .photography_link {
  color: #2ea3f2;
}
header .links_cont .main_links .sub_links li.active a {
  color: #2ea3f2;
  background-color: #f7f7f7;
}

header .links_cont .main_links .photography_menu_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

header .links_cont .main_links .photography_menu_item .down_icon {
  fill: #3a8cce;
  transform: skewX(-10deg);
  width: 10px;
}

header .links_cont .sub_links {
  display: none !important;
  width: 140%;
  position: absolute;
  top: 18px;
  left: -14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: transparent;
  padding-top: 50px;
}

header .links_cont .sub_links ul li:first-child {
  border-top: 3px solid #2ea3f2;
  padding-top: 15px;
}

header .links_cont .sub_links ul li:last-child {
  padding-bottom: 15px;
}

header .links_cont .photography_menu_item:hover .sub_links {
  display: block !important;
}

header .links_cont .photography_menu_item .sub_links ul {
  background-color: white !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -ms-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .links_cont .photography_menu_item .sub_links ul li a {
  width: 100%;
  padding: 12px 30px;
  margin-left: 20px;
}

header .links_cont .photography_menu_item .sub_links ul li a:hover {
  background-color: #f7f7f7;
}

/* ----- Articles Section ----- */
article {
  width: 80%;
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  gap: 40px;
}

/* Article > Cards */
.article_card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
.article_card.in-view {
  opacity: 1;
}

.article_card img,
.article_card video {
  width: 100%;
  height: auto;
}

.article_card iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .article_card iframe {
    padding-bottom: 56.25%; /* 16/9 aspect ratio */
    height: 0;
    position: relative;
  }
  .article_card iframe > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.article_card a {
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
  color: #2ea3f2;
}
.article_card p {
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
  color: #666;
}

.details_card {
  margin: 25px 0 35px 0;
}

.details_card p {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  color: #000;
}

.details_card a {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  color: #2ea3f2;
}

/* ----- Responsive ----- */

@media screen and (max-width: 960px) {
  /* Header */
  header {
    position: relative;
    height: 83px;
    box-shadow: none !important;
  }

  header .header_content {
    position: relative;
    width: 80%;
    padding: 0;
  }

  /* Header > Header Logo */
  header .header_logo {
    width: 43px;
  }

  /* Header > Hamburger menu */
  .hamburger_menu {
    display: block;
    width: 18px;
    cursor: pointer;
  }

  .hamburger_menu svg {
    fill: #3a8cce;
  }
  /* Fallback for older browsers */
  @supports not (fill: #3a8cce) {
    .hamburger_menu svg {
      color: #3a8cce;
    }
  }

  /* Header > Links Container */
  header .links_cont {
    position: absolute;
    top: 80px;
    left: 0;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    transition: max-height 0.5s ease-out;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    -o-transition: max-height 0.5s ease-out;
  }

  header .links_cont.active {
    width: 100%;
    max-height: 475px;
    transition: max-height 0.5s ease-in;
    -webkit-transition: max-height 0.5s ease-in;
    -moz-transition: max-height 0.5s ease-in;
    -o-transition: max-height 0.5s ease-in;
  }

  header .links_cont .main_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    border-top: 3px solid #2ea3f2;
    padding: 30px;
    background-color: white;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -ms-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  header .links_cont .main_links li a,
  header .links_cont .main_links .sub_links li a {
    font-size: 14px;
    font-style: initial;
    font-weight: 600;
  }

  header .links_cont .main_links .menu_item.active {
    color: #2ea3f2;
    background-color: #f7f7f7;
  }

  header .links_cont .main_links li.active .photography_link {
    color: #2ea3f2;
    background-color: #f7f7f7;
  }
  header .links_cont .main_links .sub_links li.active a {
    color: #2ea3f2;
    background-color: transparent;
  }

  header .links_cont .main_links .menu_item {
    width: 100%;
  }

  header .links_cont .main_links .photography_menu_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: initial;
  }

  header .links_cont .main_links .photography_menu_item .down_icon {
    display: none;
  }

  header .links_cont .sub_links {
    display: block !important;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    background-color: transparent;
    padding-top: 0 !important;
  }

  header .links_cont .sub_links ul li:first-child {
    border-top: none;
    padding-top: 0;
  }

  header .links_cont .sub_links ul li:last-child {
    padding-bottom: 0;
  }

  header .links_cont .photography_menu_item .sub_links ul {
    background-color: none;
    box-shadow: 0 0 0 0;
    -ms-box-shadow: 0 0 0 0;
  }

  header .links_cont .main_links li a {
    width: 100%;
    padding: 14px 5%;
    border-bottom: 1px solid #f7f7f7;
  }

  header .links_cont .photography_menu_item .sub_links ul li {
    width: 100%;
    padding-left: 40px;
  }

  header .links_cont .photography_menu_item .sub_links ul li a {
    width: 100%;
    padding: 14px 5%;
    border-bottom: 1px solid #f7f7f7;
    margin-left: 0;
  }

  header .links_cont .main_links li a:hover {
    background-color: #f7f7f7;
  }
}

/*--"amit code here"--*/
article.articles_container > .article_card:nth-child(1) {
  transition: 0s !important;
  opacity: 1 !important;
}
/*--"amit code here"--*/