      /**
* VARIABLES
**/

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background-color: black;
    font-family:'Times New Roman', Times, serif;
}
.navi{
width: 100%;
background: linear-gradient(to right, rgb(9, 9, 9), black);
}
.seachbutton{
    /* margin-left: 10vh; */
    padding-left: 10vh;
}
.logoname{
  font-family:'Times New Roman', Times, serif;
}
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.842);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content li a p{
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}
  
.name{
    color: whitesmoke;
}
.buttonside{
    margin-left: 5vh;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
  
}
.profiles{
    margin-right: 40vh;
}
.menuname{
  font-weight:400 !important;
  color: azure !important;
  font-size: 20px;
}




.mid{
  width: 100%;
  margin: auto;
}
.midrap{
  width: 90%;
  margin: auto;
}
.midrap h4,h1{
  color: gold;
}

      /**
* VARIABLES
**/

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);



/**
* CARD
**/

.card1 {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0);
    transform: translateX(-50%) translateY(-50%) translateZ(0);
    width: 300px;
    background-color: transparent;
border: 2px solid whitesmoke;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    -webkit-transition: box-shadow 0.5s;
    transition: box-shadow 0.5s;
    border-radius: 10px;
}

.card1 a {
    color: inherit;
    text-decoration: none;
}

.card1:hover {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}


/**
* DATE
**/

.card__date1 {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    padding-top: 10px;
    background-color: gold;
    border-radius: 50%;
    color: rgb(24, 31, 159);
    text-align: center;
    font-weight: 700;
    line-height: 13px;
}

.card__date__day1 {
    font-size: 14px;
}

.card__date__month1 {
    text-transform: uppercase;
    font-size: 10px;
}


/**
* THUMB
**/

.card__thumb1 {
    height: 200px;
    overflow: hidden;
    background-color: #000;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}

.card__thumb1 img {
    width: 100%;
    display: block;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.card1:hover .card__thumb1 {
    height: 130px;
}

.card1:hover .card__thumb1 img {
    opacity: 0.6;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}


/**
* card_BODY
**/

.card__body1 {
    position: relative;
    height: 185px;
    padding: 20px;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}

.card1:hover .card__body1 {
    height: 300px;
}

.card__category1 {
    position: absolute;
    top: -25px;
    left: 0;
    height: 25px;
    padding: 0 15px;
    background-color: gold;
    color:  rgb(24, 31, 159);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    line-height: 25px;
}

.card__title1 {
    margin: 0;
    padding: 0 0 10px 0;
    color: #196fe8;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.card__subtitle1 {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 19px;
    color: rgb(242, 243, 243);
    /* text-decoration: underline; */
    
    
}
.card__subtitle2 {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 19px;
  color: cyan;
}

.card__description1 {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 56px;
    margin: 0;
    padding: 0;
    color: #e9ecf195;
    line-height: 27px;
    opacity: 0;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.card1:hover .card__description1 {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.card__footer1 {
    position: absolute;
    bottom: 12px;
    left: 20px;
    right: 20px;
    font-size: 11px;
    color: #A3A9A2;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 2px;
    font-size: 18px;
}

.icon+.icon {
    padding-left: 10px;
}
.hh2{
  font-size: 25px;
}
.hh3{
  font-size: 20px;
}


/* footer */
.foot{
  width:100%;
  margin: auto;
  height: 20vh;

}
.footerrap{
width: 100%;
margin: auto;
/* background-color:rgba(14, 14, 14, 0.993); */
height: 20vh;
}
.footdetails{
  width:50%;
  /* background: #0091c2; */
  /* height: 5vh; */
margin: auto;
}

.footdetails ul{
  position: absolute;
  display: grid;
  grid-template-columns: auto auto auto auto;
/* margin-left: 50vh; */
grid-column-gap: 70px;
/* justify-content: cente; */
/* border: 2px solid white; */
}


.footdetails ul li{
 list-style-type: none;
  /* padding-left: 40px; */
  /* padding-right: 40px; */

}
.footdetails ul li a{
  text-decoration: none;
  font-size: 20px;
  list-style-type: none;
}

.nocopyright{
  width: 100%;
  height: 5vh;
  background-color: rgb(9, 9, 12);
}
.nocopyright p{
  color: whitesmoke;
  text-align: center;
  /* padding-top: 10px; */
}
.nocopyright p a{
  color: #0091c2;
  text-decoration: none ;
}




@media screen and (min-device-width: 375px) and (max-device-width: 667px) { 
  .footerrap{
    width: 100%;
margin: auto;
/* background-color:rgba(202, 25, 25, 0.993); */
height: 30vh;
}

.footdetails{
  width: 100%;
  margin: auto;
}
.footdetails ul{
  position: absolute;
  display: grid;
  grid-template-columns: auto auto;
/* margin-left: 34vh; */
}


.footdetails ul li{
 
  /* padding-left: 40px; */

  /* padding-right: 40px; */

}

.footdetails ul li a{
  text-decoration: none;
  font-size: 10px;
}




.footdetails ul li{
  display: inline;
  /* padding-left: 40px; */
  /* padding-right: 40px; */

}


.nocopyright{
  width: 100%;
  height: 5vh;
  background-color: rgb(9, 9, 12);
  margin-top: 10vh;
}
.nocopyright p{
  color: whitesmoke;
  text-align: center;
  padding-top: 1vh;
}
}


@media screen and (min-device-width: 360px) and (max-device-width: 720px) { 
  .footerrap{
    width: 100%;
margin: auto;
/* background-color:rgba(202, 25, 25, 0.993); */
height: 30vh;
}

.footdetails{
  width: 100%;
  margin: auto;
}
.footdetails ul{
  position: absolute;
  display: grid;
  grid-template-columns: auto auto;
/* margin-left: 34vh; */
}


.footdetails ul li{
 
  /* padding-left: 40px; */

  /* padding-right: 40px; */

}

.footdetails ul li a{
  text-decoration: none;
  font-size: 10px;
}




.footdetails ul li{
  display: inline;
  /* padding-left: 40px; */
  /* padding-right: 40px; */

}


.nocopyright{
  width: 100%;
  height: 5vh;
  background-color: rgb(9, 9, 12);
  margin-top: 10vh;
}
.nocopyright p{
  color: whitesmoke;
  text-align: center;
  padding-top: 1vh;
}

.mid1{
  width: 100%;
  margin: auto;
}
.midrap1{
  width: 50%;
  margin: auto;
}

}

@media screen and (min-device-width: 467px) and (max-device-width: 768px) { 
  .foot{
    width:100%;
    margin: auto;
    height: 15vh;
  
  }
 
  .footerrap{
    width: 100%;
margin: auto;
/* background-color:rgba(202, 25, 25, 0.993); */
height: 15vh;
}

.footdetails{
  width: 62%;
  margin: auto;
  /* justify-content: center; */
  /* align-items: center; */
}
.footdetails ul{
  position: absolute;
  display: grid;
  grid-template-columns: auto auto auto auto;
/* margin-left: 34vh; */
/* justify-content: center; */
}


.footdetails ul li{
 
  /* padding-left: 40px; */

  /* padding-right: 40px; */

}

.footdetails ul li a{
  text-decoration: none;
  font-size: 10px;
}




.footdetails ul li{
  display: inline;
  /* padding-left: 40px; */
  /* padding-right: 40px; */

}


.nocopyright{
  width: 100%;
  height: 5vh;
  background-color: rgb(9, 9, 12);
  margin-top: 10vh;
}
.nocopyright p{
  color: whitesmoke;
  text-align: center;
  padding-top: 1vh;
}
}