/*-------------------------||
||         Global          ||
||-------------------------*/
/*-------------------------||
||         Fonts           ||
||-------------------------*/
@font-face {
  font-family: bebas;
  src: url(../fonts/bebas_neue/BebasNeue\ Regular.ttf);
}
@font-face {
  font-family: roboto;
  src: url(../fonts/roboto/Roboto-Regular.ttf);
}
@font-face {
  font-family: aviloc;
  src: url(../fonts/Avilock/Avilock-Regular.otf);
}
@font-face {
  font-family: aviloc_outline;
  src: url(../fonts/Avilock/Avilock-Outline.otf);
}
@font-face {
  font-family: sans_pro;
  src: url(../fonts/sourceSansPro/SourceSansPro-Regular.ttf);
}
/*-------------------------||
||        Typography       ||
||-------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: aviloc;
  color: black;
}

* {
  font-family: roboto;
}

a {
  text-decoration: none;
}

header a {
  font-family: bebas;
}

/*-------------------------||
||        Variables        ||
||-------------------------*/
/*-------------------------||
||        Page Styles      ||
||-------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}

/*-------------------------||
||         Mixins          ||
||-------------------------*/
/*-------------------------||
||        Classes          ||
||-------------------------*/
body.nosroll {
  overflow: hidden;
}

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

.space-between {
  display: flex;
  justify-content: space-between;
}

.text_center {
  text-align: center;
}

@media (min-width: 1020px) {
  .hide-desktop {
    display: none !important;
  }
}
.main_color {
  color: #ffc002 !important;
}

.text_white {
  color: white;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.background_image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
}

*.hide {
  display: none !important;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: black;
  padding: 30px 3%;
  z-index: 15;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
header img.header_logo {
  width: 160px;
}
header.sticky {
  position: fixed !important;
  background: black !important;
  animation: from_top 0.3s;
}
header.sticky img.header_logo {
  width: 100px;
}
@keyframes from_top {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header > ul {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}
header > ul > li {
  position: relative;
  padding: 5px 0;
}
header > ul > li a {
  color: #ffc002;
  transition: 0.3s;
}
header > ul > li a.active {
  color: white;
}
header > ul > li a:hover {
  color: whitesmoke;
}
header > ul > li:hover .submenu {
  opacity: 1;
  pointer-events: unset;
}
header > ul > li .submenu {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: rgba(0, 0, 0, 0.45);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 10px;
}
header > ul > li .submenu::-webkit-scrollbar {
  display: none !important;
}
header > ul > li .submenu li {
  text-align: center;
  font-size: 13px;
  color: #ffc002;
  white-space: nowrap;
  padding: 1px 0;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
}
header .social_icons {
  width: 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0;
}
header .social_icons a i {
  color: #ffc002;
}

@media (max-width: 1020px) {
  header {
    padding: 10px 10%;
    background: black;
    align-items: center;
  }
  header img.header_logo {
    width: 70px;
  }
  header.sticky img.header_logo {
    width: 90px;
  }
  header > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: black;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5%;
    transform-origin: top;
    transform: scaleY(1);
    transition: 0.3s;
    opacity: 1;
    border-top: 3px solid #ffc002;
    border-bottom: 3px solid #ffc002;
  }
  header > ul > li:hover .submenu {
    display: block;
  }
  header > ul > li .submenu {
    opacity: 1;
    pointer-events: unset;
    display: none;
    position: unset;
    left: 0;
    transform: unset;
    top: unset;
    max-height: 40vh;
  }
  header > ul > li .submenu::-webkit-scrollbar {
    display: unset !important;
  }
  header > ul > li .submenu li {
    text-align: left;
    padding: 5px 0;
    font-weight: 500;
  }
  header > ul.close_menu {
    opacity: 0;
    transform: scaleY(0);
    padding-top: 0;
    padding-bottom: 0;
  }
  header .social_icons {
    display: none;
  }
  header i#menu_icon {
    color: #ffc002;
    font-size: 22px;
    background: black;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
  }
}
footer {
  padding: 70px 5%;
  background: black;
}
footer .top_footer {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 7.5% 15% 15% 15% 15% 30%;
}
footer .top_footer .col {
  width: 100%;
  padding-left: 20px;
}
footer .top_footer .col.logo {
  padding: 0 !important;
}
footer .top_footer .col h2 {
  color: #ffc002;
  font-family: roboto;
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 20px;
}
footer .top_footer .col ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
footer .top_footer .col ul li a {
  color: #999999;
  font-weight: 300;
  font-size: 13px;
}
footer .top_footer .col ul li a.main_color {
  text-decoration: underline;
}
footer .top_footer .col p {
  color: #999999;
  font-size: 13px;
}
footer .top_footer .col form {
  position: relative;
  height: 40px;
  margin-top: 20px;
}
footer .top_footer .col form button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #ffc002;
  background: transparent;
  height: inherit;
  border: 0;
}
footer .top_footer .col form input {
  outline: none;
  width: 100%;
  height: inherit;
  background: #333333;
  border: 0;
  padding: 10px;
  border: 1px solid transparent;
  transition: 0.3s;
}
footer .top_footer .col form input::-moz-placeholder {
  color: #666666;
}
footer .top_footer .col form input::placeholder {
  color: #666666;
}
footer .top_footer .col form input:focus {
  border-color: #ffc002;
}
footer .top_footer .social_icons {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 15px;
}
footer .top_footer .social_icons a {
  color: #ffc002;
}
footer .bottom_footer {
  text-align: center;
  padding-top: 100px;
  color: #999999;
  font-size: 13px;
}

@media (max-width: 1020px) {
  footer {
    padding: 70px 5%;
    background: black;
  }
  footer .top_footer {
    display: grid;
    grid-template-columns: 1fr;
  }
  footer .top_footer .col {
    width: 90%;
    padding-left: 0;
    margin: 0 auto;
  }
  footer .top_footer .col.logo {
    width: 50%;
    max-width: 200px;
    margin-left: 0;
  }
  footer .top_footer .social_icons {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#video_player {
  max-width: 2000px;
  position: fixed;
  height: -webkit-fill-available;
  width: 100%;
  z-index: 20;
  background: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
}
#video_player i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  height: 40px;
  width: 40px;
  background: black;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
#video_player video {
  max-height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 60%;
}

@media (max-width: 1020px) {
  #video_player video {
    width: 95%;
  }
}
/*-------------------------||
||          Pages          ||
||-------------------------*/
.home_hero {
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
  position: relative;
}
.home_hero header {
  background: transparent;
}

@media (max-width: 1020px) {
  .home_hero {
    height: 70vh;
    overflow: visible;
  }
}
@media (max-width: 756px) {
  .home_hero {
    height: 50vh;
  }
}
.golden_logos {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background: #f4f4f4;
}
.golden_logos img {
  max-width: 100%;
  min-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.image_bg {
  position: relative;
}
.image_bg::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/assets/images/home/BackgroundImage.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1020px) {
  .image_bg {
    position: relative;
  }
  .image_bg::before {
    width: 93%;
    -webkit-clip-path: unset;
            clip-path: unset;
  }
}
.home_about {
  position: relative;
  padding-bottom: 70px;
}
.home_about .top_text {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.home_about .top_text h2 {
  text-align: center;
  font-size: 50px;
  letter-spacing: 1px;
}
.home_about .top_text p {
  text-align: center;
  font-size: 16px;
  max-width: 60%;
  margin: 0 auto;
  line-height: 30px;
  color: #666666;
}
.home_about .top_text p strong {
  color: black;
  font-size: 22px;
  font-weight: bolder;
  letter-spacing: 1px;
  font-family: aviloc;
}
.home_about .icons_elements {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: row;
  gap: 0;
  margin: 0 auto;
  width: 70%;
}
.home_about .icons_elements .col {
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.home_about .icons_elements .col img {
  max-width: 75%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home_about .icons_elements .col strong {
  font-size: 22px;
}
.home_about .icons_elements .col ul {
  margin-top: 10px;
}
.home_about .icons_elements .col ul li {
  color: #666666;
  font-size: 14px;
  margin: 2px 0;
}
.home_about p.paragraph {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: #666666;
  line-height: 26px;
  margin-top: 60px;
  font-size: 17px;
}
.home_about p.paragraph strong {
  color: black;
}

@media (max-width: 1020px) {
  .home_about .top_text {
    width: 90%;
  }
  .home_about .icons_elements {
    width: 90%;
    flex-direction: unset;
    flex-wrap: wrap;
  }
  .home_about .icons_elements .col {
    width: 45%;
    margin-bottom: 30px;
  }
  .home_about p.paragraph {
    width: 90%;
  }
}
.home_video_section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  padding: 0 5%;
  justify-content: space-around;
  background: black;
}
.home_video_section * {
  transition: 0.3s;
}
.home_video_section .vid_container {
  width: calc(50% - 10px);
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
.home_video_section .vid_container h2 {
  color: transparent;
  font-size: 60px;
  line-height: 51px;
  text-align: center;
  letter-spacing: 3px !important;
  font-weight: 100;
  color: white;
  font-family: aviloc_outline;
}
.home_video_section .vid_container .video_thumbnail {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.home_video_section .vid_container .video_thumbnail .thumbnail_component {
  cursor: pointer;
  height: auto;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.home_video_section .vid_container .video_thumbnail .thumbnail_component img.thumnail_img {
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
.home_video_section .vid_container .video_thumbnail .thumbnail_component img.thumnail_icon {
  width: 60px;
  aspect-ratio: 1/1;
}
.home_video_section .vid_container .video_thumbnail video {
  cursor: pointer;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_video_section .vid_container:nth-child(2) {
  border-left: 1px solid white;
}

@media (max-width: 1100px) {
  .home_video_section {
    align-items: flex-end;
  }
  .home_video_section .vid_container .video_thumbnail .thumbnail_component img.thumnail_img {
    height: 100px;
  }
  .home_video_section .vid_container .video_thumbnail video {
    cursor: pointer;
    height: 200px;
    max-width: 70%;
  }
}
@media (max-width: 756px) {
  .home_video_section {
    flex-direction: column;
  }
  .home_video_section .vid_container {
    width: 100%;
  }
  .home_video_section .vid_container:nth-child(2) {
    border-left: 0;
    border-top: 1px solid white;
  }
  .home_video_section .vid_container .video_thumbnail .thumbnail_component img.thumnail_img {
    height: auto;
    width: 100%;
  }
  .home_video_section .vid_container .video_thumbnail video {
    height: auto;
    min-height: 200px;
    width: 95%;
    max-width: 95%;
  }
}
@media (max-width: 360px) {
  .home_video_section .video_thumbnail {
    width: 260px;
    height: 181.71px;
  }
}
.home_categories_container {
  padding: 50px 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
.home_categories_container .title_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 70%;
  margin: 0 auto;
}
.home_categories_container .title_container h2 {
  font-size: 50px;
  padding-bottom: 10px;
}
.home_categories_container .title_container p {
  color: #666666;
  width: 380px;
  max-width: 90vw;
  text-align: center;
}
.home_categories_container .home_categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.home_categories_container .home_categories .single_category {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  padding: 60px 30px;
  padding-top: 80px;
  padding-bottom: 50px;
}
.home_categories_container .home_categories .single_category h3 {
  color: white;
  letter-spacing: 1px;
  font-size: 26px;
  font-weight: 500;
  text-shadow: 0px 3px 9.7px rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 70px;
}
.home_categories_container .home_categories .single_category p {
  font-family: aviloc;
  color: white;
  font-size: 12px;
  letter-spacing: 1pt;
  line-height: 25px;
  text-shadow: 0px 3px 9.7px rgba(0, 0, 0, 0.7);
}
.home_categories_container .home_categories .single_category .arrow_next {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 10px;
}

@media (max-width: 1020px) {
  .home_categories_container .home_categories {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home_judging h2 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 60px;
}
.home_judging h2::before, .home_judging h2::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 200%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 10px);
  background-position: center center;
}
.home_judging h2::after {
  right: unset;
  left: 100%;
  background-image: url(/assets/images/home/icons/Laurels_right.png);
}
.home_judging h2::before {
  right: 100%;
  left: unset;
  background-image: url(/assets/images/home/icons/Laurels_left.png);
}
.home_judging p.paragraph {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: #666666;
  line-height: 26px;
  margin-top: 60px;
  font-size: 17px;
}
.home_judging p.paragraph strong {
  color: black;
}

.home_past_winners {
  padding: 50px;
  width: 70%;
  margin: 0 auto;
}
.home_past_winners h2 {
  font-size: 40px;
  width: 70%;
  margin: 20px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.home_past_winners h2 span {
  color: #666;
  font-weight: 600;
  font-size: 14px;
}
.home_past_winners h3 {
  text-align: center;
  letter-spacing: 1px;
}
.home_past_winners p.pw_paragraph {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: #666666;
  line-height: 20px;
  margin-top: 20px;
  font-size: 13px;
}
.home_past_winners p.pw_paragraph strong {
  color: black;
}
.home_past_winners .winners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}
.home_past_winners .winners .single_winner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
.home_past_winners .winners .single_winner img {
  width: 100%;
}
.home_past_winners .winners .single_winner strong {
  margin-top: 15px;
  font-size: 16px;
}
.home_past_winners .winners .single_winner small {
  font-size: 12px;
  color: #666666;
}

@media (max-width: 1020px) {
  .home_past_winners {
    padding: 50px 5%;
    width: 90%;
  }
  .home_past_winners h2 {
    font-weight: 100;
    width: 90%;
  }
  .home_past_winners h2 span {
    font-weight: 100;
  }
  .home_past_winners h3 {
    font-weight: 100;
  }
  .home_past_winners .winners {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home_twoCols_container {
  width: 70%;
  margin: 0 auto;
}
.home_twoCols_container hr {
  border: 0;
  border-top: 2px solid black;
}
.home_twoCols_container .twoCols {
  padding: 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 0;
}
.home_twoCols_container .twoCols h3 {
  width: 40%;
  text-align: left;
  letter-spacing: 1px;
  font-size: 40px;
  white-space: nowrap;
  letter-spacing: 1px;
}
.home_twoCols_container .twoCols h3 span {
  letter-spacing: 2px;
  color: transparent;
  font-family: aviloc;
  font-weight: 900;
  color: #1d4777;
}
.home_twoCols_container .twoCols .col {
  width: 40%;
}
.home_twoCols_container .twoCols .col h4 {
  color: #1d4777;
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 1px;
}
.home_twoCols_container .twoCols .col h4 strong {
  font-family: inherit;
  color: #000;
}
.home_twoCols_container .twoCols .col p {
  text-align: left;
  color: #666666;
  line-height: 26px;
  font-size: 17px;
}
.home_twoCols_container .twoCols .col p strong {
  color: black;
}

@media (max-width: 1020px) {
  .home_twoCols_container {
    width: 90%;
  }
  .home_twoCols_container .twoCols {
    padding: 30px 0;
    flex-direction: column;
    margin: 0 auto;
  }
  .home_twoCols_container .twoCols h3 {
    width: 100%;
    font-size: 30px;
    font-weight: lighter;
  }
  .home_twoCols_container .twoCols h3 span {
    font-weight: lighter;
  }
  .home_twoCols_container .twoCols .col {
    width: 100%;
  }
  .home_twoCols_container .twoCols .col h4 {
    font-weight: lighter;
  }
  .home_twoCols_container .twoCols .col h4 span {
    font-weight: lighter;
  }
}
.home_commercial {
  padding: 30px 0;
}
.home_commercial h2 {
  letter-spacing: 2px;
  font-size: 40px;
  padding: 40px 0;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.home_commercial .commercial_images {
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.home_commercial .commercial_images img {
  aspect-ratio: 1/1;
  width: 100%;
  cursor: pointer;
}
.home_commercial hr {
  border: 0;
  border-top: 2px solid black;
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 1020px) {
  .home_commercial {
    margin: 0 auto;
  }
  .home_commercial .commercial_images {
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
  .home_commercial .commercial_images img {
    height: 100%;
    width: 100%;
    cursor: pointer;
  }
}
.home_announcments {
  position: relative;
  padding: 50px 0;
  padding-bottom: 200px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  border-top: 5px solid black;
}
.home_announcments h2 {
  font-size: 40px;
  width: 70%;
  margin: 20px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.home_announcments h2 span {
  color: #666;
  font-weight: 600;
  font-size: 14px;
}
.home_announcments .announcments_container {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.home_announcments .announcments_container .single_announcment {
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  min-height: 200px;
  border: 3px solid black;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 6px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.75);
}
.home_announcments .announcments_container .single_announcment h3, .home_announcments .announcments_container .single_announcment p {
  color: white;
  text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.65);
}
.home_announcments .announcments_container .single_announcment h3 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
}
.home_announcments .announcments_container .single_announcment p {
  font-size: 12px;
}

@media (max-width: 1020px) {
  .home_announcments .announcments_container {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
  }
}
main {
  padding: 90px 15%;
  padding-top: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: repeat-y;
  position: relative;
  background-position-y: top;
}
@media (max-width: 1020px) {
  main.bg_mobile_cover {
    background-size: cover;
  }
}
main.less_padding {
  padding-left: 5%;
  padding-right: 5%;
}
main .gird_system {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(5, 1fr);
}
main .gird_system * {
  font-family: sans_pro;
}
main .gird_system.grid_titles {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0;
  padding-top: 50px;
}
main .gird_system.grid_titles h6 {
  font-size: 25px;
  letter-spacing: 1px;
  font-family: aviloc;
}
main .gird_system.grid_content {
  border: 2px solid black;
  border-radius: 4px;
  padding: 10px;
  padding-bottom: 60px;
}
main .gird_system.grid_content ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
main .gird_system.grid_content ul li {
  font-style: italic;
}
main .big_gap {
  height: 450px;
}
@media (max-width: 1020px) {
  main .big_gap {
    height: 40px;
  }
}
main.center * {
  text-align: center;
}
main .text_bold {
  font-weight: bolder;
  -webkit-text-stroke: 1px black;
}
main .text_less_bold {
  font-weight: bolder;
}
main a {
  color: #d0000e;
}
main .text_left {
  text-align: left !important;
}
main hr {
  border: 0;
  border-top: 2px solid black;
  width: 100%;
}
main hr.smaller_line {
  width: 90%;
  margin: 0 auto;
}
main h1 {
  font-family: bebas;
  font-weight: 100;
  text-align: center;
  margin: 0 auto;
}
main h2 {
  text-decoration: underline;
  font-size: 40px;
  margin: 20px auto;
}
main h3 {
  width: 100%;
  font-size: 40px;
  text-align: left;
}
main h4 {
  font-size: 50px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
main h4.text_shadow {
  text-shadow: 0px 4px 2.64px rgba(0, 0, 0, 0.5);
}
main p {
  font-size: 18px;
  line-height: 28px;
  width: 100%;
}
main .deadline_title {
  width: 100%;
  text-align: left;
}
main .deadline_title h5 {
  font-size: 40px;
  letter-spacing: 1px;
}
main .deadline_title p {
  font-weight: bold;
}
main .deadline_small_title {
  font-weight: bold;
  font-size: 25px;
}
main .list_button {
  background: black;
  color: #ffc002;
  padding: 15px 30px;
  border-radius: 20px;
  margin: 0 auto;
  font-size: 20px;
  transition: 0.3s;
}
main .list_button:hover {
  opacity: 0.7;
}
main .text_list_container {
  padding: 40px auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
main .text_list_container .grid_list {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 1020px) {
  main .text_list_container .grid_list {
    width: 100%;
  }
}
main .text_list_container .text_list {
  width: 40%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
}
main .text_list_container .text_list .list_title {
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
  font-style: italic;
  text-align: center;
}
main .text_list_container .text_list ul li {
  text-align: center;
  padding: 5px 0;
}
main .text_img {
  max-width: 100%;
  margin: 0 auto;
}
main .text_img.w-60 {
  width: 60%;
}
main .social_icons img {
  width: 40px;
  aspect-ratio: 1/1;
}
main .social_icons.bottom_left {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
main .p_relativ {
  position: relative;
  z-index: 5;
}
main .contact_container {
  position: relative;
}
main .contact_container img.img_back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 80%;
  height: auto;
  z-index: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
main .contact_container .contact_info {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
}
main .contact_container .contact_info button {
  cursor: pointer;
  padding: 10px 40px;
  margin-top: auto !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}
main .contact_container .contact_info ul li {
  line-height: 25px;
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  font-family: aviloc;
}
main .contact_container form {
  position: relative;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 60px;
}
main .contact_container form input,
main .contact_container form textarea {
  width: 100%;
  min-height: 50px;
  resize: none;
  border: 0;
  padding: 10px 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid black;
  background: transparent;
  font-size: 17px;
}
main .contact_container form input::-moz-placeholder, main .contact_container form textarea::-moz-placeholder {
  color: white;
  font-weight: 600;
}
main .contact_container form input::placeholder,
main .contact_container form textarea::placeholder {
  color: white;
  font-weight: 600;
}
@media (max-width: 1020px) {
  main .responsive_title {
    font-size: 26px !important;
    width: 100%;
  }
  main .contact_container {
    width: 90%;
    flex-direction: column;
    gap: 20px;
  }
  main .contact_container .contact_info {
    position: relative;
    width: 100%;
  }
  main .contact_container form {
    width: 100%;
  }
}

@media (max-width: 1020px) {
  main {
    padding: 90px 15%;
  }
}
@media (max-width: 756px) {
  main {
    padding: 90px 5%;
  }
}/*# sourceMappingURL=main.css.map */