#header {
 position: fixed;
 top: 0;
 width: 100%;
 line-height: 1.2;
 color: #fff;
 z-index: 100;
}

#header.fixed {
 top: -36px;
/* -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
 -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
 box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);*/
}

#header,
#header * {
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#header {
 -webkit-transition: 0.5s ease-in-out;
 -moz-transition: 0.5s ease-in-out;
 -o-transition: 0.5s ease-in-out;
 transition: 0.5s ease-in-out;
}

#header li {
 padding: 0;
 margin: 0;
 list-style-type: none;
 background-image: none;
}


/* HEADER TOP */

#header_top {
 float: left;
 width: 100%;
 font-size: 13px;
 background-color: #575b5f;
}

#header_top .wrapper {
 height: 26px;
 padding: 0 14px;
}

#header_top .right {
 flex: auto;
 display: flex;
 justify-content: flex-end;
 align-content: center;
 float: right;
 height: 100%;
}

#header .phone {
 display: flex;
 align-items: center;
 font-size: 13px;
}

#header .phone img {
 width: 12px;
 height: 12px;
 margin: 0 5px 0 0;
}


/* HEADER BOTTOM */

#header_bottom {
 float: left;
 width: 100%;
}

#header.fixed #header_bottom {
 background-color: #e6e6e7;
}

#header_bottom .wrapper {
 display: flex;
 align-content: center;
 height: 80px;
 padding: 0 4.5%;
}

#header.fixed #header_bottom {
 height: 70px;
}

#header #logo {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 float: left;
 width: 276px;
}

#header #logo a {
 display: flex;
}

#header #logo a img {
 width: 266px;
 height: 30px;
}


/* TOPBAR */

#topbar {
 display: flex;
 justify-content: flex-end;
 align-items: center;
 flex: auto;
 float: left;
}


/* MENU */

#topbar #topbar_menu {
 display: flex;
 justify-content: flex-end;
 align-content: center;
 flex-wrap: wrap;
 float: right;
 width: 100%;
 height: 100%;
}

#topbar .btn_a,
#topbar .btn {
 position: relative;
 display: flex;
 align-content: center;
 float: left;
 margin: 0 0 0 52px;
}

#topbar .btn:first-child {
 margin: 0;
}

#topbar .btn>a,
#topbar .btn>a:link,
#topbar .btn>a:hover,
#topbar .btn>a:visited {
 position: relative;
 display: flex;
 align-items: center;
 padding: 10px 0;
 font-size: 14px;
 color: #16191c;
 text-transform: uppercase;
}

#topbar .btn.btn_a>a,
#topbar .btn.btn_a>a:link,
#topbar .btn.btn_a>a:hover,
#topbar .btn.btn_a>a:visited  {
 color: #dda710;
}

#topbar_menu>.btn>a:before,
#topbar_menu>.btn_a>a:before {
 display: block;
 content: '';
 width: 100%;
 height: 2px;
 background: #1f2428;
 width: 0;
 -webkit-transition: 250ms ease-in-out;
 -moz-transition: 250ms ease-in-out;
 -o-transition: 250ms ease-in-out;
 transition: 250ms ease-in-out;
}

#topbar_menu>.btn>a:before,
#topbar_menu>.btn_a>a:before {
 position: absolute;
 bottom: 0;
 left: 0;
}

#topbar_menu>.btn:hover>a:before {
 width: 100%;
}


@media screen and (max-width:1340px) {
 #topbar .btn_a, #topbar .btn {
  margin: 0 0 0 35px;
 }
}

@media screen and (max-width:1180px) {
 #topbar .btn_a, #topbar .btn {
  margin: 0 0 0 25px;
 }
}



/* SUBMENU */

#topbar .btn:hover .submenu {
 display: block;
}

#topbar .submenu {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 width: 100%;
 min-width: 250px;
 box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.5);
 border-bottom: 5px solid #f9c342;
 background: #fff;
}

#topbar .submenu {
 animation: show_submenu 0.4s ease-in-out;
}

@keyframes show_submenu {
 0% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}

#topbar .btn:last-child .submenu {
 left: auto;
 right: 0;
}

#topbar .child_btn {
 float: left;
 width: 100%;
 border-bottom: 1px solid #ddd;
}

#topbar .child_btn a,
#topbar .child_btn a:link,
#topbar .child_btn a:hover,
#topbar .child_btn a:visited {
 display: flex;
 padding: 8px 14px;
 font-weight: 400;
 font-size: 14px;
 color: #000;
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#topbar .child_btn a:hover {
 background-color: #e6e7e8;
}

#topbar .child_btn:last-child {
 border-bottom: none;
}

@media screen and (min-width:1100px) {
 #mobile_header {
  display: none;
 }
}

@media screen and (max-width:1100px) {
 #header {
  display: none;
 }
 #mobile_header {
  display: flex;
  justify-content: center;
  align-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #e6e6e7;
  background-color: #e6e6e7;
  /* -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);  */
  z-index: 100;
 }
}


/* MOBILE HEADER */

.mobile_header_menu {
 float: right;
 margin: 10px 8px 0 12px;
}

.mobile_header_logo {
 flex: auto;
 display: flex;
 justify-content: center;
 align-items: center;
}

.mobile_header_logo a {
 display: flex;
}

.mobile_header_logo img {
 width: 177px;
 height: 20px;
}

.mobile_header_phone {
 display: flex;
 align-items: center;
 float: left;
 padding: 0 16px;
}

.mobile_header_phone img {
 width: 20px;
 height: 20px;
 opacity: 0.7;
}


/* MENU start */

#mobile_menu {
 position: fixed;
 display: flex;
 flex-direction: column;
 top: 50px;
 right: 0;
 width: 100%;
 height: 0;
 /* for Firefox */
 min-height: 0;
 background-color: #F2F2F3;
 overflow-x: hidden;
 overflow-y: scroll;
 -webkit-transition: 0.4s ease-in-out;
 -moz-transition: 0.4s ease-in-out;
 -o-transition: 0.4s ease-in-out;
 transition: 0.4s ease-in-out;
 scrollbar-width: none;
 -ms-overflow-style: none;
 z-index: 999;
}

#mobile_menu .container {
 flex-grow: 1;
 /* for Firefox */
 width: 100%;
 max-width: 1200px;
 min-height: 0;
 padding: 10px 20px 20px 20px;
 scrollbar-width: none;
 -ms-overflow-style: none;
 overflow: auto;
}

#mobile_menu::-webkit-scrollbar {
 width: 0;
 height: 0;
}

#mobile_menu ul {
 float: left;
 width: 100%;
}

#mobile_menu ul li {
 padding: 0;
 margin: 0;
 list-style-type: none;
 text-decoration: none;
 background-image: none;
}


/* BTNS */

.main_btns li {
 float: left;
 width: 100%;
}

#mobile_menu .btn,
#mobile_menu .menu_link {
 float: left;
 width: 100%;
 margin: 0;
 clear: both;
 cursor: pointer;
}

#mobile_menu .btn {
 background: #F2F2F3;
 border-bottom: 1px solid #dadfe5;
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#mobile_menu .btn_a {
 background-color: #F2F2F3;
}

#mobile_menu .active .btn {
 background-color: #16191c;
}

#mobile_menu .active .btn span,
#mobile_menu .active .btn a:link,
#mobile_menu .active .btn a:hover,
#mobile_menu .active .btn a:visited {
 color: #fff;
}

#mobile_menu .btn.has_children {
 display: flex;
}

#mobile_menu .btn.has_children .icon {
 align-self: center;
 min-width: 45px;
 padding: 0 13px 0 0;
 text-align: right;
}

#mobile_menu .btn.has_children .icon img {
 width: 15px;
 height: 15px;
 margin: 8px 0 0 0;
 transform: rotate(-45deg);
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#mobile_menu .active .btn.has_children .icon img {
 transform: rotate(0);
}

#mobile_menu .special_btns {
 display: flex;
 flex-wrap: wrap;
 float: left;
 width: 100%;
}

#mobile_menu .special_btns.bottom {
 margin: 25px 0 0 0;
}

#mobile_menu .special_btn {
 display: flex;
 align-items: center;
 width: 49%;
 min-height: 35px;
 padding: 12px 14px;
 margin: 0 1% 2% 0;
 font-weight: 400;
 font-size: 12px;
 line-height: 1.1;
 color: #000;
 background-color: #f9c342;
 border-bottom: none;
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#mobile_menu .special_btn:nth-child(2n) {
 margin: 0 0 2% 1%;
 background-color: #f9c342;
}

#mobile_menu .special_btns.bottom .special_btn {
 color: #fff;
 background-color: #808285;
}

#mobile_menu .special_btn.phone {
 font-size: 14px;
}

#mobile_menu .agents_login img,
#mobile_menu .res_check img {
 width: 10px;
 height: 12px;
 margin: 0 10px 0 0;
}

#mobile_menu .enquiry img {
 width: 15px;
 height: 16px;
 margin: 0 8px 0 0;
}

#mobile_menu .phone img {
 width: 14px;
 height: 14px;
 margin: 0 8px 0 0;
}


/* MAIN BTN */

#mobile_menu .btn span,
#mobile_menu .btn a:link,
#mobile_menu .btn a:hover,
#mobile_menu .btn a:visited {
 flex: auto;
 display: inline-block;
 width: 100%;
 padding: 12px 14px 9px 14px;
 font-weight: 400;
 font-size: 14px;
 line-height: 1.4;
 color: #000;
 text-transform: uppercase;
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

#mobile_menu .btn_a span,
#mobile_menu .btn_a a,
#mobile_menu .btn_a a:link,
#mobile_menu .btn_a a:hover,
#mobile_menu .btn_a a:visited {
 color: #dfa51a;
}


/* CHILD BTN */

.child_menu {
 float: left;
 width: 100%;
 height: 0;
 border-bottom: 1px solid #c6ccd2;
 background-color: #e0e0e3;
 transition: height 0.35s ease-in-out;
 overflow: hidden;
}

.main_btns li:not(.active) .child_menu {
 display: none;
}

#mobile_menu .menu_link a,
#mobile_menu .menu_link a:link,
#mobile_menu .menu_link a:hover,
#mobile_menu .menu_link a:visited {
 display: inline-block;
 width: 100%;
 padding: 12px 14px 9px 14px;
 font-weight: 400;
 font-size: 14px;
 line-height: 1.4;
 color: #000;
 background-color: transparent;
 border-bottom: 1px solid #c6ccd2;
}

#mobile_menu .menu_link:last-child a {
 border-bottom: none;
}


/*  */

#mobile_menu .secondary_btns {
 float: left;
 width: 100%;
 padding: 0 14px;
}

#mobile_menu .title {
 float: left;
 width: 100%;
 margin: 30px 0 15px 0;
 font-weight: 700;
 font-size: 13px;
 text-transform: uppercase;
 opacity: 0.6;
}

#mobile_menu .secondary_btn {
 float: left;
 width: 50%;
 cursor: pointer;
}

#mobile_menu .secondary_btn a,
#mobile_menu .secondary_btn a:link,
#mobile_menu .secondary_btn a:hover,
#mobile_menu .secondary_btn a:visited {
 display: block;
 padding: 4px 8px 6px 0;
 font-weight: 400;
 font-size: 14px;
 line-height: 1.4;
 color: #000;
}

#mobile_menu .secondary_btn:nth-child(2n) a,
#mobile_menu .secondary_btn:nth-child(2n) a:link,
#mobile_menu .secondary_btn:nth-child(2n) a:hover,
#mobile_menu .secondary_btn:nth-child(2n) a:visited {
 padding-right: 0;
 padding-left: 8px;
}

#mobile_menu .secondary_btn_a a,
#mobile_menu .secondary_btn_a a:link,
#mobile_menu .secondary_btn_a a:hover,
#mobile_menu .secondary_btn_a a:visited {
 color: #dfa51a;
}

#mobile_menu .s0cials {
 display: flex;
 flex-wrap: wrap;
 float: left;
 width: 100%;
 padding: 0 14px;
}

#mobile_menu .s0cials .s0cial {
 display: flex;
 justify-content: center;
 align-items: center;
 float: left;
 width: 35px;
 height: 35px;
 margin: 0 9px 9px 0;
 background-color: #16191c;
}

#mobile_menu .s0cials .s0cial img {
 width: 20px;
 height: 20px;
}


/*  */

#menu_toggle * {
 transition: 0.1s ease-in-out;
}

#menu_toggle span {
 display: block;
 background: #4d4a49;
}

#menu_toggle {
 width: 32px;
 height: 32px;
 position: relative;
 cursor: pointer;
}

#menu_toggle #hamburger {
 position: absolute;
 width: 100%;
 height: 100%;
}

#menu_toggle #hamburger span {
 position: relative;
 width: 24px;
 height: 2px;
 margin: 6px auto 0 auto;
}

#menu_toggle #hamburger span:nth-child(1) {
 transition-delay: 0.5s;
}

#menu_toggle #hamburger span:nth-child(2) {
 transition-delay: 0.625s;
}

#menu_toggle #hamburger span:nth-child(3) {
 transition-delay: 0.75s;
}

#menu_toggle #cross {
 position: absolute;
 width: 100%;
 height: 100%;
 transform: rotate(45deg);
}

#menu_toggle #cross span:nth-child(1) {
 position: absolute;
 top: 50%;
 left: 50%;
 width: 2px;
 height: 0%;
 transform: translate(-50%, -50%);
 transition-delay: 0s;
}

#menu_toggle #cross span:nth-child(2) {
 position: absolute;
 top: 50%;
 left: 50%;
 width: 0%;
 height: 2px;
 transform: translate(-50%, -50%);
 transition-delay: 0.25s;
}

#menu_toggle.open #hamburger span {
 width: 0%;
}

#menu_toggle.open #hamburger span:nth-child(1) {
 transition-delay: 0s;
}

#menu_toggle.open #hamburger span:nth-child(2) {
 transition-delay: 0.125s;
}

#menu_toggle.open #hamburger span:nth-child(3) {
 transition-delay: 0.25s;
}

#menu_toggle.open #cross span:nth-child(1) {
 height: 80%;
 transition-delay: 0.625s;
}

#menu_toggle.open #cross span:nth-child(2) {
 width: 80%;
 transition-delay: 0.375s;
}
