
html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
    background-color: black;
}


.navbar-toggler{
    outline: none;
    border: none;
    
}


.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon{
    width: 30px;
    height: 3px;
    background-color: #c0700b;
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar{
    margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}
/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}
/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: #dbdde1;
}


.nav-item{
    padding-left: 20px;
}

.navbar-toggler{
    padding: 10px 0 10px 10px;

}

.navbar-nav .nav-item .nav-link{
    font-family: Helvetica;
    font-weight: bolder;
    display: inline-block;
    position: relative;
    color: #c0700b;
}

.navbar-nav .nav-item .nav-link:after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #c0700b;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.navbar-nav .nav-item .nav-link:hover:after{

    transform: scaleX(1);
    transform-origin: bottom left;

}

.navbar-brand span{
  color: #c0700b;
}

.navbar {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #101010;

}


.row-md h1{
    font-weight: bolder;
    color: #dbdde1;

}

.py-5 h3{
    color: #dbdde1;

}

.carousel{
  padding: 3rem 0 0rem 0;
}



  .footer-copyright h4{
    font-size: 18px;

}


/*carousel*/ 

.gallery {
  width: 100%;
}

.gallery-container {
  align-items: center;
  display: flex;
  height: 400px;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
}

.gallery-item {
  height: 150px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 150px;
  z-index: 0;
}

.gallery-item-1 {
  left: 15%;
  opacity: .4;
  transform: translateX(-50%);
}

.gallery-item-2,
.gallery-item-4 {
  height: 200px;
  opacity: 1;
  width: 200px;
  z-index: 1;
}

.gallery-item-2 {
  left: 30%;
  transform: translateX(-50%);
}

.gallery-item-3 {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  height: 300px;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  z-index: 2;
}

.gallery-item-4 {
  left: 70%;
  transform: translateX(-50%);
}

.gallery-item-5 {
  left: 85%;
  opacity: .4;
  transform: translateX(-50%);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.gallery-controls button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 19px;
  margin: 0 20px;
  padding: 0 12px;
  text-transform: capitalize;
}

.gallery-controls button:focus {
  outline: none;
}

.gallery-controls-previous {
  position: relative;
}

.gallery-controls-previous::before {
  border: solid #062d88;
  border-width: 0 5px 5px 0;
  content:'';
  display: inline-block;
  height: 4px;
  left: -15px;
  padding: 7px;
  position: absolute;
  top: -2px;
  transform: rotate(135deg) translateY(-50%);
  transition: left 0.15s ease-in-out;
  width: 4px;
}

.gallery-controls-previous:hover::before {
  left: -25px;
}

.gallery-controls-next {
  position: relative;
}

.gallery-controls-next::before {
  border: solid #062d88;
  border-width: 0 5px 5px 0;
  content: '';
  display: inline-block;
  height: 4px;
  padding: 7px;
  position: absolute;
  right: -15px;
  top: 40%;
  transform: rotate(-45deg) translateY(-50%);
  transition: right 0.15s ease-in-out;
  width: 4px;
}

.gallery-controls-next:hover::before {
  right: -25px;
}

.gallery-nav {
  bottom: -15px;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: absolute;
  width: 100%;
}

.gallery-nav li {
  background: #ccc;
  border-radius: 50%;
  height: 10px;
  margin: 0 16px;
  width: 10px;
}

.gallery-nav li.gallery-item-selected {
  background: #555;
}

.gallery-controls-add{
  display: none;
}

.gallery p{
  text-align: center;
  color: #dbdde1;
}

#philo{
  height: 50%;
  width: 100%;
}

#cont1{
  margin-top: 50px;
}

.page-footer{
  background-color: #101010;
  padding: 30px;
  
  

}

.page-footer .col-md small{
  
  font-size: 15px;
  height: fit-content;
  color: white;
  
  

}

.page-footer .col-md .fab{
  color: white;
  height: auto;
  
  

}

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */

.row-md h1{
  font-weight: bolder;
  color: #dbdde1;
  font-size: 50px;

}

.container .row-md h1{
  font-size: 50px;
  

}
}


/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}


/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {

  .navbar-brand {
    color: #c0700b;
    display:none;
}
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}
