
.no1 {
  background-color: #99918C;
}

.serch{
  width: 30%;
}

.serch_a{
  width: 30%;
  height: 40px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.logoimg{
  max-width: 250px;
  max-height: 210px;
}



.simg{
  max-width: 156px;
  max-height: 100%;
}

.font1{
  font-weight: bold;
  font-family: Noto Sans CJK KR Regular;
  font-size:20px
}


.font2{
  font-weight: bold;
  font-family: Noto Sans CJK KR Regular;
  font-size:13px;
  font-style:italic;
  color: 9E8985;
}


.font3{
  font-family: Noto Sans CJK KR Regular;
  font-size:12px; 
}


.font4{
  font-family: Antro Vectra;
  font-size: 16px
}

.bbrown{
  background-color: #6B655D;
}

.navnavfont{
  font-family: Astina;
  font-size:15px
}

.youtube {
  position: relative;
  width: 100%;
  padding-bottom:  56.25%;
}

.youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}


hr.linestyle:{
  height: 2px;
  background: url(http://ibrahimjabbari.com/images/hr-12.png) repeat-x 0 0;
    border: 0;
}


/* 네브바 언더라인 설정 */
/* Add a black background color to the top navigation */
.topnav {
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  display: block;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid transparent;
}

.topnav a:hover {
  border-bottom: 1px solid #99918C;
}

.topnav a.active {
  border-bottom: 1px solid #99918C;
}







/* 탭 색깔 */

.nav-links.active {
  background-color: #99918C;
}

.navv {
  background-color: FFFFFF;
}

/*이미지 호버 */

.column {
  float: center;
  width: 100%;
  padding: 10px;
}  

/*.column 워크0214기준 css column값 {
  float: center;
  width: 33%;
  padding: 5px;
}  
/


  /* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}



/*이미지 호버 */

.image {
    position: relative;
    width: 100%;
}

.image__img {
    display: block;
    width: 100%;
}

.image__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.image__overlay > * {
    transform: translateY(20px);
    transition: transform 0.25s;
}

.image__overlay:hover {
    opacity: 1;
}

.image__overlay:hover > * {
    transform: translateY(0);
}

.image__title {
    font-size: 1.5em;
    font-weight: bold;
}

.image__description {
    font-size: 1em;
    margin-top: 0.25em;
}




.no2
 {
    background: #eee;
}

/* film css */

.hiddenRow {
    padding: 0 !important;
}


/* 배경 그라디언트 */

.bbg {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 300% 300%;
  background-image: linear-gradient(
        -45deg, 
        rgba(209, 206, 204, 1) 0%, 
        rgba(153, 145, 140, 1) 25%, 
        rgba(229, 227, 225, 1) 51%, 
        rgba(139, 152, 149, 1) 100%
  );  
  animation: AnimateBG 20s ease infinite;
}

@keyframes AnimateBG { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}



/* 페이드인 */
.fade-in-image {
  animation: fadeIn 2.5s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

