 .window {
	 position: relative;
	 display: block;
	 width: 100%;
	 margin: 0 auto 0;
	 box-shadow: 0 0 65px 15px rgba(0, 0, 0, 0.2);
	 overflow: hidden;
	 border-radius: 3px;
	 background: #f1f1f1;
}
 .window .header {
	 position: fixed;
	 display: block;
	 top: 0;
	 left: 0;
	 height: 50px;
	 width: 100%;
	 background: url(../images/b0.jpg);
	 background-size: cover;
	 overflow: hidden;
	 transition: all 0.5s ease-out, background 1s ease-out;
	 transition-delay: 0.2s;
	 z-index: 99999999;
}
 .window .header .burger-container {
	 position: relative;
	 display: inline-block;
	 height: 50px;
	 width: 50px;
	 cursor: pointer;
	 transform: rotate(0deg);
	 transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
	 user-select: none;
	 -webkit-tap-highlight-color: transparent;
}
 .window .header .burger-container #burger {
	 width: 18px;
	 height: 8px;
	 position: relative;
	 display: block;
	 margin: -4px auto 0;
	 top: 50%;
}
 .window .header .burger-container #burger .bar {
	 width: 100%;
	 height: 1px;
	 display: block;
	 position: relative;
	 background: #fff;
	 transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
	 transition-delay: 0s;
}
 .window .header .burger-container #burger .bar.topBar {
	 transform: translateY(0px) rotate(0deg);
}
 .window .header .burger-container #burger .bar.btmBar {
	 transform: translateY(6px) rotate(0deg);
}
 .window .header .icon {
	 display: inline-block;
	 position: absolute;
	 line-height: 50px;
	 width: 110px;
	 text-align: center;
	 color: #fff;
	 font-size: 16px;
	 left: 50%;
	 transform: translateX(-50%);
}
 .window .header .icon.icon-bag {
	 right: 0;
	 top: 0;
	 left: auto;
	 transform: translateX(0px);
	 transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
	 transition-delay: 0.65s;
}
 .window .header ul.menu {
	 position: relative;
	 display: block;
	 padding: 0px 30px 0;
	 list-style: none;
}
.window .header ul.menu--con {
    position: relative;
    padding: 0px 10px 0;
    list-style: none;
}
 .window .header ul.menu li.menu-item {
	 border-bottom: 1px solid #ebebeb;
	 margin-top: 5px;
	 transform: scale(1.15) translateY(-5px);
	 opacity: 0;
	 transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
 .window .header ul.menu li.menu-item:nth-child(1) {
	 transition-delay: 0.49s;
}
 .window .header ul.menu li.menu-item:nth-child(2) {
	 transition-delay: 0.42s;
}
 .window .header ul.menu li.menu-item:nth-child(3) {
	 transition-delay: 0.35s;
}
 .window .header ul.menu li.menu-item:nth-child(4) {
	 transition-delay: 0.28s;
}
 .window .header ul.menu li.menu-item:nth-child(5) {
	 transition-delay: 0.21s;
}
 .window .header ul.menu li.menu-item:nth-child(6) {
	 transition-delay: 0.14s;
}
 .window .header ul.menu li.menu-item:nth-child(7) {
	 transition-delay: 0.07s;
}
.window .header ul.menu li.menu-item a {
    display: block;
    position: relative;
    color: #fff;
    font-weight: 100;
    text-decoration: none;
    font-size: 16px;
    line-height: 2.35;
    font-weight: 200;
    padding-right: 35px;
    width: 100%;
}
 .window .header.menu-opened {
	 height: 100%;
	 background-color: #1693f6;
	 transition: all 0.3s ease-in, background 0.5s ease-in;
	 transition-delay: 0.25s;
}
 .window .header.menu-opened .burger-container {
	 transform: rotate(90deg);
}
 .window .header.menu-opened .burger-container #burger .bar {
	 transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
	 transition-delay: 0.2s;
}
 .window .header.menu-opened .burger-container #burger .bar.topBar {
	 transform: translateY(4px) rotate(45deg);
}
 .window .header.menu-opened .burger-container #burger .bar.btmBar {
	 transform: translateY(3px) rotate(-45deg);
}
 .window .header.menu-opened ul.menu li.menu-item {
	 transform: scale(1) translateY(0px);
	 opacity: 1;
}
 .window .header.menu-opened ul.menu li.menu-item:nth-child(1) {
	 transition-delay: 0.27s;
}
 .window .header.menu-opened ul.menu li.menu-item:nth-child(2) {
	 transition-delay: 0.34s;
}
 .window .header.menu-opened ul.menu li.menu-item:nth-child(3) {
	 transition-delay: 0.41s;
}
 .window .header.menu-opened ul.menu li.menu-item:nth-child(4) {
	 transition-delay: 0.48s;
}
 .window .header.menu-opened ul.menu li.menu-item:nth-child(5) {
	 transition-delay: 0.55s;
}
 .window .header.menu-opened ul.menu li.menu-item:nth-child(6) {
	 transition-delay: 0.62s;
}
 .window .header.menu-opened ul.menu li.menu-item:nth-child(7) {
	 transition-delay: 0.69s;
}
 .window .header.menu-opened .icon.icon-bag {
	 transform: translateX(75px);
	 transition-delay: 0.3s;
}
 .window .content {
	 padding: 67px 4% 0;
	 text-align: justify;
	 overflow: scroll;
	 max-height: 100%;
}
 .window .content::-webkit-scrollbar {
	 display: none;
}
 .window .content h2 {
	 margin-bottom: 0px;
	 letter-spacing: 1px;
}
 .window .content img {
	 width: 95%;
	 position: relative;
	 display: block;
	 margin: 75px auto 75px;
}
 .window .content img:nth-of-type(2) {
	 margin: 75px auto;
}
.search-btn {
    position: absolute;
    z-index: 1;
    right: 15px;
    top: 18px;
}
.modal-dialog.modal-notify.modal-success .badge, .modal-dialog.modal-notify.modal-success .modal-header {
    background-color: #283890;
}
.my-css {
	padding: 5px 15px;
	color: #ffffff;
	font-size: 14px;
	border: 0 !important;
	outline: 0 !important;
}
.menu-con {
	display: none;
}
.btn_expand_menu_cloud {
    display: block;
    width: 40px;
    height: 41px;
    position: absolute;
	right: 0px;
    top: 2px;
    background-size: 15px 15px !important;
    z-index: 99;
}
.btn_expand_menu_cloud:before {
    content: '';
    background-color: white;
    position: absolute;
    top: 15px;
    right: 10px;
    width: 15px;
    height: 2px;
}
.btn_expand_menu_cloud:after {
    content: '';
    background-color: white;
    position: absolute;
    top: 9px;
    right: 16px;
    width: 2px;
    height: 15px;
}
.main_manu_cloud li {
    display: block;
    position: relative;
}







 @media (max-width: 600px) {
	 .window {
		 width: 100%;
		 /* height: 100vh; */
		 margin: 0;
		 border-radius: 0px;
	}
	 .window .header {
		 position: fixed;
	}
}
 