/* ======FONT START====== */
@font-face {
  font-family: league-spartan;
  src: url(../fonts/league-spartan/LeagueSpartan-Bold.otf);
}

@font-face {
  font-family: roboto-bold;
  src: url(../fonts/roboto/Roboto-Bold.ttf);
}

@font-face {
  font-family: roboto-reg;
  src: url(../fonts/roboto/Roboto-Regular.ttf);
}
/* ======FONT END====== */


/* ======EVERY TIME====== */
*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: solid 1px rgb(0, 0, 0) */
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    background: ghostwhite;
	overflow-x: hidden;
}
/* ======EVERY TIME====== */


/* ===================== */
/* .container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
} */

img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

a {
    text-decoration: none;
}

ul {
    text-decoration: none;
}

p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
    font-family: league-spartan;
}
.section-title span {
	color: #263677;
}
/* ===================== */


/* ======NAV START====== */
header{
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #111;
	box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
	padding: 0 100px;
	transition: 0.6s;
}

header .logo{
    height: 65px;
    width: auto;
}

#log-ephe-txt-header ,
#log-ephe-header {
	display: none;
}


header .navigation{
	position: relative;
	line-height: 75px;
	transition: 0.6s;
	transition-property: line-height;
}

header.sticky .navigation{
  	line-height: 60px;
}

header .navigation .menu{
	position: relative;
	display: flex;
	justify-content: center;
	list-style: none;
	user-select: none;
}

.menu-item span{
	position: relative;
	text-decoration: none;
	font-family: roboto-bold;
	color: #ccc;
	font-size: 1.8rem;
	letter-spacing: .5px;
	padding: 0 25px;
}

.navigation ul li.actipage,
.navigation ul li.actipage span {
	background-color: #222;
	color: #fff;
	font-family: roboto-bold;
}
.navigation ul li:hover {
	background-color: #222;
}

i {
    margin: 2px;
}

.menu-item .sub-menu{
	position: absolute;
	background: #111;
	top: 74px;
	line-height: 40px;
	list-style: none;
	border-radius: 0 0 8px 8px;
	pointer-events: none;
	transform: translateY(20px);
	opacity: 0;
	transition: 0.5s;
	transition-property: transform, opacity;
}
header.sticky .menu-item .sub-menu{
  	top: 60px;
}
.menu-item:hover .sub-menu{
	pointer-events: all;
	transform: translateY(0);
	opacity: 1;
}

.menu-item .sub-menu .sub-item{
	position: relative;
	padding: 7px 0;
	cursor: pointer;
	box-shadow: inset 0px -30px 5px -30px rgba(0, 0, 0, 0.2);
}
.menu-item .sub-menu .sub-item a{
	color: #ccc;
	font-size: 1rem;
	text-decoration: none;
	padding: 15px 30px;
}
.menu-item .sub-menu .sub-item:hover{
  	background: #222;
}
.menu-item .sub-menu .sub-item:last-child:hover{
  	border-radius: 0 0 8px 8px;
}

.menu-btn{
  	display: none;
}


/* for PC 1600 */
@media screen and (min-width: 1600px) {
    header {
        height: 12vh;
    }
    header .logo {
        height: 90px;
        width: auto;
    }
	.menu-item span{
		font-size: 2.4rem;
	}
	.menu-item .sub-menu .sub-item a{
		font-size: 1.8rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
    header {
        height: 10vh;
    }
    header .logo {
        height: 115px;
        width: auto;
    }
	#log-ephe-txt-header {
		display: flex;
	}
	#log-ephepsl-header {
		display: none;
	}
    header .navigation .menu.active{
		width: 70vw;
		visibility: visible;
	}
	.menu-item span {
		font-size: 3.5rem;
		padding: 0 25px;
	}
	.menu-item .sub-menu .sub-item a {
		color: #ccc;
		font-size: 2.5rem;
		text-decoration: none;
		padding: 15px 30px;
	}
}
/* for ipad */
@media screen and (max-width: 769px) {
    header {
        height: 12vh;
    }
    header .logo {
        height: 110px;
        width: auto;
    }
}
/* for galaxy Tab S4 */
@media screen and (max-width: 715px) {
    header {
        height: 14vh;
    }
    header .logo {
        height: 130px;
        width: auto;
    }
	#log-ephe-header {
		display: flex;
	}
	#log-ephe-txt-header {
		display: none;
	}
	#log-ephepsl-header {
		display: none;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    header {
        height: 12vh;
    }
    header .logo {
        height: 70px;
        width: auto;
    }
	header .navigation .menu.active{
		width: 100vw;
		visibility: visible;
	}
	.menu-item span {
		font-size: 2.2rem;
		padding: 0 25px;
	}
	.menu-item .sub-menu .sub-item a {
		color: #ccc;
		font-size: 1.6rem;
		text-decoration: none;
		padding: 15px 30px;
	}
}
/* for Samsung galaxy A51/71 */
@media screen and (max-width: 414px) {
    header {
        height: 12vh;
    }
    header .logo {
        height: 85px;
        width: auto;
    }
	.menu-item span {
		font-size: 2.5rem;
		padding: 0 25px;
	}
	.menu-item .sub-menu .sub-item a {
		color: #ccc;
		font-size: 1.5rem;
		text-decoration: none;
		padding: 15px 30px;
	}
}
/* for iphone 12 pro */
@media screen and (max-width: 391px) {
    header {
        height: 12vh;
    }
    header .logo {
        height: 80px;
        width: auto;
    }
	.menu-item span {
		font-size: 2.5rem;
		padding: 0 25px;
	}
	.menu-item .sub-menu .sub-item a {
		color: #ccc;
		font-size: 1.8rem;
		text-decoration: none;
		padding: 15px 30px;
	}
}
/* for iphone SE */
@media screen and (max-width: 376px) {
    header {
        height: 12vh;
    }
    header .logo {
        height: 60px;
        width: auto;
    }
	.menu-item span {
		font-size: 2.2rem;
		padding: 0 25px;
	}
	.menu-item .sub-menu .sub-item a {
		color: #ccc;
		font-size: 1.5rem;
		text-decoration: none;
		padding: 15px 30px;
	}
}
/* for Samsung galaxy S8 */
@media screen and (max-width: 361px) {
    header {
        height: 12vh;
    }
    header .logo {
        height: 70px;
        width: auto;
    }
	.menu-item span {
		font-size: 2.5rem;
		padding: 0 25px;
	}
	.menu-item .sub-menu .sub-item a {
		color: #ccc;
		font-size: 1.5rem;
		text-decoration: none;
		padding: 15px 30px;
	}
}
/* for iphone 5/SE */
@media screen and (max-width: 321px) {
    header {
        height: 13vh;
    }
    header .logo {
        height: 60px;
        width: auto;
    }
	.menu-item span {
		font-size: 2rem;
		padding: 0 25px;
	}
	.menu-item .sub-menu .sub-item a {
		color: #ccc;
		font-size: 1.5rem;
		text-decoration: none;
		padding: 15px 30px;
	}
}
/* ======NAV END====== */


/* ======HEADER START====== */
.container-home{
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #263677;
}

.container-home:before{
	content: '';
	z-index: 777;
	position: absolute;
	background: rgba(0, 0, 0, 0.452);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#home .content{
	z-index: 888;
	color: #fff;
	width: 70%;
	margin-top: 50px;
	display: none;
}

#home .content.active{
  	display: block;
}

#home h1 {
	display: block;
	width: fit-content;
	font-size: 7rem;
	font-family: league-spartan;
	position: relative;
	color: #fff;
}

#home a{
    display: inline-block;
    height: 60px;
    width: 60px;
    background-color: #263677;
    margin: 8px 8px 8px 8px;
    font-size: 3rem;
    text-align: center;
    line-height: 58px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}
#home a:hover{
    background-color: #fff;
	color: #263677;
}

#home img{
	z-index: 000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-slide{
	position: absolute;
	width: 100%;
	clip-path: circle(0% at 0 50%);
}

.video-slide.active{
	clip-path: circle(150% at 0 50%);
	transition: 2.5s ease;
	transition-property: clip-path;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
    #home a{
		height: 80px;
		width: 80px;
		margin: 8px 15px 8px 15px;
		font-size: 3.4rem;
		line-height: 80px;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
    #home a{
		height: 90px;
		width: 90px;
		margin: 8px 15px 8px 15px;
		font-size: 3.8rem;
		line-height: 90px;
	}
}
@media (max-width: 560px){
  	#home .content h1{
		font-size: 3.5rem;
		line-height: 60px;
  	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    #home a{
		height: 60px;
		width: 60px;
		margin: 5px;
		font-size: 3rem;
		line-height: 60px;
	}
}
/* for iphone 12 pro */
@media screen and (max-width: 391px) {
    #home a{
		height: 50px;
		width: 50px;
		margin: 5px;
		font-size: 2.8rem;
		line-height: 50px;
	}
}
/* for iphone 5/SE */
@media screen and (max-width: 321px) {
    #home a{
		height: 40px;
		width: 40px;
		margin: 5px;
		font-size: 2.2rem;
		line-height: 40px;
	}
}
/* ======HEADER END====== */


/* ======SECTION INFOS START====== */
.container-info {
	min-height: 50vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.storeInfo__wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
    width: 80vw;
}

.storeInfo__item {
	background-color: var(--lightGreen-1);
	padding: 20px 30px;
	text-align: center;
	text-align: center;
	border-radius: 12px;
	width: 250px;
    box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
.storeInfo__item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}

.storeInfo__icon {
	width: 30px;
	margin: 0 auto;
	margin-bottom: 1.5rem;
}

.storeInfo__title {
	font-size: 1.4rem;
	font-family: roboto-bold;
	margin-bottom: 0.5rem;
	color: #263677;
}

.storeInfo__text {
	font-size: 1.4rem;
	font-family: roboto-reg;
	color: #111;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.storeInfo__item {
		padding: 30px 30px;
		width: 285px;
		height: 260px;
	}
	.storeInfo__item h3 {
		font-size: 2.4rem;
		font-family: roboto-bold;
		margin-bottom: 0.5rem;
		color: #263677;
	}
	.storeInfo__text {
		font-size: 1.8rem;
		font-family: roboto-reg;
		color: #111;
	}
}

/* for ipad */
@media only screen and (min-width: 768px) {
	.storeInfo__wrapper {
		gap: 2rem;
	}
	.storeInfo__item {
		min-width: 200px;
		padding: 40px 0;
	}	
	.storeInfo__icon {
		width: 47px;
		margin-bottom: 2.5rem;
	}
	.storeInfo__title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.storeInfo__item {
		padding: 30px 30px;
		width: 300px;
		/* width: 260px; */
	}
	.storeInfo__title {
		font-size: 2.2rem;
	}
	.storeInfo__text {
		font-size: 1.8rem;
	}
}
/* for ipad */
@media screen and (max-width: 769px) {
	.storeInfo__wrapper {
		margin-top: 70px;
	}
	.storeInfo__item {
		padding: 30px 30px;
		width: 260px;
	}
}
/* for galaxy Tab S4 */
@media screen and (max-width: 715px) {
	.storeInfo__item {
		padding: 30px 30px;
		width: 270px;
		height: 220px;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
	.storeInfo__item {
		padding: 20px 30px;
		width: 250px;
		height: 180px;
	}
	.storeInfo__title {
		font-size: 2rem;
	}
	.storeInfo__text {
		font-size: 1.4rem;
	}
}
/* ======SECTION INFOS END====== */


/* ======LINK TITLE START====== */
.link-title {
	height: 8vh;
}
.link-foot {
    height: 8vh;
}

/* for ipad */
@media screen and (max-width: 769px) {
    .link-title {
		height: 10vh;
	}
}
/* ======LINK TITLE END====== */


/* ======TITLE START====== */
.title-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2%;
    padding-bottom: 0%;
}
.title {
    text-align: center;
    align-items: center;
    font-size: 2.5rem;
	font-weight: 500;
}
.logo-fix {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.line1 {
    width: 15%;
    height: .5rem;
    margin-right: 3%;
    background-color: #263677;
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.35);
}
.logo-for-museum {
    display: flex;
    height: 100px;
    width: auto;
}
.line2 {
    width: 15%;
    height: .5rem;
    margin-left: 3%;
    background-color: #263677;
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.35);
}
/* ======TITLE END====== */


/* ====================  HOME-PAGE    HOME-PAGE   HOME-PAGE  ==================== */

/* ======SECTION HISTORY START====== */
.container-history {
	min-height: 65vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#museum .museum {
	flex-direction: column;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 20px;
}
#museum .col-left {
	width: 250px;
	height: 360px;
}

.title-museum {
    font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
    font-family: roboto-bold;
}

#museum .col-right {
	width: 100%;
}
#museum .col-right p {
	margin-bottom: 20px;
	font-family: roboto-reg;
}

#museum .col-left .museum-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#museum .col-left .museum-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid #263677;
	z-index: -1;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.title-museum {
		font-size: 4.4rem;
	}
	#museum .col-right p {
		font-size: 1.8rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.container-history {
		min-height: 45vh;
	}
    .title-museum {
		font-size: 4.5rem;
	}
	#museum .col-right p {
		font-size: 1.8rem;
	}
	
}
/* for ipad */
@media screen and (max-width: 769px) {
    .title-museum {
		font-size: 3.6rem;
	}
	#museum .col-right p {
		font-size: 1.7rem;
	}
}
/* for galaxy Tab S4 */
@media screen and (max-width: 715px) {
   	#museum .col-left .museum-img {
		border: 0px solid white;
	} 
	#museum .col-right {
		width: 100%;
		margin-top: 40px;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
	.title-museum {
		font-size: 3rem;
	}
    #museum .col-right p {
		font-size: 1.4rem;
	}
}
/* for iphone 12 pro */
@media screen and (max-width: 391px) {
	#museum .col-left .museum-img {
		border: 0px solid white;
	}
	.title-museum {
		margin-top: 20px;
	}
	#museum .col-right p {
		font-size: 1.4rem;
	}
}
/* ======SECTION HISTORY END====== */


/* ======SECTION EPHE START====== */
.section-ephe {
	min-height: 50vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 100px 0;
}

.container-ephe {
	background-color: white;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	box-shadow: 0px 0px 61px 7px rgba(51, 51, 51, 0.274);
	padding: 50px 20px;
	border-radius: 20px;
}

.header-ephe {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.log_ephe {
	height: 120px;
	margin: 10px;
}

.txt_ephe {
	margin-top: 30px ;
}

.txt_ephe h3 {
	font-size: 2rem;
	font-family: roboto-reg;
}

.txt_ephe p {
	font-size: 1.5rem;
	font-family: roboto-reg;
}

/* .footer-ephe {
	display: none;
}
.footer-ephe--show {
	display: flex;
	align-items: center;
	justify-content: center;
} */
.footer-ephe {
	display: flex;
	align-items: center;
	justify-content: center;
}
.ephe__cta {
	display: inline-block;
	align-items: center;
	padding: 1.5rem 3rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-family: roboto-bold;
	color: #fff;
	background-image: linear-gradient(to right, #ff7d7d 0%, #a21010 100%);
	border-radius: .8rem;
	text-decoration: none;
	margin-top: 40px;
}
.ephe__cta:hover {
	background-image: linear-gradient(to right, #a21010 0%, #ff7d7d 100%);
}

.read-more-text {
    display: none;
}

.read-more-text--show {
    display: inline;
}

.read-more-btn {
	font-weight: 600;
	font-size: 20px;
}
.read-more-btn:hover {
	color: #263677;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
    
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.txt_ephe h3 {
		font-size: 2.2rem;
	}
    .txt_ephe p {
		font-size: 1.8rem;
	}
	.ephe__cta {
		font-size: 1.6rem;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    .log_ephe {
		height: 65px;
	}
	.txt_ephe h3 {
		font-size: 2rem;
	}
    .txt_ephe p {
		font-size: 1.4rem;
	}
	.ephe__cta {
		font-size: 1.4rem;
	}
}
/* for iphone 12 pro */
@media screen and (max-width: 391px) {
    .log_ephe {
		height: 60px;
	}
}
/* for iphone SE */
@media screen and (max-width: 376px) {
    .log_ephe {
		height: 55px;
	}
}
/* for Samsung galaxy S8 */
@media screen and (max-width: 361px) {
    .log_ephe {
		height: 50px;
	}
}
/* for iphone 5/SE */
@media screen and (max-width: 321px) {
    .log_ephe {
		height: 45px;
	}
}
/* ======SECTION EPHE END====== */


/* ======SECTION DISCOVER START====== */
#container-discover {
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.discover-info p {
	font-size: 1.6rem;
	font-family: roboto-reg;
	text-align: center;
	padding: 50px 5px 30px 5px;
}

.grille-discov {
	background-image: url(../images/grille.png);
	background-size: cover;
	background-position: top;
	position: relative;
	width: 100%;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.grille-discov::after {
	content: '';
	position: absolute;
	background: linear-gradient(to top, #000000, transparent);
	width: 100%;
	height: 400px;
	bottom: 0;
	z-index: 0;
}
.grille-discov a {
	display: inline-block;
	background-color: #2c8fff;
	padding: 1.5rem 3rem;
	margin-bottom: 60px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.8rem;
	font-family: roboto-bold;
	color: #fff;
	border-radius: 8px;
	border-top: solid 8px #263677;
	border-bottom: solid 8px #263677;
	z-index: 1;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.grille-discov a {
		font-size: 2.4rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.discover-info p {
		font-size: 1.8rem;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    .discover-info p {
		font-size: 1.4rem;
	}
}
/* ======SECTION DISCOVER END====== */


/* ============BTN============= */
.bton {
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 50px;
}

.btn-eco-museum {
	display: inline-block;
	background-color: rgb(44, 143, 255);
	padding: 1.5rem 3rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.8rem;
	font-family: roboto-bold;
	color: #fff;
	border-radius: 8px;
	border-top: solid 8px #263677;
	border-bottom: solid 8px #263677;
	box-shadow: 0px 0px 18px 0 #0000006b;
}
.btn-eco-museum:hover {
	background-image: linear-gradient(to right, #263677 0%, #00f2fe 100%);
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.btn-eco-museum {
		font-size: 2.4rem;
	}
}
/* ============BTN============= */

/* ====================   HOME-PAGE    HOME-PAGE    HOME-PAGE   ==================== */


/* ====================   MUSEUM-PAGE    MUSEUM-PAGE    MUSEUM-PAGE   ==================== */
/* ======SECTION VISIT3D START====== */
#container-visit {
	width: 100%;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.visit-info p {
	font-size: 1.6rem;
	font-family: roboto-reg;
	text-align: center;
	padding: 50px 5px 30px 5px;
}

.visit {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.visit-info p {
		font-size: 1.8rem;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    .visit-info p {
		font-size: 1.4rem;
	}
}
/* ======SECTION VISIT3D END====== */


/* ======SECTION EXPOSITION START====== */
.mini-title-expo {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	color: silver;
	margin: 50px 0;
}
.mini-title-expo h2 {
	cursor: pointer;
	font-size: 2rem;
	font-family: league-spartan;
	margin: 0 50px;
	display: inline-block;
	padding: 1.5rem 3rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	background-color: #bdbdbd;
	border-top: solid 8px #bdbdbd;
	border-bottom: solid 8px #bdbdbd;
	border-radius: .8rem;
	text-decoration: none;
	transition: 0.3s ease;
}
.mini-title-expo h2:hover {
	background-color: #2c8fff;
}

.go.actiexpo {
	background-color: #2c8fff;
	border-top: solid 8px #263677;
	border-bottom: solid 8px #263677;
}

.container-expo {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.exposition {
  	display: none;
}
.exposition.actiexpo {
	display: flex;
	flex-wrap: wrap;
	min-height: 100vh;
	width: 100%;
	justify-content: space-around;
	align-items: center;
	background: ghostwhite;
}

.card-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 30px;
}

.card {
	position: relative;
	background: #fff;
	max-width: 325px;
	width: 325px;
	height: 370px;
	margin: 25px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 25px #01010133;
	transition: 0.3s ease box-shadow;
}
.card:hover {
	box-shadow: 0 0 5px rgb(1 1 1 / 20%);
}

.card-image {
  	max-height: 200px;
}
.card-image img {
	max-width: 100%;
	height: auto;
}

.card-info {
	position: relative;
	color: #222;
	padding: 20px 20px 20px;
}
.card-info h3 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 5px;
	font-family: roboto-bold;
}
.card-info p {
	margin-bottom: 5px;
	font-family: roboto-reg;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.mini-title-expo h2 {
		font-size: 2.4rem;
	}
	.card {
		max-width: 355px;
		width: 355px;
		height: 400px;
	}
	.card-info {
		margin-top: 30px;
		margin-bottom: 5px;
		padding-top: 10px;
	}
	.card-info h3 {
		font-size: 2.4rem;
		font-weight: 800;
		margin-bottom: 5px;
		font-family: roboto-bold;
	}
	.card-info p {
		font-size: 1.8rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.card {
		max-width: 360px;
		width: 360px;
		height: 400px;
		margin: 25px;
	}
	.card-info h3 {
		font-size: 2.4rem;
		font-weight: 800;
		margin-top: 22px;
		margin-bottom: 5px;
	}
	.card-info p {
		font-size: 1.8rem;
	}
}
/* for ipad */
@media only screen and (max-width: 769px) {
	.card {
		max-width: 325px;
		width: 325px;
		height: 394px;
		margin: 10px;
	}
	.card-info h3 {
		font-size: 2.1rem;
		font-weight: 800;
		margin-top: 5px;
		margin-bottom: 5px;
	}
	.card-info p {
		font-size: 1.7rem;
	}
}
/* for galaxy Tab S4 */
@media screen and (max-width: 715px) {
   	.card {
		max-width: 400px;
		width: 400px;
		height: 420px;
	}
	.card-info {
		margin-top: 50px;
		margin-bottom: 5px;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    .mini-title-expo h2 {
		font-size: 1.4rem;
		margin: 0 10px;
		padding: 1.5rem 1.5rem;
	}
	.card {
		max-width: 325px;
		width: 325px;
		height: 370px;
		margin-bottom: 30px;
	}
	.card-info {
		margin-top: 5px;
		margin-bottom: 5px;
		padding-top: 15px;
	}
	.card-info p {
		font-size: 1.4rem;
	}
}
/* for iphone 12 pro */
@media screen and (max-width: 391px) {
	.mini-title-expo h2 {
		font-size: 1.4rem;
		margin: 0 10px;
		padding: 1.5rem 1.5rem;
	}
	.card {
		max-width: 325px;
		width: 325px;
		height: 370px;
		margin-bottom: 30px;
	}
	.card-info h3 {
		font-size: 2.1rem;
		font-weight: 800;
		margin-top: 0px;
		margin-bottom: 5px;
	}
	.card-info p {
		font-size: 1.4rem;
	}
}
/* for Samsung galaxy S8 */
@media screen and (max-width: 361px) {
	.card {
		height: 400px;
	}
    .card-info {
		margin-top: 1px;
		margin-bottom: 5px;
		padding-top: 2px 2px;
	}
}
/* for iphone 5/SE */
@media screen and (max-width: 321px) {
	.mini-title-expo h2 {
		font-size: 1.2rem;
		margin: 0 10px;
		padding: 1.5rem 1.5rem;
	}
    .card {
		height: 350px;
		width: 300px;
	}
	.card-info {
		margin-top: 5px;
		margin-bottom: 5px;
		padding: 2px 10px;
	}
	.card-info h3 {
		font-size: 1.9rem;
		font-weight: 800;
		margin-top: 0px;
		margin-bottom: 5px;
	}
	.card-info p {
		font-size: 1.2rem;
	}
}
/* ======SECTION EXPOSITION END====== */


/* ======SECTION GARDEN START====== */
.container-garden {
    min-height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#garden {
	background-image: url(../images/jardin/jardin.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
	margin: 50px 0;
}
#garden::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}

#garden .garden {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

#garden h2 {
	display: block;
	width: fit-content;
	font-size: 2.5rem;
	font-family: roboto-bold;
	position: relative;
	color: #fff;
	left: 50%;
	transform: translate(-50%);
}

#garden p {
	display: block;
	width: fit-content;
	font-size: 1.4rem;
	font-family: roboto-reg;
	margin-top: 50px;
	position: relative;
	color: #fff;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	#garden {
		margin-top: 100px;
	}
	#garden h2 {
		font-size: 2.8rem;
	}

	#garden p {
		font-size: 1.8rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	#garden .garden {
		padding: 0 5px;
	}
	#garden h2 {
		font-size: 3rem;
	}
	#garden p {
		font-size: 1.8rem;
	}
}
/* for ipad */
@media screen and (max-width: 769px) {
	#garden h2 {
		font-size: 2.5rem;
	}
	#garden p {
		font-size: 1.8rem;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
	#garden h2 {
		font-size: 1.8rem;
	}
	#garden p {
		font-size: 1.4rem;
	}
}
/* ======SECTION GARDEN END====== */


/* ======SECTION SHOP START====== */
.p-slider {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 50px auto;
	width: 95%;
}

.p-slogan-shop {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 600;
	font-family: roboto-bold;
}

.product-box {
	display: flex;
	flex-direction: column;
	width: 300px;
	padding: 15px;
	border-radius: 10px;
	margin: 20px 20px;
	position: relative;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
.product-box:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}

.p-img-container {
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}
.p-img {
	width: 100%;
	height: 300px;
	display: flex;
}
.p-img a img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: contain;
	animation: fade 0.6s;
}

.p-box-text {
	margin-top: 5px;
	width: 100%;
}

.product-category {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.product-category span {
	color: #acacac;
	font-size: 1.1rem;
	font-family: roboto-bold;
	margin: 5px 0px;
}

.product-title {
	color: #333;
	font-weight: 600;
	text-decoration: none;
	transition: all ease 0.3s;
	font-family: roboto-bold;
}

.price-buy {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
.price-buy .p-price {
	font-size: 1.3rem;
	color: #333;
	font-weight: 700;
	font-family: roboto-bold;
}

.p-discount {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 75px;
	height: 24px;
	color: #fff;
	background-color: #263677;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	font-family: roboto-bold;
	letter-spacing: 1px;
	z-index: 100;
	border-radius: 3px;
}

.slider-btns {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin: 30px auto 10px auto;
	padding: 0px 10px;
}
.slider-btns button {
	position: static !important;
	transform: translate(0,0);
	background-color: #2c8fff;
	border-left: solid 8px #263677;
	border-right: solid 8px #263677;
	width: 80px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	border-radius: 4px;
}
.slider-btns button span {
	font-weight: bold;
	padding: 10px 15px 10px 10px;
	position: relative;
	text-decoration: none;
}
.slider-btns button span::before,
.slider-btns button span::after {
	border-right: solid 2px;
	display: block;
	height: 8px;
	margin-top: -6px;
	position: absolute;
	transform: rotate(135deg);
	right: 10px;
	top: 50%;
	width: 0;
	content: '';
}
.slider-btns button span::after {
	margin-top: -1px;
	transform: rotate(45deg);
}

.slider-btns .glider-prev span {
	transform: rotate(-180deg);
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.p-discount {
		width: 90px;
		height: 28px;
		font-size: 1.8rem;
	}
	.product-category span {
		font-size: 1.6rem;
	}
	.product-title {
		font-size: 1.8rem;
	}
	.price-buy .p-price {
		font-size: 1.8rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.p-img {
		height: 350px;
	}
	.product-category span {
		font-size: 1.4rem;
		margin: 1px 0px 5px;
	}
	.product-title {
		font-size: 1.8rem;
	}
	.price-buy .p-price {
		font-size: 1.8rem;
	}
	.p-discount {
		font-size: 1.4rem;
	}
}
/* for ipad */
@media screen and (max-width: 769px) {
	.product-box {
		margin: 20px 20px;
	}
	.p-img {
		height: 345px;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
	.p-slogan-shop {
		font-size: 1.8rem;
	}
	.slider-btns button {
		width: 65px;
		height: 35px;
	}
}
/* for Samsung galaxy S8 */
@media screen and (max-width: 361px) {
	.p-img {
		height: 320px;
	}
}
/* for iphone 5/SE */
@media screen and (max-width: 321px) {
	.p-slogan-shop {
		font-size: 1.6rem;
	}
	.slider-btns button {
		width: 60px;
		height: 30px;
	}
	.p-img {
		height: 250px;
	}
	.product-category span {
		font-size: 1.2rem;
		margin: 1px 0px 5px;
	}
	.product-title {
		font-size: 1.4rem;
	}
	.price-buy .p-price {
		font-size: 1.4rem;
	}
	.p-discount {
		font-size: 1.2rem;
	}
}
/* ======SECTION SHOP END====== */


/* ======SECTION ACTUALITY START====== */
#container-actu {
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}

.title-actu-f a {
	font-family: roboto-bold;
	font-size: 30px;
	color: #000000;
}
.title-actu-f a:hover {
	color: #3b5998;
}

.title-actu-y a {
	font-family: roboto-bold;
	font-size: 30px;
	color: #000000;
}
.title-actu-y a:hover {
	color: #FF0000;
}

.blog-post {
	width: 100%;
	max-width: 98rem;
	padding: 5rem;
	background-color: #fff;
	display: flex;
	margin: 8rem;
	align-items: center;
	border-radius: .8rem;
	box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.37);
}

.blog-post__img {
	min-width: 35rem;
	max-width: 35rem;
	height: 30rem;
	transform: translateX(-8rem);
	position: relative;
}
.blog-post__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: .8rem;
}
.blog-post__img::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: .5rem .5rem 3rem 1px rgba(0, 0, 0, 0.37);
	border-radius: .8rem;
}

.blog-post__date span {
	display: block;
	color: #222;
	font-size: 1.8rem;
	font-weight: 600;
	margin: .5rem 0;
	font-family: roboto-bold;
}

.blog-post__title {
	font-size: 2.8rem;
	margin: 1.5rem 0 2rem;
	text-transform: uppercase;
	font-family: roboto-bold;
}
.blog-post__title span{
	font-size: 2.8rem;
	margin: 1.5rem 0 2rem;
	text-transform: uppercase;
	color: #263677;
}

.blog-post__text {
	margin-bottom: 3rem;
	font-size: 1.4rem;
	font-weight: 600;
	color: #222;
	font-family: roboto-reg;
}

.blog-post__cta {
	display: inline-block;
	padding: 1.5rem 3rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-family: roboto-bold;
	color: #fff;
	background-image: linear-gradient(to right, #00f2fe 0%, #263677 100%);
	border-radius: .8rem;
	text-decoration: none;
}
.blog-post__cta:hover {
	background-image: linear-gradient(to right, #263677 0%, #00f2fe 100%);
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.blog-post__date span {
		font-size: 2rem;
	}
	.blog-post__text {
		font-size: 1.8rem;
	}
	.blog-post__cta {
		font-size: 1.6rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.blog-post {
		max-width: 80rem;
	}
	.blog-post__img {
		min-width: 30rem;
		max-width: 30rem;
	}
	.blog-post__date span {
		font-size: 2.2rem;
	}
	.blog-post__text {
		font-size: 1.8rem;
	}

	.blog-post__cta {
		font-size: 1.6rem;
	}
}
/* for ipad */
@media screen and (max-width: 769px) {
    .blog-post {
		max-width: 70rem;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    .blog-post {
		padding: 2.5rem;
		flex-direction: column;
	}
	.blog-post__img {
		min-width: 100%;
		max-width: 100%;
		transform: translate(0, -8rem)
	}
	.blog-post__date span {
		font-size: 1.8rem;
	}
	.blog-post__title {
		font-size: 2.4rem;
	}
	.blog-post__title span{
		font-size: 2.4rem;
	}
	.blog-post__text {
		font-size: 1.4rem;
	}

	.blog-post__cta {
		font-size: 1.4rem;
	}
}
/* ======SECTION ACTUALITY END====== */


/* ======SECTION GALERI START====== */
.section-gal {
	min-height: 50vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 100px 0;
}

.container-gal {
	background-color: white;
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0px 0px 61px 7px rgba(51, 51, 51, 0.274);
	padding: 50px 20px;
	border-radius: 20px;
}

.header-gal {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.log_insta {
	height: 120px;
}

.txt_insta h3 {
	font-size: 2rem;
	font-family: roboto-reg;
}

.txt_insta p {
	font-size: 1.5rem;
	font-family: roboto-reg;
}

.gallery {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	margin-top: 50px;
	grid-gap: 20px;
}

.item {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	transition: 0.3s ease box-shadow;
}

.item:hover .gallery-item-info,
.item:focus .gallery-item-info {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.486);
}

.gallery-item-info {
	display: none;
	color:  #fff;
}
.gallery-item-info li {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 600;
	font-family: roboto-reg;
}

.gallery-item-likes {
  	margin-right: 2.2rem;
}

.footer-gal {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gal__cta {
	display: inline-block;
	align-items: center;
	padding: 1.5rem 3rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-family: roboto-bold;
	color: #fff;
	background-image: linear-gradient(to right, #00f2fe 0%, #263677 100%);
	border-radius: .8rem;
	text-decoration: none;
	margin-top: 40px;
}
.gal__cta:hover {
	background-image: linear-gradient(to right, #263677 0%, #00f2fe 100%);
}

.visualy-hidden {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.log_insta {
		height: 130px;
	}
	.txt_insta {
		margin-left: 30px;
	}
	.header-gal h3 {
		font-size: 2.4rem;
	}
	.header-gal p {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 900px) {
	.container-gal {
		max-width: 1160px;
		padding: 100px;
	}
	.header-gal {
		flex-direction: row;
		justify-content: space-between;
	}

	.gallery {
		grid-gap: 30px;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.log_insta {
		height: 140px;
		width: 140px;
	}
	.txt_insta {
		margin-left: 40px;
	}
	.txt_insta p {
		font-size: 1.8rem;
	}
	.gal__cta {
		font-size: 1.6rem;
	}
}
/* for ipad */
@media screen and (max-width: 769px) {
    .log_insta {
		display: none;
	}
	.txt_insta {
		margin: auto;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
   .txt_insta p {
		font-size: 1.4rem;
	}
	.gal__cta {
		font-size: 1.4rem;
	}
}
/* for iphone 12 pro */
@media screen and (max-width: 391px) {
    .gallery {
		grid-gap: 20px;
	}
}
/* ======SECTION GALERI END====== */

/* ====================   MUSEUM-PAGE    MUSEUM-PAGE    MUSEUM-PAGE   ==================== */


/* ======SECTION FOOTER START====== */
.footer {
    background-color: #222;
    padding: 7rem 0;
}

.container-foot {
	max-width: 1320px;
    margin: auto;
}

.row-foot {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 2.2rem;
    font-weight: 500;
	font-family: roboto-bold;
    color: #fff;
    margin-bottom: 35px;
    position: relative;
}
/* .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #263677;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
} */

.footer-col ul li  {
    margin-bottom: 8px;
}
.footer-col ul li {
    font-size: 1.4rem;
    font-weight: 300;
	font-family: roboto-reg;
    text-decoration: none;
    color: #ccc;
    display: block;
}

.maill,
.phonee {
    color: rgb(187, 187, 187);
}

.link-org {
	color: #ccc;
}

ul {
    list-style: none;
}

.footer-col .social-links a {
    display: inline-block;
    height: 50px;
    width: 50px;
    background-color: #808080;
    margin: 5px;
    font-size: 2rem;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
    background-color: rgb(88, 88, 88);
}

.btn-ticket {
    border: solid grey 2px;
	background-color: grey;
    width: 10rem;
    padding: 5px;
    font-size: 1.6rem;
	font-family: roboto-bold;
    color: #fff;
    transition: all 0.5s ease;
}
.btn-ticket:hover {
    background-color: rgb(88, 88, 88);
}

.map {
    width: 100%;
    margin: 50px 0px;
}
.map-size {
    width: 100%;
    height: 30rem;
}

.footer-bottom {
    background: #111;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 1.6rem;
	font-family: roboto-reg;
    word-spacing: 2px;
    text-transform: capitalize;
    color: #fff;
}

/* for PC 1600 */
@media screen and (min-width: 1600px) {
	.footer-col h4 {
		font-size: 2.4rem;
	}
	.footer-col ul li  {
		font-size: 1.6rem;
	}
	.btn-ticket {
		font-size: 1.8rem;
	}
}

/* for ipad pro */
@media screen and (max-width: 1025px) {
	.footer-col {
        width: 40%;
        margin-bottom: 30px;
		margin-left: 7%;
    }
	.footer-col h4 {
		font-size: 2.4rem;
	}
	.footer-col ul li {
		font-size: 1.8rem;
	}
	.btn-ticket {
		font-size: 1.8rem;
	}
	.footer-col h4 {
		font-size: 2.4rem;
	}
	.footer-col .social-links a {
		height: 55px;
		width: 55px;
		margin: 10px;
		font-size: 3rem;
		line-height: 60px;
	}
	.footer-bottom p {
		font-size: 1.8rem;
	}
}
/* for ipad */
@media screen and (max-width: 769px) {
	.footer-col h4 {
		font-size: 2.2rem;
	}
	.footer-col ul li {
		font-size: 1.6rem;
	}
	.btn-ticket {
		font-size: 1.5rem;
	}
	.footer-col h4 {
		font-size: 2.4rem;
	}
	.footer-col .social-links a {
		height: 50px;
		width: 50px;
		margin: 8px;
		font-size: 2.6rem;
		line-height: 50px;
	}
	.footer-bottom p {
		font-size: 1.5rem;
	}
}
/* for galaxy Tab S4 */
@media screen and (max-width: 715px) {
    .footer-col .social-links a {
		height: 45px;
		width: 45px;
		margin: 8px;
		font-size: 2.6rem;
		line-height: 45px;
	}
}
/* for iphone 6/7/8 plus */
@media screen and (max-width: 420px) {
    .footer-col {
        width: 100%;
		margin-left: 5%;
    }
    .footer-col .social-links a {
		height: 40px;
		width: 40px;
		margin: 10px 10px 10px 10px;
		font-size: 1.8rem;
		line-height: 40px;
		border-radius: 50%;
	}
	.footer-col h4 {
		font-size: 2.2rem;
	}
	.footer-col ul li {
		font-size: 1.4rem;
	}
	.btn-ticket {
		font-size: 1.6rem;
	}
	.footer-col h4 {
		font-size: 2.2rem;
	}
	.footer-bottom p {
		font-size: 1.4rem;
	}
}
/* ======SECTION FOOTER END====== */


/* ======keyframes====== */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* ======keyframes====== */


/* ======Media Query For Desktop====== */
@media (max-width: 1060px) {
	header .navigation .menu{
		position: fixed;
		display: block;
		background: #111 ;
		min-width: 290px;
		height: 100vh;
		top: 0;
		right: -100%;
		padding: 90px 50px;
		visibility: hidden;
		overflow-y: auto;
		transition: 0.5s;
		transition-property: right, visibility;
	}

	header.sticky .navigation{
		line-height: 75px;
	}

	header .navigation .menu.active{
		right: 0;
		visibility: visible;
	}

	.menu-item{
		position: relative;
	}

	.menu-item .sub-menu{
		opacity: 1;
		position: relative;
		top: 0;
		color: #ccc;
		transform: translateX(10px);
		background: #333;
		border-radius: 5px;
		overflow: hidden;
		display: none;
	}

	header.sticky .menu-item .sub-menu{
		top: 0;
	}

	.menu-item:hover .sub-menu{
		transform: translateX(10px);
	}

	.menu-item .sub-menu .sub-item{
		box-shadow: none;
	}

	.menu-item .sub-menu .sub-item:hover{
		background: #4080ef7e;
	}

	.menu-item .sub-menu .sub-item a:hover{
		color: #fff;
		transition: 0.3s;
	}

	.close-btn{
		position: absolute;
		background: url(../images/close.png);
		background-repeat: no-repeat;
		width: 40px;
		height: 40px;
		background-size: 25px;
		background-position: center;
		top: 0;
		left: 0;
		margin: 25px;
		cursor: pointer;
	}

	.menu-btn{
		background: url(../images/menu.png);
		background-repeat: no-repeat;
		width: 40px;
		height: 40px;
		background-size: 30px;
		background-position: center;
		cursor: pointer;
		display: block;
	}

	header{
		padding: 15px 20px;
	}

	header.sticky{
		padding: 10px 20px;
	}
}
/* ======Media Query For Desktop====== */

/* ======Media Query For Tablet====== */
@media only screen and (min-width: 768px) {
	.social-link-header {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* ====tfn==== */
	#tfn h1 {
		font-size: 7rem;
	}
	/* ====End tfn==== */

    /* ====museum==== */
	#museum .museum {
		flex-direction: row;
	}
	#museum .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#museum .museum .col-left .museum-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid #263677;
	}
	#museum .col-right {
		text-align: left;
		padding: 30px;
	}
	#museum .col-right h1 {
		text-align: left;
	}
	/* ====End museum==== */
}
/* ======Media Query For Tablet====== */