@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anta&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Pacifico&family=Protest+Strike&display=swap');


body{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    overflow-x: hidden;
}
p strong{
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.bottom-left {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translate(-50%, -50%);
  }
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
    nav{
        text-transform: uppercase;
    }
.custom-justify{
    text-align: justify;
}
nav{
    font-family: Montserrat, sans-serif;
    font-size: 12px;
}
.nav-item .nav-link{
    color: #000000;
    font-weight: 500;
    text-align: center;

}
.nav-item:hover .nav-link{
    color: orangered;
}

.social {
position: fixed;
top: 30%;
z-index: 9;
width:33px;
}

.social ul {
list-style-type: none;
padding: 0;
transform: translatex(-270px);
}

.social ul li {
display: block;
margin: 5px;
background-color: rgba(0, 0, 0, 0.5);
width: 300px;
text-align: right;
padding: 10px;
border-radius: 0 30px 30px 0;
transition: all 1s;
}

.social ul li:hover {
transform: translatex(110px);
}

.social ul li.linkedin:hover {
background-color: #55acee;
}

.social ul li.twitter:hover {
background-color: #55acee;
}

.social ul li.facebook:hover {
background-color: #3b5999;
}

.social ul li.youtube:hover {
background-color: #dd4b39;
}

.social ul li.google-plus:hover {
background-color: #dd4b39;
}

.social ul li.instagram:hover {
background-color: #e4405f;
}

.social ul li a {
color: white;
text-decoration: none;
}

.social ul li i {
text-align: center;
margin-left: 14px;
color: black;
background-color: white;
padding: 10px;
border-radius: 50%;
width: 20px;
height: 20px;
font-size: 20px;
transform: rotate(0deg);
}

.social ul li:hover i {
transform: rotate(360deg);
transition: all 1s;
}

@media only screen and (max-width: 599px) {
    .responsive-image {
        height: 280px;
    }
    .blog-image{
      height: 220px;
    }
}
@media only screen and (min-width: 600px) {
    .responsive-image {
        height: 500px;
    }
    .blog-image{
      height: 350px;
    }
}

.image-css{
    transition: transform .3s;
}

.image-css:hover{
    transform: scale(1.1);
    transition: transform .3s;
}

/* Video Gallery */
.section-header {
    text-align: center;
    margin: 60px auto 20px auto;
  
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
  }
  
  .section-header-underline {
    border: 1px solid #222;
    width: 3rem;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  

  /* Photo Gallery */
  .main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .main .card {
    color: #000000;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: rgb(0,0,0,0.5);
  }
  
  .main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
    height:350px;
  }
  
  .main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media only screen and (max-width: 600px) {
    .main .container {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 1rem;
    }
  }
/*  */
  /* .hover-shadow:hover{ */
    /* -o-transition:.5s; */
  /* -ms-transition:.5s; */
  /* -moz-transition:.5s; */
  /* -webkit-transition:.5s; */
  /* transition:.5s; */
  /* box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5); */
  /* } */

  .zoom{
    transition: transform .3s; /* Animation */
  }

  .zoom:hover{
    transform: scale(0.9);
    transition: transform .3s; /* Animation */
  }

  .hide-btn {
    display: none;
}

.me:hover .hide-btn {
    display: block;
}

.section-to-remove-styles * {
  text-decoration: none !important;
  color: inherit !important;
}


