body {
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    background-color: transparent;
    height: 100vh;
    margin: 0;
}
h1{
    font-family: var(--font-family-2);
    letter-spacing: -3px;
}

/* body.img {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    transition: background 2s ease-in-out;
} */

/* #bg1{
    background-image: url('/assets/Kirkgate_Background.jpeg');
} */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 2s ease-in-out;
    z-index: -1;
}
.social-links {
    position: absolute;
    right: 0;
    margin: 10px 5px;
}
.social-link {
    margin: 0 5px;
}
.social-link img{
    width: 25px;
    height: auto;
}

.big-nav-container {
    display: flex;
    background-color: transparent;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.big-nav-button {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
    font-size: max(1.5vw, 20px);
    width: 33%;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.big-nav-button span{
    display: inline-block;
    transform: transform 0.3s ease-in-out;
}

.big-nav-button:hover span{
    transform: scale(1.1);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: #6b9ab3;
}

.social-bar {
    /* position: absolute; */
    left: 0;
    top: 0;
    width: 100%;
    height: 125px;
    background-color: var(--tertiary-color);
    display: flex;
    opacity: 1;
    margin: 0;
}
.social-bar a {
    /* display: block; */
    margin: 25px auto;
    height: 90px;
}
.social-bar a img {
    /* position: absolute; */
    display: block;
    height: 90px;
    margin: auto;
}
@media screen and (max-width:1000px) {
  .social-bar {
    height: 200px;
}
.social-bar a {
    height: 150px;
}
.social-bar a img {
    height: 150px;
}
  
}
.big-nav-button.active span {
    text-decoration: underline;
}
  .big-nav-button.active{
    display: block !important;
  }
  .about-container {
    display: flex;
    margin: 15px auto;
    max-width: 1130px;
  }
  .about-column {
    flex: 1; 
    margin: 15px;
  }
.about-column img {
    width: 100%;
    display: block;
}
.about-column p {
    margin-top: 0px;
    text-align: justify;
    text-justify: inter-word;
}
.about-column h1 {
    margin-bottom: 0px;
}
@media screen and (max-width:1000px) {
  .about-column {
    margin: 40px;
  }
.about-column img {
    width: 100%;
    display: block;
}
 p {
  font-size: 30px;
}
 h1 {
    font-size: 60px;
    text-align: center;
}
  .magazine-column{
    margin: 30px auto !important;
  }
  .btn {
    font-size: 30px;
    color: #000;
  }
  .column {
    max-height: 100% !important;
  }
  .column h4 {
    font-size: 40px !important;
  }
}

.magazine-container {
    display: flex;
    height: 75%;
    margin: 15px;
    align-items: center;
    justify-content: center;
  }
  .magazine-column {
    width: 25%;
    margin: auto 30px;
    max-height: 60vh;
  }
.magazine-column img {
    width: auto;
    display: block;
    max-height: 60vh;
}
.magazine-column p {
    margin-top: 0px;
    text-align: justify;
    text-justify: inter-word;
}
.magazine-column h1 {
    margin-bottom: 0px;
}
@media screen and (max-width:1000px) {
  .magazine-container {
    display: block;
    height: auto;
  }
  .magazine-column img {
    max-width: 100%;
    height: auto;
    margin: auto;
  }
  .magazine-column {
    width: 80%;
    height: auto;
  }
}
.video-container {
    display: flex;
    margin: 15px;
    align-items: center;
    justify-content: center;
  }
  .video-column {
    width: 35%;
    margin: auto 30px;
    max-height: 30vh;
  }
.video-column img {
    width: auto;
    display: block;
    max-height: 30vh;
    margin: auto;
}
.video-column p {
    margin: 0px;
    text-align: justify;
    text-justify: inter-word;
}
.video-column h1 {
    margin: 0px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
overflow: hidden;
}

.video-container img {

    max-width: 100%;
    height: auto;

}

.main {
    max-width: 1000px;
    margin: auto;
  }
.row {
    margin: 10px -16px;
    padding: 8px;
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
  }
  @media screen and (max-width:1000px) {
    .column {
      width: 100% !important;
    }
    .row {
      width: 100%;
      margin: auto;
    }
    .main {
      width:80%;
    }
    .column .content p {
      display: none;
    }
  }
  

  .column {
    float: left;
    width: 33%;
    display: none; 
  }
  

  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .content {
    background-color: white;
    padding: 10px;
  }

  .show {
    display: block;
  }
  
  #myBtnContainer {
    text-align: center;
  }
  .btn {
    font-family: var(--font-family);
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #000;
    color: #fff;
  }
  
  .btn.selected {
    background-color: #000;
    color: white;
  }
  .column p {
    margin: 5px 0px;
  }
  .column h4 {
   font-size:  18px;
   margin: 5px 0px;
  }
  @media (max-width: 1000px) {
    .about-container{
      display: block;
    }
  }
  .icon {
    position: relative;
  }
  .icon img {
    height: 60%;
  }
  * {box-sizing: border-box;}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #6b9ab3;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #567d90;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  margin: 100px;
}

.h4 {
  font-family: var(--font-family-2);
}