@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100&display=swap');

/* Basic css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
*, ::after, ::before {
    box-sizing: border-box;
}
a, button, textarea, input {
    text-decoration: none !important;
    outline: none !important;
}


.main_box {
 width: 100%;
    padding: 50px 0;
}
.main_bg {
    background-image: url(../images/1.jpeg);
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
}
.bg_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 2;
    opacity: 0.9;
}
#particles-js {
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0.1;
}
.content_box {
    display: flex;
    z-index: 5;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 0 5%;
}
#logo {
    width: 350px;
}
.fac_box {
text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.fac_box h3 {
    color: #d8b368;
    margin-bottom: 0px;
}
.fac_box p {
    max-width: 1000px;
    line-height: 25px;
    font-weight: 300;
    margin-top: 5px;
}
.add_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}
.add_box_in {
    width: 45%;
}


.sli_box {
position: relative;
width: 100%;
margin-top: 50px;
}

.gallery {
    position: relative;
    display: block;
    max-width: 1000px;
    max-height: 300px;
    margin: auto;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
}
.gallery .slick-list {
  overflow: hidden;
}
.gallery .slick-slide {
  outline: none !important;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  line-height: 40px;
  text-align: center;
  background-color: #E6E6E6;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}
.gallery-arrow:hover {
  background: #D0DFE6;
}
.gallery-arrow.mod-prev {
  left: 0;
  border-radius: 0 4px 4px 0;
}
.gallery-arrow.mod-next {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.gallery-item {
  position: relative;
  float: left;
  vertical-align: middle;
  text-align: center;
}

.gallery-img-holder {
    display: inline-block;
    width: 100%;
    padding: 0 5%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	  max-height: 165px;
}

.gallery-img {
  width: 100%;
  height: 100%;
}
.content_box > h2 {
    text-align: center;
}
.slick-lightbox .slick-arrow {
  z-index: 10;
}
.slick-track {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.slick-lightbox {
background: rgba(0, 0, 0, 0.95) !important;
}
.tag {
    color: #d8b368;
    font-style: italic;
}
.fac_box a {
    color: #fff;
    background-color: #d8b368;
    padding: 8px 20px;
    border-radius: 20px;
    transition: .3s all cubic-bezier(.4,.6,.6,1);
    margin-bottom: 14px;
}
.fac_box a:hover {
    color: #d8b368;
    background-color: #fff;
    transition: .3s all cubic-bezier(.4,.6,.6,1);
}
@media (max-width: 1366px) {
#logo {
    width: 300px;
}
.tag {
    font-size: 14px;
}
.content_box > h2 {
    font-size: 22px;
margin: 10px 0;
}
.fac_box h3 {
    font-size: 18px;
}
.fac_box p {
    font-size: 14px;
}
.add_box {
    margin-top: 30px;
}
}
@media (max-width: 1000px) {
.add_box {
    flex-direction: column;
}
.add_box_in {
    width: 100%;
}
}
@media (max-width: 768px)
{
.add_box {
    margin-top: 0px;
}
#logo {
    width: 250px;
}
}