:root {
    --main_color:#ffaa17;
    /* --main_color:#008cff; */
    --bg_color:#191919;
    --border_color:#afafaf27;
}

@font-face {
  font-family: Schabo;
  src: url(../fonts/schabo/SCHABO-Condensed.woff2);
}

*{
    font-family: "Teko", sans-serif;
}

body {
    background-color: var(--bg_color);
}

.mh10p0 {
    min-height: 10px;
    padding: 0px;
    float: left;
}

.mh10p5 {
    min-height: 10px;
    padding: 5px;
    float: left;
}

.mh10p10 {
    min-height: 10px;
    padding: 10px;
    float: left;
}

.mh10p15 {
    min-height: 10px;
    padding: 15px;
    float: left;
}

.mh10p20 {
    min-height: 10px;
    padding: 20px;
    float: left;
}

.mh10p25 {
    min-height: 10px;
    padding: 25px;
    float: left;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Menu */

.menu_outer
{
    width:100%;
    min-height:20px;
    float:left;
    border-bottom:1px solid var(--border_color);
    position:relative;
    z-index:10;
}

.menu_inner
{
    width:100%;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu_logo_outer
{
    width:290px;
    height:100px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding-bottom:3px;
    cursor:pointer;
    text-decoration: none;
    padding-left:15px;
    border-left:1px solid var(--border_color);
}

.menu_logo_outer img
{
    width:150px;
    height:100px;
    object-fit: contain;
    object-position: center;
}

.custom_menu_logo_outer
{
    width: 210px;
    margin-right:5px;
    height: 88px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-bottom:6px;
    cursor:pointer;
    text-decoration: none;
    background-color:#5b5b5b;
    outline:6px solid #5b5b5b;
    border:3px solid #fff;
    margin-left:6px;
}

.custom_menu_logo_outer img
{
    width:150px;
    height:100px;
    object-fit: contain;
    object-position: center;
}

.menu_right_outer
{
    width:210px;
    height:100px;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0px 20px;
    gap:15px;
    cursor:pointer;
    text-decoration: none;
}

.menu_center_outer
{
    flex:1;
    height:100px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    padding-bottom:5px;
}

.menu_box
{
    min-width:10px;
    height:100px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:400;
    color:#fff;
    text-transform: uppercase;
    cursor:pointer;
    position:relative;
    letter-spacing: 1px;
    text-decoration: none;
    padding-top:6px;
}

.menu_box:after
{
    content:'';
    width:0%;
    height:1px;
    background-color:var(--main_color);
    position:absolute;
    top:68px;
    transition: all 0.3s ease;
}

.menu_box:hover:after
{
    width:100%;
}

.menu_dropdown
{
    width:230px;
    min-height:50px;
    background-color:#fff;
    position:absolute;
    top:120px;
    left:0px;
    border-radius:5px;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    opacity:0;
    transition: all 0.3s ease;
    visibility: hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:15px;
    padding:15px;
}

.menu_box:hover .menu_dropdown
{
    opacity:1;
    top:100px;
    visibility: visible;
}

.menu_dropdown_line
{
    width:100%;
    min-height:10px;
    float:left;
    transition: all 0.3s ease;
    color:#333;
    letter-spacing: 1px;
    text-decoration: none;
}

.menu_dropdown_line img
{
    height: 16px;
    width: 20px;
    float: left;
    margin: 2px 0px;
    margin-right: 7px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #dadada;
}

.menu_dropdown_line:hover
{
    color:var(--main_color);
}

.menu_right_iconbox
{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu_right_iconbox img
{
    width:32px;
    height:32px;
    object-fit: contain;
    object-position: center;
}

.menu_right_contents
{
    flex:1;
    min-height:10px;
    float:left;
    padding-top:10px;
}

.menu_right_contents h4
{
    width: 100%;
    float: left;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 0px;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 2px;
    line-height: 17px;
}

.menu_right_contents h3
{
    width: 100%;
    float: left;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    margin: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 20px;
}

.menu_language_outer
{
    width:80px;
    height:100px;
    float:left;
    border-right:1px solid var(--border_color);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0px 20px;
    cursor:pointer;
    position:relative;
}

.menu_language_select
{
    width:100%;
    height:32px;
    float:left;
    margin-top:2px;
    border:1px solid var(--border_color);
    padding:5px;
}

.menu_language_flag
{
    width:100%;
    height:20px;
    float:left;
    object-fit: cover;
    object-position: center;
}

.language_dropdown
{
    width:170px;
    min-height:50px;
    background-color:#fff;
    position:absolute;
    top:120px;
    right:0px;
    border-radius:5px;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    opacity:0;
    transition: all 0.3s ease;
    visibility: hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:15px;
    padding:15px;
}

.menu_language_outer:hover .language_dropdown
{
    opacity:1;
    top:100px;
    visibility: visible;
}

.menu_offer_btn
{
    width:50px;
    height:50px;
    background-color:var(--main_color);
    position:fixed;
    right:0px;
    top:130px;
    z-index: 44;
    border-radius:10px 0px 0px 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    animation-name: buttonBlink;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    font-size:25px;
    cursor:pointer;
}

@keyframes buttonBlink
{
    0%
    {
        background-color:var(--main_color);
        color:#333;
    }
    50%
    {
        background-color:#333;
        color:var(--main_color);
    }
    100%
    {
        background-color:var(--main_color);
        color:#333;
    }
}

.menu_customer_btn_otuer
{
    min-width:40px;
    height:40px;
    float:left;
    position:fixed;
    right:0px;
    top:70px;
    background-color:var(--main_color);
    z-index:44;
    border-radius:10px 0px 0px 10px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    padding:0px 10px;
    transition: all 0.5s ease;
    text-decoration: none;
    color:#333;
}

.menu_customer_btn_otuer span
{
    max-width:0px;
    font-size:16px;
    font-weight:500;
    letter-spacing: 1px;
    line-height:16px;
    margin-top:2px;
    word-break:unset;
    white-space: nowrap;
    overflow: hidden;
    transition: all 1s ease;
}

.menu_customer_btn_otuer:hover span
{
    max-width:350px;
    margin-left:10px;
}

.menu_offer_box_outer
{
    width:400px;
    height:100vh;
    background-color:var(--bg_color);
    position:fixed;
    right:0px;
    top:0px;
    z-index:60;
    -webkit-box-shadow: -3px 0px 16px -4px rgba(0,0,0,0.3);
    -moz-box-shadow: -3px 0px 16px -4px rgba(0,0,0,0.3);
    box-shadow: -3px 0px 16px -4px rgba(0,0,0,0.3);
    visibility: hidden;
    transition: all 0.3s ease;
    opacity:0;
    right:-400px;
}

.menu_offer_box_close_btn
{
    width:50px;
    height:50px;
    background-color:var(--main_color);
    position:absolute;
    left:-50px;
    top:130px;
    z-index: 44;
    border-radius:10px 0px 0px 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    cursor:pointer;
}

.menu_offer_box_open
{
    visibility: visible;
    opacity:1;
    right:0px!important;
    transition: all 0.3s ease;
}

.menu_offer_box_inner
{
    width:100%;
    height:100vh;
    position:relative;
    z-index:15;
    padding:20px;
    overflow:auto;
}

.menu_offer_box_inner::-webkit-scrollbar
{
    width: 5px;
}

.menu_offer_box_inner::-webkit-scrollbar-track
{
    background: #2d2d2d;
}

.menu_offer_box_inner::-webkit-scrollbar-thumb
{
    background: #414141;
}

.menu_offer_box_inner::-webkit-scrollbar-thumb:hover
{
    background: #555;
}

.menu_offer_box_title
{
    width:100%;
    min-height:10px;
    float:left;
    margin-bottom:10px;
}

.menu_offer_box_title h3
{
    width:100%;
    font-size:28px;
    font-weight:300;
    color:var(--main_color);
    float:left;
    margin:0px;
    letter-spacing: 2px;
}

.menu_offer_box_title h3 span
{
    float:right;
    color:#fff;
    display:none;
}

.menu_offer_box_notification
{
    width: 100%;
    min-height: 20px;
    background-color: rgba(255,255,255,0.1);
    padding: 11px;
    border-radius: 7px;
    float: left;
    font-size: 12px;
    font-weight: 200;
    color: #ffffffcf;
    font-family: "Rubik", sans-serif;
    line-height: 22px;
    margin-bottom:15px;
}

.menu_offer_inputBox
{
    width:100%;
    min-height:10px;
    float:left;
    margin-bottom:10px;
    margin-bottom:15px;
}

.menu_offer_inputBox p
{
    width:100%;
    float:left;
    font-size:13px;
    font-weight:200;
    color:#fff;
    letter-spacing: 1px;
    font-family: "Rubik", sans-serif;
    margin:0px;
    margin-bottom:7px;
}

.menu_offer_inputBox input
{
    width:100%;
    height:40px;
    float:left;
    font-size:12px;
    font-weight:300;
    color:#fff;
    letter-spacing: 1px;
    font-family: "Rubik", sans-serif;
    margin:0px;
    border:0px!important;
    outline:0px!important;
    background-color:rgba(255,255,255,0.2);
    padding:0px 10px;
    border-radius: 4px;
}

.menu_offer_inputBox input::placeholder
{
    color: #ffffffaf;
}

.menu_offer_inputBox input::-ms-input-placeholder
{
    color: #ffffffaf;
}

.menu_offer_inputBox textarea
{
    width:100%;
    height:140px;
    float:left;
    font-size:12px;
    font-weight:300;
    color:#fff;
    letter-spacing: 1px;
    font-family: "Rubik", sans-serif;
    margin:0px;
    border:0px!important;
    outline:0px!important;
    background-color:rgba(255,255,255,0.2);
    padding:7px 10px;
    border-radius: 4px;
    resize: none;
}

.menu_offer_inputBox textarea::placeholder
{
    color: #ffffffaf;
}

.menu_offer_inputBox textarea::-ms-input-placeholder
{
    color: #ffffffaf;
}

.menu_offer_box_inner button
{
    width:100%;
    float:left;
    border:0px!important;
    outline:0px!important;
    margin-bottom:10px;
}

.menu_offer_checks
{
    width:100%;
    min-height:10px;
    float:left;
}

.menu_offer_check_box
{
    width:50%;
    height:30px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    cursor:pointer;
    margin:0px;
    text-decoration: none;
}

.menu_offer_check
{
    width:14px;
    height:14px;
    background-color:#fff;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:13px;
}

.menu_offer_check_box p
{
    flex:1;
    margin:0px;
    font-size:11px;
    font-weight:400;
    color:#fff;
    font-family: "Rubik", sans-serif;
    margin-top:2px;
}

.menu_offer_check_box input
{
    display:none;
}

.menu_offer_check_box input:checked + .menu_offer_check
{
    background-color:var(--main_color);
    color:#333;
}

.mobile_menu_outer
{
    width:100%;
    height:100vh;
    position:fixed;
    left:-100%;
    top:0px;
    z-index:444;
    background-color:var(--bg_color);
    overflow:auto;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile_menu_top_outer
{
    width:100%;
    height:80px;
    float:left;
    padding:25px 15px;
    border-bottom:1px solid var(--border_color);
    position:relative;
    z-index:3;
}

.mobile_menu_close
{
    width:30px;
    height:30px;
    float:right;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    font-weight:500;
    color:#fff;
}

.mobile_menu_contents_outer
{
    width:100%;
    min-height:50px;
    float:left;
    padding:25px;
    position:relative;
    z-index:3;
}

.mobile_menu_buttons_outer
{
    width:100%;
    min-height:50px;
    float:left;
    border-bottom:1px solid var(--border_color);
    padding-top:5px;
    padding-bottom:5px;
    margin-bottom:30px;
}

.mobile_menu_button
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.mobile_menu_button a
{
    flex:1;
    float:left;
    font-size:21px;
    font-weight:400;
    color:#fff;
    text-transform: uppercase;
    text-decoration: none;
    line-height:25px;
    margin-top:4px;
    letter-spacing: 2px;
}

.mobile_menu_button_right
{
    width:80px;
    height:30px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    font-size:24px;
    padding-top:1px;
    color:#fff;
}

.mobile_submenus_outer
{
    width:100%;
    min-height:10px;
    float:left;
    padding-left:15px;
    margin-top:-10px;
}

.mobile_submenus_outer .mobile_menu_button a
{
    font-size:18px;
}

.mobile_submenus_outer .mobile_menu_button
{
    margin-bottom:10px; 
    opacity:0.6;
}

.mobile_menu_text_outer
{
    width:100%;
    min-height:10px;
    float:left;
    font-family: "Rubik", sans-serif;
    font-size:14px;
    font-weight:300;
    color:#fff;
    line-height:24px;
    opacity:0.7;
    margin-bottom:30px;
}

.mobile_menu_link_line
{
    width:100%;
    min-height:10px;
    float:left;
    font-size:16px;
    font-weight:500;
    color:#fff;
    margin-bottom:10px;
    font-family: "Rubik", sans-serif;
    text-decoration: none!important;
}

.mobile_menu_social_outer
{
    width:100%;
    min-height:20px;
    float:left;
    margin-top:10px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:15px;
}

/* Menu */

/* Slider */

.slider_outer
{
    width:100%;
    height:100vh;
    float:left;
    position:relative;
    z-index:1;
    margin-top:-101px;
    overflow:hidden;
}

.slider_inner
{
    width:100%;
    height:calc(100vh - 101px);
    margin-top:101px;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slider_left_socials
{
    width:32px;
    height:303px;
    position:absolute;
    left:10px;
    bottom:20px;
    overflow:hidden;
}

.slider_left_social_box
{
    min-width:10px;
    height:30px;
    float:left;
    font-size:13px;
    font-weight:500;
    color:#fff;
    text-transform: uppercase;
    display:flex;
    align-items:Center;
    justify-content:center;
    letter-spacing: 2px;
    line-height:12px;
    cursor:pointer;
    transition: all 0.3s ease;
    text-decoration:none!important;
}

.slider_left_social_box:hover
{
    color:var(--main_color);
}

.slider_left_social_box:nth-child(4)
{
    width: 60px;
    transform: rotate(-90deg);
    position: absolute;
    left: -15px;
    bottom: 15px;
}
.slider_left_social_box:nth-child(3)
{
    width: 65px;
    transform: rotate(-90deg);
    position: absolute;
    left: -17px;
    bottom: 86px;
}

.slider_left_social_box:nth-child(2)
{
    width: 75px;
    transform: rotate(-90deg);
    position: absolute;
    left: -22px;
    bottom: 165px;
}

.slider_left_social_box:nth-child(1)
{
    width: 75px;
    transform: rotate(-90deg);
    position: absolute;
    left: -22px;
    bottom: 250px;
}

.slider_left_worktimes
{
    width:32px;
    height:300px;
    position:absolute;
    right:10px;
    top:20px;
}

.slider_left_worktimes_box
{
    width: 146px;
    height: 32px;
    float: left;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: Center;
    justify-content: center;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.slider_left_worktimes_box:hover
{
    color:var(--main_color);
}

.slider_left_worktimes_box:nth-child(1)
{
    width: 130px;
    position: absolute;
    transform: rotate(90deg);
    left: -49px;
    bottom: 220px;
}

.slider_left_worktimes_box:nth-child(2)
{
    width: 160px;
    position: absolute;
    transform: rotate(90deg);
    left: -64px;
    bottom: 64px;
}

.slider_bg_image
{
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background-color:var(--bg_color);
}

.slider_bg_image img
{
    position:absolute;
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    opacity:0.3;
    transition: all 8s ease;
}

.slider_bottom_right
{
    width:60vh;
    height:60vh;
    position:absolute;
    right:0px;
    bottom:0px;
    z-index:1;
}

.slider_bottom_right_inner
{
    width:60vh;
    height:60vh;
    background-color:var(--main_color);
    mask: url('../images/icons/slider_right_bottom.svg') no-repeat center / contain;
    -webkit-mask: url('../images/icons/slider_right_bottom.svg') no-repeat center / contain;
    opacity:0.7;
}

.slider_top_right
{
    width:40vh;
    height:65vh;
    position: absolute;
    right:0px;
    top:0px;
    background-color:#fff;
    z-index:2;
    mask: url('../images/icons/slider_right_top.svg') no-repeat center right / contain;
    -webkit-mask: url('../images/icons/slider_right_top.svg') no-repeat center right / contain;
    opacity:0.1;
}

.slider_center_contents_outer
{
    width:80%;
    min-height:50px;
    float:left;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.slider_center_contents
{
    flex:1;
    min-height:50px;
    float:left;
    position:relative;
}

.slider_center_contents h5
{
    width:100%;
    float:left;
    font-size:25px;
    font-weight:200;
    color:#fff;
    margin:0px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom:15px;
    position:relative;
    z-index:3;
}

.slider_center_contents h3
{
    width:100%;
    float:left;
    font-size:85px;
    font-weight:500;
    color:#fff;
    margin:0px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height:95px;
    position:relative;
    z-index:3;
}

.slider_center_contents h6
{
    width:100%;
    float:left;
    font-size:30px;
    font-weight:300;
    color:#fff;
    margin:0px;
    letter-spacing: 1px;
    position:relative;
    z-index:3;
}

.slider_button_outer
{
    min-width:10px;
    height:56px;
    float:left;
    background-color:var(--main_color);
    border-radius:5px;
    padding:0px 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    padding-top:2px;
    margin-top:25px;
    cursor:pointer;
    z-index:3;
    transition: all 0.5s ease;
    text-decoration: none;
}

.slider_button_outer:after
{
    content:'';
    width:20px;
    height:56px;
    position:absolute;
    right:0px;
    bottom:0px;
    background-color:#171717;
    clip-path: polygon(100% 18%, 100% 0, 100% 100%, 0% 100%);
    z-index:1;
    opacity:0.5;
    transition: all 0.5s ease;
}

.slider_button_outer span
{
    font-size:20px;
    color:#333;
    font-weight:400;
    letter-spacing: 3px;
    line-height:25px;
    text-transform: uppercase;
    position:relative;
    z-index:3;
    transition: all 0.5s ease;
}

.slider_button_outer:hover:after
{
    width:120%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity:1;
}

.slider_button_outer:hover span
{
    color:#fff;
}

.slider_button_outer:hover
{
    background-color:#171717;
}

.slider_center_square
{
    width:120px;
    height:120px;
    position:absolute;
    left:-40px;
    top:-50px;
    z-index:1;
    float:left;
    opacity:0.3;
}

.slider_center_square img
{
    width:100%;
    height:120px;
    object-fit: contain;
    object-position: center;
    float:left;
}

.slider_center_buttons
{
    width:45px;
    min-height:50px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:15px;
}

.slider_button
{
    width:45px;
    height:45px;
    background-color:#fff;
    float:left;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#333;
    opacity:0.3;
    cursor:pointer;
    transition: all 0.3s ease;
}

.slider_button:hover
{
    opacity:1;
}

.slider_button:first-child
{
    padding-right:1px;
    padding-top:2px;
}

.slider_button:last-child
{
    padding-left:2px;
    padding-top:1px;
}

/* Slider */

/* Homepage */

.homepage_products_boxes_outer
{
    width:100%;
    min-height:20px;
    background-color:var(--bg_color);
    float:left;
    position:relative;
}

.homepage_products_boxes_inner
{
    width:100%;
    min-height:320px;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    padding:50px 20px;
    position:relative;
    z-index:4;
}

.bg_pattern
{
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    object-fit: cover;
    object-position: center;
    z-index:1;
}

.homepage_product_box_outer
{
    width:calc((100% / 6) - 20px);
    height:200px;
    background-color:#262626c4;
    margin:10px;
    float:left;
    border-radius:10px;
    position:relative;
    cursor:pointer;
    transition: all 0.5s ease;
    text-decoration: none;
}

.homepage_product_textbox_outer
{
    width:calc(((100% / 6) * 4) - 20px);
    height:200px;
    margin:10px;
    float:left;
}

.homepage_product_textbox_outer h3
{
    width:100%;
    float:left;
    font-size:50px;
    color:#fff;
    font-weight:400;
    letter-spacing: 2px;
    margin:0px;
    text-transform: uppercase;
    margin-bottom:15px;
    margin-top:-15px;
}

.homepage_product_textbox_outer h3 span
{
    color:var(--main_color);
}

.homepage_product_textbox_outer p
{
    width:100%;
    float:left;
    font-size:12px;
    color:#fff;
    font-weight:100;
    letter-spacing: 1px;
    margin:0px;
    opacity:0.7;
    font-family: "Rubik", sans-serif;
    line-height:25px;
}

.homepage_product_box_number
{
    width:50px;
    height:50px;
    position:absolute;
    left:15px;
    top:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    color:#fff;
    font-weight:300;
    letter-spacing: 3px;
    opacity:0.2;
    transition: all 0.5s ease;
}

.homepage_product_box_text
{
    width:calc(100% - 40px);
    min-height:10px;
    position:absolute;
    left:20px;
    bottom:15px;
    font-size:20px;
    color:#fff;
    font-weight:400;
    letter-spacing: 2px;
    line-height:25px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.homepage_product_box_icon
{
    width:45%;
    height:120px;
    background-color:var(--main_color);
    position:absolute;
    right:20px;
    top:10px;
    mask-repeat: no-repeat!important;
    mask-position: center!important;
    mask-size: contain!important;
    transition: all 0.5s ease;
}

.homepage_product_box_outer:hover
{
    background-color:var(--main_color);
}

.homepage_product_box_outer:hover .homepage_product_box_text
{
    color:#333;
}

.homepage_product_box_outer:hover .homepage_product_box_number
{
    color:#333;
}

.homepage_product_box_outer:hover .homepage_product_box_icon
{
    background-color:#333;
}

.homepage_image_contnets_outer
{
    width:100%;
    min-height:50px;
    background-color:#fff;
    float:left;
    position:relative;
    border-bottom:1px solid var(--border_color);
    z-index:2;
}

.homepage_image_contnets_outer:before
{
    content:'';
    width:40%;
    height:100%;
    position:absolute;
    z-index:1;
    left:0px;
    top:0px;
    background: rgb(240,240,240);
    background: linear-gradient(0deg, rgba(240,240,240,1) 0%, rgba(255,255,255,1) 100%);
}

.homepage_image_contents_inner
{
    width:100%;
    min-height:150px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    position:relative;
    z-index:3;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.homepage_image_contents_image1
{
    width:80%;
    height:auto;
    float:right;
    position:relative;
}

.homepage_image_contents_image1:before
{
    content:'';
    display:block;
    padding-bottom:170%;
}

.homepage_image_contents_image1:after
{
    content:'';
    width:10px;
    height:calc(100% - 190px);
    background-color:var(--main_color);
    position:absolute;
    top:0px;
    right:calc(((100% / 8) * 10) - 10px);
    border-radius:10px;
}

.homepage_image_contents_image1 img
{
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    object-fit: cover;
    object-position: center;
    border-radius:10px;
}

.homepage_image_contents_image2
{
    width:80%;
    height:auto;
    float:left;
    margin-top:-150px;
    position:relative;
    z-index:2;
}

.homepage_image_contents_image2:before
{
    content:'';
    display:block;
    padding-bottom:80%;
}

.homepage_image_contents_image2 img
{
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    border-radius:10px;
    object-fit: cover;
    object-position: center;
}

.homepage_image_contents_texts
{
    width:100%;
    min-height:20px;
    float:left;
}

.homepage_image_contents_texts h3
{
    width:100%;
    float:left;
    color:#333;
    font-weight:400;
    letter-spacing: 1px;
    font-size:53px;
    text-transform: uppercase;
    line-height:60px;
    margin-bottom:25px;
}

.homepage_image_contents_texts h3 span
{
    color:var(--main_color);
}

.homepage_image_contents_texts h4
{
    width:100%;
    float:left;
    color:var(--main_color);
    font-weight:300;
    letter-spacing: 2px;
    font-size:20px;
    text-transform: uppercase;
    line-height:30px;
    margin-bottom:20px;
}

.homepage_image_contents_texts p
{
    width:100%;
    float:left;
    color:#333;
    font-weight:300;
    font-size:16px;
    font-family: "Rubik", sans-serif;
    line-height:28px;
}

.homepage_image_contents_list_line
{
    width:100%;
    min-height:10px;
    float: left;
    margin-top:15px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.homepage_image_contents_list_line_circle_outer
{
    width:130px;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    border-left:2px solid var(--main_color);
}

.homepage_image_contents_list_line_list_outer
{
    flex:1;
    min-height:20px;
    border-right:2px solid var(--main_color);
    margin-right:-2px;
    padding-right:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:20px;
}

.homepage_list_line_circle
{
    width:90px;
    height:90px;
    background-color:#333;
    float:left;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:23px;
    color:#fff;
    line-height:25px;
    font-weight:300;
    padding-top:3px;
    position:relative;
}

.homepage_list_line_circle:before
{
    content:'';
    width:80px;
    height:80px;
    background-color:#333;
    float:left;
    position:absolute;
    border-radius:50%;
    left:-10px;
    top:-5px;
    z-index:-1;
    opacity: 0.2;
}

.homepage_list_line_box
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.homepage_list_line_box i
{
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:var(--main_color);
}

.homepage_list_line_box p
{
    flex:1;
    color:#333;
    float:left;
    margin:0px;
    font-size:15px;
    font-family: "Rubik", sans-serif;
}

.homepage_sss_line_outer
{
    width:100%;
    min-height:20px;
    float:left;
    position:relative;
    margin-top:-1px;
}

.homepage_sss_line_inner
{
    width:100%;
    min-height:20px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    position:relative;
    z-index:3;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.homepage_sss_line_contents
{
    width:100%;
    min-height:20px;
    float:left;
}

.homepage_sss_line_contents h3
{
    width:100%;
    float:left;
    color:#333;
    font-weight:400;
    letter-spacing: 1px;
    font-size:53px;
    text-transform: uppercase;
    line-height:60px;
    margin-bottom:25px;
}

.homepage_sss_line_contents h3 span
{
    color:var(--main_color);
}

.homepage_sss_line_contents_image_line
{
    width:100%;
    min-height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    float:left;
    gap:20px;
}

.homepage_sss_line_image
{
    width:200px;
    height:140px;
    float:left;
}

.homepage_sss_line_image img
{
    width:200px;
    height:140px;
    object-fit: cover;
    object-position:center;
    border-radius:10px;
    filter: grayscale(100%);
}

.homepage_sss_line_contents_image_line p
{
    flex:1;
    font-size:16px;
    color:#333;
    font-family: "Rubik", sans-serif;
    font-weight: 300;
    margin:0px;
    line-height:30px;
}

.homepage_sss_boxes_outer
{
    width:100%;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:20px;
}

.homepage_sss_box
{
    width:100%;
    min-height:20px;
    background-color:#fff;
    float:left;
    border-radius:7px;
    -webkit-box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.05);
    padding:15px;
    cursor:pointer;
}

.homepage_sss_box_title
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.homepage_sss_box_icon
{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--main_color);
    transition: all 0.5s ease;
}

.homepage_sss_box_title_text
{
    flex:1;
    min-height:10px;
    float:left;
    font-size:23px;
    font-weight:300;
    color:#333;
    letter-spacing: 1px;
    line-height:26px;
    margin-top:3px;
}

.homepage_sss_box_title_text span
{
    color:var(--main_color);
    margin-right:5px;
}

.homepage_sss_box_contents
{
    width:100%;
    height:0px;
    float:left;
    font-size:15px;
    font-weight:300;
    color:#333;
    font-family: "Rubik", sans-serif;
    transition: all 0.5s ease;
    overflow:hidden;
}

.homepage_portfolio_outer
{
    width:100%;
    min-height:20px;
    float:left;
    border-top:1px solid var(--border_color);
    background-color:#fff;
}

.homepage_portfolio_inner
{
    width:100%;
    min-height:20px;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    padding:20px;
}

.homepage_portfolio_top_line
{
    width:100%;
    min-height:20px;
    float:left;
    align-items:center;
    display:flex;
    justify-content:center;
    text-transform:uppercase;
    gap:20px;
    padding:20px;
}

.homepage_portfolio_tabs_outer
{
    min-width:10px;
    height:40px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    text-transform:uppercase;
    font-weight:300;
    color:#333;
    letter-spacing: 3px;
    font-size:23px;
    padding:0px;
    padding-top:4px;
    cursor:pointer;
    border-bottom:2px solid #fff;
    opacity:0.5;
    background-color:transparent;
    border:0px!important;
    outline:0px!important;
}

.homepage_portfolio_tabs_outer span
{
    font-size: 13px;
    float: right;
    font-weight: 500;
    letter-spacing: 2px;
    margin-left: 1px;
    margin-top: -20px;
}

.homepage_portfolio_tabs_title
{
    flex:1;
    min-height:10px;
    float:left;
    color:#333;
    text-transform: uppercase;
    font-size:40px;
    font-weight:400;
    letter-spacing: 2px;
}

.homepage_portfolio_tabs_title span
{
    color:var(--main_color);
}

.homepage_portfolio_top_line .mixitup-control-active
{
    border-bottom:2px solid var(--main_color)!important;
    opacity:1!important;
}

.homepage_portfolio_tab_select
{
    border-bottom:2px solid var(--main_color);
    opacity:1;
}

.portfolio_box_outer
{
    width:100%;
    min-height:20px;
    float:left;
    border-radius:10px;
    overflow:hidden;
    cursor:pointer;
    position:relative;
}

.portfolio_box_outer:before
{
    content:'';
    display:block;
    padding-bottom:130%;
}

.portfolio_box_outer img
{
    width:100%;
    height:100%;
    position:absolute;
    z-index:1;
    left:0px;
    top:0px;
    object-fit: cover;
    object-position: center top;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.portfolio_box_contents
{
    width:calc(100% - 40px);
    min-height:20px;
    background-color:#333;
    position:absolute;
    left:20px;
    bottom:60px;
    border-radius:7px;
    z-index:2;
    padding:20px;
    opacity:0;
    transition: all 0.3s ease;
    visibility: hidden;
}

.portfolio_box_outer:hover .portfolio_box_contents
{
    opacity:1;
    bottom:20px;
    visibility: visible;
}

.portfolio_box_outer:hover img
{
    filter: grayscale(0%);
}

.portfolio_box_contents h4
{
    width:100%;
    float:left;
    font-size:15px;
    color:#fff;
    margin:0px;
    text-transform: uppercase;
    font-weight:300;
    letter-spacing: 2px;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
}

.portfolio_box_contents h4:after
{
    content:'';
    flex:1;
    height:2px;
    background-color:var(--main_color);
    margin-top:-7px;
}

.portfolio_box_contents h3
{
    width:100%;
    float:left;
    font-size:30px;
    color:#fff;
    margin:0px;
    text-transform: uppercase;
    font-weight:400;
    letter-spacing: 2px;
    margin-bottom:-10px;
}

.homepage_counter_line_outer
{
    width:100%;
    min-height:30px;
    background-color:var(--bg_color);
    float:left;
    position:relative;
    z-index:3;
}

.homepage_counter_line_inner
{
    width:100%;
    min-height:20px;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.homepage_counter_line_bg
{
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    z-index:1;
    background-size:cover;
    background-attachment: fixed;
    filter: grayscale(100%);
    opacity: 0.7;
}

.homepage_counter_line_box
{
    flex:1;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    border-right:1px solid var(--border_color);
    padding:40px 0px;
    position:relative;
}

.homepage_counter_line_box:before
{
    content:'';
    width:0%;
    height:4px;
    background-color:var(--main_color);
    top:0px;
    position:absolute;
    transition: all 0.3s ease;
}

.homepage_counter_line_box:last-child
{
    border-right:0px;
}

.homepage_counter_line_box h3
{
    width:100%;
    float:left;
    font-size:65px;
    color:#fff;
    text-align:center;
    font-weight:300;
    letter-spacing: 2px;
    margin:0px;
}

.homepage_counter_line_box h4
{
    width:100%;
    float:left;
    font-size:23px;
    color:#fff;
    text-align:center;
    font-weight:400;
    letter-spacing: 2px;
    margin:0px;
    text-transform: uppercase;
}

.homepage_counter_line_box:hover:before
{
    width:100%;
}

.team_line_outer
{
    width:100%;
    min-height:20px;
    float:left;
    background-color:#fff;
}

.team_line_inner
{
    width:100%;
    min-height:50px;
    float:left;
    padding:0px 20px;
    padding-top:30px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
}

.team_line_title_outer
{
    width:100%;
    min-height:20px;
    float:left;
}

.team_line_title_outer h4
{
    width:100%;
    float:left;
    font-size:18px;
    font-weight:300;
    color:var(--main_color);
    text-align:center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin:0px;
    margin-bottom:5px;
}

.team_line_title_outer h3
{
    width:100%;
    float:left;
    font-size:37px;
    font-weight:400;
    color:#333;
    text-align:center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin:0px;
}

.team_line_title_outer h3 span
{
    color:var(--main_color);
}

.team_avatar_line
{
    width:100%;
    min-height:50px;
    float:left;
    margin-top:0px;
}

.avatar_box_outer
{
    width:calc((100% / 8) + 100px);
    min-height:20px;
    float:left;
    margin:0px -50px;
}

.avatar_box_outer img
{
    width:100%;
    float:left;
}

.homepage_line_slogan_outer
{
    width:100%;
    min-height:50px;
    background-color:#000;
    float:left;
    position:relative;
}

.homepage_line_slogan_inner
{
    width:100%;
    min-height:50px;
    padding:30px;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    position:relative;
    z-index:3;
    padding:60px 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
}

.homepage_line_slogan_circle
{
    width:120px;
    height:120px;
    background-color:var(--main_color);
    border-radius:50%;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.homepage_line_slogan_circle:before
{
    content:'';
    width:120px;
    height:120px;
    position:absolute;
    left:-15px;
    top:-15px;
    background-color:var(--main_color);
    opacity: 0.2;
    border-radius:50%;
}

.homepage_line_slogan_circle_icon
{
    width:80px;
    height:80px;
    background-color:#333;
    position:relative;
    z-index:3;
    mask-repeat: no-repeat!important;
    mask-position: center!important;
    mask-size: contain!important;
}

.homepage_line_slogan_text
{
    width: 80%;
    min-height: 20px;
    float: left;
    margin-top: 25px;
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 70px;
}

.homepage_line_slogan_text span
{
    color:var(--main_color);
}

.homepage_referances_line
{
    width:100%;
    min-height:20px;
    float:left;
    background-color:#fff;
}

.homepage_referances_line_inner
{
    width:100%;
    min-height:20px;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    padding:75px 10px;
}

.homepage_referances_line_slider
{
    width:100%;
    min-height:10px;
    float:left;
}

.referances_box
{
    width:100%;
    padding:0px 25px;
    float:left;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.referances_box img
{
    width:100%;
    height:40px;
    float:left;
    object-fit: contain;
    object-position: center;
}

.referances_box:hover
{
    filter: grayscale(0%);
}

.homepage_blogs_outer
{
    width:100%;
    min-height:20px;
    float:left;
    position:relative;
    padding-bottom:90px;
}

.homepage_blogs_inner
{
    width:100%;
    min-height:20px;
    float:left;
    position:relative;
    z-index:4;
    padding:40px 20px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
}

.homepage_blogs_title
{
    width:100%;
    min-height:10px;
    float:left;
    font-size:55px;
    color:#333;
    text-align:center;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom:15px;
}

.homepage_blogs_title span
{
    color:var(--main_color);
}

.blogboxImage
{
    width:100%;
    height:200px;
    border-radius:10px;
    position:relative;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

.blogboxImage img
{
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    z-index:1;
    object-fit: cover;
    object-position:center;
    border-radius:10px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.blog_box_image_line
{
    width:calc(100% - 30px);
    height:50px;
    background-color:#fff;
    position:absolute;
    left:15px;
    bottom:-25px;
    border-radius:7px;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    z-index:3;
}

.blog_box_line_box
{
    width:calc(100% / 3);
    height:30px;
    float:left;
    padding:0px 3px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:2px;
}

.blog_box_line_box i
{
    width:24px;
    height:24px;
    color:var(--main_color);
    text-align: center;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    padding-top:1px;
}

.blog_box_line_box p
{
    width:calc(100% - 26px);
    font-size:15px;
    font-weight:400;
    color:#333;
    float:left;
    text-transform: uppercase;
    margin:0px;
    margin-top:3px;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogbox_contents_line_outer
{
    width:100%;
    min-height:20px;
    float:left;
    margin-top:40px;
}

.blogbox_contents_line_outer h3
{
    width:100%;
    float:left;
    text-align:center;
    font-size:26px;
    text-transform: uppercase;
    font-weight:400;
    color:#333;
    transition: all 0.3s ease;
    margin-bottom:10px;
    height: 55px;
    overflow: hidden;
}

.blogbox_contents_line_outer p
{
    width: 100%;
    height: 63px;
    float: left;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #333;
    font-family: "Rubik", sans-serif;
    margin: 0px;
    overflow: hidden;
}

.blogbox_contents
{
    width:100%;
    min-height:10px;
    float:left;
    cursor:pointer;
    text-decoration: none;
}

.blogbox_contents:hover .blogboxImage img
{
    filter: grayscale(0%);
}

.blogbox_contents:hover .blogbox_contents_line_outer h3
{
    color:var(--main_color);
    text-decoration: underline;
}

.footer_top_box_image1
{
    width:250px;
    height:250px;
    position:absolute;
    right:0px;
    top:0px;
    background-color:#333;
    mask: url(../images/icons/slider_right_bottom.svg) no-repeat center / contain;
    -webkit-mask: url(../images/icons/slider_right_bottom.svg) no-repeat center / contain;
    opacity: 0.2;
    transform: rotate(-90deg);
}

.footer_top_box_image2
{
    width:300px;
    height:300px;
    position:absolute;
    background-color:#fff;
    right:50px;
    top:0px;
    mask: url(../images/icons/slider_right_top.svg) no-repeat center right / contain;
    -webkit-mask: url(../images/icons/slider_right_top.svg) no-repeat center right / contain;
    opacity: 0.1;
    transform: rotate(-90deg);
}

/* Homepage */

/* Footer */

.footer_outer
{
    width:100%;
    min-height:30px;
    background-color:var(--bg_color);
    float:left;
    position:relative;
    z-index:4;
}

.footer_inner
{
    width:100%;
    min-height:10px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    padding:0px 10px;
    float:left;
    position:relative;
    z-index:4;
}

.footer_top_box_outer
{
    width:80%;
    min-height:150px;
    background-color:var(--main_color);
    border-radius:7px;
    margin:0px 10%;
    float:left;
    padding:50px 50px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:-100px;
    margin-bottom:30px;
}

.footer_top_box_text
{
    flex:1;
    min-height:10px;
    float:left;
    font-size:50px;
    color:#000;
    font-weight:500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 56px;
}

.footer_top_box_btn
{
    min-width:10px;
    height:56px;
    padding:0px 25px;
    background-color:#333;
    border-radius:6px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:pointer;
    float:left;
}

.footer_top_box_btn:after
{
    content:'';
    width:20px;
    height:56px;
    position:absolute;
    right:0px;
    bottom:0px;
    background-color:#171717;
    clip-path: polygon(100% 18%, 100% 0, 100% 100%, 0% 100%);
    z-index:1;
    opacity:0.5;
    transition: all 0.5s ease;
}

.footer_top_box_btn span
{
    font-size:20px;
    color:#fff;
    font-weight:400;
    letter-spacing: 4px;
    line-height:25px;
    text-transform: uppercase;
    position:relative;
    z-index:3;
    transition: all 0.5s ease;
    margin-top:3px;
}

.footer_top_box_btn:hover:after
{
    width:120%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity:1;
}

.footer_top_box_btn:hover span
{
    color:#fff;
}

.footer_bottom_line
{
    width:100%;
    min-height:10px;
    float:left;
    border-top:1px solid var(--border_color);
    padding:15px 0px;
    margin-top:0px;
    padding-bottom:0px;
}

.footer_bottom_line p
{
    width:100%;
    font-size:11px;
    font-weight:400;
    color:#fff;
    margin:0px;
    float:left;
    font-family: "Rubik", sans-serif;
    margin-bottom:7px;
}

.footer_bottom_line span
{
    width:100%;
    font-size:9px;
    font-weight:200;
    color:#fff;
    margin:0px;
    float:left;
    font-family: "Rubik", sans-serif;
    opacity: 0.7;
}

.footer_image_line
{
    width:100%;
    min-height:30px;
    float:left;
    margin-bottom:25px;
}

.footer_image_line img
{
    width:50%;
    float:left;
}

.footer_image_text
{
    width: 100%;
    min-height: 10px;
    float: left;
    font-size: 12px;
    line-height: 25px;
    font-weight: 200;
    color: #fff;
    font-family: "Rubik", sans-serif;
    opacity: 0.6;
}

.footer_social_line_outer
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    flex-wrap: wrap;
    margin-top:20px;
}

.footer_social_box
{
    width:37px;
    height:37px;
    float:left;
    background-color:#ffffff27;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:pointer;
    font-size:15px;
    color:#fff;
    padding-top:2px;
    position:relative;
    text-decoration: none;;
}

.footer_social_box i
{
    position:relative;
    z-index:3;
}

.footer_social_box::before
{
    content:'';
    width:0%;
    height:0%;
    border-radius:50%;
    position:absolute;
    z-index:1;
    transition: all 0.3s ease;
}

.footer_social_box:hover::before
{
    width:100%;
    height:100%;
}

.facebook_btn::before
{
    background-color:#3b5998;
}

.twitter_btn::before
{
    background-color:#00acee;
}

.instagram_btn::before
{
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.linkedin_btn::before
{
    background-color:#0e76a8;
}

.footer_contents_title
{
    width:100%;
    min-height:10px;
    float:left;
    font-size:24px;
    color:#fff;
    font-weight:300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom:15px;
}

.footer_contents_line
{
    width:100%;
    min-height:10px;
    float:left;
    font-size:12px;
    font-weight:300;
    color:#fff;
    font-family: "Rubik", sans-serif;
    letter-spacing: 1px;
    margin-bottom:13px;
    opacity:0.8;
    cursor:pointer;
    transition: all 0.5s ease;
    text-decoration: none;
}

.footer_contents_line:hover
{
    color:var(--main_color);
    opacity: 1;
}

.footer_contact_line
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    gap:10px;
    margin-bottom:15px;
    text-decoration: none;
}

.footer_contact_line_icon
{
    width:25px;
    height:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--main_color);
    font-size:20px;
}

.footer_contact_line p
{
    flex: 1;
    font-size: 13px;
    color: #fff;
    opacity: 0.7;
    font-family: "Rubik", sans-serif;
    margin: 0px;
    font-weight: 300;
    line-height: 24px;
}

.footer_input_outer
{
    width:100%;
    height:55px;
    background-color:rgba(255,255,255,0.1);
    float:left;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    gap:10px;
    margin-bottom:15px;
}

.footer_input_outer button
{
    width: 35px;
    height: 35px;
    background-color: var(--main_color);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 0px!important;
    outline: 0px!important;
    border-radius: 50%;
    padding-top:2px;
}

.footer_input_outer input
{
    flex:1;
    height:35px;
    float:left;
    font-size:14px;
    font-weight:400;
    color:#fff;
    font-family: "Rubik", sans-serif;
    background-color:transparent;
    border:0px!important;
    outline:0px!important;
}

.footer_btn
{
    width:40px;
    height:40px;
    background-color:var(--main_color);
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    right:15px;
    bottom:15px;
    border-radius:50%;
    z-index:44;
    color:#333;
    cursor:pointer;
    font-size:18px;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

/* Footer */

/* Content Page */

.page_title_outer
{
    width:100%;
    min-height:10px;
    background-color:#000;
    float:left;
    padding-top:101px;
    margin-top:-101px;
    position:relative;
    overflow:hidden;
}

.page_title_outer .slider_bg_image
{
    opacity: 0.7;
}

.page_title_contents
{
    width:100%;
    min-height:20px;
    float:left;
    position:relative;
    z-index:4;
}

.page_title_contents_inner
{
    width:100%;
    min-height:50px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    padding:70px 30px;
}

.page_title_contents_inner h3
{
    width:100%;
    font-size:60px;
    text-align:center;
    font-weight: 600;
    color:#fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page_title_contents_inner p
{
    width:100%;
    font-size:20px;
    text-align:center;
    font-weight: 400;
    color:#fff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page_title_contents_inner span
{
    width: 100%;
    font-size: 17px;
    text-align: center;
    font-weight: 200;
    color: #fff;
    font-family: "Rubik", sans-serif!important;
    margin-top: -20px;
    line-height: 30px;
}

.page_title_contents_inner p span
{
    color:var(--main_color);
}

.page_title_contents_inner p a
{
    color:var(--main_color);
    text-decoration: none;
}

.content_page_outer
{
    width:100%;
    min-height:20px;
    background-color:#fff;
    float:left;
    position:relative;
}

.content_page_inner
{
    width:100%;
    min-height:20px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    float: left;
    padding:0px 30px;
    padding-bottom:170px;
    position:relative;
    z-index:3;
    font-family: "Rubik", sans-serif!important;
}

.blogs_page_inner
{
    width:100%;
    min-height:20px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    float: left;
    padding:10px;
    padding-bottom:170px;
    position:relative;
    z-index:3;
}

.contact_page_inner
{
    width:100%;
    min-height:20px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    float: left;
    padding:10px;
    padding-bottom:170px;
    position:relative;
    z-index:3;
}

.blogs_detal_page_inner
{
    width:100%;
    min-height:20px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    float: left;
    padding:10px;
    padding-bottom:170px;
    position:relative;
    z-index:3;
}

.content_page_inner *
{
    font-family: "Rubik", sans-serif!important;
}

.content_page_inner h1,
.content_page_inner h2,
.content_page_inner h3,
.content_page_inner h4,
.content_page_inner h5,
.content_page_inner h6
{
    margin-top:30px;
    margin-bottom:15px;
    color:var(--main_color);
}

/* Content Page */

/* Blogs */

.blog_search_outer
{
    width:100%;
    height:55px;
    background-color:var(--main_color);
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:7px;
    padding:10px;
    gap:10px;
    margin-bottom:15px;
}

.blog_search_outer button
{
    width:35px;
    height:35px;
    border:0px!important;
    outline:0px!important;
    background-color:transparent;
    float:left;
    color:#333;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.blog_search_outer input
{
    flex:1;
    height:35px;
    float:left;
    font-family: "Rubik", sans-serif;
    color:#000;
    border:0px!important;
    outline:0px!important;
    background-color:transparent;
    font-size:14px;
    padding-bottom:2px;
    padding-left:5px;
}

.blog_search_outer input::placeholder
{
    color: #000000b9;
}

.blog_search_outer input::-ms-input-placeholder
{
    color: #000000b9;
}

.blogs_last_boxes
{
    width:100%;
    min-height:50px;
    background-color:#f5f5f5;
    float:left;
    border-radius:7px;
    padding:20px;
    margin-bottom:15px;
}

.blogs_last_boxes h3
{
    width:100%;
    float:left;
    color:#333;
    margin:0px;
    font-size:20px;
    font-weight:400;
    letter-spacing: 1px;
    margin-bottom:15px;
    text-transform: uppercase;
}

.blogs_last_box
{
    width:100%;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor:pointer;
}

.blogs_last_box:last-child
{
    margin-bottom:5px;
}

.blogs_last_box_image
{
    width:45px;
    height:45px;
    float:left;
    background-color:#dadada;
    border-radius:50%;
    overflow:hidden;
}

.blogs_last_box_image img
{
    width:45px;
    height:45px;
    float:left;
    object-fit: cover;
    object-position: center;
}

.blogs_last_box:hover .blog_last_box_texts
{
    color:var(--main_color);
    opacity: 1;
}

.blog_last_box_texts
{
    flex:1;
    min-height:10px;
    float:left;
    font-size:19px;
    font-weight:300;
    color:#333;
    opacity: 0.8;
    text-transform: uppercase;
    line-height:23px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blogs_categories_line
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor:pointer;
    margin-bottom:10px;
    opacity: 0.7;
}

.blogs_categories_line:last-child
{
    margin-bottom:5px;
}

.blogs_categories_line_select
{
    opacity:1;
}

.blogs_categories_icon
{
    width:25px;
    height:25px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:2px;
    font-size:13px;
    margin-right:-5px;
    color:#333;
}

.blogs_categories_line_select .blogs_categories_icon
{
    color:var(--main_color);
}

.blogs_categories_text
{
    flex:1;
    min-height:10px;
    float:left;
    font-size:14px;
    font-weight:400;
    color:#333;
    font-family: "Rubik", sans-serif;
    transition: all 0.3s ease;
}

.blogs_categories_text small
{
    float:right;
    margin-top:5px;
}

.blogs_categories_line_select .blogs_categories_text
{
    color:var(--main_color);
}

.blogs_categories_line:hover
{
    opacity: 1;
}

.blogs_categories_line:hover .blogs_categories_text
{
    color:var(--main_color);
    padding-left:5px;
}

.blogs_tags_outer
{
    width:100%;
    min-height:10px;
    float:left;
    font-family: "Rubik", sans-serif;
    font-size:13px;
    font-weight:400;
    color:#333;
    line-height:30px;
}

.blogs_tags_outer a
{
    font-family: "Rubik", sans-serif;
    font-weight:400;
    text-decoration: none;
    color:#333;
    opacity: 0.8;
    transition: all 0.3s ease;
    white-space: nowrap;

}

.blogs_tags_select
{
    opacity:1!important;
    color:var(--main_color)!important;
}

.blogs_tags_outer a:hover
{
    color:var(--main_color);
    opacity: 1;
}

.blog_list_top
{
    width:100%;
    height:55px;
    float:left;
    background-color:#f5f5f5;
    border-radius:7px;
    font-size:17px;
    font-weight:400;
    color:#333;
    line-height:55px;
    padding-left:15px;
    letter-spacing: 1px;
}

.blog_list_paginations
{
    width:100%;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.blog_list_pagination_btn
{
    width:40px;
    height:40px;
    float:left;
    background-color:var(--main_color);
    border-radius:7px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#333;
    padding-right:2px;
    cursor:pointer;
    text-decoration: none;
    position:relative;
    overflow:hidden;
    transition: all 0.5s ease;
}

.blog_list_pagination_btn:last-child
{
    padding-left:4px;
}

.blog_list_pagination_btn:after
{
    content:'';
    width:10px;
    height:56px;
    position:absolute;
    right:0px;
    bottom:0px;
    background-color:#171717;
    clip-path: polygon(100% 18%, 100% 0, 100% 100%, 0% 100%);
    z-index:1;
    opacity:0.2;
    transition: all 0.5s ease;
}

.blog_list_pagination_btn i
{
    position:relative;
    z-index:3;
    transition: all 0.5s ease;
}

.blog_list_pagination_btn:hover:after
{
    width:120%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity:1;
}

.blog_list_pagination_btn:hover i
{
    color:#fff;
}

.blog_list_pagination_btn:hover
{
    background-color:#171717;
}

.blog_list_pagination_number
{
    width:40px;
    height:40px;
    float:left;
    background-color:#f5f5f5;
    border-radius:7px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#333;
    padding-right:2px;
    cursor:pointer;
    text-decoration: none;
    position:relative;
    overflow:hidden;
    transition: all 0.5s ease;
}

.blog_list_pagination_number_select
{
    width:40px;
    height:40px;
    float:left;
    background-color:#333;
    border-radius:7px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    color:#fff;
    padding-right:2px;
    cursor:pointer;
    text-decoration: none;
    position:relative;
    overflow:hidden;
    transition: all 0.5s ease;
    padding-top:2px;
    padding-left:3px;
}

/* Blogs */

/* Blog Detail */

.blog_detail_image
{
    width:100%;
    height:450px;
    background-color:#dadada;
    float:left;
    border-radius:10px;
    overflow: hidden;
}

.blog_detail_image img
{
    width:100%;
    height:450px;
    float:left;
    object-fit: cover;
    object-position: center;
}

.blog_image_bottom
{
    width:100%;
    min-height:10px;
    float:left;
    margin-top:10px;
    border-bottom:1px solid var(--border_color);
    padding-bottom:13px;
}

.blog_image_bottom .blog_box_line_box
{
    width:auto;
    margin-right:15px;
    padding:0px;
}

.blog_image_bottom .blog_box_line_box i
{
    font-size:18px;
    margin-right:3px;
}

.blog_image_bottom .blog_box_line_box p
{
    font-size:18px;
    margin-top:4px;
}

.blog_detail_contents
{
    width:100%;
    min-height:30px;
    float:left;
    margin-top:15px;
}

.blog_detail_contents *
{
    font-family: "Rubik", sans-serif!important;
}

.blog_detail_contents h1,
.blog_detail_contents h2,
.blog_detail_contents h3,
.blog_detail_contents h4,
.blog_detail_contents h5,
.blog_detail_contents h6
{
    font-family: "Teko", sans-serif!important;
    margin-bottom:15px;
    color:var(--main_color);
    font-weight:400;
    letter-spacing: 1px;
}

.blog_detail_bottom_tags
{
    width:100%;
    min-height:10px;
    float:left;
    border-top:1px solid var(--border_color);
    padding-top:15px;
    font-size:23px;
    font-weight:300;
    color:#333;
    letter-spacing: 1px;
}

.blog_detail_bottom_tags b
{
    font-weight:400;
}

.page_notification_outer
{
    width:100%;
    min-height:50px;
    background-color:rgb(255, 47, 0);
    float:left;
    margin-top:15px;
    border-radius:7px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    font-weight:300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom:18px;
}

/* Blog Detail */

/* Contact Page */

.contact_page_box_outer
{
    width:100%;
    min-height:300px;
    background-color:#f5f5f5;
    float:left;
    padding:20px;
    border-radius:7px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    cursor:pointer;
    transition:all 0.3s ease;
    color:#333;
}

.contact_page_box_select_outer
{
    background-color:var(--bg_color);
    color:#fff;
}

.contact_page_box_select_outer * b
{
    color:var(--main_color);
}

.contact_page_box_outer:hover
{
    background-color:var(--bg_color);
    color:#fff;
}

.contact_page_box_outer:hover * b
{
    color:var(--main_color);
}

.contact_page_box_outer h3
{
    width:100%;
    float:left;
    font-size:33px;
    font-weight:400;
    margin:0px;
    letter-spacing: 1px;
    margin-bottom:5px;
}

.contact_page_box_outer h4
{
    width: 100%;
    float: left;
    font-size: 20px;
    font-weight: 200;
    margin: 0px;
    margin-top: 10px;
    overflow: hidden;
}

.contact_page_box_outer h4 b
{
    font-weight:400;
    transition:all 0.3s ease;
}

.contact_page_box_outer h5
{
    width: 100%;
    float: left;
    font-size: 20px;
    font-weight: 200;
    margin: 0px;
    margin-top: 10px;
}

.contact_page_box_outer h5 b
{
    font-weight:400;
    transition:all 0.3s ease;
}

.contact_page_box_outer span
{
    width:100%;
    float:left;
    text-decoration: none;
    color:var(--main_color);
    font-size:23px;
    letter-spacing: 1px;
    font-weight:300;
    margin:0px;
    margin-top:15px;
}

.contact_map
{
    width:100%;
    height:450px;
    border-radius:10px;
    border:0px;
    margin:0px;
}

.contact_page_title_line
{
    width:100%;
    min-height:20px;
    float:left;
    font-size:45px;
    color:#333;
    text-align:center;
    text-transform: uppercase;
    font-weight:400;
    letter-spacing: 2px;
    margin-top:20px;
}

.contact_page_title_line span
{
    color:var(--main_color);
}

.contact_form_outer
{
    width:100%;
    min-height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    float:left;
}

.contact_inputbox_outer
{
    width:100%;
    min-height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact_inputbox_outer input
{
    width:100%;
    height:55px;
    background-color:#f0f0f0;
    float:left;
    border:0px!important;
    outline:0px!important;
    border-radius:7px;
    padding:0px 20px;
    color:#333;
    font-family: "Rubik", sans-serif;
    font-size:14px;
    font-weight:400;
}

.contact_inputbox_outer textarea
{
    width:100%;
    height:155px;
    resize: none;
    background-color:#f0f0f0;
    float:left;
    border:0px!important;
    outline:0px!important;
    border-radius:7px;
    padding:15px 20px;
    color:#333;
    font-family: "Rubik", sans-serif;
    font-size:14px;
    font-weight:400;
}

.contact_inputbox_outer button
{
    border:0px!important;
    outline:0px!important;
    margin-top:0px;
}

/* Contact Page */

/* Project */

.project_outer
{
    width:100%;
    min-height:50px;
    background-color:#fff;
    float:left;
}

.project_inner
{
    width:100%;
    min-height:50px;
    float:left;
    padding:20px;
    padding-bottom:150px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
}

/* Project */

/* Service Detail */

.service_right_phone_outer
{
    width:100%;
    min-height:50px;
    background-color:var(--bg_color);
    float:left;
    border-radius:7px;
    padding:20px;
    margin-bottom:15px;
}

.service_right_phone_outer h3
{
    width:100%;
    float:left;
    color:#fff;
    margin:0px;
    font-size:20px;
    font-weight:400;
    letter-spacing: 1px;
    margin-bottom:15px;
    text-transform: uppercase;
}

.service_right_phone_outer p
{
    width: 100%;
        float: left;
        color: #fff;
        margin: 0px;
        font-size: 13px;
        font-weight: 300;
        margin-bottom: 15px;
        font-family: "Rubik", sans-serif;
        line-height: 30px;
        opacity: 0.7;
}

.service_right_phone_outer .menu_right_outer
{
    border: 0px;
    width: 100%;
    padding: 0px;
    height: auto;
}

.service_right_phone_outer *.menu_right_contents h3
{
    margin:0px!important;
}

.product_packages_outer
{
    width:100%;
    min-height:20px;
    float:left;
}

.product_package_box
{
    width:100%;
    min-height:40px;
    float:left;
    border-radius:5px;
    overflow:hidden;
    -webkit-box-shadow: 0px 2px 13px -4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 13px -4px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 13px -4px rgba(0,0,0,0.2);
}

.product_package_box h3
{
    width:100%;
    float:left;
    font-size:23px;
    font-weight:400;
    color:#fff;
    margin:10px 0px;
    margin-top:12px;
    padding:0px 10px;
    text-transform: uppercase;
    text-align:center;
    letter-spacing: 1px;
}

.product_package_box_prices
{
    width:100%;
    min-height:10px;
    float:left;
    background-color:rgba(0, 0, 0, 0.5);
    padding:10px;
    margin-bottom:2px;
}

.product_package_box_prices h4
{
    width:100%;
    float:left;
    font-size:22px;
    font-weight:400;
    color:#fff;
    text-transform: uppercase;
    text-align:center;
    letter-spacing: 1px;
    margin:0px;
    margin-bottom:5px;
}

.product_package_box_prices h5
{
    width:100%;
    float:left;
    font-size:16px;
    font-weight:400;
    color:#fff;
    text-transform: uppercase;
    text-align:center;
    letter-spacing: 1px;
    margin:0px;
}

.product_package_box_prices h5 small
{
    opacity: 0.8;
    text-decoration: line-through;
}

.product_package_box_prices:last-child
{
    padding-bottom:30px;
    margin-bottom:0px;
}

.product_package_box_contents
{
    width:100%;
    min-height:10px;
    float:left;
    background-color:#fff;
    padding:15px;
}

.product_package_box_button
{
    width:160px;
    height:46px;
    background-color:var(--main_color);
    float:left;
    margin:0px calc(50% - 80px);
    margin-top:-35px;
    border-radius:4px;
    border:4px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#333;
    font-size:18px;
    font-weight:400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position:relative;
    overflow:hidden;
    transition: all 0.5s ease;
    cursor:pointer;
    margin-bottom:5px;
}

.product_package_box_button:after
{
    content:'';
    width:20px;
    height:47px;
    position:absolute;
    right:0px;
    bottom:0px;
    background-color:#171717;
    clip-path: polygon(100% 18%, 100% 0, 100% 100%, 0% 100%);
    z-index:1;
    opacity:0.5;
    transition: all 0.5s ease;
}

.product_package_box_button span
{
    position:relative;
    z-index:3;
    transition: all 0.5s ease;
    margin-top:4px;
}

.product_package_box_button:hover:after
{
    width:120%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity:1;
}

.product_package_box_button:hover span
{
    color:#fff;
}

.product_package_box_button:hover
{
    background-color:#171717;
}

.product_package_content_line
{
    width:100%;
    min-height:10px;
    float:left;
    padding:10px 0px;
    border-bottom:1px solid var(--border_color);
    text-align:center;
    font-weight:400;
    color:#333;
    font-size:18px;
}

.product_package_content_line:last-child
{
    border:0px;
    margin-bottom:-10px;
}

/* Service Detail */

/* Login */

.login_page_outer
{
    width:100%;
    min-height:100vh;
    float:left;
    position:relative;
}

.login_page_outer:before
{
    content:'';
    width:30%;
    height:100%;
    background-color:#fff;
    position:absolute;
    left:0px;
    top:0px;
    z-index:1;
}

.login_page_image_outer
{
    width:70%;
    height:100%;
    position:absolute;
    right:0px;
    top:0px;
    z-index:1;
    background-color:var(--bg_color);
}

.login_page_image_outer img
{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.login_page_inner
{
    width:100%;
    min-height:100vh;
    float:left;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    position:relative;
    z-index:44;
}

.login_page_content
{
    width:35%;
    min-height:100vh;
    background-color:#fff;
    float:left;
    -webkit-box-shadow: 9.986px -0.523px 30px 0px rgba(5, 5, 6, 0.1);
    box-shadow: 9.986px -0.523px 30px 0px rgba(5, 5, 6, 0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    padding:30px 40px;
}

.login_page_logo
{
    width:100%;
    height:55px;
    background-color:#333;
    float:left;
    mask-repeat: no-repeat!important;
    mask-position: center!important;
    mask-size: contain!important;
}

.login_page_tabs_outer
{
    width:100%;
    min-height:10px;
    float:left;
    margin-top:50px;
    margin-bottom:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:7px;
}

.login_page_tabs_box
{
    flex:1;
    min-height:20px;
    float:left;
    background-color:var(--main_color);
    padding:15px;
    text-align:center;
    position:relative;
    font-size:18px;
    color:#333;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom:12px;
    overflow:hidden;
    transition: all 0.5s ease;
    cursor:pointer;
}

.login_page_tabs_box span
{
    position:relative;
    z-index:3;
    transition: all 0.5s ease;
}

.login_page_tabs_box:after
{
    content:'';
    width:20px;
    height:100%;
    position:absolute;
    right:0px;
    bottom:0px;
    background-color:#171717;
    clip-path: polygon(100% 18%, 100% 0, 100% 100%, 0% 100%);
    z-index:1;
    opacity:0.5;
    transition: all 0.5s ease;
}

.login_page_tabs_box_select
{
    background-color:#171717;
    color:#fff;
    transition: all 0.5s ease;
}

.login_page_tabs_box_select:after
{
    width:120%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity:1;
    transition: all 0.5s ease;
}

.custom_login_input_outer
{
    width:100%;
    min-height:10px;
    float:left;
    margin-bottom:15px;
}

.custom_login_input_outer p
{
    width:100%;
    float:left;
    font-size:18px;
    color:#868686;
    font-weight:400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin:0px;
    margin-bottom:4px;
}

.custom_login_input_box
{
    width:100%;
    height:55px;
    background-color:#f5f5f5;
    float:left;
    border-radius:7px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0px 13px;
    gap:15px;
}

.custom_login_input_box input
{
    flex:1;
    height:55px;
    font-size:18px;
    font-weight:300;
    color:#333;
    letter-spacing: 1px;
    padding-top:2px;
    border:0px!important;
    outline:0px!important;
    background-color:transparent;
}

.login_link
{
    width:100%;
    float:left;
    font-size:18px;
    font-weight:400;
    color:#333;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top:-5px;
    cursor:pointer;
}

.login_center_link
{
    width:100%;
    float:left;
    font-size:18px;
    font-weight:400;
    color:#333;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top:5px;
    cursor:pointer;
    text-align:center;
}

.login_center_link span
{
    color:var(--main_color);
}

.custom_login_input_outer .slider_button_outer
{
    width:100%;
    border:0px!important;
    outline:0px!important;
}

.loginBottomText
{
    width:100%;
    font-size:15px;
    font-weight:300;
    color:#333;
    opacity:0.7;
    text-align:center;
    margin:0px;
    letter-spacing: 1px;
    margin-top:50px;
    float:left;
}

.login_password_eye
{
    width:40px;
    height:40px;
    float:left;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    background-color:#fff;
    border-radius:4px;
    margin-right:-4px;
    padding-top:2px;
    color:var(--main_color);
}

.login_page_notificationBox_outer
{
    width:100%;
    min-height:10px;
    float:left;
    background-color:var(--main_color);
    padding:15px;
    border-radius:4px;
    margin-bottom:10px;
    margin-bottom:20px;
    padding-bottom:12px;
    font-size:16px;
    letter-spacing: 1px;
}

.login_page_notificationBox_outer a
{
    color:#333;
    font-weight:500;
}

/* Login */

/* Services */

.services_page_outer
{
    width:100%;
    min-height:20px;
    background-color:#fff;
    float:left;
}

.services_page_inner
{
    width:100%;
    min-height:50px;
    padding:20px;
    padding-bottom:170px;
    border-left:1px solid var(--border_color);
    border-right:1px solid var(--border_color);
    float:left;
}

.services_page_box_outer
{
    width:100%;
    min-height:30px;
    float:left;
    border-radius:10px;
    border:1px solid var(--border_color);
    overflow:hidden;
    cursor:pointer;
}

.services_page_box_image
{
    width:100%;
    height:200px;
    background-color:#dadada;
    float:left;
    overflow:hidden;
}

.services_page_box_image img
{
    width:100%;
    height:200px;
    float:left;
    object-fit: cover;
    object-position:center;
}

.services_page_box_contents
{
    width:100%;
    min-height:50px;
    float:left;
    padding:20px;
}

.services_page_box_contents_icon
{
    width:30%;
    min-height:10px;
    float:left;
    background-color:var(--main_color);
    mask-repeat: no-repeat!important;
    mask-position: center!important;
    mask-size: contain!important;
    margin-top:-10px;
    margin-bottom:15px;
}

.services_page_box_contents_icon:before
{
    content:'';
    display:block;
    padding-bottom:100%;
}

.services_page_box_contents h3
{
    width:100%;
    float:left;
    font-size:24px;
    font-weight:400;
    color:#333;
    margin:0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom:10px;
    transition: all 0.3s ease;
}

.services_page_box_contents p
{
    width: 100%;
    height: 105px;
    float: left;
    font-size: 17px;
    font-weight: 300;
    color: #333;
    margin: 0px;
    overflow: hidden;
    opacity: 0.7;
}

.services_page_box_btn
{
    width:45px;
    height:45px;
    float:left;
    background-color:#dadada;
    border-radius:50%;
    margin-top:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    padding-left:3px;
    transition: all 0.3s ease;
}

.services_page_box_outer:hover .services_page_box_btn
{
    background-color:var(--main_color);
    color:#333;
}

.services_page_box_outer:hover h3
{
    color:var(--main_color);
}

/* Services */

/* Mobile */

.menu_mobile_btn_outer
{
    width:70px;
    height:100px;
    float:left;
    border-right:1px solid var(--border_color);
    display:none;
    align-items:center;
    justify-content:center;
}

.menu_mobile_btn
{
    width:40px;
    height:40px;
    border:1px solid var(--border_color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#fff;
}

@media only screen and (max-width: 950px)
{
    .menu_center_outer
    {
        width:100%;
        height:auto;
        min-height:10px;
        max-height:calc(100vh - 100px);
        position:absolute;
        left:0px;
        z-index:15;
        background-color:var(--bg_color);
        flex-direction: column;
        padding:25px;
        padding-top:10px;
        display:block;
        float:left;
        border-bottom:1px solid var(--border_color);
        top:-100vh;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu_center_opened
    {
        top:101px;
        opacity: 1;
        visibility: visible;
    }

    .menu_box
    {
        width:100%;
        height:auto;
        justify-content:flex-start;
        padding-top:16px;
        display:block;
        float:left;
    }

    .menu_box:after
    {
        display:none;
    }

    .menu_right_outer
    {
        display:none;
    }

    .menu_logo_outer
    {
        flex:1;
    }

    .menu_language_outer
    {
        border-left:1px solid var(--border_color);
    }

    .menu_mobile_btn_outer
    {
        display:flex;
    }

    .slider_center_contents_outer
    {
        width:calc(100% - 120px);
        display:block;
    }

    .slider_center_contents h5
    {
        font-size:16px;
    }

    .slider_center_contents h3
    {
        font-size:40px;
        line-height:55px;
    }

    .slider_center_square
    {
        width:80px;
        height:80px;
        left:-20px;
    }

    .slider_center_buttons
    {
        width:100%;
        flex-direction: row;
        justify-content: flex-start;
        margin-top:25px;
    }

    .homepage_product_textbox_outer
    {
        width:calc(100% - 20px);
        height:auto;
    }

    .homepage_product_box_outer
    {
        width: calc((100% / 1) - 20px);
    }

    .homepage_image_contents_inner
    {
        display:block;
        padding:10px 0px;
        float:left;
    }

    .homepage_image_contents_list_line_circle_outer
    {
        display:none;
    }

    .homepage_image_contents_list_line_list_outer
    {
        border:0px;
        padding-right:0px;
    }

    .slider_button_outer
    {
        width:100%;
    }

    .homepage_sss_line_inner
    {
        display:block;
        float:left;
        padding:20px 0px;
    }

    .homepage_sss_line_contents_image_line
    {
        display:block;
    }

    .homepage_sss_line_image
    {
        width:100%;
        margin-bottom:15px;
    }

    .homepage_sss_line_image img
    {
        width:100%;
    }

    .homepage_sss_line_contents_image_line p
    {
        width:100%;
        float:left;
    }

    .homepage_portfolio_tabs_outer
    {
        display:none;
    }

    .homepage_portfolio_inner
    {
        padding:20px 0px;
    }

    .homepage_portfolio_tabs_title
    {
        line-height:45px;
    }

    .homepage_counter_line_inner
    {
        display:block;
    }

    .homepage_counter_line_box
    {
        width:100%;
        padding:20px 0px;
    }

    .avatar_box_outer
    {
        width: calc((100% / 8) + 50px);
        margin: 0px -25px;
    }

    .homepage_line_slogan_text
    {
        width:90%;
        font-size:35px;
        line-height:50px;
    }

    .homepage_blogs_title
    {
        line-height:65px;
    }

    .footer_top_box_outer
    {
        width:100%;
        margin-left:0px;
        margin-right:0px;
        flex-direction: column;
    }

    .footer_top_box_btn
    {
        width:100%;
    }

    .menu_center_outer * .menu_dropdown
    {
        width:100%;
        position:relative;
        top:0px!important;
        left:0px!important;
        visibility: visible;
        opacity: 1;
        float:left;
        margin-top:10px;
    }

    .menu_offer_box_outer
    {
        width:100%;
        right:-100%;
    }

    .menu_offer_box_title h3 span
    {
        display:block;
    }

    .menu_offer_box_close_btn
    {
        display:none;
    }

    .login_page_image_outer
    {
        display:none;
    }

    .login_page_outer:before
    {
        width:100%;
    }

    .login_page_content
    {
        width:100%;
    }

    .menu_customer_btn_otuer
    {
        top:115px;
    }

    .menu_offer_btn
    {
        top:170px;
    }

    .service_right_phone_outer .menu_right_outer
    {
        display:flex;
    }
}

/* Mobile */
