#mobile_header {
 display: none;
}

@media screen and (max-width:1200px) {

#mobile_header {
 display: flex;
 justify-content: center;
 align-content: center;
 position: fixed;
 top: 0;
 width: 100%;
 height: 50px;
 border-bottom: 3px solid #b90e20;
 background-color: #e8e8e8;
 /* -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: 132px;
 height: 36px;
}

.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: #fff;
 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: 20px 20px 20px 20px;
 scrollbar-width: none;
 -ms-overflow-style: none;
 overflow: auto;
}

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

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

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


/* BTNS */

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

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

.main_btns .btn {
 background: #fff;
 border-top: 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;
}

.main_btns li:last-child .btn {
 border-bottom: 1px solid #dadfe5;
}

.main_btns .btn_a {
 background-color: #fff;
}

.main_btns .active .btn {
/*  border-radius: 5px 5px 0 0; */
 border-top: 1px solid transparent;
 background-color: #b90e20;
}

.main_btns .active + li .btn {
 border-top: 1px solid transparent;
}

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

.main_btns .btn.has_children {
 display: flex;
}

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

.main_btns .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;
}

.main_btns .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: 100%;
 min-height: 35px;
 padding: 7px 14px;
 margin: 5px 0 15px 0;
/*  font-weight: 700; */
 font-size: 14px;
 line-height: 1.1;
 color: #fff;
/*  border-radius: 5px; */
 background-color: #b90e20;
 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: #b90e20;
}

#mobile_menu .special_btns.bottom .special_btn {
 color: #282828;
 background-color: #efefef;
}

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

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

#mobile_menu .enquiry img  {
 width: 12px;
 height: 12px;
 margin: 0 10px 0 0;
}

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

/* MAIN BTN */

.main_btns .btn span,
.main_btns .btn a:link,
.main_btns .btn a:hover,
.main_btns .btn a:visited {
 flex: auto;
 display: inline-block;
 width: 100%;
 padding: 12px 14px 9px 14px;
/*  font-weight: 700; */
 font-size: 16px;
 line-height: 1.4;
 color: #282828;
 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;
}

.main_btns .btn_a span,
.main_btns .btn_a a,
.main_btns .btn_a a:link,
.main_btns .btn_a a:hover,
.main_btns .btn_a a:visited {
 color: #b90e20;
}


/* CHILD BTN */

.main_btns .child_menu {
 float: left;
 width: 100%;
 height: 0;
/*  border-radius: 0 0 5px 5px; */
 border-bottom: 1px solid #fff;
 background-color: #e8e8e8;
 transition: height 0.35s ease-in-out;
 overflow: hidden;
}

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

.main_btns .menu_link a,
.main_btns .menu_link a:link,
.main_btns .menu_link a:hover,
.main_btns .menu_link a:visited {
 display: inline-block;
 width: 100%;
 padding: 11px 14px 11px 14px;
 font-weight: 400;
 font-size: 15px;
 line-height: 1.4;
 color: #282828;
 background-color: transparent;
 border-bottom: 1px solid #fff;
}

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


/*  */
/*  */

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

#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: 700; */
 font-size: 15px;
 line-height: 1.4;
 color: #282828;
}

#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: #b90e20;
}

/*  */

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

#menu_toggle span {
 display: block;
 background: #b90e20;
}

#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;
}

}
