/*@font-face{
    font-family: "Roboto";
    src: url("fonts/roboto/Roboto-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}*/


.nav_btn {
  position: absolute;
  top: 15px;
  left: 12px;
  width: 38px;
  cursor: pointer;
}

.nav_btn span {
  display: block;
  width: 100%;
/*
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.3);
*/
  border-radius: 3px;
  height: 4px;
  background: #2e2e2e;
  transition: all .3s;
  position: relative;
}

.nav_btn span + span {
  margin-top: 6px;
}

.nav_btn.active span:nth-child(1) {
  animation: ease .7s top forwards;
}

.nav_btn.not-active span:nth-child(1) {
  animation: ease .7s top-2 forwards;
}

.nav_btn.active span:nth-child(2) {
  animation: ease .7s scaled forwards;
}

.nav_btn.not-active span:nth-child(2) {
  animation: ease .7s scaled-2 forwards;
}

.nav_btn.active span:nth-child(3) {
  animation: ease .7s bottom forwards;
}

.nav_btn.not-active span:nth-child(3) {
  animation: ease .7s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 10px;
    transform: rotate(0);
  }
  100% {
    top: 10px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 10px;
    transform: rotate(45deg);
  }
  50% {
    top: 10px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 10px;
    transform: rotate(0);
  }
  100% {
    bottom: 10px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 10px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 10px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}





html, body{
    font-family: arial;
    height: 100%;
}

.header{
    position: relative;
}

#logo_grid_cell{
    position: relative;
    height: auto;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

#logo_grid_cell .logo_box {
    width: 100%;
    height: 70px;
    float: none;
}

#logo_grid_cell .logo_box a{
    display: block;
    height: 100%;
    width: 100%;
    background-image: url("img/logo@4x.png?v=2");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

#logo_grid_cell .search_box{
    position: relative;
    width: 100%;
}

#logo_grid_cell .search_box input{
    width: 95%;
    height: 36px;
    border: solid 1px #e1e1e1;
    border-radius: 5px;
    padding-left: 2%;
}

#logo_grid_cell .search_box button{
    font-family: arial;
    position: absolute;
    right: 0px;
    width: 41px;
    height: 36px;
    border: none;
    background-color: #cb4e2d;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-size: 22px;
}

#logo_grid_cell .search_box button span{
    display: block;
    -webkit-transform: rotate(-45deg); 
    -moz-transform: rotate(-45deg); 
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#logo_grid_cell .phone_box{
    width: auto;
    margin: 18px 18px 18px 0;
    font-weight: bold;
    float: left;
}

#logo_grid_cell .phone_box .title{
    display: block;
    text-transform: uppercase;
    color: #cb4e2d;
    text-align: center;
}

#logo_grid_cell .phone_box .phone{
    display: block;
    color: #4a4a4a;
    text-align: center;
}

#logo_grid_cell .phone_box .phone a{
    color: #4a4a4a;
    text-align: center;
}

#logo_grid_cell .cart_box{
    position: relative;
    width: 20px;
    height: 20px;
    margin: 28px 15px 0;
    float: right;
}

#logo_grid_cell .cart_box a{
    display: block;
    width: 20px;
    height: 20px;
    text-decoration: none;
    
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("img/cart@4x.png");
    background-size: 20px 20px;
}

#logo_grid_cell .cart_box .items{
    position: absolute;
    top: -10px;
    left: 10px;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 20px;
    background-color: #cb4e2d;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.8em;
}

#navigation_box{
    width: 100%;
    height: auto;
    background-color: #d8d8d8;
}

#navigation{
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    height: auto;
}

#navigation ul{
    text-align: center;
    list-style: none;
    height: 100%;
}

#navigation ul li{
    position: relative;
    float: none;
    padding: 0 2%;
    height: auto;
}

#navigation ul li a{
    font-family: arial;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    color: #2e2e2e;
    font-weight: bold;
    display:block;
    line-height: 3.5em;
    height: 54px;
}

#navigation ul li#burger{
    padding: 0;
    height: 54px;
}

#navigation ul li#burger:hover{
    background-color: transparent;
}

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

.header_img.text_page{
    margin: 0 0 2em;
}

.header_img .img_box{
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.header_img .img_box img{
    display: block;
    width: 100%;
}

.header_img .img_box .title_box{
    position: absolute;
    left: 6%;
    width: 50%;
    top: 10%;
    text-align: left;
    color: #fff;
}

.header_img .img_box .title_box h1{
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1.1em;
}

.header_img .img_box .title_box p{
    font-size: 1em;
}

#footer{
    background-color: #d8d8d8;
    padding: 30px 0 15px;
    margin: 55px 0 0;
}

#footer .container{
    padding: 0 5%;
}

.content_body #footer{
    margin: 0;
}

.filter_box{
    border: solid 1px #eeeeef;
    margin: 10px;
    padding: 10px;
}

.select_order,
.select_direction{
    border: solid 1px #eeeeef;
    border-radius: 4px;
    background-color: #fff;
    height: 34px;
}


.select-css {
	color: #444;
	line-height: 1.3;
	padding: 6px 24px 6px 6px;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #eeeeef;

	border-radius: 4px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,<svg width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path d='m0,6l12,12l12,-12l-24,0z'/><path fill='none' d='m0,0l24,0l0,24l-24,0l0,-24z'/></svg>");
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
	display: none;
}
.select-css:hover {
	border-color: #888;
}
.select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: none;
}
.select-css option {
	font-weight:normal;
}

.btn_order{
    background-color: #cb4e2d;
    border: solid 1px #cb4e2d;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 0;
    color: #fff;
    cursor: pointer;
}





.navblock{
    text-align: center;
}

.navblock h5{
    text-align: left;
    font-size: 14px;
    text-decoration: none;
    color: #4c4c4c;
    margin: 5px 0 20px;
    font-weight: bold;
}

.navblock ul{
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.navblock ul li{
    margin: 3px 0 0 0;
}

.navblock ul li a{
    font-size: 13px;
    text-decoration: none;
    color: #4c4c4c;
}

.navblock ul li a:hover{
    text-decoration: underline;
}

#footer .copyr{
    font-family: Roboto, arial, serif;
    font-size: 12px;
    color: #4c4c4c;
    margin: 20px 0 0 0;
}

.title_box{
    padding-top: 0;
    padding-bottom: 0;
}

main p{
    font-family: Roboto, arial, serif;
    font-size: 16px;
    color: #2c150d;
    text-align: left;
    margin: 0 0 1em;
    padding: 0;
}

main ul{
    padding: 0 0 0 20px;
}

main ol{
    padding: 0 0 0 20px;
}

main a{
    color: #4a4a4a;
}

main p.description{
    margin: 0;
    margin-bottom: 25px;
}

.category_box{
    float: none;
    margin: auto;
    margin-top: 3%;
}

.category_box .img{
    position: relative;
    width: 100%;
    padding-top: 44%;
}

.category_box .img img{
    position: absolute;
    top: 0;
    width: 100%;
}

.category_box .box{
    position: relative;
    min-height: 220px;
    border-top: solid 2px #fff;
    border-radius: 0 0 10px 10px;
    background-color: #32302f;
    padding: 6% 8%;
}

.category_box .box .title{
    color: #fff;
    font-size: 24px;
    margin: 0 0 14px;
}

.category_box .box ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.category_box .box ul li{
    margin: 0 0 2px;
}

.category_box .box ul li.read_all{
    position: absolute;
    bottom: 16px;
    right: 24px;
}

.category_box .box a{
    color: #eeeeef;
    text-decoration: none;
    font-size: 14px;
}

.category_box .box a:hover{
    text-decoration: underline;
}

.product_box{
    margin: 0;
}

.product_box .img{
    position: relative;
    width: 100%;
    padding-top: 100%;
    border: solid 1px #eeeeef;
    border-bottom: none;
    overflow: hidden;
}

.product_box .img img{
    position: absolute;
    top: 0;
    height: 100%;
}

.product_box .box{
    position: relative;
    width: 100%;
    padding-top: 100%;
    border: solid 1px #eeeeef;
    border-top: none;
}

.product_box .box .inner{
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 5%;
    height: 100%;
    background-color: #f6f6f7;
}

.product_box .box .inner .title{
    font-size: 15px;
    font-weight: normal;
    height: 50%;
}

.product_box .box .inner .title a{
    color: #515151;
    text-decoration: none;
}

.product_box .box .inner .title a:hover{
    text-decoration: underline;
}

.product_box .box .inner .price_box{
    height: 37%;
}

.product_box .box .inner .currency{
    color: #4a4a4a;
    font-size: 16px;
}

.product_box .box .inner .price{
    color: #4a4a4a;
    font-weight: bold;
    font-size: 18px;
}

.striped{
    display: inline;
}

.striped span{
    text-decoration: line-through;
    font-size: 12px !important;
}

.striped.large span{
    text-decoration: line-through;
    font-size: 18px !important;
}

.product_box .box .inner .to_cart{
    padding: 2% 5% 2.4%;
    background-color: #cb4e2d;
    color: #eeeeef;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
}

.product_box .box .inner .to_cart:hover{
    text-decoration: underline;
}

.product_brand{
    display: block;
    width: 100%;
    margin: 8px 0 0 0;
    height: 18px;
}

.product_brand img{
    display: block;
    height: 100%;
    width: auto;
}

.breadcrumbs{
    color: #9b9b9b;
    margin: 25px 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
}

.breadcrumbs a{
    color: #9b9b9b;
    text-decoration: none;
    text-transform: uppercase;
}

.breadcrumbs .current{
    text-transform: uppercase;
}

.breadcrumbs a:hover{
    text-decoration: underline;
}

.content_body h1{
    color: #4a4a4a;
    font-size: 34px;
    margin: 0 0 25px;
}

.block{
    display: block;
}

.clear{
    clear: both;
}

.product_card h1{
    font-weight: normal;
}

.product_card .top_part{
    position: relative;
}

.product_card .price{
    text-align: center;
    margin: 0 0 5% 0;
}

.product_card .img img{
    display: block;
    width: 100%;
}

.product_card .thumbs{
    text-align: center;
}

.product_card .thumbs a{
    text-decoration: none;
}

.product_card .price_box{
    margin: 0 0 3.5% 0;
}

.product_card .price_box .currency{
    color: #4a4a4a;
    font-size: 36px;
    font-weight: bold;
    margin: 0 3% 0 0;
}

.product_card .price_box .amount{
    color: #4a4a4a;
    font-weight: bold;
    font-size: 48px;
}

.product_card .to_cart{
    padding: 2.4% 4% 2.2%;
    background-color: #cb4e2d;
    color: #eeeeef;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
}

.product_card .to_cart:hover{
    text-decoration: underline;
}

.cart_line{
    background-color: #efeff0;
    border-radius: 10px;
    width: 60%;
    margin: 0 auto 3%;
}

.cart_line .img img{
    display: block;
    margin: 0 auto;
}

.cart_line .title h4{
    color: #4c4c4c;
    font-weight: normal;
    font-size: 17px;
}


.cart_line .quantity .lbl{
    font-size: 14px;
    color: #4c4c4c;
}

.cart_line .quantity .quantity{
    font-size: 28px;
    color: #4c4c4c;
}

.cart_line .quantity .to_cart{
    font-size: 28px;
    color: #4c4c4c;
    text-decoration: none;
}

.cart_line .price{
    color: #4a4a4a;
    font-weight: bold;
    font-size: 32px;
}

.cart_line .price .symbol{
    font-size: 28px;
}

.cart_line .remove a{
    color: #fff;
    font-size: 52px;
    text-decoration: none;
    line-height: 0em;
}

.cart_line .title,
.cart_line .quantity,
.cart_line .price,
.cart_line .remove{
    text-align: center;
}

.grand_total{
    text-align: right;
    color: #4a4a4a;
    margin: 4% 0;
}

.grand_total .lbl{
    position: relative;
    top: -6px;
    font-size: 16px;
    padding: 0 1% 0 0;
}

.grand_total .symbol{
    font-size: 32px;
    padding: 0 1% 0 0;
    font-weight: bold;
}

.grand_total .total{
    font-size: 42px;    
    font-weight: bold;
}

.large_btn a{
    display: block;
    margin: 1% 0;
    padding: 1% 0;
    background-color: #cb4e2d;
    color: #eeeeef;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
}

.large_btn button{
    display: block;
    margin: 1% 0;
    padding: 2.5% 0;
    background-color: #cb4e2d;
    color: #eeeeef;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    border: none;
    width: 100%;
}

.large_btn a:hover{
    text-decoration: underline;
}

.large_btn.half{
    margin: 0.8em 0 0 auto;
    width: 50%;
}

.large_btn.right{
    margin-left: auto;
}

.large_btn.center{
    margin-left: auto;
    margin-right: auto;
}

.large_btn.outline button{
    border: solid 1px #cb4e2d;
    color: #cb4e2d;
    background-color: white;
    cursor: pointer;
}

.no_search_results{
    text-align: center;
    font-size: 22px;
    color: #4c4c4c;
    margin: 0;
}

.order_completed{
    position: relative;
    
    min-height: 316px;
}

.order_completed p{
    text-align: center;
    font-size: 30px;
    color: #4c4c4c;
    
    line-height: 1.5em;
    position: absolute;
    top: 50%;
    left: 0;
   -webkit-transform: translate(0, -50%);
   -moz-transform: translate(0, -50%); 
   -ms-transform: translate(0, -50%); 
   -o-transform: translate(0, -50%); 
   transform: translate(0, -50%); 
}

.order_completed .order_num{
    text-transform: uppercase;
    font-weight: bold;
}

.content.frm{
    margin-bottom: 1.5em;
}

.frm label{
    color: #4c4c4c;
    display: block;
    margin: 0.4em 0.8em 0;
    font-size: 14px;
}

.frm input{
    width: 97%;
    height: 36px;
    border: none;
    border-radius: 10px;
    padding-left: 0.8em;
    color: #7F7F7F;
    font-size: 16px;
}

.frm .item.plain{
    border: none;
    margin: 0;
}

.frm .item.plain label{
    margin: 0;
}

.frm .item{
    margin: 0 0 1.5em;
    border: solid 1px #4D4D4D;
    border-radius: 10px;
}

.frm .item.split{
    padding: 0;
    width: 49%;
}

.frm .item.split.right{
    margin: 0 0 0 2%;
}

.frm .item span{
    display: block;
    
    color: #cb4e2d;
    margin: 0 0.8em 0.4em;
    font-size: 14px;
}

.frm .item.plain span{
    margin: 0.3em 0 0;
}

.frm .item.accept_rules{
    text-align: left;
}

.frm .item .accept_rules input{
    width: auto;
    height: auto;
}

.frm .item .accept_rules span{
    display: inline;
    color: #4c4c4c;
}
.frm .item .accept_rules a{
    color: #cb4e2d;
}
.frm .item .accept_rules a:hover{
    text-decoration: none;
}


#navigation .sub_menu{
    position: relative;
    height: auto;
    width: auto;
    background-color: #d8d8d8;
    
    height: auto;
    display: none;
    
    padding: 10px;
}

#navigation .sub_menu li{
    float: none;
    height: auto;
    padding: 15px;
}

#navigation .sub_menu li a{
    font-size: 14px;
    text-transform: none;
    height: auto;
    line-height: 1.1em;
    color: #2e2e2e;
}

#navigation .sub_menu.open{
    display: block;
}

#navigation .sub_menu.close{
    display: none;
}

#navigation .handle{
    position: absolute;
    display: block;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    cursor: pointer;
}



#navigation .handle .icon{
  box-sizing: border-box;
  transition: transform 0.3s;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  position: relative;
  top: 5px;
  left: 5px;
}

#navigation .handle.open  .icon{
  transform: rotate(0deg);
}

#navigation .handle .icon::before {
  content: '';
  display: block;
  width: 24px;
  height: 0px;
  border-bottom: solid 2px #2e2e2e;
  position: absolute;
  bottom: 11px;
  transform: rotate(90deg);
  transition: width 0.3s;
}
#navigation .handle.open .icon::before {
  content: '';
  display: block;
  width: 0px;
  height: 0px;
  border-bottom: solid 2px #2e2e2e;
  position: absolute;
  bottom: 11px;
  transform: rotate(90deg);
}

#navigation .handle .icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 0px;
  border-bottom: solid 2px #2e2e2e;
  position: absolute;
  bottom: 11px;
}

.cart_view{
    position: relative;
    background-color: #efeff0;
    border-radius: 10px;
    padding: 4% 4% 70px;
    min-height: 316px;
    color: #4a4a4a;
}

.cart_view h4{
    color: #4a4a4a;
    font-size: 20px;
}

.cart_view ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart_view .total_box{
    position: absolute;
    bottom: 0;
    width: 92%;
    height: 50px;
}

.cart_view .price{
    text-align: right;
}

.product_card .description h2{
    margin: 0 0 15px 0;
}

.product_card .description .youtube-embed-wrapper{
    margin: 15px 0 0 0;
}

.product_card .specification h3{
    margin: 20px 0 10px;
}

.product_card .specification h3:first-child{
    margin-top: 0px;
}

.product_card .specification h4{
    margin: 5px 0 5px 10px;
}

.product_card .specification ul{
    padding: 0 0 0 25px;
}

.product_card .specification .spec_info{
    padding: 0 0 0 25px;
}


/*********************************************************************************************

3.  Grid 720px+

*********************************************************************************************/

@media (min-width: 720px) {
    #navigation ul li:hover{
        background-color: #cb4e2d;
    }

    #navigation ul li:hover a{
        color: #fff;
    }
    
    #navigation_items li .sub_menu.close,
    #navigation_items li .sub_menu.open{
        display: none;
    }
    
    #navigation_items li:hover .sub_menu{
        display: block;
    }

    #navigation .sub_menu{
        position: absolute;
        height: auto;
        width: 300px;
        
        z-index: 100;
        height: auto;
        display: none;
        left: 0;
        padding: 10px;
    }
    
    #navigation_items li:hover .sub_menu li{
        background-color: transparent;
        cursor: pointer;
    }

    #navigation_items li:hover .sub_menu li a{
        color: #2e2e2e;
    }
    
    #navigation_items li:hover .sub_menu li:hover a{
        color: #cb4e2d;
    }

    #navigation_items li:hover .sub_menu li a:hover{
        color: #cb4e2d;
    }
    
    #navigation .handle{
        display: none;
    }

    #navigation_items{
        display: block !important;
    }
    
    #logo_grid_cell{
        height: 70px;
    }
    
    #logo_grid_cell .logo_box {
        width: 192px;
        float: left;
    }
    
    #logo_grid_cell .logo_box a{
        background-size: 100% 100%;
    }
    
    #logo_grid_cell .search_box{
        width: 40%;
        float: left;
        margin: 18px 0 0 5%;
    }

    #logo_grid_cell .search_box input{
        width: 90%;
        padding-left: 3% 
    }

    #logo_grid_cell .search_box button{
        right: 10px;
    }
    
    #logo_grid_cell .phone_box{
        width: 20%;
        margin: 18px 0 18px 0;
    }
    
    .header_img .img_box .title_box h1{
        font-size: 4em;
        font-weight: bold;
    }

    .header_img .img_box .title_box p{
        font-size: 2.5em;
    }
    
    #burger{
        display: none;
    }
    
    #navigation_box{
        height: 54px;
    }
    
    #navigation{
        height: 54px;
    }
    
    #navigation ul{
        text-align: left;
    }
    
    #navigation ul li{
        float: left;
        height: 100%;
    }

    #main_img{
        top: 8%;
        width: 90%;
        padding-top: 37%;
        margin: 0 5%;
        border: solid 10px #fff;
    }

    #main_img .title_box h1{
        font-size: 44px;
    }

    #main_img .title_box p{
        font-size: 16px;
        margin: 10px 15% 20px;
        font-weight: bold;
    }
    
    .product_card .price{
        margin: 5% auto 5%;
    }
    
    .cart_line{
        width: 100%;
        margin: 0 0 1%;
        height: 120px;
    }
    
    .cart_line .img img{
        margin: 0;
    }
    
    .cart_line .title,
    .cart_line .quantity,
    .cart_line .price,
    .cart_line .remove{
        position: relative;
        height: 100%;
    }
    
    .cart_line .title h4,
    .cart_line .quantity .ctrl,
    .cart_line .price .box,
    .cart_line .remove a{
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .cart_line .title{
        text-align: left;
    }
    
    .cart_line.dummy{
        background-color: white;
    }

    .content{
        top: -50px;
    }
    
    .category_box{
        float: left;
    }
    
    .results{
        margin: 0 0 1.5em;
    }
    
    .order_completed p{
        padding: 0 10%;
    }
}

/*********************************************************************************************

4.  Grid 1024px+

*********************************************************************************************/

@media only screen and (min-width: 1024px) {

    #burger{
        display: none;
    }
    
    .header_img .img_box .title_box h1{
        font-size: 5em;
        font-weight: bold;
    }

    .header_img .img_box .title_box p{
        font-size: 3em;
    }

    .content{
        top: -84px;
    }

}


/*********************************************************************************************

5.  Grid 1200px+

*********************************************************************************************/

@media only screen and (min-width: 1200px) {
    #main_img{
        position: relative;
        top: 44px;
        width: 1180px;
        height: 500px;
        background-color: #ffffff;
        padding: 10px;
        margin: 0 auto;
    }

    #main_img .title_box{
        position: absolute;
        color: #fff;
        top: 50%;
        width: 50%;
        text-align: center;
        transform: translateY(-50%);
    }

    .content{
        width: 100%;
        margin: 0 auto;
    }
}
