:root {
    --main_color: #e5292b;
    --second_color: #fcc68d;
    --border_color: #e7e7e7;
    --bg_color : #fcfcfc;
}

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

*{
    font-family: 'Poppins', 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;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Menu */

.menu_top_line_outer
{
    width:100%;
    min-height:10px;
    float:left;
    border-top:2px solid var(--main_color);
    border-bottom:1px solid #dadada;
}

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

.menu_top_line_left
{
    flex:1;
    padding:10px 0px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.menu_top_line_right
{
    flex:1;
    padding:10px 0px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.menu_top_line_left_content
{
    min-width:10px;
    height:20px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-right:20px;
    margin-right:20px;
    border-right:1px solid #dadada;
    font-size:12px;
    font-weight:400;
    color:#333;
    text-decoration: none;
}

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

.menu_top_line_right_btn
{
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    color:#333;
    float:left;
    cursor:pointer;
    text-decoration: none;
}

.menu_contents_line_outer
{
    width:100%;
    min-height:10px;
    float:left;
    border-bottom:1px solid #dadada;
}

.menu_contents_line_inner
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.menu_contents_line_logo_outer
{
    width:300px;
    height:80px;
    float:left;
    display:flex;
    align-items:center;
    justify-content: center;
}

.menu_contents_line_logo_outer img
{
    width:100%;
    height:50px;
    object-fit: contain;
    object-position:center left;
}

.menu_contents_line_boxes
{
    flex:1;
    height:80px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:30px;
}

.menu_contents_line_box
{
    min-width:10px;
    height:80px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:400;
    color:#333;
    position:relative;
    opacity: 0.7;
    cursor:pointer;
    transition: all 0.3s ease;
    text-decoration: none!important;
}

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

.menu_contents_line_box_select
{
    opacity: 1;
}

.menu_contents_line_box_select:before
{
    width:100%;
}

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

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

/* Menu */

/* Slider */

.slider_outer
{
    width:100%;
    float:left;
    margin:0px!important;
}

.slider_inner
{
    width:100%;
    float:left;
    background-size:cover;
    background-position:center;
    background-color:#dadada;
    position:relative;
}

.slider_inner:after
{
    content:'';
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    background-color:#000;
    opacity: 0.5;
}

.slider_contents
{
    width:100%;
    height:550px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:14px;
    position:relative;
    z-index:4;
}

.slider_contents h3
{
    width:100%;
    font-size:55px;
    color:#fff;
    font-weight:500;
    float:left;
    margin:0px;
    margin-bottom:20px;
}

.slider_contents p
{
    width:100%;
    font-size:18px;
    color:#fff;
    float:left;
    margin:0px;
    font-weight:300;
}

.slider_outer .slick-dots
{
    bottom:10px;
    z-index:9999;
}

.slider_outer .slick-dots li button:before
{
    color:#fff;
}

.slider_outer .slick-next
{
    right:10px;
    z-index:9999;
}

.slider_outer .slick-prev
{
    left:10px;
    z-index:9999;
}

/* Slider */

/* Homepage */

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

.homepage_contents_inner
{
    width:100%;
    min-height:20px;
    float:left;
    padding:40px 0px;
    border-bottom:1px solid #dadada;
}

.homepage_contents_inner:last-child
{
    border-bottom:0px;
}

.homepage_contents_title
{
    width:100%;
    min-height:20px;
    float:left;
    position:relative;
    padding-bottom:25px;
    margin-bottom:25px;
}

.homepage_contents_title:after
{
    content:'';
    width:30%;
    height:1px;
    background-color:#dadada;
    left:35%;
    bottom:0px;
    position:absolute;
}

.homepage_contents_title h4
{
    width:100%;
    float:left;
    margin:0px;
    font-size:19px;
    color:var(--main_color);
    font-weight:300;
    text-align:center;
    letter-spacing: 2px;
    margin-bottom:10px;
}

.homepage_contents_title h3
{
    width:100%;
    float:left;
    margin:0px;
    font-size:28px;
    font-weight:500;
    color:#333;
    text-align:center;
    letter-spacing: 1px;
}

.homepage_searchbox_outer
{
    width:100%;
    height:60px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #c5c5c5;
    gap:10px;
    padding:0px 10px;
}

.homepage_searchbox_outer button
{
    height:40px;
    background-color:transparent;
    outline:0px!important;
    float:left;
    font-size:15px;
    font-weight:400;
    color:#333;
    border:1px solid #c5c5c5;
    padding:0px 20px;
    text-transform: uppercase;
}

.homepage_searchbox_outer input
{
    flex:1;
    height:40px;
    border:0px!important;
    outline:0px!important;
    float:left;
    font-size:14px;
    padding-bottom:1px;
    font-weight:300;
    color:#333;
}

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

.homepage_flag_outer
{
    width:100%;
    min-height:20px;
    float:left;
    cursor:pointer;
}

.homepage_flag_outer img
{
    width:100%;
    height:180px;
    float:left;
    object-fit: cover;
    object-position: center;
    margin-bottom:15px;
    border:1px solid #c5c5c5;
}

.homepage_flag_outer h3
{
    width:100%;
    float:left;
    font-size:17px;
    font-weight:500;
    color:#333;
    margin:0px;
    margin-bottom:10px;
}

.homepage_flag_outer h3 i
{
    float:right;
    margin-top:3px;
    color:var(--main_color);
}

.sss_boxes_outer
{
    width:100%;
    min-height:20px;
    float:left;
    border-bottom:1px solid #c5c5c5;
}

.sss_box_line
{
    width:100%;
    min-height:10px;
    float:left;
    padding:10px 0px;
    border-top:1px solid #c5c5c5;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
}

.sss_box_line_btn
{
    width:30px;
    height:30px;
    background-color:#333;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:15px;
    padding-top:1px;
}

.sss_box_line_text
{
    flex:1;
    font-size:13px;
    font-weight:500;
    color:#333;
    float:left;
}

.sss_box_line_contents
{
    width:100%;
    height:0px;
    float:left;
    color:#333;
    font-size:13px;
    font-weight:400;
    overflow:hidden;
}

.homepage_modal_outer
{
    width:100%;
    height:100vh;
    background-color:rgba(0,0,0,0.5);
    position:fixed;
    left:0px;
    top:0px;
    z-index:999999;
    float:left;
}

.homepage_modal_inner
{
    width:100%;
    height:100vh;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.homepage_modal_close
{
    width:40px;
    height:40px;
    position:absolute;
    right:14px;
    top:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    color:#fff;
    cursor:pointer;
}

/* Homepage */

/* About */

.aboutContentsOuter
{
    width:100%;
    min-height:calc(100vh - 370px);
    float:left;
}

/* About */

/* Notifications */

.notification_box
{
    width:100%;
    min-height:20px;
    float:left;
    padding:20px;
    border:1px solid #d8d8d8;
    margin-bottom:20px;
    background-color:#fff;
}

.notification_box h3
{
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: var(--main_color);
    margin-bottom:25px;
}

.notification_box h3 small
{
    font-size: 15px;
    float: right;
    margin: 4px 0px;
}

.notification_box p
{
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin:0px;
}

/* Notifications */

/* Contact */

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

.contact_page_top_contents
{
    flex:1;
    min-height:20px;
    float:left;
}

.contact_page_top_contents h3
{
    width:100%;
    float:left;
    font-size:18px;
    font-weight:500;
    color:var(--main_color);
    margin-bottom:25px;
}

.contact_page_top_contents p
{
    width:100%;
    float:left;
    font-size:14px;
    font-weight:400;
    color:#333;
    margin-bottom:15px;
    line-height:27px;
}

.contact_page_top_outer iframe
{
    flex:1;
    height:300px;
}

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

.custom_input_outer p
{
    width: 100%;
    float: left;
    font-size: 14px;
    font-weight: 400;
    color: var(--main_color);
    margin: 0px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.custom_input_outer input
{
    width: 100%;
    height: 45px;
    padding: 0px 13px;
    padding-bottom: 2px;
    background-color: #fff;
    float: left;
    border: 1px solid var(--border_color);
    box-shadow: none!important;
    outline: 0px !important;
    font-size:14px;
}

.custom_input_outer select
{
    width: 100%;
    height: 45px;
    padding: 0px 13px;
    padding-bottom: 2px;
    background-color: #fff;
    float: left;
    border: 1px solid var(--border_color);
    box-shadow: none!important;
    outline: 0px !important;
    font-size:14px;
}

.custom_input_outer textarea
{
    width: 100%;
    height: 145px;
    padding: 10px 13px;
    padding-bottom: 2px;
    background-color: #fff;
    float: left;
    border: 1px solid var(--border_color);
    box-shadow: none!important;
    outline: 0px !important;
    border-radius: 0px;
    resize: none;
    font-size:14px;
}

.custom_input_outer button
{
    width: auto;
    height: 40px;
    background-color: var(--main_color);
    float: left;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--second_color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    padding-bottom: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 0px;
    padding: 0px 30px;
}

/* Contact */

/* Countrties Detail */

.countriesDetailImageOuter
{
    width:100%;
    float:left;
    margin-bottom:20px;
}

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

.countriesDetailTabsOuter
{
    width:100%;
    height:50px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:20px;
}

.countriesDetailTabsBtn
{
    flex:1;
    height:50px;
    background-color:#eaeaea;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:500;
    color:#333;
    cursor:pointer;
}

.countriesDetailTabsBtnSelect
{
    background-color:var(--main_color);
    color:#fff;
}

/* Countrties Detail */

/* Footer */

.footer_outer
{
    width:100%;
    background-color:#333;
    float:left;
    text-align:center;
    padding:20px 15px;
    font-size:12px;
    color:#fff;
    font-weight:300;
}

/* Footer */

/* Mobile */

.mobile_btn
{
    display:none;
    align-items: flex-end!important;
    justify-content: flex-end!important;
}

@media only screen and (max-width: 900px)
{
    .menu_top_line_inner
    {
        display:block;
    }

    .menu_top_line_left
    {
        width:100%;
        justify-content: center;
        border-bottom:1px solid #dadada;
    }

    .menu_top_line_right
    {
        width:100%;
        justify-content: center;
    }

    .mobile_btn
    {
        display:flex;
    }

    .mobile_btn .menu_contents_line_box
    {
        font-size:20px;
        padding:0px 10px;
    }

    .mobile_menus
    {
        display: none;
        height:auto;
        position: absolute;
        left: -12px;
        top: 80px;
        z-index: 999999;
        background-color: #ffffff;
        width: calc(100% + 24px);
        padding:10px 20px;
        border-top:1px solid #dadada;
    }

    .mobile_menus .menu_contents_line_box
    {
        width:100%;
        height:60px;
        justify-content: flex-start;
        border:0px!important;
    }

    .mobile_menus .menu_contents_line_box:before
    {
        width:0px;
    }

    .slider_contents
    {
        padding:30px;
        gap:10px;
    }

    .slider_contents h3
    {
        font-size:40px;
    }

    .slider_contents p
    {
        font-size: 15px;
    }

    .contact_page_top_outer
    {
        flex-direction: column;
    }

    .contact_page_top_contents
    {
        width:100%;
    }

    .contact_page_top_outer iframe
    {
        width:100%;
    }

    .countriesDetailTabsOuter
    {
        height:auto;
        flex-direction: column;
    }

    .countriesDetailTabsBtn
    {
        flex:auto;
        width:100%;
        height:50px;
    }
}

/* Mobile */
