
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

li{
    list-style: none;
}
a{
    text-decoration: none;
}


/* =====================HEADER===================== */

.header{
    background-color: #282828;
    width: 100%;
    border-bottom: 0px solid #efefef;
    position: relative;
    z-index: 55;
}

.header_container{
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* padding: 20px; */
}


.logo>img{
    height: 120px;
    width: 60%;
    max-width: 100%;
    object-fit: cover;
    margin-left: 60px;
}

.navbar{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-right: 15px;
}

.nav_links>ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_links>ul>li>a{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 22px 16px;
    font-family: "Roboto",sans-serif;
    display: inline-block;
}

.nav_links>ul>li>a.active_txt{
    color: #D9B506;
}

.nav_links>ul>li>a>i{
    color: #D9B506;
    font-size: 12px;
    margin-left: 2px;
    font-weight: 800;
}

.drop-menu{
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    width: 220px;
    background-color: #222121B0;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.nav_links>ul>li:hover .drop-menu{
    transform: rotateX(0deg);
    visibility: visible;
    opacity: 1;
}


.drop-item{
    font-size: 14px;
    font-family: "Roboto",sans-serif;
    font-weight: 500;
    padding: 15px 0;
    padding-left: 36px !important;
    display: inline-block;
    color: #FBF6F6;
}

.drop-item:hover,.nav_links>ul>li>a:hover{
    color: #D9B506;
}


.header_contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.header_contact h2{
    font-size: 19px !important;
    font-weight: 900 !important;
    color: rgb(252, 249, 249) !important;
    line-height: 28px !important;
    font-family: "Roboto",sans-serif !important;
}

.header_contact >p{
    text-align: right;
    color: #FCF9F9;
    font-family: "Roboto", Sans-serif;
    font-size: 19px;
    font-weight: 600;
}


/* ================HERO===================== */

.hero{
    max-width: 100%;
    height: auto;
    position: relative;
}

.hero_container{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    align-items: center;
    width: 100%;
}

.hero_container img{
    height: auto;
    width: 100%;
}

/* ======================CATALOG================= */

.catalog{
    background-color: #2F2F2F;
    position: relative;
    padding-top: 70px;
}

.catalog_container,.why_container{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 1140px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.catalog_wrapper h2{
    color: #CACACB;
    font-family: "Roboto", Sans-serif;
    font-size: 23px;
    font-weight: 600;
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}




.catalog_img{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.catalog_item{
    width: 100%;
    position: relative;
    padding: 10px;
}

.catalog_item img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid #EAE6E6;
    margin-bottom: 20px;
}

.catalog_item h2{
    text-align: center;
    color: #FFFAFA;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 600;
}



/* ===============WHY=================== */

.why{

    background-color: #BDBDBF;
    position: relative;
}

.why_wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    width: 100%;
}

.why_left{
    width: 100%;
    position: relative;
}

.left_wrapper{
    padding: 10px;
    position: relative;
}

.why_left h2{
    color: #252526;
    font-family: "Roboto", Sans-serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.7px;
    margin-bottom: 20px;
    line-height: 1;
}

.why_left p{
    color: #6D6D6D;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
}


.why_left p:nth-of-type(1){
    margin-bottom: 20px;
}

.why_btn a{
    background-color: #0A0B0A;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    display: inline-block;
    line-height: 1;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
}

.why_right{
    position: relative;
    width: 100%;
}

.img_right{
    width: 100%;
    padding: 10px;
    position: relative;
}

.why_right img{
    width: 100%;
    height: auto;
}


/* =============Equipment============= */

.Equipment{
    background-color: #5F5F5F;
    position: relative;
    padding: 50px 0;
}

.equipment_img{
    height: 300px !important;
}
h2.equipment_head{
    color: #D9B506;
    font-family: "Roboto", Sans-serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.7px;
    margin-bottom: 20px;
}

p.equipment_para{
    color: #DAD7D7;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.7px;
    line-height: 24px;
    margin-bottom: 20px;
}

p.equipment_para:nth-of-type(1){
    margin-bottom: 20px;
}


/* =============Operator============= */

.Operator{
    background-color: #848484;
    position: relative;
    padding: 50px 0;
}


/* =====================RESOURCES================= */

.resources{
    position: relative;
}

.resources_container{
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.resources_wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    position: relative;
}

.resources_item{
    width: 100%;
    position: relative;
    /* margin: 30px; */
    padding: 10px;
}

.item_wrapper{
    width: 100%;
    padding: 10px;
}

.resources_img{
    margin-bottom: 20px;
}

.resources_img img{
    height: 290px;
    width: 100%;
    box-shadow: 0px 0px 22px 2px rgba(0, 0, 0, 0.5);
    /* object-fit: cover; */
}

.item_wrapper h2{
    padding-top: 10px;
    color: #424244;
    font-family: "Roboto", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
    margin-bottom: 20px;
}

.item_wrapper p{
    color: rgb(122, 122, 122);
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

.know_btn{
    position: relative;
    margin-top: 40px;
}

.know_btn a{
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    text-decoration: none;
    background-color: #808380;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    text-align: center;
}



/* ===============PRODUCTS====================== */

.products{
    position: relative;
    padding: 70px 0 70px 0;
}

.products_container,.used_container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
    width: 100%;
    position: relative;
}

.products_container>h2{
    color: #202021;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    font-size: 32px;
    text-align: center;
    margin-bottom: 70px;
}

.products_wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative;
    width: 100%;
}

.product_item{
    position: relative;
    width: 100%;
    padding: 20px !important;
}

.product_img{
    position: relative;
    margin-bottom: 20px;
}

.product_img > img{
    height: 190px;
    width: 100%;
}

.product_item h2{
    font-size: 15px;
    font-family: "Roboto",sans-serif;
    color: rgb(48, 44, 44);
    font-weight: 600;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
}


/* ===========INNER PAGES TOP SECTION =======*/

.about_product{
    padding: 70px 0 40px 0;
    position: relative;
}

.about_prooduct_head{
    color: #585A5A;
    font-size: 32px;
    font-family: "Roboto",sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.about_prooduct_txt{
    color: rgb(122, 122, 122);
    font-size: 16px;
    font-family: "Roboto",sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 24px;
}

.about_prooduct_img{
    width: 100%;
    height: auto;
}


/* =========CUSTOM PARTS ======*/

.custom_about{
    background-color: #DEDEDE;
}

p.custom_para{
    color: rgb(109, 109, 109);
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

a.contact_custom{
    background-color: #D9B506;
}


/* ===========USED=============== */

.used{
    position: relative;
    padding: 50px 0;
}

.used_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.used_wrapper >h2{
    color: #202021;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 70px;
    text-align: center;
}

.used_item_wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    position: relative;
}

.item_used{
    padding: 20px;
    position: relative;
}

.item_used img{
    height: 200px;
    width: 100%;
    margin-bottom: 20px;
}

.item_used>h2{
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #7a7a7a;
}


/* ============CARD=============== */

.card{
    position: relative;
    background-color: #2F2F2F;
    padding: 30px 10px 60px 10px;
    margin-top: 50px;
}

.card_container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
    position: relative;
}

.card_wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    justify-content: center;
}
.card_img{
    margin-top: -70px;
}
.card_img img{
    width: 100%;
    height: auto;
}


.card_txt{
    display: flex;
    flex-direction: column;
    padding: 0 0 0 30px;
}

.card_txt>p:nth-of-type(1){
    margin-bottom: 40px;
    color: #D9B506;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    line-height: 24px;
    font-size: 16px;
}
.card_txt>p:nth-of-type(2){
    margin-bottom: 40px;
    color: #D5D3D3;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
}

.card_txt > a{
    display: inline-block;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #1E1A1A;
    background-color: #FFFFFF;
    font-size: 15px;
    padding: 12px 24px;
    text-align: center;
}


/* ============FOOTER================= */

.footer{
    background-color: #2F2F2F;
    padding: 60px 0px 100px 0px;
    position: relative;
}

.footer_container{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 1140px;
}

.footer_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.top_footer_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.need_number{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.need_number >h2{
    text-align: right;
    color: #D9B506;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-right: 30px;
}

.number_info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

    color: #F8F7F7;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.txt_footer{
    margin-bottom: 20px;
    border-bottom: 1px solid black;
    width: 100%;
}

.txt_footer>p{
    padding: 3px 3px 3px 3px;
    padding: 15px 0 !important;
    background-color: #7A7A7AB3;
    width: 100%;
    text-align: center;
    color: #E9DEDE;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.bottom_footer{
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
}

.contact_details{
    width: 50%;
    padding: 3em 2em 0 0;
}

.contact>h2,.menu>h2,.social>h2{
    color: #FAF9FA;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Roboto",sans-serif;
    line-height: 1em;
    margin-bottom: 20px;
    /* border-bottom: 2px solid #D9B506; */
    display: inline-block;
    position: relative;
}

.contact>h2::after,.menu>h2::after,.social>h2::after{
    content: " ";
    border-top: 3px solid #D9B506;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 50%;
}
.menu>h2::after,.social>h2::after{
    width: 18%;
}

.contact ul,.menu>ul,.social>ul{
    margin-top: 20px;
}

.contact >ul>li>a{
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #D7DDE4;
}
.contact>ul>li{
    padding-bottom: 8px;
}
.contact>ul>li>a>i{
    color: #D9B506;
    margin-right: 5px;
}
.menu_links{
    display: flex;
    width: 50%;
    position: relative;
    align-items: baseline;
}

.menu,.social{
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu >ul>li>a,.social >ul>li>a{
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #CFD4DA;
}

.social>ul{
    display: flex;
    align-items: center;
    gap: 30px;
}

.social>ul>li>a>i{
    font-size: 25px;
    line-height: 50px;
    color: #fff;
}


/* ==============FORM================= */

.form{
    background-color: #DEDEDE;
    position: relative;
    padding: 50px 0;
}

.form_container{
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

.form_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    position: relative;
}

.form_wrapper>h2{
    color: #494A4A;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 20px;
}

.form_wrapper>p{
    font-weight: 400;
    font-size: 16px;
    font-family: "Roboto",sans-serif;
    line-height: 24px;
    color: #7A7A7A;
    margin-bottom: 35px;
}

.contact_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-50,.form-100{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 25px;
}

lable{
    color: #3f4b5b;
    font-size: 15px;
    font-family: "";
    font-weight: 400;
    padding-bottom: 3px;
}

.double_input{
    width: 100%;
    position: relative;
    display: flex;
    gap: 20px;
}

input,textarea{
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #bfc3bf;
    border-radius: 4px;
    max-width: 100%;
    width: 100%;
    line-height: 1.3;
    font-size: 14px;
    padding: 6px 14px;
    box-sizing: border-box;
    outline: none;
    min-height: 32px;
    font-weight: var(--field-weight);
}

textarea{
    height: 100px;
}

.btn_submit a{
    font-size: 15px;
    line-height: normal;
    text-align: center;
    background: #ededed;
    border-width: 0;
    border-color: #579AF6;
    border-style: solid;
    color: #474747;
    width: 20%;
    cursor: pointer;
    font-weight: normal;
    border-radius: 4px;
    text-shadow: none;
    padding: 10px 20px;
    box-sizing: border-box;
    box-shadow: 0 1px 1px #eeeeee;
    margin-top: 30px;
    display: inline-block;
}


/* ============HOWTOORDERS================= */

.how_to_orders{
    position: relative;
    padding: 50px 10px;
}

.orders_container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
}

.orders_container>h2.orders_tittle{
    color: #525353;
    font-family: "Roboto",sans-serif;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 30px;
}

.orders_container>p.sub_tittle{
    color: rgb(122, 122, 122);
    font-family: "Roboto",sans-serif;
    font-weight: 400;
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 40px;
}

.orders_wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    position: relative;
}

.form_orders{
    background-color: #ffffff;
    padding: 0 !important;
}

.form_container_order{
    margin-left: 0 !important;
    margin-top: 30px;
}

.form_orders>h2,.order_process_txt>h2{
    color: #494A4A;
    font-family: "Roboto", Sans-serif;
    font-size: 19px;
    font-weight: 500;
}

.form_orders>p,.order_process_txt>p{
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #7a7a7a;
    margin-top: 20px;
}

.orders_process{
    padding: 0 40px 0  0;
}

.order_process_txt>h2{
    margin-top: 30px;
}




/* ==============VIDEO=============== */

.video{
    position: relative;
}

.video_wrapper>h2{
    font-size: 32px;
    font-family: "Roboto",sans-serif;
    font-weight: 600;
    text-align: center;
    background-color: #e7c003;
    padding: 10px 0;
}

.video_wrapper>iframe{
    width: 100%;
    height: 100vh;
    padding: 20px 0 0 0;
}


/* =============MOBILE MENU================== */

.sidebar {
    width: 250px;
    background-color: #111;
    color: #fff;
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    position: fixed;
    top: 0;
    left: -250px; /* Hidden by default */
    transition: 0.3s;
    z-index: 1000;
  }
  .sidebar.active {
    left: 0;
  }
  .sidebar .close-btn {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
  }

  .menu {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    width: 100%;
  }

  .menu li {
    margin-bottom: 10px;
  }

  .menu li a,
  .dropdown-btn {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    cursor: pointer;
  }

  .dropdown-btn::after {
    content: "▼";
    float: right;
    transition: transform 0.3s;
  }

  .dropdown.active .dropdown-btn::after {
    transform: rotate(180deg);
  }

  .submenu {
    list-style: none;
    padding-left: 20px;
    background-color: #fff;
    display: none;
  }

  .submenu li a {
    color: #000;
    padding: 8px 15px;
    display: block;
  }

  .submenu li a:hover {
    background-color: #eee;
  }

  /* Hamburger icon */
  .hamburg {
    display: none;
    cursor: pointer;
  }



/* ===================RESPONSIVE================= */

@media (max-width: 1268px){
    /* .resources_img img{
        width: 80%;
        height: 250px;
    } */
}

@media (max-width: 968px){
    .navbar{
        display: none;
    }

    .hamburg{
        display: block;
        font-size: 32px;
        color: #ffffff;
        padding-right: 40px;
    }

    .orders_wrapper{
        grid-template-columns: repeat(1,1fr);
    }

    .form_orders{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .form_container_order{
        margin-left: auto !important;
    }

    .resources_wrapper{
        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width: 768px){

    .catalog_img{
        grid-template-columns: repeat(2,1fr);
    }

    .why_wrapper{
        grid-template-columns: repeat(1,1fr);
    }

    .used_item_wrapper{
        grid-template-columns: repeat(2,1fr);
    }

    .space{
        display: none;
    }

    .products_wrapper{
        grid-template-columns: repeat(2,1fr);

    }

    .bottom_footer{
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_details{
        width: 100%;
    }

    .menu_links{
        width: 100%;
    }
}

@media (max-width: 468px){

    .products_wrapper{
        grid-template-columns: repeat(1,1fr);
    }

}