/* common css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-family: 'Roboto', sans-serif;
    color: #000000;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    background-color: #fff;
}
.hide-md{
    display: none!important;
}
.flex-center-align{
    align-items: center;
}
.row_gap{
    row-gap: 30px;
}
.btn:focus{
    box-shadow: none;
}
.btn-theme{
    background-color: #FFED00;
    padding: 5px 20px;
    border: 1px solid #FFED00;
    color: #000;
    border-radius: 0px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-theme:hover{
    color: #fff;
    background: #FFED00;
}
.btn-theme img{
    width: 24px;
    margin-left: 10px;
}
.btn-flex{
    display: flex;
    align-items: center;
}

/* header css */
.header {
    position: fixed;
    width: 100%;
    opacity: 1;
    visibility: initial;
    background: #fff;
    top: 0;
    z-index: 11;
}

.header_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    transition: 0.15s;
}
.header_left_side {
    display: flex;
}
.header_logo{
    width: 100%;
}
.header_logo img{
    width: 100%;
    max-width: 150px;
}
.right_side {
    display: flex;
    align-items: center;
    justify-content: end;
}
.header_menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    column-gap: 45px;
}
.header_menu_item a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}
.language_list{
    margin: 0px 0px 0px 30px;
}
.language_list li{
    display: inline-block;
}
.language_list li{
    padding-left: 5px;
    padding-right: 5px;
}
.language_list li a img {
    width: 30px;
     border: 3px solid #fff;
     border-radius: 50%;
}
.language_list li a.selected img {
     border: 3px solid #FFED00;
}

/* header mobile menu css */
.mobile_menu_dropdown_wrapper {
    position: absolute;
    z-index: 1;
    display: none;
    width: 100%;
    top: 62px;
    bottom: 0;
    right: 0;
    transition: transform 1s cubic-bezier(.230,1,.320,1);
}
.sidebar{
    display: block;
}
.mobile_menu_button .hamburger_icon_active{
    transform: rotate(90deg);
}
#close-mobile-menu{
    display: none;
}
#mobile-menu-button{
    display: block;
}
.hamburger_item #close-mobile-menu{
    display: block;
}
.hamburger_item #mobile-menu-button{
    display: none;
}

.mobile_menu_dropdown {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    min-height: 100%;
    padding: 20px 10px;
    /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); */
    background-color: #fff;
    border-bottom: 12px solid #FFED00;
}
.close_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown_button{
    background-color: transparent;
    border: none;
}
.close_button img{
    width: 24px;
}
.dropdown_button svg path {
    fill: #253A68;
}
.mobile_menu {
    display: none;
}
.mobile_menu_button img {
    width: 20px;
}
.mobile_nav{
    text-align: center;
}
.mobile_nav p{
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.mobile_nav_list{
    list-style: none;
    margin-bottom: 0;
}
.mobile_nav_list li {
    padding-bottom: 20px;
}
.mobile_nav_list li:last-child {
    padding-bottom: 0px;
}
.dropdown_nav_list a{
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

/* HEADER BANNER CSSSS */
.header_banner{
    background-color: #FFED00;
    padding: 16px 0px;
}
.banner_heading{
    text-align: center;
}
.banner_heading h1{
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.banner_heading h3{
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page_breadcrumb ul {
    padding: 15px 25px;
    margin-bottom: 0;
}
.page_breadcrumb ul li {
    display: inline-block;
    margin-right: 10px;
}
.page_breadcrumb ul li a {
    color: #000000;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* main content csss */
.page_container{
    padding-top: 12rem;
}
.top_heading{
    text-align: left;
    padding: 10px 0px;
}
.top_heading h2{
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
    margin-bottom: 20px;
}
.top_heading p{
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
}
.process_success{
    text-align: center;
    padding: 30px 0px 50px;
}
.process_success img {
    width: 50px;
    margin-bottom: 20px;
}
.process_success h5{
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0px;
    margin-bottom: 0px;
}
.logos_container{
    padding: 40px 0px;
}
.block_item_list{
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.block_item_list img{
    width: 50px;
}
.block_item_list h3{
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    margin-bottom: 0;
    text-transform: uppercase;
}
.no-logo{
    width: 50px;
    height: 50px;
    background-color: #D9D9D9;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}
.no-logo span{
    color: #000000;
    font-weight: 600;
    font-size: 10px;
    line-height: 30px;
    letter-spacing: 0px;
    margin-bottom: 0;
    text-transform: uppercase;
}
.bottom_container{
    position: relative;
}
.bottom_container .bottom_image{
    width: 100%;
}
.bottom_container .bottom_logo{
    width: 100%;
    max-width: 150px;
    position: absolute;
    right: 3px;
    bottom: 3px;
    background: #fff;
}

.form_block{
    margin-top: 10px;
    margin-bottom: 40px;
}
.form_block .form-group{
    margin-bottom: 4rem;
}
.form_block .form-group .form-control{
    height: 40px;
    border: 1px solid #C6C6C6;
    border-radius: 0;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}
.form_block .form-group .form-control::placeholder{
    color: #000000;
}
input:focus{
    outline: none!important;
    box-shadow: none!important;
}

.container_check {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
  }
  
  /* Hide the browser's default checkbox */
  .container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #000;
  }
  
  /* On mouse-over, add a grey background color */
  .container_check:hover input ~ .checkmark {
    background-color: transparent;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container_check input:checked ~ .checkmark {
    background-color: #000;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container_check input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container_check .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

.problems_block{
    text-align: center;
    margin-bottom: 50px;
}
.problems_block p{
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.problems_block a {
    margin-top: 20px;
    justify-content: space-between;
    padding: 10px 20px;
}
.contact_block{
    padding: 10px 0px 60px;
}
.contact_info h3{
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.contact_info h4{
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    margin-bottom: 0px;
}
.separator{
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    padding: 30px 0px;
}