body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: 'Anek Latin', sans-serif;
    color: #fff;
    background-color: #000;
}

::selection {
    background-color: #FCAF11;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #fff;
}

a,
button {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: #fff;
    text-decoration: none;
}

a:hover {
    outline: none;
    color: #1d1d1d;
    text-decoration: none;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 16px;
    color: #757576;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* .section-heading {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}
  */

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.form-control::-webkit-input-placeholder {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
}

.form-control::-moz-placeholder {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
}

.form-control:-ms-input-placeholder {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
}

.form-control:-moz-placeholder {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
}


/*==================== User Dropdown Start ===================*/

.user_dropdown {
    display: inline-block;
}

.user_dropdown>a {
    color: #494949;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.user_dropdown img {
    height: 48px;
    width: 48px;
    min-height: 48px;
    min-width: 48px;
    border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
    display: block;
    left: auto;
    width: 225px;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-top: 5px;
    opacity: 1;
    visibility: visible;
    background-color: #1F1F1F;
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    border-radius: 10px;
    border: 0;
    padding: 10px 20px;
}

.user_dropdown ul li a span svg {
    width: 26px;
    height: 26px;
}

.user_dropdown ul li a span {
    flex: 0 0 40px;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -10px;
}

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

.user_dropdown ul li {
    display: block;
    margin: 6px auto;
}

.user_dropdown ul li a {
    text-transform: capitalize;
    padding: 5px 0;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    font-weight: 500;
    padding-bottom: 7px;
}

.user_dropdown ul li a svg {
    margin-right: 5px;
}

.user_dropdown ul li .active {
    color: #FCAF11;
}

.user_dropdown ul li a:hover {
    color: #FCAF11;
}



/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(0, 0, 0, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

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

    100% {
        transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/

#header {
    height: 115px;
    display: flex;
    align-items: center;
    z-index: 10;
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.30);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

#header.is-sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    height: 85px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    background-color: #000;
    z-index: 999;

}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    height: 65px;
    width: auto;
}

.destopNone {
    display: none;
}
.profileMenu{
    padding: 0;
    margin: 0;
    list-style: none;
}
#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 48px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 20px;
}

#header .nav-link {
    position: relative;
    padding: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #FCAF11;
}

#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    font-weight: 600;
}

/* #header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color:  #FCAF11;
    transform: scaleX(1);
}

#header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background:  #FCAF11;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
} */
/* 
#header .dropdown-toggle::after {
    border: none;
    height: 8px;
  width: 11px;
    background-image: url(../img/drop_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
} */
#header .dropdown-toggle::after {
    border: none;
    vertical-align: middle;
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33333 1.83333L5.16667 6L1 1.83333' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    width: 10px;
    height: 10px;
}

#header .extra_nav {
    margin-left: 20px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 10px;
}


#header .extra_nav .nav-item:list-child {
    margin-right: 0px;
}


#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .header_filled_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 41px;
    background-color: #FCAF11;
    /* border: 1px solid  #FCAF11; */
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

#header .header_filled_btn:hover {
    background-color: #fff;
    color: #000 !important;
}

#header .header_border_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 35px;
    background-color: #fff;
    /* border: 1px solid  #FCAF11; */
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

#header .header_border_btn:hover {
    background-color: #FCAF11;
    color: #000 !important;
}

.header_border_btn:before,
.header_filled_btn:before {
    display: none;
}

#header .flag_ico {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-53%);
}

#header .flag_ico.header-flag {
    left: -11px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding-left: 32px;
    padding-right: 5px;
    width: auto;
    font-weight: 400;
    color: #000;
}


#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
    width: 35px;
    height: auto;
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 400;
}


/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
    position: relative;
}
.lang_dropdown {
	display: none;
	position: absolute;
	top: 100%;
	min-width: 130px;
	background-color: #fff;
	color: rgba(255, 255, 255, 0.6);
	right: 1px;
	font-size: 13px;
    top: 42px !important;
	border-radius: 10px;
	border: 0;
	margin: 0;
	padding: 5px 14px 6px 13px;
	box-shadow: rgb(239 136 0 / 58%) 0px 0px 25px 2px;
}

.lang_country {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle.lang_drop {
    border: 0;
    background: transparent;
}

#header .navbar-expand-lg .navbar-nav .currency-filter .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding: 8px 0 8px 45px;
    color: #fff;
}

.lang_country {
    position: relative;
    padding: 5px 0px 5px 34px;
    color: #494949;
    border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
    max-width: 20px;
    min-height: 13px;
}

.lang_country:last-child {
    border-bottom: 0;
}

.lang_country:hover {
    color: #FCAF11;
    background-color: transparent;
}


.navbar-brand {
    font-size: 0;
}

/* 
.langugae_filter:hover .lang_dropdown {
    display: block;
} */
/*==================== Header End ===================*/



/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
    position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.footer-logsign-link:before {
    background-color: #df1f26;
    left: 0;
}

.footer-logsign-link:after {
    background-color: #ec2027;
    right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
    height: 150px;
    align-items: center;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.footer-signup-link a {
    background-color: #df1f26;
    padding-left: 0px;
}

.footer-signin-link a {
    background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
    color: #fff;
    font-size: 36px;
    width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background-color: #d42027;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
    background-color: #fff;
    color: #d42027;
}


/*==================== Footer login Signup Section ===================*/


/*==================== Footer ===================*/


.navbar {
    padding: 0;
}


#top-button {
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back_top:hover {
    background-color: #FCAF11;
    border: 1px solid #FCAF11;
}

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

#top-button.show {
    opacity: 1;
    visibility: visible;
}

.back_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #f7f7f7;
    display: none;
    border: #ffffff 1px solid;
    z-index: 1;
    border-radius: 4px;
}

.back_top span {
    position: relative;
    display: block;
    color: #000;
    width: 100%;
    height: 100%;
}

.back_top span svg {
    width: 22px;
    height: 21px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/* .back_top:hover {
    border-color: #fff;
    color: #fff;
    background-color: #fff;
}
.back_top:hover span{
     color: #000;
     } */


/*==================== Footer ===================*/

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 25px;
}

.mobiledrop {
    position: absolute;
    right: 0px;
    top: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
    height: 21px;
    width: 21px;
    min-width: 21px;
    margin: 0;
    padding: 0;
    opacity: 1;
    appearance: none;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    background: transparent;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
    border: 2px solid #1295d6;
    background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
    content: "\f00c";
    height: 100%;
    color: #fff;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_checkbox label {
    color: #555 !important;
}


/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom_radio [type="radio"]:checked+label,
.custom_radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom_radio [type="radio"]:checked+label:before,
.custom_radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #b5b5b5;
    border-radius: 100%;
    background: #fff;
}

.custom_radio [type="radio"]:checked+label::after,
.custom_radio [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* .form-control {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    padding: 15px 25px;
} */

.form-control:focus {
    box-shadow: none;
}

.btn-primary {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #FCAF11;
    border-radius: 10px;
    background: #FCAF11;
    box-shadow: 0px 4px 12px 0px rgba(252, 175, 17, 0.29);
    display: inline-block;
    width: 100%;
    padding: 14px;
    transition: all 0.5s ease;
}

.btn-primary:hover {
    border: 1px solid #FCAF11;
    color: #FCAF11;
    box-shadow: none;
    background-color: transparent;
}


.custom_select_block .ms-dd .ms-dd-header {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    overflow: hidden;
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-header .option-selected {
    height: 45px;
    padding: 10px 25px;
    width: 100%;
}

.custom_select_block .ms-dd .ms-list-option.option-selected,
.ms-dd .ms-optgroup ul .ms-list-option.option-selected {
    background: #ffffff;
}

.custom_select_block .ms-dd {
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-arrow {
    margin-top: -5px;
    right: 25px;
}


/*  */

.hero_banner_wrap {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 260px 0 125px;
    position: relative;
    margin-bottom: 50px;
}
.hero_banner_wrap::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 7, 0.40);
}

.hero_bannerBlock {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero_banner_heading {
    color: #FFF;
    font-size: 55px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.company-info-content {
    text-align: center;
}
.main-heading {
    color: var(--white, #FFF);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 26px;
}

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



.info-list-data {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 26px;
    line-height: normal;
}
.clr-text {
    color: #FCAF11;
}

.company-info-section {
    padding: 70px 0;
}

.company-info-img img {
    max-height: 294px;
}

.info-list-data a:hover{
    color: #fff;
}