body{
    margin: 0;
    padding: 0;
    font-family: 'EB Garamond', serif;
}
.main_header{
    display: flex;
    background-color: rgb(237, 237, 237);
    padding: 8px 100px;
    align-items: center; /* Vertical alignment */
    position: sticky;
    top: 0;
    z-index: 99;
}
.main_header .logo{
    width: 25%;
}
.main_header .logo img{
    width: 38%;
}
.main_header .menu_section{
    width: 75%;
    vertical-align: middle;
}
.main_header .menu_section ul{
    display: flex;
    justify-content: right;
    align-items: center; /* Vertical alignment */
}
.main_header .menu_section ul li{
    list-style: none;
    padding: 12px 15px 0;
}
.main_header .menu_section ul li a{
    text-decoration: none;
    color: #1d1d1d;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 15px;
}
.main_header .menu_section ul li a:hover{
    color: #7C2527;
}
.main_header .menu_section ul li a.btns {
    font-size: 13.5px !important;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    background-color: #7C2527;
    padding: 10px 25px 12px;
    margin-top: -12px !important;
    transition: transform 0.5s, background-color 0.5s !important; /* Added background-color transition */
}
.main_header .menu_section ul li a.btns:hover {
    transform: scale(0.95) !important; /* Increase the scale on hover */
    background-color: #982A2D; /* Change the background color on hover */
}
.Mobile_menu_section,
.mobile_header{
    display: none;
}
@media only screen and (max-width: 1210px){
    .main_header{
        padding: 8px 30px !important;
    }
}
@media only screen and (max-width: 900px){
    .main_header{
        padding: 8px 10px !important;
    }
    .main_header .logo {
        width: 20%;
    }
    .main_header .logo img {
        width: 100%;
    }
    .main_header .menu_section {
        width: 80%;
    }
    .main_header .menu_section ul li {
        padding: 12px 5px 0;
    }
    .main_header .menu_section ul li a {
        font-size: 13px;
    }
    .main_header .menu_section ul li a.btns {
        font-size: 12.5px !important;
        padding: 9px 20px 12px;
    }
}
@media only screen and (max-width: 600px){
    .main_header{
        display: none;
    }
    .mobile_header{
        display: flex;
        background-color: rgb(237, 237, 237);
        padding: 5px 10px;
        position: sticky;
        top: 0;
        z-index: 99;
    }
    .mobile_header .logo{
        width: 55%;
    }
    .mobile_header .logo img{
        width: 50%;
    }
    /* Hide the menu_section by default */
    .Mobile_menu_section {
        display: none;
    }
    .mobile_header .nav_icon{
        width: 45%;
        text-align: right;
    }

    /* Styles for the menu icon */
    .mobile_header .nav_icon .menu_icon {
        cursor: pointer;
        display: inline-block;
        padding: 0 10px;
        margin-top: 3px;
    }

    .mobile_header .nav_icon .menu_icon .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #7C2527;
        margin: 6px 0;
        transition: 0.4s;
    }
    .Mobile_menu_section{
        background-color: rgb(237, 237, 237);
        margin-top: 2px;
        position: fixed;
        z-index: 99;
        width: 100%;
    }
    .Mobile_menu_section ul{
        padding: 10px;
    }
    .Mobile_menu_section ul hr{
        margin: 0;
        padding: 0;
        border-top: 2px solid #ffffff;
    }
    .Mobile_menu_section ul li{
        padding: 8px 10px;
    }
    .Mobile_menu_section ul li:hover{
        background-color: #fff;
    }
    .Mobile_menu_section ul li a{
        color: #1d1d1d;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .Mobile_menu_section ul li:hover a{
        color: #7C2527;
    }
    .Mobile_menu_section ul li a.btns{
        color: #fff;
        background-color: #7C2527;
        padding: 10px 34% 12px;
    }
    /* New styles for the open icon */
    .menu_icon.open .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .menu_icon.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu_icon.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
}

/*===========Index Page csss====*/
.carousel .carousel-inner .carousel-item img{
    height: 500px;
}

/*========Our Products===========*/
.our_product{
    padding: 50px 100px;
    text-align: center;
}
.our_product h2{
    font-family: 'EB Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2em;
}
.our_product p{
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    line-height: 1.2em;
    margin: -10px 0 10px;
}
.our_product .prodduct_slider{
    display: flex;
    margin: 25px 0;
}
.our_product .prodduct_slider .box{
    width: 92% !important;
    margin: 10px 15px;
    box-shadow: 0px 0px 10px #00000020;
    border: 1px solid #00000020;
    text-align: left;
    border-radius: 5px;
}
.our_product .prodduct_slider .box img{
    width: 100%;
    border-radius: 5px 5px 0 0px;
}
.our_product .prodduct_slider .box h4{
    margin: 15px 15px 0;
    font-size: 22px;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
}
.our_product .prodduct_slider .box p{
    margin: 5px 15px;
    font-size: 17px;
    font-family: 'EB Garamond', serif;
}
.our_product .prodduct_slider .box .sextion_box{
    display: flex;
    margin-top: 15px;
}
.our_product .prodduct_slider .box .sextion_box .boxs{
    width: 50%;
}
.our_product .prodduct_slider .box .sextion_box .boxs button{
    width: 100%;
    padding: 10px 0 8px;
    border: none;
    text-transform: uppercase;
    font-size: 13px !important;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}
.our_product .prodduct_slider .box .sextion_box .boxs button.quote{
    background-color: #212529;
}
.our_product .prodduct_slider .box .sextion_box .boxs button.quote:hover{
    background-color: #212529dd;
}
.our_product .prodduct_slider .box .sextion_box .boxs button.product{
    background-color: #982A2D;
}
.our_product .prodduct_slider .box .sextion_box .boxs button.product:hover{
    background-color: #7C2527;
}

@media only screen and (max-width: 1300px){
    .our_product {
        padding: 50px;
    }
}
@media only screen and (max-width: 900px){
    .carousel .carousel-inner .carousel-item img {
        height: auto !important;
    }
    .our_product {
        padding: 30px 10px;
    }
    .our_product h2 {
        font-size: 35px;
    }
    .our_product p {
        font-size: 17px;
        margin: 0px 120px 15px !important;
    }
    .our_product .prodduct_slider .box p {
        margin: 5px 15px !important;
    }
}
@media only screen and (max-width: 600px){
    .our_product p {
        margin: -5px 0px 10px !important;
    }
    .our_product .prodduct_slider .box p{
        margin: 5px 15px !important;
    }
    .our_product .prodduct_slider {
        display: flex;
        margin: 5px 0;
    }
    .our_product img{
        width: 150px;
    }
}
.about_us{
    display: flex;
}
.about_us .box{
    width: 50%;
}
.about_us .box img{
    width: 100%;
}
.about_us .box_right{
    padding: 30px 100px 30px 30px;
    background-color: #ebebeb;
}
.about_us .box_right h2{
    font-family: 'EB Garamond', serif;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: -1px;
}
.about_us .box_right p{
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    line-height: 1.2em;
}
.about_us .box_right hr{
    width: 50px;
    margin: 10px 0 12px;
    border: 1px solid #000;
}
.about_us .box_right h5{
    text-align: right;
    font-weight: 300;
    font-family: 'EB Garamond', serif;
}
@media only screen and (max-width: 1300px){
    .about_us .box_right h2 {
        font-size: 32px;
    }
    .about_us .box_right {
        padding: 20px 50px 10px 15px;
    }
    .about_us .box_right p {
        font-size: 17px;
    }
}
@media only screen and (max-width: 900px){
    .about_us {
        display: block;
    }
    .about_us .box {
        width: auto !important;
    }
    .about_us .box img {
        width: 100%;
        height: 350px;
    }
}
@media only screen and (max-width: 600px){
    .about_us .box img {
        height: 180px;
    }
    .about_us .box_right {
        padding: 25px 10px;
    }
}

.our_process{
    padding: 50px 100px;
    text-align: center;
}
.our_process h2{
    font-family: 'EB Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2em;
}
.our_process p{
    font-size: 17px;
    font-family: 'EB Garamond', serif;
    margin: 0px 220px 15px !important;
    line-height: 1.2em;
}
.our_process .section_box{
    margin-top: 50px;
    display: flex;
}
.our_process .section_box .box{
    width: 33%;
    margin: 0 10px 0;
    text-align: left;
}
.our_process .section_box .box img{
    width: 100%;
}
.our_process .section_box .box h3{
    font-size: 18px;
    font-family: 'EB Garamond', serif;
    padding: 5px 30px 5px 15px;
    letter-spacing: 1.5px;
    background-color: #7C2527;
    color: #fff;
    width: 280px;
    position: absolute;
    margin-top: -15px;
}
@media only screen and (max-width: 1300px){
    .our_process{
        padding: 50px;
    }
}
@media only screen and (max-width: 900px){
    .our_process h2{
        font-size: 35px;
    }
    .our_process p {
        margin: 0px 30px 15px !important;
    }
    .our_process .section_box{
        margin-top: 35px;
    }
    .our_process {
        padding: 50px 10px;
    }
    .our_process .section_box .box {
        margin: 0px 5px 0;
    }
    .our_process .section_box .box h3 {
        font-size: 17px;
        padding: 5px 15px 5px 15px;
        width: 230px;
    }
}
@media only screen and (max-width: 600px){
    .our_process {
        padding: 35px 10px;
    }
    .our_process p {
        margin: 0px 0px 15px !important;
    }
    .our_process .section_box {
        margin-top: 40px;
        display: block;
    }
    .our_process .section_box .box {
        width: auto;
        margin: 5px 0 30px;
    }
}
.our_process .client_slider{
    margin-top: 30px;
}
.our_process .client_slider img{
    width: 90% !important;
    background-color: #ebebeb;
    margin: 0 5px !important;
    padding:5px;
}

/*===========Our Product Page or Services ===========*/
.bradecumb{
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(#00000050, #00000050), url(../img/bradecumb.webp);
    background-position: top center;
    background-size: cover;
}
.bradecumb h2{
    color: #fff;
    font-size: 45px;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.2em;
}
.bradecumb p,
.bradecumb p a{
    color: #fff;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.2em;
    text-decoration: none;
    margin-top: -5px;
}
@media only screen and (max-width: 600px){
    .bradecumb{
        padding: 50px 0;
    }
    .bradecumb h2{
        font-size: 35px;
    }
    .bradecumb p,
    .bradecumb p a{
        font-size: 16px;
    }
}
.products{
    margin: 30px 100px;
    display: flex;
}
.products .box_img{
    width: 40%;
    margin-right: 20px;
}
.products .box_img img{
    width: 100%;
    border: 13px solid #ebebeb;
}
.products .box_content{
    width: 60%;
    margin-left: 20px;
}
.products .box_content h3{
    font-size: 32px;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.2em;
}
.products .box_content hr{
    width: 60px;
    margin: -3px 0 10px;
    padding: 0;
    border-top: 3px solid #393939;
}
.products .box_content p{
    font-size: 18px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.products .box_content button{
    background-color: #982A2D;
    padding: 8px 25px;
    border: 0;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 5px;
    transition: transform 0.5s;
    cursor: pointer;
}
.products .box_content button:hover{
    transform: scale(0.95);
}
.products .desktop_hide{
    display: none;
}
@media only screen and (max-width: 1250px){
    .products {
        margin: 30px 30px;
    }
    .products .box_img {
        margin: 0 10px;
    }
    .products .box_content {
        margin: 0 10px;
    }
}
@media only screen and (max-width: 600px){
    .products {
        margin: 0px 10px 20px;
        display: block;
    }
    .products .box_img {
        margin: 0;
        width: auto;
        margin-top: 10px;
    }
    .products .box_content {
        margin: 15px 0 0;
        width: auto;
    }
    .products .box_content h3 {
        font-size: 30px;
    }
    .products .desktop_hide{
        display: block;
    }
    .products .mb_hide{
        display: none;
    }
    .products .box_img img {
        border: 8px solid #ebebeb;
        height: 200px;
    }
}

.section_about_us{
    margin: 50px 100px;
}
.section_about_us p{
    font-size: 18px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.section_about_us h3{
    font-size: 27px;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.2em;
    color: #1d1d1d;
    margin-top: 20px;
}
@media only screen and (max-width: 1200px){
    .section_about_us{
        margin: 50px;
    }
}
@media only screen and (max-width: 900px){
    .section_about_us{
        margin: 30px 10px;
    }
}

/*=============Gallery==========*/
.product_gallery{
    margin: 50px 100px;
}
@media only screen and (max-width: 1210px){
    .product_gallery{
        margin: 50px 30px;
    }
}
@media only screen and (max-width: 900px){
    .product_gallery{
        margin: 50px 30px;
    }
}
@media only screen and (max-width: 900px){
    .product_gallery{
        margin: 50px 10px;
    }
}

/*=========Contact Page==*/
.contact_us{
    display: flex;
    margin: 50px 100px;
}
.contact_us .section_box{
    width: 50%;
}
.contact_us .section_box h2{
    font-size: 32px;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.2em;
    color: #1d1d1d;
}
.contact_us .section_box hr{
    width: 70px;
    border-top: 3px solid #1d1d1d;
    margin: 0px 0 20px;
}
.contact_us .section_box .contact_section{
    display: flex;
    margin: 10px 0 20px;
}
.contact_us .section_box .contact_section .icon_box{
    margin-top: 3px;
}
.contact_us .section_box .contact_section .icon_box i{
    font-size: 19px;
    color: #fff;
    background-color: #982A2D;
    padding: 15px;
    border-radius: 100px;
}
.contact_us .section_box .contact_section .icon_box .fa-phone-volume{
    padding: 15px 17px;
    rotate: -35deg;
}
.contact_us .section_box .contact_section .content_box{
    margin-left: 10px;
}
.contact_us .section_box .contact_section .content_box h4{
    font-size: 23px;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.2em;
    color: #1d1d1d;
}
.contact_us .section_box .contact_section .content_box p,
.contact_us .section_box .contact_section .content_box p a{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    color: #343434;
    letter-spacing: 1px;
}
.contact_us .section_box .form .section_box{
    display: flex;
    width: 100%;
}
.contact_us .section_box .form .section_box .box{
    width: 50%;
    margin: 5px 10px;
    display: block;
}
.contact_us .section_box .form .section_box .box label,
.contact_us .section_box .form label{
    font-size: 16px;
    font-family: 'EB Garamond', serif;
    font-weight: 700;
    line-height: 1.2em;
    color: #1d1d1d;
    display: block;
    margin-left: 0px;
}
.contact_us .section_box .form label{
    margin-left: 10px;
    margin-top: 5px;
}
.contact_us .section_box .form .section_box .box label span,
.contact_us .section_box .form label span{
    color: red;
    font-size: 20px;
}
.contact_us .section_box .form .section_box .box input{
    width: 100%;
    font-size: 16px;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    line-height: 1.2em;
    color: #1d1d1d;
    padding: 7px 10px;
    border: 1px solid #aaaaaa;
    background-color: rgba(237, 237, 237, 0.449);
}
.contact_us .section_box .form textarea{
    width: 97%;
    font-size: 16px;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    line-height: 1.2em;
    color: #1d1d1d;
    padding: 7px 10px;
    border: 1px solid #aaaaaa;
    background-color: rgba(237, 237, 237, 0.449);
    margin: 0 10px;
    height: 80px;
}
.contact_us .section_box .form button{
    margin: 10px;
    text-transform: uppercase;
    font-size: 13px !important;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    background-color: #7C2527;
    padding: 7px 25px 10px;
    border: 0;
    cursor: pointer;
    transition: transform 0.5s, background-color 0.5s !important;
}
.contact_us .section_box .form button:hover{
    transform: scale(0.95);
}
.google_map{
    margin: 50px 100px;
}
.google_map iframe{
    width: 100%;
    height: 350px;
    border: 13px solid rgb(237, 237, 237);
}
@media only screen and (max-width: 1250px){
    .contact_us {
        margin: 50px;
    }
    .google_map{
        margin: 50px;
    }
}
@media only screen and (max-width: 900px){
    .contact_us {
        margin: 30px 10px;
    }
    .contact_us .section_box h2 {
        font-size: 25px;
        line-height: 0.95em;
    }
    .contact_us .section_box .form{
        margin-top: -20px;
    }
    .google_map{
        margin: 30px 10px;
    }
    .google_map iframe{
        height: 250px;
    }
}
@media only screen and (max-width: 600px){
    .contact_us{
        display: block;
    }
    .contact_us .section_box {
        width: auto;
        margin-bottom: 30px;
    }
    .contact_us .section_box h2 {
        font-size: 27px;
        line-height: 1.2em;
    }
    .contact_us .section_box .contact_section .content_box h4 {
        font-size: 20px;
    }
    .contact_us .section_box .form .section_box {
        display: block;
        margin-bottom: 0px;
    }
    .contact_us .section_box .form .section_box .box {
        margin: 10px;
        width: auto;
    }
    .contact_us .section_box .form {
        margin-top: 0px;
    }
    .google_map iframe{
        margin-top: 30px;
        height: 350px;
    }
}


/*==========Gate in touch===========*/
.get_touch{
    margin: 0px 100px;
    box-shadow: 0px 0px 10px rgba(7, 7, 7, 0.304);
    padding: 50px;
}
.get_touch h2{
    font-size: 18px;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.2em;
    color: #1d1d1d;
    border-left: 7px solid #7C2527;
    background-color: rgb(237, 237, 237);
    padding: 5px 10px;
}
.get_touch .section_box{
    display: flex;
    margin: 15px 0 !important;
}
.get_touch .section_box .box{
    margin: 0 10px;
    width: 50%;
}
.get_touch .section_box .box label,
.get_touch .section_box label{
    font-size: 16px;
    font-family: 'EB Garamond', serif;
    font-weight: 700;
    line-height: 1.2em;
    color: #1d1d1d;
    display: block;
}
.get_touch .section_box .box label span,
.get_touch .section_box label span{
    color: red;
    font-size: 20px;
}
.get_touch .section_box .box input,
.get_touch .section_box input{
    width: 100%;
    font-size: 16px;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    line-height: 1.2em;
    color: #1d1d1d;
    padding: 7px 10px;
    border: 1px solid #aaaaaa;
    background-color: rgba(237, 237, 237, 0.449);
}
.get_touch .section_boxs{
    margin: 10px !important;
    display: block;
}
.get_touch .section_boxs .dal_section{
    display: flex;
}
.get_touch .section_boxs .dal_section .box{
    width: 33%;
    margin: 10px;
    padding: 15px 15px 25px;
    background-color: rgba(237, 237, 237, 0.584);
}
.get_touch .section_boxs .dal_section .box .check_box{
    display: flex;
    margin-bottom: 10px;
}
.get_touch .section_boxs .dal_section .box .check_box input{
    width: auto;
    margin-right: 5px;
    font-family: 'EB Garamond', serif;
}
.get_touch .section_boxs .dal_section .box label{
    font-size: 16px;
    font-family: 'EB Garamond', serif;
    font-weight: 700;
    line-height: 1.2em;
    color: #1d1d1d;
    display: block;
}
.get_touch .section_boxs .dal_section .box input{
    display: block;
}
.get_touch .section_box{
    margin: 10px;
}
.get_touch .section_box textarea{
    width: 99%;
    font-size: 16px;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    line-height: 1.2em;
    color: #1d1d1d;
    padding: 7px 10px;
    border: 1px solid #aaaaaa;
    background-color: rgba(237, 237, 237, 0.449);
    height: 80px;
}
.get_touch .section_box button{
    text-transform: uppercase;
    font-size: 14px !important;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    background-color: #7C2527;
    padding: 7px 25px 10px;
    border: 0;
    cursor: pointer;
    transition: transform 0.5s, background-color 0.5s !important;
}
.get_touch .section_box button:hover{
    transform: scale(0.95);
}

@media only screen and (max-width: 1200px){
    .get_touch {
        margin: 0px 50px;
    }
}

@media only screen and (max-width: 900px){
    .get_touch {
        margin: 0px;
        padding: 40px 20px;
    }
}
@media only screen and (max-width: 600px){
    .get_touch {
        margin: 0px;
        padding: 30px 10px;
    }
    .get_touch h2 {
        font-size: 16px;
    }  
    .get_touch form{
        margin-top: -10px;
    }  
    .get_touch .section_box {
        margin: 0px;
        display: block;
    }
    .get_touch .section_box .box {
        margin: 0 10px 10px;
        width: auto;
    }
    .get_touch .section_boxs label{
        margin: 10px;
    }
    .get_touch .section_boxs .dal_section {
        display: block;
    }
    .get_touch .section_boxs .dal_section .box {
        margin: 15px 10px;
        width: auto;
    }
    .get_touch .section_boxs textarea{
        margin-left: 10px;
        width: 95%;
    }
    .get_touch .section_box button{
        margin-left: 10px;
        margin-top: 10px;
    }
    
    .get_touch .section_boxs {
        margin: 0px !important;
    }
}

/*===========footer=====*/
.footer{
    text-align: center;
    padding: 60px 0 10px;
    background-color: rgb(237, 237, 237);
}
.footer p{
    width: 850px;
    margin: auto;
    font-size: 17px;
    font-family: 'EB Garamond', serif;
}
.footer .icon_box{
    margin: 20px 0 0;
}
.footer .icon_box i{
    font-size: 20px;
    padding: 0 5px;
    color: #000;
}
.footer .icon_box i:hover{
    color: #982A2D;
}
.footer .box{
    margin: 10px 0 0;
}
.footer hr{
    margin: 5px 0 10px;
}
@media only screen and (max-width: 900px){
    .footer p {
        width: 750px;
    }
}
@media only screen and (max-width: 600px){
    .footer p {
        width: 95%;
        font-size: 16px;
    }
}

/*=============Privacy Policy Pages===*/
.content{
    margin: 50px 100px;
}
.content h2{
    color: #1d1d1d;
    font-size: 25px;
    font-weight: 600;
    font-family: 'EB Garamond', serif;
}
.content p,
.content ul li{
    font-size: 18px;
    font-family: 'EB Garamond', serif;
}
@media only screen and (max-width: 1200px){
    .content{
        margin: 50px;
    }
}
@media only screen and (max-width: 900px){
    .content{
        margin: 50px 10px;
    }
}
@media only screen and (max-width: 600px){
    .content{
        margin: 30px 10px;
    }
}