@charset "UTF-8";
@font-face {
  font-family: 'BodyFont';
  font-display: swap;
  src: url("fonts/LinotypeRoman.ttf") format("truetype"); }

@font-face {
  font-family: 'BodyFontBold';
  font-display: swap;
  src: url("fonts/LinotypeBold.ttf") format("truetype");
  font-weight: bold; }

@font-face {
  font-family: 'MenuFont';
  font-display: swap;
  src: url("fonts/TBCDinMtavruli.ttf") format("truetype"); }

@font-face {
  font-family: 'HeaderFont';
  font-display: swap;
  src: url("fonts/TBCDinMtavruli_bold.ttf") format("truetype");
  font-weight: bold; }


* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

body.fixed{
  height: 100vh;
  overflow: hidden !important;
}

.danger {
  padding: 10px 17px;
  color: #951B1F !important;
  background-color: #FCF3F4;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px; }

.warning {
  padding: 10px 17px;
  color: #B28E2A !important;
  background-color: rgba(238, 182, 30, 0.12);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px; 
}

.success {
  padding: 10px 17px;
  color: #31712E !important;
  background-color: rgba(52, 154, 48, 0.07);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px; 
}



h1, h2, h3, h4, h5, h6, thead {
  font-family: "HeaderFont"; }

a {
  text-decoration: none; }

a, button, select, input, textarea {
  outline: none !important; }

form, input, select, option, button, textarea {
  font-family: 'BodyFont'; }

select {
  background-color: #fff; }

select:hover,
button[type=submit] {
  cursor: pointer; }

textarea {
  resize: none; }
  
.headerbottombg {
    background-color: #ff9e0c;
    height:55px !important;
}

.bottomNav a {
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s; }
  .bottomNav .bottomNavContainer-links li:hover > ul.subNav{
    display: block;
  }
  .bottomNav .bottomNavContainer-links li:hover > a i{
    transform: rotateZ(180deg);
  }
.topNavButtons a {
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s; }

.topNavButtons a:last-child:hover {
  background-color: #09669e !important; }

.topNavButtons a:first-child:hover {
  border-color: #D1D1D1 !important; }

input,
.select-box__current,
label,
textarea,
.uploadWrapper {
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s; }

button[type=submit] {
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  button[type=submit]:hover {
    background-color: #AC191E !important; }

.links a:hover {
  opacity: 1 !important; }

.advanceFilter,
.loginRegisterBut {
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s; }
  .advanceFilter:hover,
  .loginRegisterBut:hover {
    border-color: #171717 !important; }

.companiesRow li {
  -webkit-transition: border-color 0.3s, color 0.3s, background-color 0.3s;
  -o-transition: border-color 0.3s, color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s; }
  .companiesRow li:hover,
  .companies-page .companies-links:hover {
    border-color: #171717 !important; }

.companiesRow li:last-child i {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }

.companiesRow li:last-child:hover i {
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg); }

.subLoggedIn a:hover {
  color: #111111 !important; }

html, body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: 'BodyFont';
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 90vw; }

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }

nav.mobileNav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 55px;
  right: -106vw;
  z-index: 4;
  background-color: #fff;
  -webkit-transition: right .6s;
  -o-transition: right .6s;
  transition: right .6s;
  font-family: "MenuFont"; 
  padding: 30px 20px;
}
  nav.mobileNav.expand {
    right: 0; }
  nav.mobileNav .fa-times {
    padding: 20px 21px 0 0;
    color: rgba(43, 41, 41, 0.3);
    font-size: 18px; }
  nav.mobileNav .selectLang {
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    column-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
    right: 0;
    top: 30px;
  }
  
  
 .noborder {
     border:none !important;
 }


.resume__block{
  background: #EEB629;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  border-radius: 5px;
}

.resume__block_desktop{
  margin-bottom: 40px;
  
}

.resume__mod{
  font-family: "BodyFont";
  font-weight: bold;
  font-size: 15px;
  user-select: none;
}

.resume__label{
  width: 72px;
  height: 38px;
  background: #fff;
  border-radius: 4px;
  padding: 2px;
  cursor: pointer;
  margin: 0 7px;
}

.resume__label input {
  display: none;
}

.resume__label input:checked + span {
  transform: translateX(36px);
  background: #50DB3A;
}

.resume__label input:checked + span .resume-h{
  display: none;
}

.resume__label input:checked + span  .resume-d{
  display: block;
}

.resume__label span {
  width: 32px;
  height: 34px;
  background: #BB2025;
  border-radius: 4px;
  display: inline-flex;
  transition: all 300ms;
  transform: translateX(0px)
}

.resume__label span svg{
  margin: auto;
}

.resume__label span .resume-h{
  display: block;
}

.resume__label span .resume-d{
  display: none;
}





.lcard{
  margin: 65px 0 45px 0;
  padding: 0 0 140px 0;
}

.lcard__content{
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #EAEAEA;
  border-radius: 10px;
}

.lcard__logowr{
  position: absolute;
  left: 30px;
  top: -20px;
  width: calc(100% - 60px);
  background-color: #FFF3D4;
  border-radius: 10px;
  height: 100%;
  padding: 18px 0 0 0;
}


.lcard__logowr svg {
  display: block;
  width: 20%;
  margin: 0 auto;
}

.lcard__btm-context{
  padding: 0 30px 20px 30px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
 
.lcard__front{
  position: relative;
}


.lcard__front-svgwr{
  padding: 3px 0 0 0;
}


.lcard__front-svgwr svg {
  display: block;
  width: 100%;
  height: auto;
}


.lcard__txt{
  padding: 20px 0 0 0;
  margin: 0 0 40px 0;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  font-size: 16px;
}


.lcard__inp{
  display: block;
  width: 100%;
  margin: 0 0 40px 0;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding: 20px 20px 20px 20px;
}

.lcard__inp.isinvalid {
  border-color: #BB2025 !important;
}

.lcard__inp:hover {
  border-color: #E0E0E0 !important;
}


.lcard__btn{
  background-color: #BB2025;
  color: #fff;
  text-align: center;
  padding: 20px 0 20px 0;
  width: 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


















@media (max-width: 320px) {
        .mainStatementCompanyCol{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mainStatementCompanyCol span{
    font-size: 10px;
    color: #ffd259;/*171717*/
    font-weight: bold;
    line-height: 16px;
    padding: 5px 9px;
    background-color: #04446B; /*F4B900; */
    border-radius: 17px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -o-border-radius: 17px;
    -ms-border-radius: 17px;          
  }
      /* nav.mobileNav .selectLang a {
        width: 12vw !important;
        height: 12vw !important;
        line-height: 12vw !important; }  */
      }
    nav.mobileNav .selectLang a {
      width: 24px;
      height: 24px;
      opacity: .4;
      font-size: 11px;
    }
    nav.mobileNav .selectLang a:active,
    nav.mobileNav .selectLang a.active {
      opacity: 1; 
    }
  nav.mobileNav ul.mobileNav-links {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%; 
    padding: 30px 0;
    border-top: 1px #DDDDDD solid;
    border-bottom: 1px #DDDDDD solid;
    position: relative;
  }
    nav.mobileNav ul.mobileNav-links li:not(:first-child) {
      margin-top: 19px; 
    }
    nav.mobileNav ul.mobileNav-links li a {
      display: block;
      font-size: 14px;
      font-weight: bold;
      color: rgba(23, 23, 23, 0.5); 
    }
    nav.mobileNav ul.mobileNav-links li a:active {
      color: #171717; 
    }
    nav.mobileNav ul.mobileNav-links .active {
      color: #171717; }
  nav.mobileNav .stacknav{
    padding: 30px 0;
    position: relative;
  }
  nav.mobileNav .stacknav .newbadge{
    position: absolute;
    top: -5px;
    right: -5px;
  }
  nav.mobileNav .stacknav > li{    
    width: 100%;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
    position: absolute;
    left: 100%;
    top: 30px;
    opacity: 0;
  }
  nav.mobileNav .stacknav > li.active a .arrow-down{
    margin-left: auto;
    transform: rotatez(90deg);
  }
  nav.mobileNav .stacknav > li.active .subNav{
    display: block;
  }
  nav.mobileNav .stacknav > li > a{
    position: relative;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 56px;    
    padding: 0 20px;
    color: #171717;
    background-color: #EEB61E;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
  }
  nav.mobileNav .stacknav > li > a > .arrow-down{
    transition: all .3s ease-in-out;
    margin-left: 10px;
  }
  nav.mobileNav .stacknav > li > a > img{
    margin-right: 10px;
  }
  nav.mobileNav .socialIcons {
    position: absolute;
    width: 60%;
    bottom: 10vh;
    left: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    nav.mobileNav .socialIcons a {
      text-align: center;
      line-height: 10vw;
      width: 10vw;
      height: 10vw;
      border-radius: 100%;
      color: #fff;
      font-size: 170%; }
    nav.mobileNav .socialIcons .fb {
      background-color: #1539D0; }
    nav.mobileNav .socialIcons .insta {
      background-color: #A74ABE; }
    nav.mobileNav .socialIcons .tube {
      background-color: #ED373D; }
    nav.mobileNav .socialIcons .in {
      background-color: #0E76A8; }

nav#menu {
  width: 100%;
  font-family: 'BodyFontBold'; /* "MenuFont" */
  background-color: #fff; }
  nav#menu .loggedIn {
    display: none; }
  nav#menu.logged .topNav .topNavMobile .mobileButtonLogin:before, nav#menu.logged .topNav .topNavMobile .mobileButtonLogin:after {
    display: block; }
  nav#menu.logged .bottomNav.expandLog .mobileSearch {
    top: -270px; }
  nav#menu .logo {
    width: 92px; }
    @media (max-width: 1023px){
      nav#menu .logo {
        width: 120px; 
      }
    }
    nav#menu .logo img {
      width: 100%; }
  nav#menu .container-fluid {
    padding: 0; }
    nav#menu .container-fluid .container {
      padding: 0; }
  nav#menu .topNav {
    height: 55px;
    padding: 36px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    z-index: 2; }
    nav#menu .topNav .topNav-left{
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }
    nav#menu .topNav .topNav-right{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    @media (max-width: 1023px){
      nav#menu .topNav .topNav-right{
        width: 50vw;
      }
    }
    nav#menu .topNav .topNavMobile {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(1px, 1fr));
      column-gap: 30px;
      width: 100%;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; 
      margin-left: 30px;
     }
      nav#menu .topNav .topNavMobile .mobileButtonSearch,
      nav#menu .topNav .topNavMobile .mobileButtonLogin {
        width: 25px;
        height: 25px;
        position: relative;
        background-color: transparent;
        border: none;
        padding: 0;
        overflow: hidden; }        
        nav#menu .topNav .topNavMobile .mobileButtonSearch.expand span,
        nav#menu .topNav .topNavMobile .mobileButtonLogin.expand span {
          top: -25px !important; }
        nav#menu .topNav .topNavMobile .mobileButtonSearch span:first-child,
        nav#menu .topNav .topNavMobile .mobileButtonLogin span:first-child {
          position: absolute;
          left: 0;
          top: 0;
          -webkit-transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          -o-transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
          nav#menu .topNav .topNavMobile .mobileButtonSearch span:first-child i,
          nav#menu .topNav .topNavMobile .mobileButtonLogin span:first-child i {
            display: block;
            width: 25px;
            height: 25px;
            line-height: 25px; }
            nav#menu .topNav .topNavMobile .mobileButtonLogin span:first-child i {
              height: 23px;
              width: 23px;
              line-height: 23px;
            }
      nav#menu .topNav .topNavMobile .mobileButtonSearch {
        font-size: 17px; }
        nav#menu .topNav .topNavMobile .mobileButtonSearch .fa-search {
          color: #2B2929; }
        nav#menu .topNav .topNavMobile .mobileButtonSearch .fa-times {
          color: #BB2025; }
      nav#menu .topNav .topNavMobile .mobileButtonLogin {
        position: relative; }
        nav#menu .topNav .topNavMobile .mobileButtonLogin:before, nav#menu .topNav .topNavMobile .mobileButtonLogin:after {
          display: none;
          content: "";
          z-index: 2;
          position: absolute;
          top: 0;
          right: 0;
          background-color: #fff;
          width: 8px;
          height: 8px;
          border-radius: 100%; }
        nav#menu .topNav .topNavMobile .mobileButtonLogin:after {
          top: 1px;
          background-color: #46B541;
          width: 6px;
          height: 6px; }
        nav#menu .topNav .topNavMobile .mobileButtonLogin i {
          border-radius: 100%;
          -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
          -ms-border-radius: 100%;
          -o-border-radius: 100%; }
        nav#menu .topNav .topNavMobile .mobileButtonLogin .fa-user {
          color: #fff;
          background-color: #CFCFCF; }
        nav#menu .topNav .topNavMobile .mobileButtonLogin .fa-times {
          background-color: #BB2025;
          color: #fff; }
      nav#menu .topNav .topNavMobile .mobileMenuButton {
        position: relative;
        display: inline-block; }
        nav#menu .topNav .topNavMobile .mobileMenuButton.change div.bar1{
          -webkit-transform: rotate(-45deg) translate(-5px, 0);
          transform: rotate(-45deg) translate(-5px, 0);
        }
        nav#menu .topNav .topNavMobile .mobileMenuButton.change div.bar2{
          -webkit-transform: rotate(45deg) translate(-4px, 0) ;
          transform: rotate(45deg) translate(-4px, 0) ;
        }
        nav#menu .topNav .topNavMobile .mobileMenuButton div {
          margin: 4px 0;
          width: 18px;
          height: 2px;
          background-color: #2B2929;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; 
        }
    nav#menu .topNav .links {
      display: none; }
      nav#menu .topNav .links li .active {
        font-weight: bold;
        opacity: 1; }
      nav#menu .topNav .links a {
        color: #171717;
        transition:0.3s all;
        opacity: .5; }
    nav#menu .topNav .socialIcons {
      display: none;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      nav#menu .topNav .socialIcons a {
        position: relative;
        color: #2B2929;
        margin-right: 20px;
      }      
      nav#menu .topNav .socialIcons a:last-child {
        margin-right: 0;
      }
    nav#menu .topNav .topNavButtons {
      font-family: "BodyFontBold";
      display: none; 
    }
      nav#menu .topNav .topNavButtons a:last-child {
        /* padding: 12px 18px; */
        padding: 17px 43px;
        color: #ffd259;
        background-color: #04446B;/*BB2025*/
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -o-border-radius: 12px;
        -ms-border-radius: 12px;
        margin-left: 10px; }
      nav#menu .topNav .topNavButtons a:first-child {
        /* padding: 12px 18px; */
        padding: 15px 22px;
        color: #171717;
        background-color: transparent;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -o-border-radius: 12px;
        -ms-border-radius: 12px;
        border: 1px transparent solid;
        margin-left: 8px; }
    nav#menu .topNav #langSelect {
      display: none; }
  nav#menu .bottomNav {
    z-index: 1;
    position: relative;
    margin-top: 0;
    -webkit-transition: margin-top .5s;
    -o-transition: margin-top .5s;
    transition: margin-top .5s; }
    @media (max-width: 1023px){
      nav#menu .bottomNav .container-bottomNavContainer {
        display: none;
      }
    }
    nav#menu .bottomNav.expand {
      margin-top: 55px; }
    nav#menu .bottomNav.expandLog {
      margin-top: 250px; }
    nav#menu .bottomNav .mobileSearch {
      width: 100%;
      min-height: 67px;
      background-color: #fff;
      position: absolute;
      top: -65px;
      left: 0; }
      nav#menu .bottomNav .mobileSearch .mobileSearchInput {
        display: none; }
        nav#menu .bottomNav .mobileSearch .mobileSearchInput input {
          padding: 14px 17px;
          background-color: #F0F0F0;
          font-size: 11px;
          color: rgba(0, 0, 0, 0.55);
          width: 100%;
          border: 1px #f0f0f0 solid;
          border-radius: 22px;
          -webkit-border-radius: 22px;
          -moz-border-radius: 22px;
          -ms-border-radius: 22px;
          -o-border-radius: 22px;
          font-size: 11px; }
        nav#menu .bottomNav .mobileSearch .mobileSearchInput button {
          /* display: none;  */
        }
      nav#menu .bottomNav .mobileSearch .mobileLoginButtons {
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 11px;
        font-family: "BodyFontBold"; }
        nav#menu .bottomNav .mobileSearch .mobileLoginButtons a {
          text-align: center;
          padding: 11px 20px;
          border-radius: 22px;
          -webkit-border-radius: 22px;
          -moz-border-radius: 22px;
          -ms-border-radius: 22px;
          -o-border-radius: 22px; }
        nav#menu .bottomNav .mobileSearch .mobileLoginButtons a:first-child {
          background-color: #BB2025;
          color: #fff;
          border: 1px #BB2025 solid; }
        nav#menu .bottomNav .mobileSearch .mobileLoginButtons a:last-child {
          margin-left: 8px;
          -webkit-box-flex: 1;
          -ms-flex-positive: 1;
          flex-grow: 1;
          background-color: transparent;
          color: #171717;
          border: 1.5px #DBDBDB solid; }
    nav#menu .bottomNav .bottomNavContainer {
      z-index: 2;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%; }
      nav#menu .bottomNav .bottomNavContainer form {
        display: none; }
      nav#menu .bottomNav .bottomNavContainer .bottomNavContainer-search{
        width: 400px;
        margin-left: 34px;
      }
      nav#menu .bottomNav .bottomNavContainer .bottomNavContainer-search input{
        font-weight: bold;
      }
      nav#menu .bottomNav .bottomNavContainer .bottomNavContainer-links{
        display: grid;
        grid-template-columns: repeat( auto-fit, minmax(50px, 1fr) );
        width: 100%;
        gap: 20px;
        margin: 0;
        padding: 0;
        list-style-type: none;
      }
      nav#menu .bottomNav .bottomNavContainer a.has-resume{
        background-color: #fff !important;
        -webkit-box-shadow: 0 2px 0 #DDDDDD !important;
        box-shadow: 0 2px 0 #DDDDDD !important;     
      }
      nav#menu .bottomNav .bottomNavContainer a.has-resume:hover{
        background-color: #EEB61E !important;
        -webkit-box-shadow: 0 2px 0 #BC8B08 !important;
        box-shadow: 0 2px 0 #BC8B08 !important;
      }
      nav#menu .bottomNav .bottomNavContainer .bottomNavContainer-links li{
        position: relative;
      }
      nav#menu .bottomNav .bottomNavContainer .bottomNavContainer-links > li > a {
        font-weight: bold;
        width: 49%;
        text-align: center;
        height: 40px;
        -ms-flex-item-align: start;
        align-self: flex-start;
        padding: 0 0;
        color: #171717;
        background-color: #EEB61E;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -o-border-radius: 12px;
        -ms-border-radius: 12px;
        /* -webkit-box-shadow: 0 2px 0 #BC8B08;
        box-shadow: 0 2px 0 #BC8B08;  */
      }
      nav#menu .bottomNav .bottomNavContainer .bottomNavContainer-links li > a .arrow-down{
        margin-left: 5px;
        transition: transform .2s ease-in-out;
      }
@media (max-width: 1023px) {
    .mainStatementCompanyCol{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mainStatementCompanyCol span{
    font-size: 8px;
    color: #ffd259;/*171717*/
    font-weight: bold;
    line-height: 12px;
    padding: 3px 6px;
    background-color: #04446B; /*F4B900;*/
    border-radius: 17px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -o-border-radius: 17px;
    -ms-border-radius: 17px;      
    margin-right: 8px;
  }
          nav#menu .bottomNav .bottomNavContainer a {
            display: -ms-grid;
            display: grid; 
            align-items: center;
          }
            nav#menu .bottomNav .bottomNavContainer a b {
              font-size: 13px; }
            nav#menu .bottomNav .bottomNavContainer a span {
              line-height: 12px; 
            }
            nav#menu .bottomNav .bottomNavContainer a img {
              margin: 0 auto;
              padding-top: 12px !important; 
              display: none;
            } }
  nav#menu .mobileSearchButton {
    padding-right: 6vw !important;
    padding-left: 6vw !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 15px;
    font-size: 12px;
    background-color: rgba(23,23,23, .05);
    color: #171717;
    font-weight: 600;
    border: 1px rgba(187, 32, 37, 0.01) solid !important; }
    nav#menu .mobileSearchButton .iconHolder {
      overflow: hidden;
      position: relative;
      width: 15px;
      height: 15px; }
      nav#menu .mobileSearchButton .iconHolder span {
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: top .4s;
        -o-transition: top .4s;
        transition: top .4s; }
        nav#menu .mobileSearchButton .iconHolder span.expand {
          top: -15px !important; }

.subLoggedIn {
  display: none;
  width: 100%;
  margin-bottom: 25px;
  background-color: #fff; }
  .subLoggedIn a.has-resume{
    color: #EEB61E !important;
  } 
  .subLoggedIn ul {
    width: 80%;
    margin: 0 auto !important;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center !important; }
    .subLoggedIn ul li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: baseline;
      -ms-flex-align: baseline;
      align-items: baseline;
      padding: 9px 20px;
      font-size: 12px;
      color: rgba(17, 17, 17, 0.6); }
      .subLoggedIn ul li a.active {
        color: #111 !important; }
      .subLoggedIn ul li a i {
        margin-right: 16px;
        font-size: 15px; }
    .subLoggedIn ul li:first-child a {
      padding-top: 20px; }
    .subLoggedIn ul li:last-child a {
      padding: 15px 0;
      margin: 15px 20px;
      text-align: center;
      display: block;
      color: #951B1F; }

.adSearch {
  /*display: none;*/
}

.main {
  padding: 39px 0; }
  .main.container {
    padding: 0;
    width: 100%;
    margin: 0; }
  .main .left {
    /* display: none; */
    width: 100%;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16); }
    .main .left aside {
      padding: 20px; }
    .main .left .adSearch {
      overflow: hidden;
      width: 100%;
      background-color: #fff;
      -webkit-box-shadow: 0;
      box-shadow: 0;
      -webkit-transition: width 0.3s, -webkit-box-shadow 0.3s;
      transition: width 0.3s, -webkit-box-shadow 0.3s;
      -o-transition: width 0.3s, box-shadow 0.3s;
      transition: width 0.3s, box-shadow 0.3s;
      transition: width 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s; }
      .main .left .adSearch .simpleSearch,
      .main .left .adSearch .advancedFirstCol,
      .main .left .adSearch .advancedSecondCol {
        width: 100%;
        margin-bottom: 20px; }
      .main .left .adSearch .simpleSearch {
        margin-left: 0;
        margin-bottom: 0; }
        .main .left .adSearch .simpleSearch button {
          display: none; }
      .main .left .adSearch .advancedFirstCol {
        display: none; }
        .main .left .adSearch .advancedFirstCol .checkboxes {
          margin-bottom: 0; }
      .main .left .adSearch .advancedSecondCol {
        display: none;
        margin-right: 0; }
        .main .left .adSearch .advancedSecondCol button {
          display: none; }
      .main .left .adSearch form {
        width: 100%;
        position: relative; }
      .main .left .adSearch h4 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 12px; }
      .main .left .adSearch button {
        width: 100%;
        margin-top: 0;
        font-weight: bold;
        font-size: 12px; }
      .main .left .adSearch button:hover {
        cursor: pointer; }
      .main .left .adSearch button[name=submit] {
        padding: 19px 17px;
        color: #fff;
        background-color: #BB2025;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        -webkit-box-shadow: 0 3px 0 #8B0C11;
        box-shadow: 0 3px 0 #8B0C11;
        border: none; }
      .main .left .adSearch .advanceFilter,
      .main .left .adSearch .simpleFilter{
        padding: 19px 17px;
        color: #171717;
        background-color: #fff;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        border: 2px #DEDEDE solid; }
      .main .left .adSearch .mobileViewSubmit {
        padding: 15px 17px;
        color: #fff;
        background-color: #BB2025;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        -webkit-box-shadow: 0 3px 0 #8B0C11;
        box-shadow: 0 3px 0 #8B0C11;
        border: none; }
      .main .left .adSearch .mobileViewFilter {
        padding: 15px 17px;
        color: #171717;
        background-color: #fff;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        border: 2px #DEDEDE solid;
        margin-top: 16px; }
        .main .left .adSearch .mobileViewFilter i {
          margin-left: 10px;
          color: #31712E; }
      .main .left .adSearch .checkboxes {
        height: 106px;
        margin-bottom: 29px; }
        @media (max-width: 320px) {
          .main .left .adSearch .checkboxes {
            margin-bottom: 8px; }
            .main .left .adSearch .checkboxes label {
              padding: 11px !important; } }
        .main .left .adSearch .checkboxes label {
          border: 1.5px #C7C7C7 solid;
          color: #C7C7C7;
          border-radius: 5px;
          padding: 16px;
          font-size: 11px;
          margin: 0 10px 10px 0;
          display: inline-block;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          .main .left .adSearch .checkboxes label:hover {
            cursor: pointer; }
          .main .left .adSearch .checkboxes label input {
            display: none; }
        .main .left .adSearch .checkboxes .checked {
          color: #171717 !important;
          border-color: #171717 !important; }
  .main .content {
    width: 90%;
    margin: 27px auto; }
    .main .content header {
      display: none;
      text-align: center;
      /* margin-bottom: 49px;  */
    }
      .main .content header img {
        width: 100%; }
    .main .content main {
      margin-bottom: 0; }
      .main .content main .tableHeader,
      .companies-in .tableHeader {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        @media (max-width: 1023px) {
          .main .content main .tableHeader h3:nth-child(2),
          .companies-in .tableHeader h3:nth-child(2){
            display: none; }
          .main .content main .tableHeader h3:nth-child(3),
          .companies-in .tableHeader h3:nth-child(3) {
            margin-left: auto;
            width: 54px; }
          .main .content main .tableHeader h3:last-child,
          .companies-in .tableHeader h3:last-child{
            width: 48px;
            margin-left: 9.5px; } }
      .main .content main .table,
      .companies-in .table {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        position: relative; }
        @media (max-width: 1023px) {
          .main .content main .table,
          .companies-in .table {
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            margin: 16px 0;
            border: 2px #F5F5F5 solid;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding: 0 13px;
            padding-bottom: 17px; }
            .main .content main .table:after,
            .companies-in .table:after{
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              background-color: #F5F5F5;
              /* height: 80px; */
              height: 45px;
              z-index: -1; }
            .main .content main .table .infoIcon,
            .companies-in .table .infoIcon{
              -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
              order: 1;
              width: 0px;
              margin-right: 16px;
              margin-left: 3px;
              /* height: 80px; */
              height: 40px;
              /* line-height: 80px; */
              line-height: 40px;
              font-size: 19px; }
            .main .content main .table .bookmarkIcon,
            .companies-in .table .bookmarkIcon{
              -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
              order: 2;
              font-size: 16px;
              margin-top: 2px; }
            .main .content main .table .firstDate,
            .companies-in .table .firstDate{
              -webkit-box-ordinal-group: 4;
              -ms-flex-order: 3;
              order: 3; }
            .main .content main .table .secondDate,
            .companies-in .table .secondDate{
              -webkit-box-ordinal-group: 5;
              -ms-flex-order: 4;
              order: 4; }
            .main .content main .table .secondCol,
            .companies-in .table .secondCol{
              -webkit-box-ordinal-group: 6;
              -ms-flex-order: 5;
              order: 5;
              margin: 0 0 10px 0;
              width: 100%; }
            .main .content main .table div:nth-child(5),
            .companies-in .table div:nth-child(5){
              -webkit-box-ordinal-group: 7;
              -ms-flex-order: 6;
              order: 6;
              width: 70%; }
            .main .content main .table div:nth-child(4),
            .companies-in .table div:nth-child(4){
              -webkit-box-ordinal-group: 8;
              -ms-flex-order: 7;
              order: 7; } }              
        .main .content main .table .infoModalVip,
        .companies-in .table .infoModalVip {
          display: none;
          position: absolute;
          bottom: 0;
          left: 6%;
          height: 100%;
          z-index: 2;
          border-radius: 5px;
          -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
          -ms-border-radius: 5px;
          -o-border-radius: 5px;
          padding: 18px 20px;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          background-color: #fff;
          -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
          @media (max-width: 1023px) {
            .main .content main .table .infoModalVip,
            .companies-in .table .infoModalVip {
              width: 100%;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center;
              -webkit-box-pack: justify;
              -ms-flex-pack: justify;
              justify-content: space-between;
              -ms-flex-wrap: wrap;
              flex-wrap: wrap;
              padding: 10px 20px;
              /* height: calc(100% - 80px); */
              height: calc(100% - 45px);
              left: 0; }
              .main .content main .table .infoModalVip a:nth-child(3),
              .companies-in .table .infoModalVip a:nth-child(3) {
                margin-right: 0; } }
          @media (max-width: 375px) {
            .newRegister .formCheck label input{
              display: none;
            }
            .main .content main .table .infoModalVip,
            .companies-in .table .infoModalVip {
              -webkit-box-pack: unset !important;
              -ms-flex-pack: unset !important;
              justify-content: unset !important; }
              .main .content main .table .infoModalVip a,
              .companies-in .table .infoModalVip a {
                background-color: transparent;
                margin: 0 !important;
                padding-left: 0 !important;
                -webkit-box-flex: unset !important;
                -ms-flex: unset !important;
                flex: unset !important;
                text-align: left !important; } }
          .main .content main .table .infoModalVip a,
          .companies-in .table .infoModalVip a {
            margin-right: 10px;
            -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            text-align: center; }
          .main .content main .table .infoModalVip a:last-child,
          .companies-in .table .infoModalVip a:last-child {
            margin-right: 0; }
          .main .content main .table .infoModalVip.viewModal,
          .companies-in .table .infoModalVip.viewModal {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important; }
        .main .content main .table > *,
        .companies-in .table > * {
          font-size: 13px; }
        .main .content main .table .infoIcon,
        .companies-in .table .infoIcon {
          text-align: center; }
          .main .content main .table .infoIcon i,
          .companies-in .table .infoIcon i {
            color: #C7C7C7; }
        .main .content main .table .bookmarkIcon .far,
        .companies-in .table .bookmarkIcon .far {
          color: #C7C7C7; }
        .main .content main .table .bookmarkIcon .fa,
        .companies-in .table .bookmarkIcon .fa {
          color:#04446B; /*#EEB61E;*/ }
        .main .content main .table .fa-times,
        .companies-in .table .fa-times{
          color: #BB2025 !important; }
        .main .content main .table .firstDate,
        .companies-in .table .firstDate{
          margin-left: auto; }
          .main .content main .table .firstDate label span,
          .companies-in .table .firstDate label span {
            color: #000; /*31712E */}
        .main .content main .table .secondDate,
        .companies-in .table .secondDate{
          margin-left: 9.5px; }
          .main .content main .table .secondDate label span,
          .companies-in .table .secondDate label span {
            color: #000; /* 951B1F */ }
        .main .content main .table .secondCol a,
        .companies-in .table .secondCol a{
          color: #171717; }
        .main .content main .table .secondCol p,
        .companies-in .table .secondCol p {
          line-height: 20px; 
          overflow-wrap: break-word;
          margin-bottom: 0;
        }
        .main .content main .table div:nth-child(5) a,
        .companies-in .table div:nth-child(5) a{
          color: #171717;
          font-family: "BodyFontBold" !important; }
        .main .content main .table div:nth-child(4),
        .companies-in .table div:nth-child(4){
          margin-left: auto;
          /* width: 30%;  */
          /* text-align: right; */
          width: 35px !important;
          height: 35px !important;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .main .content main .table div:nth-child(4) img,
        .companies-in .table div:nth-child(4) img{
          height: auto;
          max-width: 100%;
          max-height: 100%;
          width: 3em;          
        }
        .main .content main .table label,
        .companies-in .table label {
          width: 54px;
          height: 54px;
          line-height: 1;
          position: relative;
          text-align: center;
          display: inline-block;
          vertical-align: middle;
          margin-top: 0; }
          @media (max-width: 1023px) {
            .main .content main .table label,
            .companies-in .table label {
              width: 48px;
              height: 48px; }
              .main .content main .table label span,
              .companies-in .table label span {
                padding: 12px 0 !important; } }
          .main .content main .table label::before,
          .companies-in .table label::before {
            content: "";
            width: 100%;
            border-radius: 100%;
            height: 100%;
            position: absolute;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            /* background-color: #fff;  */
          }
          .main .content main .table label span,
          .companies-in .table label span{
            font-size: 10px;
            width: 30px;
            display: inline-block;
            line-height: 12px;
            padding: 15px 0;
            position: relative;
            z-index: 1; }
            .main .content main .table label span b,
            .companies-in .table label span b{
              font-size: 13px;
              font-weight: bold; }
      .main .content main .companiesRow {
        margin: 10px 0; 
      }
        .main .content main .companiesRow div {
          width: 100%;
          height: 60px;
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center center; }
        .main .content main .companiesRow ul {
          margin: 0;
          padding: 0;
          list-style-type: none;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: stretch;
          -ms-flex-align: stretch;
          align-items: stretch; }
          .main .content main .companiesRow ul li {
            width: 25%;
            margin-left: 15px;
            text-align: center;
            border: 1.5px #ddd solid;
            border-radius: 5px; }
            .main .content main .companiesRow ul li a {
              padding: 24px 22px;
              display: block;
              color: #171717;
              font-size: 13px;
              height: 100%; 
            }
            @media only screen and (max-width: 550px) {
              .main .content main .companiesRow ul li a {
                padding: 10px 22px;
              }
            }
              .main .content main .companiesRow ul li a p {
                margin-bottom: 0; }
          .main .content main .companiesRow ul li:first-child {
            margin-left: 0; }
          .main .content main .companiesRow ul li:last-child {
            background-color: rgba(238, 182, 30, 0.12);
            border: none;
            margin-right: 0; }
            .main .content main .companiesRow ul li:last-child i {
              margin-left: 13px; }
            .main .content main .companiesRow ul li:last-child p {
              position: relative;
              margin-top: 0;
              top: 40%;
              color: #B28E2A; }
        @media (max-width: 1023px) {
          .main .content main .companiesRow ul {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
            .main .content main .companiesRow ul li {
              width: 48%;
              margin: 0 0 4% 0; }
            .main .content main .companiesRow ul li:last-child {
              -webkit-box-flex: 1;
              -ms-flex-positive: 1;
              flex-grow: 1; }
              .main .content main .companiesRow ul li:last-child p {
                top: 0;
                margin-top: 0; } }
        @media (max-width: 320px) {
          .main .content main .companiesRow li {
            width: 100% !important; } }

.loginPage.container {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.loginPage main {
  padding: 30px 0;
  width: 90%;
  margin: 0 auto; }
  .loginPage main h2 {
    text-align: center;
    margin-bottom: 44px; }
  .loginPage main .formTabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .loginPage main .formTabs button:hover {
      cursor: pointer; }
    .loginPage main .formTabs button {
      width: 50%;
      border: none;
      padding: 20px 0;
      color: #171717;
      background-color: transparent;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px; }
    .loginPage main .formTabs .active {
      padding: 20px 0;
      color: #171717;
      background-color: #F5F5F5;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px; }
  .loginPage main .tabcontent input {
    width: 100%;
    margin-top: 1rem;
    padding: 18px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border: 1.5px #e0e0e0 solid;
    color: #171717; }
  .loginPage main .tabcontent button[type=submit] {
    padding: 19px 17px;
    color: #fff;
    background-color: #BB2025;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border: none;
    width: 100%;
    margin-top: 1rem;
    font-weight: bold; }
  .loginPage main .facebookLogin {
    text-align: center;
    display: block;
    margin-top: 12px;
    padding: 20px 5px;
    color: #fff;
    background-color: #1539D0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px; }
    .loginPage main .facebookLogin i {
      font-size: 15px;
      margin-right: 5px; }

.ads,
.bottomAdverts {
  display: none; 
}

.RegisterPage {
  padding: 30px 0;
  width: 90%;
  margin: 0 auto; }
  .RegisterPage h2 {
    text-align: center;
    margin-bottom: 44px; }
  .RegisterPage .formTabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .RegisterPage .formTabs button:hover {
      cursor: pointer; }
    .RegisterPage .formTabs button {
      width: 50%;
      border: none;
      padding: 20px 0;
      color: #171717;
      background-color: transparent;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px; }
    .RegisterPage .formTabs .active {
      padding: 20px 0;
      color: #171717;
      background-color: #F5F5F5;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px; }
  .RegisterPage .tabcontent input {
    width: 100%;
    margin-top: 1rem;
    padding: 18px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border: 1.5px #e0e0e0 solid;
    color: #171717; }
  .RegisterPage .tabcontent button {
    padding: 19px 17px;
    color: #fff;
    background-color: #BB2025;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border: none;
    width: 100%;
    font-weight: bold; }
  .RegisterPage .tabcontent .terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 21px 0 23px 0; }
    .RegisterPage .tabcontent .terms label {
      border: 1.5px #E2E2E2 solid;
      background-color: transparent;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      margin-right: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 22px;
      position: relative; }
      @media (min-width: 375px) {
        .RegisterPage .tabcontent .terms label {
          height: 26px !important; 
          display: flex;
          justify-content: center;
          align-items: center;
        } }
      @media (min-width: 425px) {
        .RegisterPage .tabcontent .terms label {
          width: 28px !important; } }
      @media (min-width: 1024px) {
        .resume__block_desktop{
          display: inline-flex;
          position: absolute;
          top: 160px;
          right: 0;
        }
        .resume__block{
          display: inline-flex;
          width: 331px;
        }
        .RegisterPage .tabcontent .terms label {
          height: 21px !important; } }
      @media (min-width: 1200px) {
        .RegisterPage .tabcontent .terms label {
          width: 25px !important; } }
      @media (min-width: 1440px) {
        .RegisterPage .tabcontent .terms label {
          width: 21px !important; } }
      .RegisterPage .tabcontent .terms label input {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        display: none; }
      .RegisterPage .tabcontent .terms label.checked{
        background-color: #F0F8F0;
        border-color: #F0F8F0 !important;
      }
      .RegisterPage .tabcontent .terms label.checked i{
        color: #31712E;
      }
      .RegisterPage .tabcontent .terms label i {
        /* position: absolute;
        left: 25%;
        top: 25%; */
        display: none; 
      }
    .RegisterPage .tabcontent .terms p {
      font-size: 12px;
      font-weight: bold;
      margin: 0;
      line-height: 18px; }

.statementPage header img {
  width: 85% !important;
  margin: 0 auto 49px auto; }

.statementPage .left .filterFromLeft {
  padding: 14px 18px;
  background-color: #F5F5F5;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: none;
  margin-bottom: 45px; }
  .statementPage .left .filterFromLeft .iconholder {
    overflow: hidden !important;
    position: relative;
    margin-right: 16px;
    width: 18px !important;
    height: 10px; }
    .statementPage .left .filterFromLeft .iconholder span {
      position: absolute;
      width: 18px;
      height: 10px;
      top: 0;
      left: 0;
      -webkit-transition: top .4s;
      -o-transition: top .4s;
      transition: top .4s; }

.statementPage .content .statementTitle h1 {
  font-size: 16px;
  margin: 0; 
  overflow-wrap: break-word;
}

.statementPage .content .statementTitle a {
  display: none; }

.statementPage .content .statementPrint {
  margin: 28px 0 20px 0; 
  display: flex;
}
  .statementPage .content .statementPrint a {
    border: none;
    text-align: left; }
  .statementPage .content .statementPrint a:last-child {
    margin-left: 10px;
    display: none; }
  .statementPage .content .statementPrint img {
    vertical-align: middle;
    margin-right: 8px; }

.statementPage .content .statementLogos {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-align: start;
  -ms-flex-align: start; */
  /* align-items: flex-start; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .statementPage .content .statementLogos a{

  }
  .statementPage .content .statementLogos .statementLogos-provider .desc a {
      color:black;
  }
  .statementPage .content .statementLogos .statementLogos-provider.success {
      color:black !important;
      background:#8d8d8d12;
  }
  @media (min-width: 320px) {
    .statementPage .content .statementLogos div {
      padding: 3px 12px; }      
    .statementPage .content .statementLogos img {
      margin-bottom: 10px; 
    }
    .statementPage .content .statementLogos .statementLogos-provider {
      width: 100%; 
      /* flex: auto; */
    }
    .statementPage .content .statementLogos .statementLogos-deadline,
    .statementPage .content .statementLogos .statementLogos-date {
      width: 49%; }
    .statementPage .content .statementLogos .statementLogos-deadline {
      margin-left: auto; } }
  @media (min-width: 425px) {
    .statementPage .content .statementLogos {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }      
      .statementPage .content .statementLogos .statementLogos-deadline {
        margin-left: unset; } }
  @media (min-width: 768px) {
    .statementPage .content .statementLogos .statementLogos-name {
      -webkit-box-flex: unset !important;
      -ms-flex-positive: unset !important;
      flex-grow: unset !important;
      flex: auto;
    } 
    .statementPage .content .statementLogos a{
      /* width: 10% !important; */
    }
    .statementPage .content .statementLogos .statementLogos-provider,
    .statementPage .content .statementLogos .statementLogos-deadline,
    .statementPage .content .statementLogos .statementLogos-date {
      width: unset !important;
    }
    .statementPage .content .statementLogos .statementLogos-provider{
      margin-left: 10px;
      margin-right: 10px;
    }
    .statementPage .content .statementLogos .statementLogos-date{
      margin-left: auto !important;
    }
  }
  .statementPage .content .statementLogos img {
    /* margin-right: 8px;  */
  }
  .statementPage .content .statementLogos div {
    border: 1.5px #D9D9D9 solid;
    border-radius: 5px;
    margin-bottom: 10px; }
    .statementPage .content .statementLogos div .desc {
      font-size: 11px;
      font-weight: bold; }
  .statementPage .content .statementLogos .statementLogos-name {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;     
    order: 3;
    width: 100%;
  }
  .statementPage .content .statementLogos .statementLogos-provider,
  .statementPage .content .statementLogos .statementLogos-date,
  .statementPage .content .statementLogos .statementLogos-deadline {
    text-align: center;     
  }
  .statementPage .content .statementLogos .statementLogos-provider {
    border: 1.5px rgba(52, 154, 48, 0.07) solid; 
    order: 2;
  }
  .statementPage .content .statementLogos .statementLogos-date {
    color: #000; /* #31712E */ 
    order: 4;
  }
  .statementPage .content .statementLogos .statementLogos-deadline {
    color: #000; /* 951B1F */ 
    order: 5;
  }

.statementPage .content .statementMain .statementTags {
  padding: 20px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .statementPage .content .statementMain .statementTags a {
    margin: 0 4px 4px 0;
    color: #171717;
    padding: 5px 16px;
    border: 1.5px rgba(112, 112, 112, 0.2) solid;
    border-radius: 30px;
    display: inline-block; }
    .statementPage .content .statementMain .statementTags a span {
      display: block; }
    .statementPage .content .statementMain .statementTags a .tagDesc {
      font-size: 11px;
      font-weight: bold; }

.statementPage .content .statementMain .statementBody {
  margin-top: 20px; }
  .statementPage .content .statementMain .statementBody p {
    font-size: 12px;
    margin: 0;
    overflow-wrap: break-word;
    line-height: 1.5; }    

.slider {
  background-color: #F5F5F5;
  margin-bottom: 30px; }
  .slider .container {
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .slider .container .sliderContent {
      padding-top: 24px;
      padding-bottom: 32px;
      margin: 0 auto;
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden; }
      .slider .container .sliderContent .sliderTitle {
        padding-right: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .slider .container .sliderContent .sliderTitle p {
          margin: 0;
          font-weight: bold;
          font-size: 12px; }
        .slider .container .sliderContent .sliderTitle a {
          color: #171717;
          font-size: 12px; }
        .slider .container .sliderContent .sliderTitle i:focus {
          outline: none !important; }
        .slider .container .sliderContent .sliderTitle a:last-child {
          margin-left: 10px; }
      .slider .container .sliderContent .swiper-container {
        margin-top: 25px;
        width: 100%;
        height: 100%;
        overflow: unset !important; }
        .slider .container .sliderContent .swiper-container .swiper-slide {
          border-radius: 5px;
          background: #fff;
          height: auto !important; }
          .slider .container .sliderContent .swiper-container .swiper-slide a {
            width: 100%;
            height: 100% !important;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding: 8px 10px 8px 10px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            justify-content: space-between;
            color: #171717; }
            .slider .container .sliderContent .swiper-container .swiper-slide a img {
              margin-right: 17px;
              -ms-flex-item-align: center;
              -ms-grid-row-align: center;
              align-self: center; 
              width: 30%;
            }
            .slider .container .sliderContent .swiper-container .swiper-slide a p:first-child {
              margin-top: 0;
              font-size: 11px;
              font-weight: bold; }
            .slider .container .sliderContent .swiper-container .swiper-slide a p:last-child {
              font-size: 10px;
              margin-bottom: 0; }
      .slider .container .sliderContent .swiper-button-disabled {
        color: rgba(23, 23, 23, 0.2) !important; }
    .slider .container .sliderFake {
      display: none; }

.dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 42px 0; }
  .dashboard main {
    width: 100%;
    margin: 0 auto; }
    .dashboard main h2 {
      text-align: center;
      color: #000;
      margin-bottom: 30px;
      margin-top: 0;
      font-weight: bold; }
    .dashboard main form label {
      font-size: 12px;
      display: block !important;
      margin-bottom: 18px; }
    .dashboard main form input, .dashboard main form textarea {
      width: 100% !important;
      margin-bottom: 16px;
      color: #171717 !important;
      padding: 18px 20px;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      /* border: 1.5px #E2E2E2 solid; */
      border: 2px #E2E2E2 solid;
      color: #171717; }
    .dashboard main form select {
      width: 100%;
      margin-bottom: 16px;
      font-size: 11px;
      padding: 18px 20px;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      border: 2px #E0E0E0 solid;
      color: #171717;
      -webkit-appearance: none;
      -moz-appearance: none;
      -o-appearance: none;
      appearance: none;
      background-image: url("../images/icon/selectarrow.png");
      background-position: 95% center;
      background-repeat: no-repeat; }
    .dashboard main form button {
      padding: 19px 17px;
      color: #fff;
      background-color: #BB2025;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      border: none;
      width: 100%;
      font-weight: bold; }
  .dashboard .addStatement form {
    display: block !important;
    position: relative; }
    .dashboard .addStatement form .calendar div {
      position: relative; }
      .dashboard .addStatement form .calendar div input {
        width: 100%; }
      .dashboard .addStatement form .calendar div i {
        position: absolute;
        right: 20px;
        top: 25%;
        font-size: 18px; }
    .dashboard .addStatement form .calendar .startdate i {
      color: #31712E; }
    .dashboard .addStatement form .calendar .enddate i {
      color: #BB2025; }
    .dashboard .addStatement form .calendar .startdate input:hover,
    .dashboard .addStatement form .calendar .enddate input:hover {
      cursor: pointer; }
  .dashboard .dashboardStatement .statementContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px; }
    .dashboard .dashboardStatement .statementContainer span {
      font-size: 14px;
      font-weight: bold;
      width: 25px; }
    .dashboard .dashboardStatement .statementContainer a {
      color: #171717;
      display: block;
      position: relative;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      background-color: #F5F5F5;
      padding: 0 12px;
      border-radius: 5px; }
      .dashboard .dashboardStatement .statementContainer a p:first-child {
        font-weight: bold; }
      .dashboard .dashboardStatement .statementContainer a i {
        position: absolute;
        right: 12px;
        top: 40%;
        color: #1539D0; }
    .dashboard .dashboardStatement .statementContainer a:hover {
      color: #fff;
      background-color: #1539D0; }
      .dashboard .dashboardStatement .statementContainer a:hover i {
        color: #fff; }
  .dashboard .dashboardStatement .pagination {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60%;
    margin: 41px auto 0 auto; }
    .dashboard .dashboardStatement .pagination a {
      color: rgba(23, 23, 23, 0.3); }
    .dashboard .dashboardStatement .pagination .enabled {
      color: #171717; }
    .dashboard .dashboardStatement .pagination .pageNums {
      font-weight: bold; }
    .dashboard .dashboardStatement .statement-empty{
      padding: 20px;
      border: 1px #B7B7B7 dashed;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -o-border-radius: 10px;
      -ms-border-radius: 10px;
      margin-bottom: 40px;
    }
    .dashboard .dashboardStatement .statement-empty p{
      font-size: 12px;
      margin: 0;
      font-weight: 100;
      color:
      #171717;
      line-height: 18px;
    }
    .dashboard .dashboardStatement .statement-empty-but{
      text-align: center;
    }
    .dashboard .dashboardStatement .statement-empty-but a{
      background-color: #F0F0F0;
      border-radius: 36px;
      -webkit-border-radius: 36px;
      -moz-border-radius: 36px;
      -o-border-radius: 36px;
      -ms-border-radius: 36px;
      padding: 18px 32px;
      color: #171717;
      font-size: 12px;
      transition: color .3s, background-color .3s;
      -webkit-transition: color .3s, background-color .3s;
      -ms-transition: color .3s, background-color .3s;
    }
    .dashboard .dashboardStatement .statement-empty-but span{
      color: #0724D8;
      margin-left: 10px;
      font-size: 18px;
      transition: color .3s;
      -webkit-transition: color .3s;
      -ms-transition: color .3s;
    }
    .dashboard .dashboardStatement .statement-empty-but a:hover{
      background-color: #0010DC;
      color: #FFFFFF;
    }
    .dashboard .dashboardStatement .statement-empty-but a:hover span{
      color: #FFFFFF;
    }
  .dashboard .dashboardResume form {
    position: relative;
    display: block; }
    .dashboard .dashboardResume form .uploadWrapper {
      width: 100%;
      height: auto;
      position: relative;
      border: 1.5px #E2E2E2 solid;
      border-radius: 5px;
      padding: 21px 20px;
      margin-bottom: 16px; }
      .dashboard .dashboardResume form .uploadWrapper.profilePic {
        border-style: dashed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 14px;
        padding-bottom: 14px; }
        .dashboard .dashboardResume form .uploadWrapper.profilePic.error {
          border-color: #BB2025; }
          .dashboard .dashboardResume form .uploadWrapper.profilePic.error .fileDesc {
            color: #BB2025; }
        .dashboard .dashboardResume form .uploadWrapper.profilePic .picHolder {
          position: relative;
          width: 60px;
          height: 60px;
          background-image: url("../images/icon/pic.png");
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center center;
          margin-right: 19px; }
          .dashboard .dashboardResume form .uploadWrapper.profilePic .picHolder i {
            display: none;
            position: absolute;
            top: -5px;
            left: -8px;
            color: #BB2025;
            font-size: 18px;
            z-index: 3;
            background-color: #fff;
            border-radius: 100%;
            padding: 1px; }
        .dashboard .dashboardResume form .uploadWrapper.profilePic .fileTitle {
          position: unset;
          font-size: 15px; }
        .dashboard .dashboardResume form .uploadWrapper.profilePic .fileDesc {
          font-size: 13px;
          margin: 7px 0; }
        .dashboard .dashboardResume form .uploadWrapper.profilePic .fileFormats {
          margin: 0;
          color: rgba(23, 23, 23, 0.3);
          font-size: 12px; }
      .dashboard .dashboardResume form .uploadWrapper.added {
        padding: 0 20px; }
        .dashboard .dashboardResume form .uploadWrapper.added .fileTitle {
          top: 5px; }
        .dashboard .dashboardResume form .uploadWrapper.added .fileName {
          margin: 26px 0 10px 0;
          color: #1539D0; }
      .dashboard .dashboardResume form .uploadWrapper input {
        padding: 0;
        height: 100%;
        margin: 0;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 3; }
        .dashboard .dashboardResume form .uploadWrapper input:hover {
          cursor: pointer !important; }
      .dashboard .dashboardResume form .uploadWrapper .fileName {
        font-size: 13px; }
      .dashboard .dashboardResume form .uploadWrapper .fileTitle {
        font-size: 13px;
        position: absolute;
        left: 20px;
        top: 15px;
        margin: 0;
        -webkit-transition: top .5s;
        -o-transition: top .5s;
        transition: top .5s; }
      .dashboard .dashboardResume form .uploadWrapper .fa-paperclip {
        position: absolute;
        right: 15px;
        top: 30%;
        font-size: 18px;
        -webkit-transform: rotateZ(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotateZ(-45deg); }
    .dashboard .dashboardResume form input[name=artwork] {
      margin-bottom: 22px; }

.faq {
  color: #171717;
  margin-bottom: 49px;
  margin-top: 21px; }
  .faq.container {
    padding-left: 0;
    padding-right: 0; }
  .faq main h2 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 27px; }
  .faq main .accordion {
    border: 1px #E4E5E8 solid;
    border-radius: 5px;
    font-size: 11px;
    margin-bottom: 20px; }
    .faq main .accordion .accordionTitle.show {
      background-color: #F4F4F4; }
    .faq main .accordion .accordionTitle:hover {
      background-color: #F4F4F4; }
    .faq main .accordion .accordionTitle a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 12px 16px;
      color: #171717; }
    .faq main .accordion .accordionTitle p {
      padding-right: 14px;
      margin: 0;
      line-height: 18px;
      font-weight: bold; }
    .faq main .accordion .accordionTitle .fa {
      color: #1539D0; }
    .faq main .accordion .accordionBody {
      height: 0;
      overflow: auto;      
      -webkit-transition: height .5s;
      -o-transition: height .5s;
      transition: height .5s; }
      .faq main .accordion .accordionBody .accordionBody-inner {
        padding: 10px 16px;
        line-height: 20px;
      }
      .faq main .accordion .accordionBody .accordionBody-inner ul,
      .faq main .accordion .accordionBody .accordionBody-inner ol{
        list-style-type: unset !important;
        margin: 1em !important;
        display: block;
      }
      .faq main .accordion .accordionBody.show {
        height: auto; }

.terms {
  color: #171717;
  margin-bottom: 100px; }
  .terms.container {
    padding-right: 0;
    padding-left: 0; }
  .terms h2 {
    font-size: 16px;
    margin: 21px 0;
    text-align: center; }
  .terms p {
    font-size: 12px;
    line-height: 24px; }

.graduates {
  color: #171717;
  margin-bottom: 100px; }
  .graduates.container {
    padding-right: 0;
    padding-left: 0; }
  .graduates h2 {
    font-size: 16px;
    margin: 21px 0;
    text-align: center; }
  .graduates p {
    font-size: 12px;
    line-height: 24px; }

.graduatesLoginMobile {
  padding: 16px 0 40px 0;
  border-top: 1px #E0E0E0 solid; }
  .graduatesLoginMobile.container {
    padding-right: 0;
    padding-left: 0; }
  .graduatesLoginMobile p {
    line-height: 18px;
    opacity: .5;
    font-size: 12px;
    color: #171717;
    padding-bottom: 20px; }
  .graduatesLoginMobile .mobileLoginButtons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .graduatesLoginMobile .mobileLoginButtons a {
      text-align: center;
      padding: 16px 20px;
      border-radius: 22px;
      -webkit-border-radius: 22px;
      -moz-border-radius: 22px;
      -ms-border-radius: 22px;
      -o-border-radius: 22px;
      width: 50%; }
    .graduatesLoginMobile .mobileLoginButtons a:first-child {
      background-color: #BB2025;
      color: #fff;
      border: 1px #BB2025 solid; }
    .graduatesLoginMobile .mobileLoginButtons a:last-child {
      margin-left: 8px;
      background-color: transparent;
      color: #171717;
      border: 1.5px #DBDBDB solid; }

.graduatesLogin {
  display: none; }

.contact {
  color: #171717; }
  .contact.container {
    padding-right: 0;
    padding-left: 0; }
    @media (min-width: 768px){
      .contact.container{
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
  .contact h2 {
    font-size: 16px;
    margin: 21px 0;
    text-align: center; }
  .contact .contactCards {
    margin: 28px 0; }
    .contact .contactCards .contactRightCard,
    .contact .contactCards .contactLeftCard {
      position: relative;
      padding: 19px 20px;
      color: #fff;
      border-radius: 5px;
      font-size: 12px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .contact .contactCards .contactRightCard i,
      .contact .contactCards .contactLeftCard i {
        font-size: 35px;
        margin-right: 32px; }
    .contact .contactCards .contactRightCard:before,
    .contact .contactCards .contactLeftCard:before {
      content: "";
      position: absolute;
      width: 90%;
      height: 90%;
      bottom: 5%;
      left: 5%;
      z-index: -1; }
    .contact .contactCards .contactLeftCard {
      background: #eeb61e;
      background: -moz-linear-gradient(225deg, #eeb61e 0%, #eb7218 100%);
      background: -webkit-gradient(right top, left bottom, color-stop(0%, #eeb61e), color-stop(100%, #eb7218));
      background: -webkit-linear-gradient(225deg, #eeb61e 0%, #eb7218 100%);
      background: -o-linear-gradient(225deg, #eeb61e 0%, #eb7218 100%);
      background: -ms-linear-gradient(225deg, #eeb61e 0%, #eb7218 100%);
      background: linear-gradient(225deg, #eeb61e 0%, #eb7218 100%); }
      .contact .contactCards .contactLeftCard:before {
        -webkit-box-shadow: 0 10px 30px #EDA71D;
        box-shadow: 0 10px 30px #EDA71D; }
    .contact .contactCards .contactRightCard {
      margin-top: 20px;
      background: #f75a5f;
      background: -moz-linear-gradient(225deg, #f75a5f 0%, #bb2025 100%);
      background: -webkit-gradient(right top, left bottom, color-stop(0%, #f75a5f), color-stop(100%, #bb2025));
      background: -webkit-linear-gradient(225deg, #f75a5f 0%, #bb2025 100%);
      background: -o-linear-gradient(225deg, #f75a5f 0%, #bb2025 100%);
      background: -ms-linear-gradient(225deg, #f75a5f 0%, #bb2025 100%);
      background: linear-gradient(225deg, #f75a5f 0%, #bb2025 100%); }
      .contact .contactCards .contactRightCard:before {
        -webkit-box-shadow: 0 10px 30px #E04449;
        box-shadow: 0 10px 30px #E04449; }
        .contact .contactCards .contactRightCard a,
        .contact .contactCards .contactLeftCard a{
          color: #fff;
        }
  .contact .contactFormTitle {
    display: none; }
  .contact form {
    margin-bottom: 37px; }
    .contact form input,
    .contact form textarea {
      width: 100%;
      margin-bottom: 8px;
      font-size: 12px;
      padding: 18px 20px;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      border: 1px #E2E2E2 solid;
      color: #171717; }
    .contact form button {
      width: 100%;
      border: 1px #EEB61E solid;
      position: relative;
      padding: 16px 18px;
      color: rgba(23, 23, 23, 0.7);
      background-color: #EEB61E;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      font-weight: bold;
      border-radius: 10px !important;
      margin-top: 10px;
    }
      .contact form button:before {
        content: "";
        position: absolute;
        width: 90%;
        height: 90%;
        bottom: 5%;
        left: 5%;
        z-index: -1;
        -webkit-box-shadow: 0 7px 20px #EDA71D;
        box-shadow: 0 7px 20px #EDA71D; }

.employee {
  width: 90%;
  margin: 0 auto;
  padding: 14px 0 48px 0; }
  .employee h2 {
    text-align: center; }
  .employee header {
    margin: 40px 0; }
    .employee header h4 {
      font-size: 12px;
      margin: 20px 0 10px 0; }
    .employee header .select-box__input-text {
      font-size: 11px; }
    .employee header button[name=submit] {
      padding: 19px 17px;
      color: #fff;
      background-color: #BB2025;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      -webkit-box-shadow: 0 3px 0 #8B0C11;
      box-shadow: 0 3px 0 #8B0C11;
      border: none;
      width: 100%;
      margin-top: 4px;
      font-weight: bold;
      font-size: 12px; }
    .employee header .mobileViewFilter {
      padding: 20px 17px;
      color: #171717;
      background-color: #fff;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      font-size: 11px;
      border: 2px #DEDEDE solid;
      margin-top: 16px;
      width: 100%; }
      .employee header .mobileViewFilter i {
        margin-left: 10px;
        color: #1539D0; }
  .employee main .searchResult {
    text-align: center;
    font-size: 11px;
    padding: 20px 0 !important;
    font-weight: bold; }
  .employee main .searchProfile .profile {
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px #E0E0E0 solid;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px; }
    .employee main .searchProfile .profile i {
      position: absolute;
      right: 12px;
      top: 40%;
      color: #1539D0; }
    .employee main .searchProfile .profile .profilePic {
      width: 10vw;
      height: 10vw;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      border-radius: 100%;
      margin-right: 16px; }
    .employee main .searchProfile .profile .profileName {
      font-size: 11px;
      font-weight: bold; }
    .employee main .searchProfile .profile .profileAge {
      font-size: 10px; }
      .employee main .searchProfile .profile .profileAge p:after {
        content: " წლის"; }
  .employee main .pagination {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60%;
    margin: 41px auto 0 auto; }
    .employee main .pagination a {
      color: rgba(23, 23, 23, 0.3); }
    .employee main .pagination .enabled {
      color: #171717; }
    .employee main .pagination .pageNums {
      font-weight: bold; }

footer {
  position: static !important;
  margin-top: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 90vw;
  position: fixed;
  bottom: 0;
  left: 4.7%;
  z-index: 2;
  border: 1px #EDE5D0 solid;
  -webkit-box-shadow: 0 0 10px #F4F1E9;
  box-shadow: 0 0 10px #F4F1E9;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px 35px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: bottom .7s;
  -o-transition: bottom .7s;
  transition: bottom .7s; }
  footer img{
    height: 35px;
  }
  footer .copyright img{
    height: unset !important;
  }
  @media (max-width: 1023px) {
    footer {
      padding: 20px 14px;
      position: static;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-shadow: 0 0 30px #F4F1E9;
      box-shadow: 0 0 30px #F4F1E9; }
      footer .footerLinks {
        font-size: 13px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        footer .footerLinks a:first-child {
          margin-left: 0; }
      footer .footerContact {
        margin: 23px 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%; }
        footer .footerContact a {
          display: block;
          font-size: 13px;
          font-weight: bold;
          text-align: right;
          position: relative; }
          footer .footerContact a i {
            position: absolute;
            left: 3%;
            top: 35%; }
        footer .footerContact a:first-child {
          margin-bottom: 10px; }
      footer .copyright {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3; }
      footer .footerMobileLogo{
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4; } }
  @media (max-width: 375px) {
    footer .footerMobileLogo {
      width: 40%;
      position: relative;
     } 
     footer .footerMobileLogo img{
       max-width: 100%;
     }
    }
  footer .copyright img {
    width: 25%;
    vertical-align: bottom; }
  footer .footerLinks a {
    color: #846612;
    margin-left: 20px; }
  footer .footerContact a {
    background-color: rgba(132, 102, 18, 0.09);
    color: #846612;
    border-radius: 23px;
    padding: 11px; }
    footer .footerContact a i {
      color: #BB2025;
      margin-right: 12px; }
    footer .footerContact a a:first-child {
      margin-left: 1rem; }

.footerShow {
  bottom: 0 !important; }

.select-box {
  width: 100% !important;
  color: #171717;
  margin-bottom: 16px;
  /* position: relative; */
 }
  .select-box__current {
    border: 2px #E2E2E2 solid;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    outline: none;
    width: 100% !important;
    padding: 18px 20px; }
    .select-box__current p {
      margin: 0; }
    .select-box__current.expand {
      border-color: #171717 !important;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      border-bottom-color: #E2E2E2 !important; }
      .select-box__current.expand + .select-box__list {
        opacity: 1;
        -webkit-animation-name: none;
        animation-name: none;
        border: 2px #171717 solid;
        border-top: none !important; }
        .select-box__current.expand + .select-box__list .select-box__option {
          cursor: pointer; }
      .select-box__current.expand .select-box__icon {
        -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg); }
  .select-box__icon {
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.3;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease; }
  .select-box__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .select-box__input {
    display: none; }
    .select-box__input:checked + .select-box__input-text {
      display: block; }
  .select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 18px 20px;
    background-color: #fff; }
  .select-box__list {
    max-height: 153px;
    z-index: 20;
    position: absolute;
    width: 100%;
    margin-top: -1px;
    padding: 0;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
    animation-name: HideList;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff; }
    .select-box__list li {
      border: 2px #F0F0F0 solid;
      border-left: none;
      border-right: none;
      border-top: none;
      padding: 15px; 
    }
      .select-box__list li:hover {
        cursor: pointer; }
    .select-box__list input{
      border: 2px #F0F0F0 solid;
      border-left: none;
      border-right: none;
      border-top: none;
      padding: 15px; 
      width: 100%;
    }
    .select-box__list input:hover{
      border-color: #F0F0F0 !important;
    }
  .select-box__option {
    display: block;
    padding: 15px;
    margin: 0 !important;
    background-color: #fff; }
    .select-box__option:hover, .select-box__option:focus {
      color: #546c84;
      background-color: #fbfbfb; }

@-webkit-keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); }
  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0); } }

@keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); }
  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0); } }

form.needsValidation .invalid {
  border-color: red !important;
  background-color: rgba(246,75,63, .05);
 }

#image-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9); }

.image-overlay-content {
  position: relative;
  width: 90%;
  margin: 95px auto;
  height: 100px; }
  .image-overlay-content #image-overlay-exit {
    width: 32px;
    height: 32px;
    display: block;
    background-color: #F0B700;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 30px;
    border-radius: 100%;
    margin: 0 auto 40px auto;
    color: #000; }
    .image-overlay-content #image-overlay-exit:focus {
      color: #000; }

.image-overlay-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.image-overlay-controls .fa-arrow-left,
.image-overlay-controls .fa-arrow-right {
  color: white;
  font-size: 18px;
  width: 10%;
  outline: none; }

.image-overlay-controls .swiper-button-disabled {
  color: rgba(255, 255, 255, 0.6) !important; }

.image-overlay-controls .fa-arrow-right {
  text-align: right; }

.image-overlay-center-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70%; }

.current-pic {
  color: #fff; }

.total-pic {
  color: #777777;
  text-align: right; }

.current-pic,
.total-pic {
  font-size: 13px;
  font-weight: bold;
  width: 10%; }

#image-overlay-timeline {
  width: 90%;
  height: 2px;
  background-color: #434343;
  overflow: hidden;
  margin: 0 13px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

#image-overlay-timeline-body {
  position: relative;
  width: 100%; }

.swiper-container {
  width: 100%;
  margin-top: 16px; }

.swiper-pagination-progressbar-fill {
  background-color: #C7C7C7 !important; }

.swiper-slide {
  width: 100%;
  position: relative; }

.swiper-slide img {
  width: 100%; }

.blog.container {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 50px; }

.blog main {
  margin-bottom: 30px; }

.blog .blog-left {
  width: 100%;
  height: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  border-radius: 5px; }
  .blog .blog-left a {
    display: block;
    width: 100%;
    height: 100%; }
  .blog .blog-left i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s; }
    .blog .blog-left i:before {
      content: "";
      width: 10vw;
      height: 10vw;
      position: absolute;
      top: 40%;
      left: 45%;
      background-color: #2B2929;
      border-radius: 100%;
      background-image: url("../images/icon/link.png");
      background-repeat: no-repeat;
      background-position: center center; }

.blog .blog-right h2 {
  font-size: 12px;
  font-weight: bold; }

.blog .blog-right p {
  display: none; }

.blog .blog-right div a {
  display: none; }

.blog .blog-right div span {
  color: rgba(23, 23, 23, 0.6);
  font-size: 12px; }

.blog .pagination {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60%;
  margin: 41px auto 0 auto; }
  .blog .pagination a {
    color: rgba(23, 23, 23, 0.3); }
  .blog .pagination .enabled {
    color: #171717; }
  .blog .pagination .pageNums {
    font-weight: bold; }

.blogin.container {
  padding: 0;
  margin-bottom: 40px; }

.blogin main {
  padding-bottom: 24px;
  border-bottom: 2px #F0F0F0 solid; }

.blogin-title {
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 15px; }

.blogin-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px; }
  .blogin-date span {
    color: rgba(23, 23, 23, 0.6);
    font-size: 11px; }

.blogin-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px; }
  .blogin-share span {
    display: none; }
  .blogin-share .fa-linkedin-in {
    color: #0E76A8; }
  .blogin-share a:last-child {
    margin-left: 14px; }
  .blogin-share .fa-facebook {
    color: #3B5998; }

.blogin-left {
  width: 100%;
  height: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  margin-bottom: 12px; }

.blogin article {
  font-size: 11px;
  line-height: 20px; }

.blogin-gallery-title {
  text-align: center;
  padding: 24px 0; }
  .blogin-gallery-title img {
    margin-bottom: 14px; }
  .blogin-gallery-title h3 {
    font-size: 13px;
    font-weight: bold;
    margin-top: 0; }

.blogin #gallery {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px; }
  .blogin #gallery .blog-thumbnails img {
    width: 100%; }

  
  #terms-overlay {
  display: none; }
  #terms-overlay.show {
    display: block !important;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center; }
    #terms-overlay.show .terms-overlay-content {
      width: 90vw;
      margin: 0 auto;
      background-color: #fff;
      padding: 32px;
      border-radius: 10px; }
      @media (min-width: 1024px) {        
        #terms-overlay.show .terms-overlay-content {
          width: 50vw !important;
          margin-top: 5vh !important; } 
          .main .content main .table div:nth-child(4) img{
            width: 3em !important;
          }
        }
      #terms-overlay.show .terms-overlay-content h3 {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 32px;
        text-align: center; }
      #terms-overlay.show .terms-overlay-content .terms-overlay-content-inner {
        text-align: left;
        font-size: 13px;
        line-height: 25px;
        overflow-y: auto;
        height: 50vh; }
    #terms-overlay.show #terms-overlay-close {
      margin-top: 65px;
      font-size: 13px;
      font-weight: bold;
      border: 1px #FCF3F4 solid;
      cursor: pointer; }
      .main .content main .table div:nth-child(4) img{
        width: 4em;
      }
    .search-searchResult{
      background-color: #F3F8F2;
      border: 1px #D6E0D6 solid;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      margin-bottom: 32px;
    }
    .search-searchResult p{
      color: #171717;
      font-size: 13px;
      margin: 0;
    }
    .search-searchResult i{
      margin-right: 16px;
      color: rgba(17,17,17,.3);
      font-size: 13px;
    }

  .companies-page {
    color: #171717;
    margin-bottom: 32px; 
    margin-top: 40px;
  }
  .companies-page.container {
    padding-right: 0;
    padding-left: 0; }
  .companies-page h2 {
    font-size: 16px;
    margin: 21px 0;
    text-align: center; }
  .tecompanies-pagerms p {
    font-size: 12px;
    line-height: 24px; 
  }
  .companies-page main{
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 8px;
    row-gap: 8px;
    margin-top: 29px;
  }
  .companies-page .companies-links{
    position: relative;
    border: 1.5px #DDDDDD  solid;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;    
  }
  .companies-page .companies-links p{
    font-size: 10px;
    font-weight: bold;
    line-height: 12px;
    margin: 0;
  }
  .companies-page .companies-links a{    
    display: block;
    color: #171717;
    font-size: 13px;
    padding: 24px 22px;
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .companies-page .companies-links a div{
    width: 100%;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .companies-page .pagination {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60%;
    margin: 41px auto 0 auto; }
    .companies-page .pagination a {
      color: rgba(23, 23, 23, 0.3); }
    .companies-page .pagination .enabled {
      color: #171717; }
    .companies-page .pagination .pageNums {
      font-weight: bold; }

    .companies-in.container {
      width: 90vw;
      margin: 40px auto;
      padding-right: 0;
      padding-left: 0; }
      .companies-in main{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 60px;
      }
      .companies-in main a:first-child{        
        width: 58px;
        /* margin-right: 16px; */
      }
      .companies-in main a:first-child img{
        max-width: 100%;
      }
      .companies-in main h2{
        font-size: 16px;
        color: #171717;
        flex-grow: 1;
        text-align: center;
        margin-right: 58px;
      }
      .companies-in main p{
        font-size: 12px;
        line-height: 20px;
      }
      .companies-in main p a{
        color: #2A6ECB;
        text-decoration: none;
      }      
      .select-box__list[data-simplebar]{
        position: absolute !important;
      }
      .simplebar-scrollbar:before { 
        width: 3px !important; 
        opacity: 1 !important;
        background-color: rgba(0,0,0,.3) !important;
      }
      .formValError .swal-title,
      .formValSuccess .swal-title,
      .formValWarning .swal-title{
        font-size: 13px !important;
        font-family: 'BodyFont';
      }
      .formValError .swal-footer,
      .formValSuccess .swal-footer{
        text-align: center !important;
        padding-bottom: 32px !important;
        padding-top: 34px !important;
      }
      .formValError .swal-button,
      .formValSuccess .swal-button{
        background-color: rgba(187,32,37, .1);
        color: #BB2025;
        border-radius: 5px !important;
        outline: none !important;
        padding-top: 11px !important;
        padding-bottom: 11px !important;
        font-size: 13px !important;
      }
      .formValWarning .swal-button{
        background-color: rgba(52, 154, 48, 0.07);
        color: #31712E;
        border-radius: 5px !important;
        outline: none !important;
        padding-top: 11px !important;
        padding-bottom: 11px !important;
        font-size: 13px !important;
      }
      .formValError .swal-button:before,
      .formValSuccess .swal-button:before{
        content: '\2715';
        font-size: 13px !important;
        font-weight: bold !important;
        margin-right: 7.5px;
        font-family: 'BodyFont';
      }
      .formValError .swal-button:focus,
      .formValSuccess .swal-button:focus,
      .formValWarning .swal-button:focus{
        box-shadow: none !important;
      }
      .formValError .swal-button:hover,
      .formValSuccess .swal-button:hover{
        background-color: rgba(187,32,37, .1) !important;
      }
      .formValError .swal-icon--error__line{
        background-color: #BB2025 !important;
      }
      .formValError .swal-icon--error{
        border-color: #BB2025 !important;
      }
      .formValWarning .swal-footer{
        text-align: center !important;
        padding-bottom: 32px !important;
      }
      .blogin-top article > *{
        font-family: 'BodyFont' !important;
      }
      .statementPage .content .statementLogos a{
       height: 64px;
       position: relative;
       /* flex: 1em; */
       margin-right: 8px; 
       width: 150px !important;
       order: 1;
      }
      .statementPage .content .statementLogos a img{
        max-height: 100%;
        max-width: 100%;
        height: auto;
      }
      .statementBody *{
        font-family: 'BodyFont' !important;
        font-size: 12px !important;
        line-height: 1.5 !important;
      }
      .statementBody ul{
        margin: 1em !important;
        padding: unset !important;
        list-style-type: unset !important;
      }
      .terms main ul{
        list-style-type: unset !important;
        margin: 1em !important;
      }
      .terms main ol,
      .statementBody ol{
        margin: 1em !important;
        font-size: 13px;
      }
      .terms main{
        font-family: 'BodyFont' !important;
      }

      form input.login-error{
        border-color: red !important;
      }
      form .input-error{
        color: #F64B3E;
        font-size: 12px;
        display: none;
      }
      form .input-error i{
        margin-right: 8px;        
      }
      #registerFormLegal .select-box{
        position: relative;
      }
      .printLogo{
        display: none;
      }

      @page {
        size: A4;
        margin: 0;
      }
      @media print {   
        html, body {
          width: 210mm;
          height: 297mm;
        }    
        header, 
        .left, 
        .statementPrint,
        .statementTitle a,
        .slider,
        footer{ 
          display: none !important; 
        } 
        .printLogo{
          display: block !important;
          margin-bottom: 40px !important;
        }
      }
      .bookmarkIcon.bookmarkPage{
        visibility: hidden;
      }
      .bookmarkTrash{
        order: 2;
        background-color:transparent;
        border: none;
        margin: 0;
        padding: 0;
      }
      @media (min-width: 1024px){
        .menuBookmark{
          text-align: center;
          padding: 0 32px; 
          margin: 0 10px 0 32px;
          border-right: 1px #2B292920 solid;
          border-left: 1px #2B292920 solid;
        }
      }      
      @media (max-width: 1023px){
        .menuBookmark a p:last-child{
          display: none;
        }
      }
      .menuBookmark a{
        color: #171717;
        display: block;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .menuBookmark p{
        margin: 0;
        font-family: 'BodyFontBold';
        font-size: 14px;
        transition:0.3s all;
      }
      .menuBookmark p:hover {
        color: #222;
      }
      .menuBookmark i{
        color: #04446B; /* f2b800 */  
        margin-right: 10px;
      }
      #goTop{
        width: 36px;
        height: 36px;
        background-color: #EEB61E;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        right: 20px;
        bottom: 30px;
        color: #1A1A1A;
        box-shadow: 0 1px 0 #BC8B08;
        -webkit-box-shadow: 0 1px 0 #BC8B08;
        -ms-box-shadow: 0 1px 0 #BC8B08;
        -moz-box-shadow: 0 1px 0 #BC8B08;
        -o-box-shadow: 0 1px 0 #BC8B08;
        opacity: 0;
        z-index: 999;
        transition: opacity .3s;
        -webkit-transition: opacity .3s;
        -ms-transition: opacity .3s;
        -o-transition: opacity .3s;
      }
      #goTop.show{
        opacity: 1;
      }
      #goTop i{
        color: #1A1A1A;
      }
      .loader{
        position: absolute;
        left: 35%;
        top: 35%;
      }
      .infoModalVip .infoModalData{
        display: none;
      }
      .loginRegisterBut {
        display: block;
        text-align: center;
        width: 100%;
        padding: 19px 17px;
        color: #171717;
        background-color: #fff;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        cursor: pointer;
        border: 2px #DEDEDE solid; }

        .blogin-top article img{    
          max-width: 100%;
          width: 100%;
        }
        #load_more{
          display: flex;
          justify-content: center;
          align-items: center;
          /* margin-bottom: 150px !important;
          margin-top: 40px; */
        }
        #load_more button{
          visibility: hidden;
        }
        #load_more img{
          width: 40px;
          display: none;
        }        


        /* work by zato  */
        .recover-pass-button {
          padding: 19px 17px;
          width: 100%;
          margin-top: 1rem;
          border: none;
          background: #F2F2F2;
          font-family: 'BodyFontBold';
          cursor: pointer;
          font-size: 10px;
          color: #171717;
          border-radius: 5px;
          -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
          -ms-border-radius: 5px;
          -o-border-radius: 5px;
        }
        .mobile-search-button {
          position: absolute;
          right: 33px;
          top: 13px;
          border: none;
        }
        form .mobile-search-button:hover {
          background-color: initial !important;
        }
        .mobile-search-icon {
          position: absolute;
          font-size: 15px;
          cursor: pointer;
          color: rgba(0, 0, 0, 0.4);
        }
        .company-name, .companiesRow p {
          display: inline-block;
          width: 150px;
          white-space: nowrap;
          overflow: hidden !important;
          text-overflow: ellipsis;
        }
        .companiesRow p {
          width: 120px;
        }
        
        .newRegister .dashboard{
        padding-top: 30px;
      }
      .newRegister h2{
        color: #171717 !important;
        font-size: 14px;
      }
      .newRegister .pageIndicator{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 24px 0;  
      }
      .newRegister .pageIndicator span{
        background: #F2F2F2;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        border-radius: 100%;
        font-size: 12px;
        color: #171717;
      }
      .newRegister .pageIndicator span b{
        font-size: 16px;
      }
      .newRegister .pageHeader{
        color: #1539D0;
        text-align: center;
        margin-bottom: 45px;
      }
      .newRegister input::placeholder{
        color: #171717;
      }
      .newRegister #formSocialLink .formWrapper,
      .newRegister #formPosition .formWrapper{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
      }
      .newRegister #formSocialLink .formWrapper input,
      .newRegister #formPosition .formWrapper input{
        margin-bottom: 0;
        width: 80% !important;
        margin-right: 6px;
      }
      .newRegister #formSocialLink .formWrapper button,
      .newRegister #formPosition .formWrapper button{
        width: 54px !important;
        background: #EEB61E !important;
        color: #171717;
      }
      .newRegister .formInputHeader{
        color: #171717;
        font-size: 12px;
        font-weight: bold;
        margin-top: 24px;
        margin-bottom: 8px;
        pointer-events: none !important;
      }
      .newRegister .formInputHeader:hover{
        color: unset !important;  
      }
      .newRegister .formCheck{
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .newRegister .formCheck.formGender label:first-child{
        margin-right: 5px;
      }
      .newRegister .formCheck label .checked{
        border-color: #171717 !important;
      }
      .newRegister .formCheck label{
        flex: auto;
        font-size: 12px;
        /* border: 1.5px #E2E2E2 solid; */
        border: 2px #E2E2E2 solid;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        display: flex !important;
        align-items: center;
        margin-bottom: 0;
        padding: 19px 10px;
      }
      .newRegister .formCheck label input,
      .newRegister .formCheck label span{
        appearance: none;  
        -webkit-appearance: none;
        width: 3vw !important;
        height: 3vw !important;
        padding: 0 !important;
        margin: 0 8px 0 0 !important;
        border-width: 2px !important;
        border-radius: 100% !important;
        -webkit-border-radius: 100% !important;
        -moz-border-radius: 100% !important;
        -ms-border-radius: 100% !important;
        -o-border-radius: 100% !important;
      }
      .newRegister .formCheck label.checked input,
      .newRegister .formCheck label.checked span{
        background-color: #171717;
        border-color: #171717 !important;
      }
      .newRegister .formCheck label input[type=checkbox]{
        display: none;
      }
      .newRegister .formCheck.checkboxes label,
      .newRegister .formCheck.noworkExp label{
        display: flex;
        justify-content: center;
        align-items: center;
        flex: none !important;
        margin: 0 10px 10px 0;
      }
      .newRegister .formCheck .checked{
        border-color: #171717;
        color: #171717 !important;
      }
      .newRegister .formCheck.formAge{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 14px;
      }
      .newRegister .formCheck.formjob{
        width: 100% !important;
        display: block !important;
      }
      .newRegister .formCheck.formjob label{
        margin-bottom: 10px;
      }
      .newRegister .formCheck.formjob label:last-child{
        margin-bottom: 0;
      }
      .newRegister .formCheck.checkboxes,
      .newRegister .formCheck.noworkExp{
        flex-wrap: wrap;
        justify-content: unset !important;  
      }
      .newRegister .formCheck.formAge label{
        margin-bottom: 14px;
      }
      .newRegister .select-box__current p,
      .newRegister .select-box__current span{
        font-size: 12px;
      }
      .newRegister .uploadWrapper{
        width: 100%;
        height: auto;
        position: relative;
        border: 1.5px #E2E2E2 dashed !important;
        border-radius: 5px;
        padding: 18px;
        margin-bottom: 16px;  
      }
      .newRegister .uploadWrapper.profilePic {
        border-style: dashed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
      }
        .newRegister .uploadWrapper.profilePic.error {
        border-color: #BB2025; }
        .newRegister .uploadWrapper.profilePic.error .fileDesc {
          color: #BB2025; }
          .newRegister .uploadWrapper.profilePic .picHolder {
        position: relative;
        width: 37px;
        height: 37px;
        background-image: url("../images/icon/pic.png");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        margin-right: 19px; }
        .newRegister .uploadWrapper.profilePic .picHolder i {
          display: none;
          position: absolute;
          top: -5px;
          left: -8px;
          color: #BB2025;
          font-size: 18px;
          z-index: 3;
          background-color: #fff;
          border-radius: 100%;
          padding: 1px; }
          .newRegister .uploadWrapper.profilePic .fileTitle {
        position: unset;
        display: none;
        font-size: 15px; }
        .newRegister .uploadWrapper.profilePic .fileDesc {
        font-size: 11px;
        margin: 0 0 7px 0; }
        .newRegister .uploadWrapper.profilePic .fileFormats {
        margin: 0;
        color: rgba(23, 23, 23, .4);
        font-weight: bold;
        font-size: 9px; }
        .newRegister .uploadWrapper input{
          padding: 0;
          height: 100%;
          margin: 0;
          opacity: 0;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          z-index: 3;
        }
      .newRegister .nextNewRegister,
      .newRegister .prevNewRegister{
        font-family: 'MenuFont'; 
        background-color: #EEB629 !important;
        font-size: 13px;
        border-radius: 28px;
        -webkit-border-radius: 28px;
        -moz-border-radius: 28px;
        -ms-border-radius: 28px;
        -o-border-radius: 28px;
        color: #171717;
        margin-top: 24px;
      }
      .newRegister .prevNewRegister{
        margin-right: 16px;
      }
      .newRegister .nextNewRegister i{
        margin-left: 16px;
      }
      .newRegister .prevNewRegister i{
        margin-right: 16px;
      }
      .newRegister .salaryInput{
        display: flex;
        align-items: stretch;
      }
      .newRegister .salaryInput input{
        margin-bottom: 0;
        border-radius: 5px 0 0 5px;
      }
      .newRegister .salaryInput span{
        background: #F5F5F5;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20vw;
        border: 1.5px #E3E3E3 solid;
        border-left: 0;
        font-weight: bold;
        font-size: 12px;
        border-radius: 0 5px 5px 0;
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        -ms-border-radius: 0 5px 5px 0;
        -o-border-radius: 0 5px 5px 0;
      }
      /* .newRegister .startdatenew,
      .newRegister .enddatenew{
        position: relative;
      }
      .newRegister .startdatenew i,
      .newRegister .enddatenew i{
        position: absolute;
        right: 15px;
        top: 20px;
        font-size: 15px;
        color: #31712E;
        pointer-events: none;
      }
      .newRegister .enddatenew i{
        color: red;
      } */
      .newRegister .accordion{
        margin: 16px 0;
      }
      .newRegister .accordion.active .accordionBut{
        border-color: #171717;
      }
      .newRegister .accordion.active .accordionMore{
        display: none;
      }
      .newRegister .accordionBut{
        background: #fff;
        position: relative;
        color: #171717;
        font-size: 13px;
        font-weight: bold;
        text-align: left;
        /* border: 1.5px #E2E2E2 solid; */
        border: 2px #E2E2E2 solid;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: font-size .3s;
        -webkit-transition: border-color 0.3s;
        -o-transition: border-color 0.3s;
        transition: border-color 0.3s;
      }
      .newRegister .accordionBut div{
        width: 90%;
      }
      .newRegister .accordionBut .inputsVal{
        margin: 0;
      }
      .newRegister .accordionBut i{
        color: blue;
        /* position: absolute;
        right: 15px;
        top: 20px;   */
        pointer-events: none;
      }
      .newRegister .accordionBut:hover{
        border-color: #171717;
      }
      .newRegister .accordionContent{
        background: #F5F5F5;
        border: 1.5px #171717 solid;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        padding: 11px;
        width: 100%;
        display: none;
      }
      .newRegister .accordionContent label{
        color: #17171740;
        margin-top: 8px;
      }
      .newRegister .accordionContent .select-box{
        background: #fff;
        position: relative;
      }
      .newRegister .accordionContent button{
        background: #fff;
        border: 1.5px #31712E solid; 
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
      }
      .newRegister .accordionContent button i{
        color: #31712E;
      }
      .newRegister .accordionMore{
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .newRegister .accordionMore button{
        /* width: 50%; */
        background: #fff;
        border: 1.5px #E2E2E2 solid;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        font-size: 15px;
        padding-top: 14px;
        padding-bottom: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: border-color 0.3s;
        -o-transition: border-color 0.3s;
        transition: border-color 0.3s;
      }
      .newRegister .accordionMore .accordionDelete,
      .newRegister .accordionMore .accordionReset{
        margin-right: 8px;
        -webkit-transition: border-color 0.3s;
        -o-transition: border-color 0.3s;
        transition: border-color 0.3s;
      }
      .newRegister .accordionMore .accordionDelete:hover,
      .newRegister .accordionMore .accordionReset:hover,
      .newRegister .accordionMore button:hover{
        border-color: #171717 !important;
      }
      .newRegister .accordionMore .accordionDelete i{
        color: red;
      }
      .newRegister .accordionMore .accordionPlus i,
      .newRegister .accordionMore .accordionReset i{
        color: #31712E;
      }
      .newRegister .next_prev_buts{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
      }
      .newRegister .accordionBut.filled b{
        display: block;
        font-size: 9px;
      }
      .newRegister .accordionBut.filled span{
        font-size: 11px;
        color: #171717;
      }
      #formCertificates .formWrapper{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
      }
      #formCertificates .formWrapperDate{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        width: 100%;
      }
      #formCertificates .formWrapperDate button{
        width: 20%;
        background-color: #EEB61E;
        margin-left: 8px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        color: #171717;
      }
      #formCertificates .formWrapperDate .select-box{
        margin-bottom: 0 !important;
        position: relative;
      }
      #formCertificates .formWrapperDate .select-box:first-child{
        margin-right: 8px;
      }
      .newRegister .recommender{
        display: grid;
        grid-template-columns: 1fr;
      }
      .newRegister .recAgree label:first-child{
        margin-right: 5px;
      }
      .newRegister .uploadWrapper.resumeUpload{
        margin-top: 18px;
        border-style: solid !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
      }
      .newRegister .uploadWrapper.resumeUpload .fa-paperclip {
        position: absolute;
        right: 15px;
        top: 30%;
        font-size: 18px;
        -webkit-transform: rotateZ(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotateZ(-45deg); }
      
        .newRegister .uploadWrapper.added {
        padding: 8px 20px; }
        .newRegister .uploadWrapper.added .fileTitle {
        top: 5px; }
        .newRegister .uploadWrapper.added .fileName {
        margin: 0 0 10px 0;
        color: #1539D0;
        font-size: 12px;
        font-weight: bold;
       }
       .newRegister .uploadWrapper.resumeUpload .fileTitle{
        -webkit-transition: top .5s;
        -o-transition: top .5s;
        transition: top .5s;
        margin: 0;
        font-size: 10px;
       }
       .newRegister .uploadWrapper.resumeUpload .fileName{
        margin: 0;
        color: #1539D0;
        font-weight: bold;
        font-size: 12px;
       }
       .next_prev_buts_last{
        margin-top: 20px;
       }
       .next_prev_buts_last .prevNewRegister{
        border-radius: 5px; 
        margin-top: 0; 
        width: 90%;
       }
       .next_prev_buts_last button{
         font-size: 12px !important;
       }
       .newRegister .terms_agree{
         font-size: 11px;
         line-height: 17px;
         color: #171717;
         padding: 15px 17px;
         background-color: #F4F4F4;
         border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        -ms-border-radius: 5px;
        margin-top: 12px;
       }

       
      @media only screen and (min-width: 415px){
        .newRegister .formCheck label input{
          width: 1.5vw !important;
          height: 1.5vw !important;
        }
      }
      @media only screen and (min-width: 1024px){        
        .newRegister .accordionMore .accordionDelete,
        .newRegister .accordionMore .accordionReset{
          margin-left: 8px;
          margin-right: 0;
        }
        .newRegister .uploadWrapper.resumeUpload .fileTitle{
          font-size: 13px;
        }
        .newRegister .uploadWrapper.resumeUpload .fileName{
          font-size: 15px;
        }
        .next_prev_buts_last button{
          font-size: 15px !important;
        }
        .newRegister main{
          width: 65vw !important;
        }
        .newRegister .third-page{
          width: 40vw;
          margin: 0 auto;
        }
        .newRegister .terms_agree{
          font-size: 15px;
          text-align: center;    
          line-height: 24px;
        }
        .newRegister .third-page .formCheck.checkbox label{
          flex: auto !important;
          text-align: center;
        }
        .newRegister #formCertificates .formWrapperDate button{
          font-size: 15px !important;
        }        
        .newRegister .first-page.active,
        .newRegister .second-page.active{
          display: flex !important;
          align-items: flex-start !important;
          justify-content: space-between !important;
        }        
        .newRegister .leftCol label.lastChild{
          margin-top: 10px !important;
        }
        .newRegister .leftCol .select-box,
        .newRegister .rightCol .select-box{
          margin-bottom: 0 !important;
        }
        .newRegister .second-page .startdatenew.margin{
          margin-top: 16px;
        }
        .newRegister .leftCol .names,
        .newRegister .leftCol .email-phone{
          display: flex;
          align-items: center;    
          justify-content: space-between;
        }
        .newRegister .leftCol .names input:first-child,
        .newRegister .leftCol .email-phone input:first-child{
          margin-right: 10px;    
        }
        .newRegister .leftCol .email-phone input:first-child{
          margin-bottom: 0;
        }
        .newRegister input[name=phone]{
          margin-bottom: 0;
        }
        /* .newRegister .lang-accordion-container .formCheck label input{
          width: 10px !important;
          height: 10px !important;
        } */
        .newRegister .formCheck label input{
          width: 10px !important;
          height: 10px !important;
        }
        .newRegister .formCheck label{
          padding: 16px 10px;
        }
        .newRegister .select-box{
          position: relative;
        }
        .newRegister .uploadWrapper.profilePic .fileTitle {
          display: block;
          margin-top: 0;
          margin-bottom: 4px;
        }
        .newRegister .uploadWrapper.profilePic .fileFormats {
          position: absolute;
          right: 8px;
          bottom: 8px;
        }
        .leftCol,
        .rightCol{
          width: 50%;
        }
        .leftCol{
          margin-right: 80px;
        }
        .newRegister form .nextNewRegister,
        .newRegister form .prevNewRegister{
          font-size: 15px !important;
        }
        .newRegister form{
          display: block !important;
        }        
        .newRegister .second-page .rightCol div:first-child{
          margin-top: 0;
        }
        .newRegister .pageHeader{
          margin-bottom: 45px;    
        }
        .newRegister .formCheck.checkbox label{
          display: inline-block !important;
          width: unset !important;
        }
        .newRegister .formCheck label:hover,
        .newRegister button:hover{
          cursor: pointer;
        }
        .newRegister .salaryInput span{
          width: 10vw !important;
        }
        .newRegister .accordion{
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          position: relative;
          /* align-items: stretch; */
        }
        .newRegister .accordionBut{
          margin-bottom: 0;
          order: 1;
          flex: auto;
          width: unset !important;
        }
        .newRegister .accordionBut.filled{
          padding: 13px 17px !important;
        }
        .newRegister .accordionMore{
          align-items: stretch;
          margin-left: 8px;
          width: 120px;
          order: 2;
          position: absolute;
          right: -125px;
        }
        .newRegister .accordionMore button{
          width: 60px !important;
          font-size: 13px !important;          
          padding: 18px 20px;
        }
        .newRegister .accordionContent{
          order: 3;
          margin-top: 8px;
        }
        .newRegister .accordionMore.accordionMoreDel{
          width: 135px;
          height: 53px;
        }
        .newRegister .accordionMore.accordionMoreDel{
          right: -133px;
        }
      }
      @media only screen and (min-width: 1445px){
        .newRegister .accordionMore button{
          height: 60px;
        }
        .newRegister .formCheck label input {
          width: .5vw !important;
          height: .5vw !important;
        }
      }
      
      .newRegister .first-page,
      .newRegister .second-page,
      .newRegister .third-page{
        display: none;
      }
      .newRegister .first-page.active,
      .newRegister .second-page.active,
      .newRegister .third-page.active{
        display: block;
      }     
        
.select-box__list li i{
  position: absolute;
  right: 30px;
  color: #31712E;
  display: none;
}
.select-box__list li.selected i{
  display: inline-block;
}
.langaccordion .accordionContent{
  padding: 0;
}
.langaccordion .accordionContent-top{
  padding: 20px;
}
.langaccordion label input{
  display: none;
}
.langaccordion label:first-child{
  margin-top: 0 !important;
}
.langaccordion label{
  position: relative;
  padding: 20px;
  display: block;
  border: 2px solid #E2E2E2;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 11px;
  color: #171717 !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  background: #fff;
}
.langaccordion label i{
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;  
  font-size: 14px;
  color: #E2E2E2;
  height: 100%;
  width: 60px;
  border-left: 2px #E2E2E2 solid;
  background: #fff;
}
.langaccordion label.checked{
  border-color: #31712E;
}
.langaccordion label.checked i{
  border-color: #31712E;
  background: #31712E;
}
.langaccordion .accordionContent-bottom{
  padding: 20px;
  background: rgba(23, 23, 23, .1);
  display: flex;
  align-items: flex-start;
}
.langaccordion .accordionContent-bottom button{
  width: 64px;
  border: 2px solid rgba(23, 23, 23, 1);
  -webkit-border-radius: 0px 5px 5px 0px !important;
  -moz-border-radius: 0px 5px 5px 0px !important;
  -ms-border-radius: 0px 5px 5px 0px !important;
  -o-border-radius: 0px 5px 5px 0px !important; 
  border-left: none;
  background-color: #EEB629;
  border-radius: 0px 5px 5px 0px !important;
}
.langaccordion .accordionContent-bottom button i{
  color: #171717;
  font-size: 14px;
}
.langaccordion .accordionContent-bottom input{
  margin-bottom: 0;
  padding: 20px;
  border: 2px solid rgba(23, 23, 23, 1);
  border-radius: 5px 0px 0px 5px !important;
  -webkit-border-radius: 5px 0px 0px 5px !important;
  -moz-border-radius: 5px 0px 0px 5px !important;
  -ms-border-radius: 5px 0px 0px 5px !important;
  -o-border-radius: 5px 0px 0px 5px !important;
  font-size: 15px;  
}
.select-search-input{
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-radius: 0 !important;
}
.work-header{
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.work-header .checkboxes,
.work-header .noworkExp{
  width: 48% !important;
  min-height: 61px;
  height: 61px;
}
.work-header .formCheck{
  display: block;
}
.work-header .checkboxes label,
.work-header .noworkExp label{
  margin: 0 !important;
  padding: 10px !important;
  text-align: center;
  height: 100%;
}
.work-header .checkboxes label.disabled,
.work-header .noworkExp label.disabled{
  color: #E2E2E2 !important;
}
.work-header .checkboxes label.disabled:hover,
.work-header .noworkExp label.disabled:hover{
  border-color: #E2E2E2 !important;  
}
.work-header button{
  border: 2px solid #E2E2E2 !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: #fff !important;
  width: 48% !important;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.work-header button i{
  color: #171717;
}
.newRegister .first-page .invalid,
.newRegister .second-page .invalid,
.newRegister .third-page .invalid{
  border-color: red;
}
.newRegister .maritial.formCheck{
  display: block;
}
.newRegister .maritial.formCheck label{
  margin-bottom: 8px;
  margin-right: 0 !important;
}
.newRegister .maritial.formCheck label:last-child{
  margin-bottom: 0;
}
.langRadio label{
  justify-content: center;
  position: relative;
  margin-right: 8px;
}
.langRadio label.checked{
  background-color: #fff;
}
.langRadio label:last-child{
  margin-right: 0;
}
.langRadio input{
  position: absolute;
  left: 10px;
}
@media (min-width: 1024px){
  .langaccordion label:hover{
    border-color: #31712E !important;
  }  
  .work-header button:hover{
    border-color: #171717 !important;
  }
  .formInputHeader.nomargin{
    margin-top: 0 !important;
  }
  .newRegister .maritial.formCheck{
    display: flex;
  }
  .newRegister .maritial.formCheck label{
    margin-bottom: 0;
  }
  .newRegister .maritial.formCheck label:nth-child(2){
    margin: 0 5px !important;
  }
  .video_container{
    width: 90% !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .statement_video{
    width: inherit !important;
    height: inherit !important;
  }
}
.newRegister .checkboxes.formjob label{
  margin-right: 0;
}
input.filled,
.select-box__current.filled,
.accordionBut.filled,
.resumeUpload.added{
  border-color: #171717 !important;
}
.languageLabel label{
  padding-bottom: 21px !important;
  background-repeat: no-repeat;
  background-position: center bottom 10px;
  background-size: 20px;
}
.newcalendar{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newcalendar .select-box{
  position: relative;
}
.newcalendar .select-box__current{
  padding-left: 8px;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.video_container{
  width: 100%;
  height: 190px;  
  margin: 0 auto;
}
.statement_video{
  width: inherit;
  height: inherit;  
}
@media (min-width: 768px){
  .video_container{    
    height: 340px;  
  }
}
@media (min-width: 1366px){
  .video_container{    
    /* width: 1088px !important; */
    height: 450px !important;
    margin-top: 80px;
  }
}

.empsearch{
  margin-top: 20px;
  margin-bottom: 50px;
}
.empsearch .empads{
  display: none;
}
.pageHeads{
  color: #171717;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  margin-bottom: 30px;
  margin-top: 0;
}
.empsearch-panel{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px #F7F7F7 solid;
  padding: 16px 0;
}
.empsearch-panel:last-child{
  border-bottom: none;
}
.emppanel-left{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}
.emppanel-left p{
  margin-left: auto;
  font-size: 16px;
  color: #171717;
  margin-top: 0;
  margin-bottom: 0;
}
.empimage.hasImage{
    background-size: cover;
}
.empimage{
  width: 76px;
  height: 76px;
  background-color: #F7F7F7;
  border-radius: 10px;
  background-image: url('images/emp.svg');
  background-repeat: no-repeat;
  background-position: center center;
}
.empsearch .filterSearch{
  display: none;
}
.searchBut{
  text-decoration: none;
  color: #17171770;
  font-size: 12px;
  background-color: #EEB61E;
  border-radius: 10px;
  box-shadow: 0 10px 10px #EEB61E40;
  padding: 14px 95px;
  width: 100%;
  text-align: center;
  display: block;
}
.filterContainer .select-box{
  position: relative;
}
.filterContainer .check-box{
  width: 16px;
  height: 16px;
  border: 1px #E2E2E2 solid;
  border-radius: 4px;
  display: inline-block;
  position: static;
  margin-right: 10px;
}
.filterContainer .select-box__current{
  border: 1.5px #E2E2E2 solid;
  padding: 16px;
  height: 48px;
  display: flex;
  align-items: center;
}
.filterContainer .select-box__current p{
  font-size: 12px;
  padding: 0 3px;
}
.filterContainer .select-box__current i{
  color: #707070 !important;
}
.filterContainer .select-box__current span{
  font-size: 12px;
  padding: 0 3px;
  background-color: #fff; 
  transition: all .3s ease-in-out;
}
.filterContainer .select-box__current span.move{
  position: absolute;
  top: -9px;
}
.filterContainer .select-box__list{
  padding-top: 2px;
  padding-bottom: 20px;
}
.filterContainer .select-box__current.expand{
  border-color: #E2E2E2 !important;
  border-bottom: none;
}
.filterContainer .select-box__current.expand + .select-box__list{
  border: 1.5px #E2E2E2 solid !important;
  border-top: none !important;
}
.filterContainer .select-box__list li{
  display: flex;
  align-items: center;
  color: #17171740;
  font-size: 12px;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 8px;
}
.filterContainer .select-box__list li.selected > i{
  background-color: #EEB61E;
}
.filterContainer .select-box__list .selectAllBut{
  margin: 8px 15px;
  display: block;
  font-size: 12px;
  color: #171717;
  text-decoration: none;
}
.filterContainer .select-box__list li > ul{
  left: 260px;
}
.filterContainer .select-box__list .select-box__list_sub.show{
  /* left: 0; */
}
.filterContainer .select-box__list .select-box__list_sub .subCloser{
  text-decoration: none;
  color: #17171760;
  font-size: 12px;
  font-weight: bold;  
  display: block;
  margin: 10px 16px;
}
.filterContainer .select-box__list .select-box__list_sub .subCloser i{
  color: #EEB629;
  margin-right: 10px;
  position: static !important;
  pointer-events: none;
}
.filterContainer .select-box__list .select-box__list_sub{
  /* position: absolute;
  left: 260px;
  top: 0;
  width: 100%;
  display: none;
  height: 100%;
  background-color: #fff;
  z-index: 3;
  transition: left .3s ease-in-out; */
}
.filterContainer .select-box__list li i{
  pointer-events: none;
}
.filterContainer .reset{
  display: none;
}
.filterContainer .select-search-input{
  width: 219px;
  margin: 0 0 10px 16px !important;
  border: 1px #E2E2E2 solid !important;
  border-radius: 5px !important;
}
.filterContainer button[type=submit]{
  width: 100%;
  margin: 0 auto;
  height: 48px;
  font-size: 12px;
  font-weight: bold;
  color: #17171770;
  border: 1px #EEB61E solid;
  background-color: #EEB61E;
  border-radius: 10px;
}
@media (min-width: 1024px){
  .filterContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 16px;
    margin-top: 80px;
  }
  .filterContainer .reset{
    width: 100%;
    height: 48px;
    font-size: 10px;
    font-weight: bold;
    color: #171717;
    border: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .filterContainer button[type=submit]:hover{
    background-color: #F4CC61 !important;
  }
  .filterContainer button[type=submit]{
    width: 260px;    
    grid-column: 1 / -1;
  }
  .empsearch{
      display: grid;
      grid-template-columns: 160px 1fr 160px;
      align-items: flex-start;
      gap: 0 30px;
      margin: 54px auto !important;
  }  
  .pageHeads{
      font-size: 20px !important;
  }
  .empsearch .filterSearch{
      display: block;
      width: 260px;
      margin: 70px auto 55px auto;
  }
  .empads{
      display: block !important;
  }
  .empads div{
      width: 100%;
      height: 600px;
      background-color: #F7F7F7;
      border: 1px #E5E5E5 solid;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #171717;
      font-weight: bold;
      font-size: 16px;
  }
  .emppanel-left{
      width: unset;
  }
  .emppanel-left p{
      margin-left: 35px;
  }
  .searchBut{
      width: unset;
  }
}




.lastminute {
  width: 17px;
  height: 17px;
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .lastminute:hover div p {
    display: block; }
  .lastminute div {
      opacity:0.7;
    border-radius: 100%;
    border: 2px #BB2025 solid;
    position: relative;
    width: inherit;
    height: inherit; }
    .lastminute div p {
      display: none;
      position: absolute;
      left: -37%;
      -webkit-transform: translateX(-37%);
      -ms-transform: translateX(-37%);
      transform: translateX(-37%);
      top: -40px;
      margin: 0;
      font-size: 10px;
      background-color: #000;
      color: #fff;
      padding: 6px 8px;
      border-radius: 6px;
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
      text-align: center; }
      .lastminute div p::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #000;
        bottom: -7px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
    .lastminute div::before, .lastminute div::after {
      content: "";
      position: absolute;
      width: 1px;
      height: 5px;
      background-color: #BB2025;
      top: 2px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
    .lastminute div::after {
      top: 2px;
      height: 4px;
      -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
      transform-origin: bottom left;
      -webkit-animation: mymove 5s infinite ease-out;
      animation: mymove 5s infinite ease-out; }

@-webkit-keyframes mymove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  20% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  40% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }
  60% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 2px; }
  80% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes mymove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  20% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  40% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }
  60% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 2px; }
  80% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.downloadcv{
  padding: 18px 22px;
  background-color: #EEB629;
  border-radius: 5px;
  color: #171717;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 100%;  
  justify-content: center;
}
.downloadcv span{
  font-size: 13px;
  padding: 5px 8px;
  background: #BB2025;
  border-radius: 2px;
  color: #fff;
  font-family: "Helvetica" !important;
  margin: 0 13px;
}
.downloadcv.mobile{
  margin-bottom: 20px;
}
.downloadcv.desktop{
  display: none;
  /* width: 260px; */
  width: 331px;
  position: absolute;
  right: 0;
}
.downloadcv i{
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px #171717 solid;
  border-radius: 100%;
  font-size: 13px;
  /* margin-left: auto; */
}
@media (min-width: 1024px) {
  .downloadcv.mobile{
    display: none;
  }
  .downloadcv.desktop{
    display: flex;
  }
}

.resultpage.container {
      padding: 60px 0 72px 0; }
    
    @media (min-width: 1024px) {
      .resultpage main{
        width: 911px;
        margin: 0 auto;
      }
      .resultpage-first {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    
    .resultpage-first-left {
      margin-bottom: 30px; }
      @media (min-width: 1024px) {
        .resultpage-first-left {
          margin: 0 108px 0 0; } }
      .resultpage-first-left_image {
        width: 168px;
        height: 168px;
        margin: 0 auto;
        background-color: #EEB61E;
        border-radius: 10px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center; }
        .resultpage-first-left_image.noImage {
          background-size: 32px;
          background-image: url("../images/emp.svg"); }
    
    @media (min-width: 1024px) {
      .resultpage-first-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    
    .resultpage-first-right_left {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      row-gap: 17px;
      margin-bottom: 17px; }
      @media (min-width: 1024px) {
        .resultpage-first-right_left {
          margin-bottom: 0;
          margin-right: 72px;
          display: block; }
          .resultpage-first-right_left div:last-child {
            margin-bottom: 0; }
          .resultpage-first-right_left div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin-bottom: 10px; }
            .resultpage-first-right_left div .resultpageTitle {
              width: 50px; } }
    
    .resultpage-first-right_right {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      row-gap: 17px; }
      @media (min-width: 1024px) {
        .resultpage-first-right_right {
          display: block; }
          .resultpage-first-right_right .resultpageTitle {
            width: 103px !important; }
          .resultpage-first-right_right div:last-child {
            margin-bottom: 0; }
          .resultpage-first-right_right div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin-bottom: 10px; } }
    
    @media (min-width: 1024px) {
      .resultpage-third-left, .resultpage-third-right {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 55px 1fr;
        grid-template-columns: 55px 1fr;
        -webkit-column-gap: 14px;
        column-gap: 14px; }
        .resultpage-third-left .resultpage-desc, .resultpage-third-right .resultpage-desc {
          border-left: 1px #BB2025 solid;
          padding-left: 14px; }
        .resultpage-third-left .resultpageTitle, .resultpage-third-right .resultpageTitle {
          width: 153px !important;
          min-width: 153px !important;
          margin-right: 26px !important; } }
    
    .resultpage-third-right {
      margin-top: 20px; }
      @media (min-width: 1024px) {
        .resultpage-third-right {
          margin-left: 20px;
          margin-top: 0; } }
    
    @media (min-width: 1024px) {
      .resultpage-third .resultpage-wrapper {
        display: grid;
        grid-template-columns: 553px 1fr;
        gap: 30px;
      } 
    }
    
    @media (min-width: 1024px) {
      .resultpage-fourth .resultpageTitle {
        width: 146px !important;
        margin-right: 33px !important; } }
    
    .resultpage-fifth-left {
      margin-bottom: 30px; }
    
    @media (min-width: 1024px) {
      .resultpage-fifth {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .resultpage-fifth .resultpageTitle {
          width: 126px !important;
          margin-right: 53px !important; }
        .resultpage-fifth-left {
          margin-right: 295px;
          margin-bottom: 0; } }
    
    .resultpage .resultpageTitle {
      margin: 0 0 6px 0;
      font-size: 13px;
      color: #171717;
      /* font-family: 'Hellight';  */
    }
      @media (min-width: 1024px) {
        .resultpage .resultpageTitle {
          width: 146px;
          min-width: 146px;
          margin-right: 33px;
          margin-bottom: 0; } }
    
    .resultpage .resultpageDesc {
      margin: 0;
      font-size: 16px;
      color: #171717;
      display: flex;
      align-items: center;      
      /* font-family: 'Helbold';  */
    }
    .resultpage .resultpageDesc span.class{
      background-color: #EEB61E;
    }
    .resultpage .resultpageDesc span{
      width: 10px;
      height: 10px;
      border-radius: 100%;
      background-color: #EEB61E20;
      margin-right: 3px;
    }
    .resultpage .resultpageDesc span:last-child{
      margin-right: 0;
    }
    
    .resultpage .resultpage-contents {
      margin-bottom: 14px; }
      @media (min-width: 1024px) {
        .resultpage .resultpage-contents {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; } }
    
    .resultpage .resultpage-contents:last-child {
      /* margin-bottom: 0;  */
    }
    
    .resultpage .resultpageHeading {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 20px; }
      @media (min-width: 1024px) {
        .resultpage .resultpageHeading {
          margin-bottom: 30px; } }
      .resultpage .resultpageHeading span {
        width: 20px;
        height: 20px;
        background-color: #EEB61E;
        border-radius: 4px; }
      .resultpage .resultpageHeading h3 {
        font-weight: normal !important;
        font-size: 13px;
        margin: 0 0 0 10px;
        font-family: 'BodyFont'; 
      }
        @media (min-width: 1024px) {
          .resultpage .resultpageHeading h3 {
            font-size: 16px; } }
    
    .resultpage .margin50 {
      margin-top: 30px; }
      @media (min-width: 1024px) {
        .resultpage .margin50 {
          margin-top: 50px; } }
    
    @media (min-width: 1024px) {
      .resultpage .indent {
        margin-left: 85px; } }
    
    .resultpage .resultpage-numbers {
      position: relative;
      overflow: hidden;
      margin-bottom: 20px; }
      @media (min-width: 1024px) {
        .resultpage .resultpage-numbers {
          margin-bottom: 0;
          -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
          -ms-grid-column-align: center;
          justify-self: center; } }
      .resultpage .resultpage-numbers::after {
        content: "";
        position: absolute;
        height: 1px;
        width: 100%;
        left: 44px;
        top: 17px;
        background-color: #BB2025; }
        @media (min-width: 1024px) {
          .resultpage .resultpage-numbers::after {
            display: none; } }
      .resultpage .resultpage-numbers span {
        width: 34px;
        height: 34px;
        border-radius: 6px;
        color: #BB2025;
        border: 1px #BB2025 solid;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 13px; }
        @media (min-width: 1024px) {
          .resultpage .resultpage-numbers span {
            width: 40px;
            height: 40px;
            font-size: 14px; } }
    
    .resultpage .notice {
      font-size: 11px;
      margin-top: 18px;
      margin-bottom: 0; }
      @media (min-width: 1024px) {
        .resultpage .notice {
          font-size: 12px; } }
    

.select-box__list_sub_cont{
  position: sticky;
  bottom:0;
  left: 260px;
  width: 100%;
  height: 150px;
  background-color: #fff;
  
  display: none;
  z-index: 3;
  transition: left .3s ease-in-out;
}
.select-box__list_sub_cont.show{
  left: 0;
}
.select-box.noValue .select-box__current p{
  display: none;
}

.checkboxCurrent input{
  appearance: none;
  -webkit-appearance: none;  
  opacity: 0;
  position: absolute;
  top: 0;
  pointer-events: none;
  left: 0;
}
.checkboxCurrent.checked{
  border-color: #000 !important;
}
.checkboxCurrent{
  background-color: #fff;
  position: relative;
  flex: auto;
  font-size: 12px;
  /* border: 1.5px #E2E2E2 solid; */
  border: 2px #E2E2E2 solid;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex !important;
  align-items: center;
  color: #000 !important;
  margin-bottom: 8px !important;
  padding: 16px 10px;
  cursor: pointer;
}


@media (min-width: 1024px) {  
  .main .content main .companiesRow {
    margin: 40px 0 !important; 
  }
  .mainStatementCompanyCol{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .mainStatementCompanyCol span{
    font-size: 10px;
    color: #ffd259;/*171717*/
    font-weight: bold;
    line-height: 16px;
    padding: 5px 9px;
    position: absolute;
    right: 0;
    background-color: #04446B; /* F4B900 */
    border-radius: 17px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -o-border-radius: 17px;
    -ms-border-radius: 17px;          
  }
  input:hover,
  label:hover,
  textarea:hover,
  .uploadWrapper:hover {
    border-color: #171717 !important;
    color: #171717 !important; }
  .image-overlay-content{
    width: 60% !important;
  }
  .select-box__current:hover{
    border-color:#171717 !important;
    color:#171717 !important;
  }
  .bookmarkTrash{
    width: 20px;
    margin-left: 10px;
    text-align: right;
    order: unset !important;
    cursor: pointer;
  }
  .tableHeader.bookmark{
    padding-right: 30px;
  }  
  .statementPage .content .statementTitle a{
    display: block !important;
  }
  .dashboard .dashboardStatement .statement-empty{
    padding: 60px !important;    
    border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
    -o-border-radius: 16px !important;
    -ms-border-radius: 16px !important;
    margin-bottom: 88px !important;
  }    
  .dashboard .dashboardStatement .statement-empty p{
    text-align: center;
  }
  .dashboard .dashboardStatement .statement-empty-but a{    
    padding: 24px 32px !important;    
  }
  .dashboard .dashboardStatement .statement-empty-but span{
    margin-left: 24px !important;
  }
  .mainStatementLogo{
    width: 35px !important;
    height: 35px !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mainStatementLogo img{
    max-width: 100%;
    width: 100%;
  }
  .simpleSearch{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .simple-check{
    order: 1;
    width: 100%;
  }
  .simple-first{
    order: 3;
    width: 49%;
    position: relative;
  }
  .simple-third{
    order: 2;
    width: 49%;    
    position: relative;
  }
  .main .left aside .expandSearch .simpleSearch{
    display: unset !important;
  }
  .simple-first .select-box__list,
  .simple-third .select-box__list{
    width: 100% !important;
  }
  .simple-second{
    order: 4;
    width: 100% !important;
    margin-top: -10px;
  }
  .adSearch.expandSearch .simple-second{
    margin-top: 0 !important;
  }  
  .simple-but{
    width: 100%;
    order: 5;
  }
  
  .main .left aside .expandSearch .simpleSearch .simple-first,
  .main .left aside .expandSearch .simpleSearch .simple-third{
    width: 100% !important;
    position: unset !important;
  }
  .statementPage .content .statementLogos .statementLogos-provider{
    width: unset !important;
  }
  .companies-in.container{
    width: 65vw !important;
    margin: 57px auto 78px auto !important;
  }
  .companies-in main{
    align-items: unset !important;
    justify-content: space-between;
  }
  .companies-in main a:first-child{    
    order: 2;
    margin-right: 32px;
    align-self: flex-start !important;
    max-width: 150px;
    margin-bottom: 16px;
    width: unset !important;
  }
  .companies-in main h2{    
    order: 1;
    margin-left: 0 !important;
    width: 100%;
    margin-bottom: 49px;
    margin-right: 0 !important;
    font-size: 16px !important;
  }
  .companies-in main div{
    order: 3;
    /* width: calc(100% - 95px); */
  }
  .companies-in main div p{
    margin-top: 0;
  }
  .companies-page main{
    grid-template-columns: 20% 20% 20% 20% 20% !important;
    column-gap: 10px !important;
    row-gap: 10px !important;
    margin-top: 40px !important;
    margin-bottom: 47px !important;
  }  
  .companies-page.container {
    width: 65vw;
    margin: 57px auto 62px auto;
  }
  .topNavMobile,
  .mobileNav,
  .mobileElm,
  .mobileViewSubmit,
  .mobileViewFilter {
    display: none !important; }
  html, body {
    overflow: visible !important; }
  html, body, h1, h2, h3, h4, h5, h6, thead {
    font-size: 10px !important; }
    .search-searchResult{
      padding: 30px 38px !important;    
      margin-bottom: 54px !important;
    }
    .search-searchResult p{
      font-size: 10px !important;
    }
    .search-searchResult i{
      font-size: 10px !important;
    }
  input, select, button {
    font-size: 14px; 
  }
  nav#menu.logged .topNav .loggedIn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  nav#menu.logged .topNav .topNavButtons {
    display: none !important; }
  nav#menu .logo {
    width: 120px !important; }
  nav#menu .container-fluid {
    padding-right: 15px !important;
    padding-left: 15px !important; }
    nav#menu .container-fluid .container {
      padding-right: 15px !important;
      padding-left: 15px !important; }
  nav#menu .topNav {
    height: 78px !important; }
    nav#menu .topNav .mobileButtonSearch {
      display: none; }
    nav#menu .topNav .loggedIn {
      display: none;
      position: relative;
      font-family: "BodyFont"; }
      nav#menu .topNav .loggedIn > a {
        background-color: #fff;
        border: 1.5px #E5E5E5 solid;
        border-radius: 27px !important;
        padding: 5px;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 10px; }
        nav#menu .topNav .loggedIn > a.expand {
          border-bottom-right-radius: 0 !important;
          border-bottom-left-radius: 0 !important;
          border-top-right-radius: 11px !important;
          border-top-left-radius: 11px !important;
          border-bottom: none; }
          nav#menu .topNav .loggedIn > a.expand i {
            -webkit-transform: rotateZ(180deg);
            -ms-transform: rotate(180deg);
            transform: rotateZ(180deg); }
        nav#menu .topNav .loggedIn > a img {
          border-radius: 100%; }
        nav#menu .topNav .loggedIn > a p {
          margin: 0 8px;
          color: #171717; }
          nav#menu .topNav .loggedIn > a p span:first-child {
            font-weight: bold; }
          nav#menu .topNav .loggedIn > a p span {
            display: block; }
          nav#menu .topNav .loggedIn > a p .loggedInName {
            color: rgba(23, 23, 23, 0.6); }
        nav#menu .topNav .loggedIn > a i {
          padding: 0 12px;
          color: #1539D0;
          -webkit-transition: -webkit-transform .3s;
          transition: -webkit-transform .3s;
          -o-transition: transform .3s;
          transition: transform .3s;
          transition: transform .3s, -webkit-transform .3s; }
      nav#menu .topNav .loggedIn .subLoggedIn {
        z-index: -1;
        position: absolute;
        top: 42px;
        left: 0;
        border-bottom-right-radius: 11px;
        border-bottom-left-radius: 11px;
        border: 1.5px #DBDBDB solid;
        border-top-style: dotted;
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
        nav#menu .topNav .loggedIn .subLoggedIn ul {
          width: 100%; }
          nav#menu .topNav .loggedIn .subLoggedIn ul li a {
            font-size: 10px !important; }
            .subLoggedIn a.has-resume:hover{
              color: rgba(17, 17, 17, 0.6) !important;
            }
          nav#menu .topNav .loggedIn .subLoggedIn ul li:last-child a {
            padding: 11px 0 !important; }
  nav#menu .links {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-left: 100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    nav#menu .links li {
      margin-right: 10px !important; }
    nav#menu .links a {
      font-size: 10px !important; }
  nav#menu .socialIcons {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
    /* nav#menu .socialIcons a {
      padding: 17px !important; } */
    nav#menu .socialIcons i {
      font-size: 13px !important;
      left: 12px !important;
      top: 11px !important; }
    nav#menu .socialIcons .fb i {
      left: 13px !important; }
    nav#menu .socialIcons .tube i {
      left: 10px !important; }
  nav#menu .topNavButtons {
    font-size: 14px !important;
    display: block !important; }
  nav#menu #langSelect {
    display: block !important;
    margin-left: 15px;
    position: relative; }
    nav#menu #langSelect.expand .availableLang {
      display: block; }
    nav#menu #langSelect.expand .fa-chevron-down {
      -webkit-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
      transform: rotateZ(180deg); }
    nav#menu #langSelect a {
      font-size: 10px;
      font-family: "MenuFont" !important;
      padding: 7px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-weight: bold;      
      background-color: #fff !important;
      color: #171717 !important; }
      nav#menu #langSelect.expand a:first-child{
        border-color: #E5E5E5;
      }
      nav#menu #langSelect a:first-child{
        border-radius: 23px;
        border: 1.5px #fff solid;
      }
      nav#menu #langSelect a img {
        width: 100%; }
      nav#menu #langSelect a i {
        color: #707070;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        -o-transition: transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s; }
    nav#menu #langSelect a > * {
      margin: 0 5px; }
    nav#menu #langSelect .availableLang {
      display: none;
      -webkit-transition: display .3s;
      -o-transition: display .3s;
      transition: display .3s;
      position: absolute;
      top: 0;
      left: 0;
      padding: 40px 0 5px 0;
      z-index: -1;
      background-color: #fff;
      border: 1.5px #E5E5E5 solid;
      border-top: none;
      border-radius: 15px; }
      nav#menu #langSelect .availableLang .active {
        display: none; }
      nav#menu #langSelect.expand .selectedLang:first-child{
        border-bottom: none !important;        
        border-radius: 15px 15px 0 0 !important;
      }
      nav#menu #langSelect .availableLang a {
        opacity: .5; 
        border: none;
      }
        nav#menu #langSelect .availableLang a span {
          font-family: "MenuFont"; }
        nav#menu #langSelect .availableLang a:hover {
          opacity: 1; }
        nav#menu #langSelect .availableLang a i {
          visibility: hidden; }
  nav#menu .bottomNav {
    height: 62px; }
    nav#menu .bottomNav .mobileSearch {
      display: none; }
    nav#menu .bottomNav .bottomNavContainer {
      position: absolute !important;
      top: 20px;
      left: 0 !important;
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important; }
      nav#menu .bottomNav .bottomNavContainer .bottomNavContainer-links > li > a {
        width: auto !important;
        height: 56px !important;
        font-size: 14px;

        /* margin-right: 9px !important; */
        padding: 0 5px !important;
        display: flex;
        align-items: center;  
        justify-content: center;
      }
        nav#menu .bottomNav .bottomNavContainer a img {
          margin-right: 10px;
        }
      nav#menu .bottomNav .bottomNavContainer a:nth-child(3),
      nav#menu .bottomNav .bottomNavContainer a:nth-child(4) {
        margin-top: 0 !important;
        padding-top: 0 !important; }
    nav#menu .bottomNav form {
      display: block !important;
      -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
      -ms-flex-item-align: start;
      align-self: flex-start; }
      nav#menu .bottomNav form .inputContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-color: #fff;
        border-radius: 12px;
        -webkit-box-shadow: 0 3px 0 #CCCCCC;
        box-shadow: 0 3px 0 #CCCCCC;
        overflow: hidden !important; }
        nav#menu .bottomNav form .inputContainer input {
          font-size: 14px;
          height: 56px;
          border: none;
          border-radius: 5px;
          width: 100%;
          padding: 21px; }
        nav#menu .bottomNav form .inputContainer button {
          padding: 0 16px;
          background-color: transparent;
          border: none;
          -webkit-transition: background-color .3s;
          -o-transition: background-color .3s;
          transition: background-color .3s; }
          nav#menu .bottomNav form .inputContainer button:hover {
            background-color: #f5f5f5 !important; }
  .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 0 0 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 90vw !important; }
    .main .content {
      width: 75% !important;
      margin-top: 0 !important; }
      .main .content.expanding{
        width: 70% !important;
      }
      .main .content header {
        display: block !important; }
      .main .content main {
        margin-bottom: 150px !important; }
        .main .content main .tableHeader,
        .companies-in .tableHeader {
          padding-left: 54px; }
          .main .content main .tableHeader h3:first-child,
          .companies-in .tableHeader h3:first-child{
            width: 55%; }
          .main .content main .tableHeader h3:nth-child(3),
          .companies-in .tableHeader h3:nth-child(3){
            margin-left: auto;
            width: 40px; }
          .main .content main .tableHeader h3:last-child,
          .companies-in .tableHeader h3:last-child{
            width: 26px;
            text-align: center; }
        .main .content main .table,
        .companies-in .table{
          /* padding: 4px 0; */
          height: 46px;
          /* height: 40px; */
          width: 100%;
          position: relative; }
          .main .content main .table:before,
          .companies-in .table:before{
            content: "";
            width: 78%;
            position: absolute;
            bottom: 0;
            left: 8%;
            height: 1px;
            background-color: #e7e7e7; }
            .companies-in .table:before{
              width: 84%;
            }
          .main .content main .table .infoIcon,
          .companies-in .table .infoIcon {
            font-size: 17px;
            width: 0px; }
          .main .content main .table .bookmarkIcon,
          .companies-in .table .bookmarkIcon{
            margin: 0 15px; }
            .main .content main .table .bookmarkIcon a,
            .companies-in .table .bookmarkIcon a{
              font-size: 12px; }
          .main .content main .table .secondCol,
          .companies-in .table .secondCol{
            /* width: 40%;  */
            width: calc(50% - 35px);
          }
            .main .content main .table .secondCol p,
            .companies-in .table .secondCol p{
              /* margin: 0; */
              width: 80%; 
              line-height: 14px !important;
              margin: 0px 0; /* 10px 0; */
              margin-top: 0;
            }
            .main .content main .table .secondCol a,
            .companies-in .table .secondCol a{
              font-size: 11px !important; }
          .main .content main .table .infoModalVip,
          .companies-in .table .infoModalVip{
            left: 6% !important; }
          .main .content main .table div:nth-child(4),
          .companies-in .table div:nth-child(4){
            margin-left: 0 !important;
            text-align: right;
            /* width: 10% !important;  */
          }            
          .main .content main .table div:nth-child(5),
          .companies-in .table div:nth-child(5){
            /* width: 30%; */
            width: 35%;
            padding-left: 15px; }
            .main .content main .table div:nth-child(5) a,
            .companies-in .table div:nth-child(5) a{
              font-size: 11px !important; }
          .main .content main .table .firstDate label:before {
            /* background-color: rgba(52, 154, 48, 0.07) !important;  */
          }
          .main .content main .table .secondDate label:before {
            /* background-color: #FCF3F4 !important  */
          }
          .main .content main .table label,
          .companies-in .table label{
            width: 30px !important;
            height: 30px !important; }
            .main .content main .table label span,
            .companies-in .table label span{
              padding: 8px 0 !important; }
              .main .content main .table label span b,
              .companies-in .table label span b {
                font-size: 12px !important; }
      .main .content .companiesRow div {
        height: 40px; }
      .main .content .companiesRow p {
        display: none;
        font-size: 10px; }
      .main .content .companiesRow li:last-child p {
        display: unset; }
        .main .content .companiesRow li:last-child p b {
          display: none; }
      .main .content .companiesRow i {
        margin-left: 5px !important; }
    .main .left {
      display: block !important;
      border-radius: 0 !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      width: 25% !important;
      margin-right: 52px !important; }
      .main .left aside {
        padding: 0 !important;
        position: sticky !important;
        position: -webkit-sticky !important;
        top: 5% !important; }
        .main .left aside .advanceFilter,
        .loginRegisterBut {
          margin-top: 14.5px !important; }
        .main .left aside .expandSearch {
          width: 75vw !important;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
          -o-border-radius: 10px;
          -ms-border-radius: 10px;
          -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16); }          
          .main .left aside .expandSearch .checkboxes {
            /* height: 146px !important;  */
            height: auto !important; 
          }
          .main .left aside .expandSearch .simpleSearch,
          .main .left aside .expandSearch .advancedFirstCol,
          .main .left aside .expandSearch .advancedSecondCol {
            margin: 0 10px !important; }
          .main .left aside .expandSearch form {
            padding: 25px;
            -webkit-transition: padding .3s;
            -o-transition: padding .3s;
            transition: padding .3s; }
            .main .left aside .expandSearch form .advanceFilter {
              display: none !important; }
          .main .left aside .expandSearch .select-box__list {
            width: calc(25vw - 25px - 10px - 2px) !important; 
          }
      .main .left .adSearch {
        width: 25vw !important; }
        .main .left .adSearch button {
          padding-top: 14px !important;
          padding-bottom: 14px !important; }
        .main .left .adSearch h4 {
          margin-bottom: 10px !important; }
        .main .left .adSearch .simpleSearch,
        .main .left .adSearch .advancedFirstCol,
        .main .left .adSearch .advancedSecondCol {
          width: 25vw !important;
          margin: 0 0 !important; }
        .main .left .adSearch .simpleSearch {
          margin-left: 0 !important; }
          .main .left .adSearch .simpleSearch button {
            display: block !important; }
        .main .left .adSearch .advancedFirstCol {
          display: block !important; }
        .main .left .adSearch .advancedSecondCol {
          display: block !important;
          margin-right: 0 !important; }
          .main .left .adSearch .advancedSecondCol button {
            display: block !important; }
        .main .left .adSearch .checkboxes {
          /* height: 106px  !important; */
          height: auto  !important;
          margin-bottom: 10px !important; }
          .main .left .adSearch .checkboxes label {
            font-size: 10px !important;
            padding: 12px !important;
            margin: 0 7px 7px 0 !important; }
        .main .left .adSearch select {
          margin-bottom: 17.5px !important;
          font-size: 10px !important;
          padding: 14px !important; }
        .main .left .adSearch .select-box__current {
          padding: 14px !important; }
        .main .left .adSearch .select-box__list:not(.select-box__shrink) {
          width: 25vw; 
        }
        .main .left .adSearch form {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          width: 75vw !important;
          position: unset !important; }
  .loginPage.container {
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 80px; }
    .loginPage.container main {
      padding: 49px 0 0 0 !important;
      width: 25vw !important; }
      .loginPage.container main h2 {
        font-size: 12px !important; }
      .loginPage.container main input, .loginPage.container main button[type=submit], .loginPage.container main a {
        font-size: 12px !important;
        padding-top: 16px !important;
        padding-bottom: 16px !important; }
    .loginPage.container .bottomAdverts {
      height: 90px; }
  .ads {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 25vw !important;
    padding: 49px 0 !important; }
    .ads.right picture {
      margin-left: auto; }
    .ads picture {
      margin: 72px 0; }
  .bottomAdverts {
    display: block !important;
    width: 40vw;
    margin: 0 auto; }
  .RegisterPage {
    padding: 0 !important; }
    .RegisterPage.container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .RegisterPage.container .ads.right picture {
        margin-left: auto; }
      .RegisterPage.container .ads picture {
        margin: 72px 0; }
      .RegisterPage.container main {
        padding: 49px 0 !important;
        width: 25% !important; }
        .RegisterPage.container main h2 {
          font-size: 12px !important; }
        .RegisterPage.container main input, .RegisterPage.container main button, .RegisterPage.container main a {
          font-size: 12px !important;
          padding-top: 16px !important;
          padding-bottom: 16px !important; }
        .RegisterPage.container main .tabcontent .terms p {
          font-size: 10px !important; }
  .statementPage {
    position: static !important; }
    .statementPage .left {
      width: 0 !important;
      -webkit-transition: width .5s;
      -o-transition: width .5s;
      transition: width .5s; }
      .statementPage .left.showLeft {
        width: 25vw !important;
        margin-right: 30px !important; }
        .statementPage .left.showLeft aside {
          margin-left: 0 !important; }
      .statementPage .left aside {
        position: sticky !important;
        position: -webkit-sticky !important;
        top: 10vh !important;
        margin-left: -600px !important;
        margin-bottom: 50px;
        -webkit-transition: margin-left .5s;
        -o-transition: margin-left .5s;
        transition: margin-left .5s; }
      .statementPage .left .filterFromLeft {
        top: 2% !important;
        position: sticky !important;
        position: -webkit-sticky !important;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important; }
        .statementPage .left .filterFromLeft .expand span {
          top: -14px !important; }
        .statementPage .left .filterFromLeft:hover {
          cursor: pointer; }
    .statementPage .content {
      margin: 0 auto; }
      .statementPage .content .statementTitle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .statementPage .content .statementTitle h1 {
          font-size: 16px !important;
          margin: 0; }
        .statementPage .content .statementTitle a {
          font-size: 11px !important;
          color: #171717; }
      .statementPage .content .statementPrint a:last-child {
        display: inline-block !important; }
      .statementPage .content .statementLogos .title {
        font-size: 10px; }
      .statementPage .content .statementLogos .statementLogos-name {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important; 
        width: unset !important;
      }
      .statementPage .content .statementMain {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -ms-flex-direction: column; }
        .statementPage .content .statementMain .statementTags {
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1;
          padding: 10px 0 !important;
          margin: 20px 0 0px;
          border: 1px #D9D9D9 dashed;
          border-left: none;
          border-right: none;
          border-bottom: none; }
          .statementPage .content .statementMain .statementTags .tagTitle {
            font-size: 10px !important; }
          .statementPage .content .statementMain .statementTags .tagDesc {
            font-size: 11px !important; }
        .statementPage .content .statementMain .statementBody {
          margin-top: 0 !important;
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2; }
  .slider .container .sliderContent {
    margin: 0 auto;
    width: 75%; }
    .slider .container .sliderContent .sliderTitle a:last-child {
      margin-left: 20px; }
    .slider .container .sliderContent .swiper-container .swiper-slide a {
      padding: 18px 20px 18px 25px !important;
      -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important; }
      .slider .container .sliderContent .swiper-container .swiper-slide a img {
        margin-right: 17px;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center; 
        width: 50% !important;
      }
      .slider .container .sliderContent .swiper-container .swiper-slide a p:first-child {
        margin-top: 0;
        font-size: 12px !important; }
      .slider .container .sliderContent .swiper-container .swiper-slide a p:last-child {
        font-size: 11px !important; }
  .slider .container .sliderFake {
    margin-right: 0 !important;
    width: 0 !important;
    height: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transition: width .5s, margin .5s;
    -o-transition: width .5s, margin .5s;
    transition: width .5s, margin .5s; }
    .slider .container .sliderFake.expanding {
      width: 45vw !important; }
  .dashboard {
    padding: 79px 0 !important; }
    .dashboard main,
    .dashboard .dashboardResume {
      width: 25vw !important; }
    .dashboard .right picture {
      margin-left: auto !important; }
    .dashboard .ads picture {
      margin: 0;
      width: 80%; }
    .dashboard .dashboardStatement {
      width: 60vw !important; }
      .dashboard .dashboardStatement .statementContainer span {
        width: 30px !important; }
      .dashboard .dashboardStatement .statementContainer a {
        padding-left: 30px !important; }
        .dashboard .dashboardStatement .statementContainer a i {
          right: 30px !important; }
    .dashboard .dashboardResume .uploadWrapper.added .fileTitle {
      top: 10px !important; }
    .dashboard .dashboardResume .uploadWrapper .fileTitle {
      font-size: 10px !important;
      top: 20px !important; }
  .faq.container {
    width: 60vw;
    margin: 54px auto !important; }
    .faq.container h2 {
      margin-bottom: 54px; }
  .faq .accordionTitle a {
    padding: 18px !important; }
  .terms.container {
    width: 60vw;
    margin: 54px auto !important; }
    .terms.container h2 {
      margin-bottom: 54px; }
  .graduates.container {
    width: 60vw;
    margin: 54px auto !important; }
    .graduates.container h2 {
      margin-bottom: 54px; }
  .graduatesLoginMobile {
    display: none; }
  .graduatesLogin {
    display: block !important;
    text-align: center;
    margin: 167px 0; }
    .graduatesLogin p {
      display: inline;
      padding: 19px 31px;
      border-radius: 27px;
      border: 1px #D7D8DE solid; }
      .graduatesLogin p a {
        text-decoration: underline; }
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 54px;
    margin-bottom: 54px; }
    .contact .contactCards {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .contact .contactCards .contactRightCard {
        margin-top: 0 !important; }
      .contact .contactCards .contactLeftCard,
      .contact .contactCards .contactRightCard {
        width: 49%; }
    .contact h2 {
      margin-bottom: 54px !important; }
    .contact .contactFormTitle {
      display: block !important;
      text-align: center;
      margin: 73px 0 25px 0; }
    .contact form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .contact form .contactFormLeft,
      .contact form .contactFormRight {
        width: 49%; }
    .contact .ads picture {
      width: 50% !important;
      margin: 0 !important; }
    .contact .ads.rightad picture {
      margin-left: auto !important; }
  .employee {
    width: 60vw !important;
    margin: 0 auto !important;
    padding: 40px 0 48px 0 !important; }
    .employee h2 {
      font-size: 12px !important; }
    .employee header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .employee header div {
        margin-right: 3px; }
      .employee header div:first-child {
        width: 5vw; }
      .employee header div:nth-child(3) {
        width: 15vw; }
      .employee header div:nth-child(4) {
        width: 30vw; }
      .employee header div:nth-child(5) {
        width: 30vw; }
      .employee header button[name=submit] {
        width: 20vw !important;
        -ms-flex-item-align: end;
        align-self: flex-end;
        margin-top: 0;
        margin-bottom: 4px;
        padding-top: 7px !important;
        padding-bottom: 7px !important;
        font-size: 11px !important; }
      .employee header .select-box {
        margin-bottom: 0 !important;
        position: relative; 
      }
      .employee header .select-box__icon {
        font-size: 10px; }
      .employee header .select-box__current {
        padding: 7px 10px; }
    .employee main .searchResult {
      margin-bottom: 80px; }
    .employee main .profile:first-child .profileName {
      position: relative; }
      .employee main .profile:first-child .profileName:before {
        content: "სახელი, გვარი";
        color: #171717;
        opacity: .4;
        font-size: 12px;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: -50px; }
    .employee main .profile:first-child .profileAge {
      position: relative; }
      .employee main .profile:first-child .profileAge:before {
        content: "ასაკი";
        color: #171717;
        opacity: .4;
        font-size: 12px;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: -50px; }
    .employee main .profile .profilePic {
      width: 5vw !important;
      height: 5vw !important;
      margin-right: 60px !important; }
    .employee main .profile .profileDetail {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 40%; }
      .employee main .profile .profileDetail .profileAge p {
        background-color: rgba(238, 182, 30, 0.12);
        color: #B28E2A;
        padding: 5px 14px;
        border-radius: 15px;
        font-weight: bold; }
        .employee main .profile .profileDetail .profileAge p:after {
          content: "" !important; }
    .employee main .profile i {
      right: 20px !important; }
    .employee main .pagination a {
      font-size: 12px; }
    .employee main .bottomAdverts {
      margin-top: 60px !important; }
  footer {
    font-size: 10px !important;
    margin-bottom: 10px !important; }
    footer .copyright p {
      margin-bottom: 0 !important; }
    footer .footerContact a {
      padding-left: 20px !important;
      padding-right: 20px !important; }
      footer .footerContact a i {
        margin-right: 5px !important; } 
      
      .blog.container {
    width: 70vw;
    margin: 54px auto !important; }
    .blog.container h2 {
      margin-bottom: 54px; }
  .blog main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 27px 0;
    margin-bottom: 0 !important;
    border-bottom: 2px #F0F0F0 solid; }
  .blog .blog-left {
    width: 22vw !important;
    height: 13vw !important; }
    .blog .blog-left i {
      opacity: 0;
      background-color: rgba(0, 0, 0, 0.68); }
      .blog .blog-left i:before {
        width: 100% !important;
        height: 100% !important;
        background-color: transparent !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: 0 !important;
        left: 0 !important; }
      .blog .blog-left i:hover {
        opacity: 1; }
  .blog .blog-right {
    width: 70%;
    margin-left: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .blog .blog-right h2 {
      margin-top: 0;
      margin-bottom: 13px;
      font-size: 15px; }
    .blog .blog-right p {
      display: block !important;
      margin-top: 0;
      font-size: 12px;
      line-height: 23px;
      height: 69px;
      overflow: hidden; }
    .blog .blog-right div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .blog .blog-right div a {
        display: block !important;
        font-size: 12px;
        font-weight: bold;
        color: #BD8C00; }
  .blog .pagination {
    margin-top: 50px !important; }
  .blogin.container {
    width: 70vw;
    margin: 54px auto; }
  .blogin main {
    padding-bottom: 50px !important; }
  .blogin-title {
    font-size: 20px !important;
    line-height: 39px !important; }
  .blogin-date {
    margin-bottom: 22px !important; }
    .blogin-date span {
      font-size: 12px !important; }
  .blogin-share span {
    display: block !important;
    margin-right: 16px;
    font-size: 12px !important; }
  .blogin-top article img{    
    max-width: 100%;  
  }
      .blogin-top article p {
        margin-top: 0;
       }
  .blogin-left {
    width: 50vw !important;
    height: 23vw !important; }
  .blogin article {
    font-size: 12px !important;
    line-height: 23px !important; }
  .blogin .blogin-gallery-title {
    padding: 30px 0 !important; }
  .blogin #gallery {
    width: 80% !important;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    grid-column-gap: 16px !important;
    grid-row-gap: 16px !important; }
    .blogin #gallery .blog-thumbnails img {
      width: 100%; }
  #image-overlay-exit {
    width: 38px !important;
    height: 38px !important;
    line-height: 35px !important; } }

.footerShow {
  bottom: 0 !important; }

@media (min-width: 1200px) {
  .blogin-top article img{
    padding-right: 32px;
    padding-bottom: 25px;
    width: 50% !important;
    float: left;
  }
  .blogin-top article span{
    font-family: 'BodyFont' !important;
  }
  nav#menu .links li {
    margin-right: 28px !important; }
  nav#menu .bottomNav .bottomNavContainer > li > a {
    text-align: center;
    -webkit-box-flex: .2;
    -ms-flex: .2 1 auto;
    flex: .2 1 auto; }
  .checkboxes label {
    margin: 0 10px 10px 0 !important; }
  .main .left .adSearch .simpleSearch,
  .main .left .adSearch .advancedFirstCol,
  .main .left .adSearch .advancedSecondCol {
    width: 25vw !important; }
  .main .left .adSearch.expandSearch form {
    padding: 25px; }
    .main .left .adSearch.expandSearch form .advanceFilter {
      display: none !important; }
  .main .content .companiesRow li p {
    display: unset !important; }
  .main .content .companiesRow li:last-child a {
    padding: 24px 16px !important; }
    .main .content .companiesRow li:last-child a i {
      margin-left: 5px !important; }
  .main .content .companiesRow li:last-child p b {
    display: unset !important;
    font-weight: 100 !important; }
  .main .content.expanding .statementLogos {
    height: 140px !important; }
    .main .content.expanding .statementLogos .statementLogos-date {
      margin-left: 10px !important; }
    .main .content.expanding .statementLogos .statementLogos-provider {
      -webkit-box-flex: unset !important;
      -ms-flex-positive: unset !important;
      flex-grow: unset !important; }
  .main .content main .table:before {
    left: 7% !important;
    width: 81% !important; }
  .statementPage .statementLogos {
    /* height: 64px !important; */
    -webkit-transition: height .5s;
    -o-transition: height .5s;
    transition: height .5s; }
    .statementPage .statementLogos img {
      /* height: 64px !important; */
      border-radius: 16px; }
    .statementPage .statementLogos div .desc {
      font-size: 12px !important; }
  .statementPage .statementLogos-provider {
    margin-left: 10px; }
  .statementPage .statementLogos {
    -webkit-box-pack: stretch !important;
    -ms-flex-pack: stretch !important;
    justify-content: stretch !important; }
  .statementPage .statementLogos-date {
    margin-left: auto;
    margin-right: 10px; }
  .statementPage .statementTags a {
    padding: 11px 22px !important; }
  .dashboard main {
    width: 25vw !important; } }



.newbadge{
  font-size: 13px;
  padding: 5px 8px;
  background: #BB2025;
  border-radius: 2px;
  color: #fff;
  font-family: "Helvetica" !important;
}
.bottomNavContainer-links li .newbadge{
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 6px;
}

.subNav{
  background-color: #fff;
  margin-top: 30px;
  position: absolute;
  width: 250px;
  max-width: 250px;
  display: none;
}
.subNav > li:not(:last-child){
  margin-bottom: 20px;
}
.subNav > li > a{
  font-size: 14px;
  color: #000000;
}  
@media (min-width: 1024px){
  .subNav{
    box-shadow: 0 10px 20px #2B292905;
    border-radius: 12px;
    padding: 40px;
  }
  .subNav:before{
    content: "";
    position: absolute;
    height: 30px;
    top: -30px;
    left: 0;
    display: block;
    width: 100%;
  }  
}


.topBanners{
  width: 100%;
  height: 170px;
  background-color: #EEB62910;
  border-radius: 10px;
  margin-bottom: 30px;
}
/* GRANNY FORM */
.grands-form{
  padding: 40px 0;
}
.grands-form .pageHeads{
  text-align: left;
}
.grands-form form{
  width: 100%;
  max-width: 536px;
  margin: 0 auto;
}
.grands-form form .input-container.gender-select{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
}
.grands-form form .input-container.gender-select img{
  opacity: .5;
}
.grands-form form .input-container.gender-select img.selected{
  opacity: 1;
}
.grands-form form .input-container.gender-select img:first-child{
  margin-right: 15px;
}
.grands-form form .input-container{
  position: relative;
  border: 1px #E6E6E6 solid;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}
.grands-form form .input-container input[type=text],
.grands-form form .input-container textarea,
.grands-form form .input-container span{
  font-size: 14px;
  font-weight: bold;
}
.grands-form form .input-container input[type=text],
.grands-form form .input-container textarea{
  padding: 20px;
  width: 100%;
  border: none;
  color: #2B2929;  
}
.grands-form form .input-container input[type=text]::placeholder,
.grands-form form .input-container textarea::placeholder{
  color: #2B2929 !important;
}
.grands-form form .input-container textarea{
  height: 150px;
}
.grands-form form .select-box{
  position: relative;
  font-size: 14px;
}
.grands-form form .select-box .select-box__current{
  border-radius: 12px;
  border: 1px #E6E6E6 solid;
  padding: 20px;  
}
.grands-form form button[type="submit"]{
  width: 100%;
  padding: 20px;
  background-color: #BB2025;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  border: none;
}

/* SELECTING GRANNY */
.grands-main{
  width: 100%;  
  padding: 40px 0;
}
.grands-main .pageHeads{
  text-align: left;
}
.grands-text-content{
  width: 100%;;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.grands-text-content-select{
  display: block;
  padding: 0 17px 17px;
  border: 1.5px #DDDDDD solid;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #171717;
  font-size: 12px;
}
.grands-text-content-select > *{
  display: block;
  width: 100%;
}
.grands-text-content-select img{
  margin-bottom: 16px;
}
@media (min-width: 1024px){
  .grands-main{
    padding: 80px 0;
    max-width: 65vw;
    margin: 0 auto;
  }
  .grands-text-content{
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}


/* GRANNY INNER PAGE */
.grands-in-image-col-holder{
  width: 168px;
  margin: 0 auto;
  padding: 15px 20px 35px;
  background-color: #EEB62910;
  border-radius: 0 0 100% 100%;
  -moz-border-radius: 0 0 100% 100%;
  -webkit-border-radius: 0 0 100% 100%;
  -ms-border-radius: 0 0 100% 100%;
  -o-border-radius: 0 0 100% 100%;
  margin-bottom: 30px;
}
.grands-in-image-col-holder img{
  width: 100%;
}
.grands-in-details .grands-in-title{
  color: #2B292970;
  font-size: 12px;
  margin-bottom: 8px;
  margin-top: 0;
}
.grands-in-details .grands-in-desc{
  color: #2B2929;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.grands-in-details .grands-in-comment{
  color: #2B2929;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
.grands-in-details .grands-in-year{
  color: #2B292950;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  margin-top: 8px;
}
.grands-in-details-postion{
  margin-top: 20px;
  margin-bottom: 20px;
}
.grands-in-details-postion div{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.grands-in-details-postion span{
  padding: 5px 10px;
  background-color: #EEB629;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  -moz-border-radius: 4px;  
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin-right: 10px;
  display: flex;
}
.grands-in-details-personal-container{
  margin-bottom: 20px;
}
.grands-in-details-experience-container{
  margin-bottom: 16px;
}
@media (min-width: 1024px){
  .adSearch{
    display: block;
  }
  .grands-in-content{
    display: grid;
    grid-template-columns: 168px 1fr;
    column-gap: 108px;
  }
  .grands-in-details .grands-in-title{
    font-size: 14px;
  }
  .grands-in-details .grands-in-desc{
    font-size: 20px;
  }
  .grands-in-details-personal{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .grands-in-details-personal-container{
    margin-bottom: 0;    
  }
  .grands-in-details-postion span{
    font-size: 14px;
  }
  .grands-in-details-postion {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .grands-main.grands-in .pageHeads {
    margin-bottom: 60px;
  }
  .lcard__btm-context{
    /* padding: 0 30px 100px 30px; */
  }
}

@media (min-width: 1366px) {  
  nav#menu .topNav .loggedIn > a {
    font-size: 12px !important; }
  nav#menu .topNav .loggedIn .subLoggedIn ul li a {
    font-size: 11px !important; }
  nav#menu .links a {
    font-size: 12px !important; }
  nav#menu .bottomNav .bottomNavContainer > li > a {
    -webkit-box-flex: .2;
    -ms-flex: .2 1 auto;
    flex: .2 1 auto; }
  nav#menu .topNavButtons {
    font-size: 14px !important; }
  nav#menu #langSelect a {
    font-size: 12px !important; }
  .main .content.expanding .statementLogos {
    height: 64px !important; }
    .main .content.expanding .statementLogos .statementLogos-date {
      margin-left: auto !important; }
  .main .content main .table:before {
    left: 6% !important;
    width: 84% !important; }
  .statementPage .left .filterFromLeft .expand span {
    top: -14px !important; }
  .statementPage .content .statementMain .statementTags a {
    margin: 0 12px 12px 0 !important; }
  .slider .container .sliderContent .sliderTitle p {
    font-size: 16px !important; }
  .slider .container .sliderContent .sliderTitle a {
    font-size: 16px !important; }
  .slider .container .sliderContent .swiper-container .swiper-slide a p:first-child {
    font-size: 12px !important; }
  .slider .container .sliderContent .swiper-container .swiper-slide a p:last-child {
    font-size: 11px !important; }
  .slider .container .sliderFake.expanding {
    width: 45vw !important; }
  .dashboard .dashboardPassword {
    width: 25vw !important; }
    .dashboard .dashboardPassword form {
      display: block !important; }
  .dashboard main {
    width: 50% !important; }
    .dashboard main form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: distribute;
      justify-content: space-around;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .dashboard main form label {
        display: block !important;
        width: 100%; }
      .dashboard main form input {
        width: 100%; }
      .dashboard main form .firstCol,
      .dashboard main form .secondCol {
        width: 45% !important; }
      .dashboard main form .firstCol input:last-child {
        margin-bottom: 0; }
  .dashboard .ads {
    width: 25vw !important; }
    .dashboard .ads picture {
      width: 70%; }
  .dashboard .dashboardStatement .statementContainer span {
    font-size: 18px !important; }
  .dashboard .dashboardStatement .statementContainer a p:first-child {
    font-size: 16px !important; }
  .dashboard .dashboardStatement .statementContainer a p {
    font-size: 14px !important; }
  .dashboard .dashboardStatement .pagination {
    width: 40% !important; }
  .dashboard .addStatement form .calendar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100% !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .dashboard .addStatement form .calendar div {
      width: 49% !important; }
      .dashboard .addStatement form .calendar div i {
        right: 10% !important; }
  .dashboard .addStatement form textarea {
    font-size: 10px; }
  .faq.container h2 {
    margin-bottom: 54px;
    font-size: 16px !important; }
  .faq.container .accordion {
    font-size: 12px !important; }
  .terms h2 {
    font-size: 20px !important; }
  .terms p {
    font-size: 16px !important; }
  .graduates h2 {
    font-size: 20px !important; }
  .graduates p {
    font-size: 16px !important; }
  .graduatesLogin p {
    font-size: 16px; }
  .loginPage.container main h2, .RegisterPage.container main h2 {
    font-size: 16px !important; }
  .contact h2 {
    font-size: 20px !important; }
  .contact .contactFormTitle {
    font-size: 13px !important; }
  .contact .contactLeftCard h3,
  .contact .contactRightCard h3 {
    font-size: 14px !important; }
  .contact .contactLeftCard p,
  .contact .contactRightCard p {
    font-size: 13px !important; }
  .select-box {
    font-size: 10px; }
  .employee h2 {
    font-size: 20px !important; }
  .employee header div {
    margin-right: 10px !important; }
  .employee header h4 {
    font-size: 12px !important; }
  .employee header .select-box__current {
    font-size: 12px !important;
    padding: 16px 10px !important; }
  .employee header button[name=submit] {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    font-size: 12px !important; }
  .employee main .profile:first-child .profileName:before,
  .employee main .profile:first-child .profileAge:before {
    top: -60px !important; }
  .employee main .profile {
    padding: 8px 24px !important; }
    .employee main .profile .profileName,
    .employee main .profile .profileAge {
      font-size: 12px !important; }
    .employee main .profile i {
      right: 24px !important; }
  .employee main .pagination {
    margin-top: 65px !important; }
    .employee main .pagination a {
      font-size: 18px !important; } }

@media (min-width: 1445px) {    
  .menuBookmark a{
    line-height: 24px !important;
  }
  .dashboard .dashboardStatement .statement-empty-but p{
    font-size: 16px !important;
  }
  .dashboard .dashboardStatement .statement-empty-but a{
    font-size: 16px !important;
    font-weight: bold;
  }
  .dashboard .dashboardStatement .statement-empty-but span{
    font-size: 22px !important;
    margin-left: 16px !important;
  }
  .simple-first .select-box__list,
  .simple-third .select-box__list{
    width: 100% !important;
  }
  .companies-in main a:first-child{
    width: 63px !important;
    order: 2;
    margin-right: 32px;
  }
  .companies-in main h2{
    font-size: 20px !important;
    line-height: 24px !important;
    order: 1;
    margin-bottom: 49px;
  }
  .companies-in main div{
    order: 3;
    width: calc(100% - 95px);
  }
  .companies-in main div p{
    font-size: 13px !important;
  }
  .companies-page h2{
    font-size: 20px !important;
  }
  .companies-page .companies-links p{
    font-size: 12px !important;
  }
  .search-searchResult{
    padding: 37px 38px !important;    
    margin-bottom: 64px !important;
  }
  .search-searchResult p{
    font-size: 16px !important;
  }
  .search-searchResult i{
    font-size: 16px !important;
  }
  html, body, h1, h2, h3, h4, h5, h6, thead {
    font-size: 16px !important; }
  input, select, button {
    font-size: 15px !important; }
    .main .content main .table{
      /* height: 54px !important; */
      height: 40px !important;
    }
    .main .content main .table .secondCol p{
      line-height: 20px !important;
    }
  nav#menu .topNav {
    height: 108px !important; }
    nav#menu .topNav .links li {
      margin-right: 44px !important; }
      nav#menu .topNav .links li .active {
        font-weight: bold;
        opacity: 1; }
    nav#menu .topNav .links a {
      font-size: 16px !important; }
    nav#menu .topNav .socialIcons a {
      padding: 0px !important; }
    nav#menu .topNav .socialIcons i {
      font-size: 18px !important; }
    nav#menu .topNav .socialIcons .fb i {
      left: 14px !important; }
    nav#menu .topNav .socialIcons .tube i {
      left: 10px !important; }
    nav#menu .topNav .topNavButtons {
      font-size: 14px !important; }
    nav#menu .topNav #langSelect a {
      font-size: 15px;
      padding: 7px; }
  nav#menu .bottomNav {
    position: relative;
    height: 62px; }
    nav#menu .bottomNav .bottomNavContainer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: absolute;
      width: 100%;
      top: 17px !important; }
      nav#menu .bottomNav .bottomNavContainer a {
        background-size: unset !important;
        height: 50px !important;
        font-size: 14px !important;
        /* line-height: 50px !important; */
        padding: 0 5px !important;
        -webkit-box-flex: .1 !important;
        -ms-flex: .1 1 auto !important;
        flex: .1 1 auto !important; }
        nav#menu .bottomNav .bottomNavContainer a img {
          margin-right: 8px !important;
          vertical-align: middle !important;
          width: unset !important; }
        nav#menu .bottomNav .bottomNavContainer a b {
          font-size: 20px;
          font-weight: 500; }
      nav#menu .bottomNav .bottomNavContainer a:nth-child(1) img,
      nav#menu .bottomNav .bottomNavContainer a:nth-child(2) img,
      nav#menu .bottomNav .bottomNavContainer a:nth-child(3) img {
        width: unset !important; }
    nav#menu .bottomNav form .inputContainer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      background-color: #fff;
      border-radius: 5px;
      -webkit-box-shadow: 0 3px 0 #CCCCCC;
      box-shadow: 0 3px 0 #CCCCCC; }
      nav#menu .bottomNav form .inputContainer input {
        padding: 21px;
        height: 50px !important; }
  .main {
    padding-top: 3rem !important; }
    .main .left aside .expandSearch .checkboxes {
      /* height: 106px !important;  */
      height: auto !important; 
    }
    .main .left .adSearch .simpleSearch,
    .main .left .adSearch .advancedFirstCol,
    .main .left .adSearch .advancedSecondCol {
      margin: 0 30px !important; }
    .main .left .adSearch .simpleSearch {
      margin-left: 0 !important; }
    .main .left .adSearch select {
      margin-bottom: 29px !important;
      font-size: 15px !important; }
    .main .left .adSearch .checkboxes {
      height: auto !important;
      margin-bottom: 20px !important; }
      .main .left .adSearch .checkboxes label {
        font-size: 15px !important;
        margin: 0 10px 10px 0 !important; }
    .main .left .adSearch .select-box__list{
      width: calc(25vw - 50px) !important;
    }
    .main .left .adSearch .select-box__list.select-box__shrink{
      width: 100% !important;
    }    
    .main .left aside .expandSearch .select-box__list,
    .main .left aside .expandSearch .select-box__list.select-box__shrink {
      width: calc(25vw - 36px) !important;
    }
    .main .content main .tableHeader {
      padding-left: 54px; }
      .main .content main .tableHeader h3:first-child {
        width: 54%; }
      .main .content main .tableHeader h3:nth-child(3) {
        margin-left: auto;
        width: 54px; }
      .main .content main .tableHeader h3:last-child {
        width: 54px;
        text-align: center; }
    .main .content main .table:before {
      width: 86% !important;
      left: 4% !important; }
    .main .content main .table .bookmarkIcon a,
    .main .content main .table .secondCol a,
    .main .content main .table div:nth-child(5) a {
      /* font-size: 15px !important;  */
      font-size: 12px !important; 
    }
    .main .content main .table .infoModalVip {
      left: 4% !important; }
    .main .content main .table label {
      width: 54px !important;
      height: 54px !important; }
      .main .content main .table label span {
        /* font-size: 14px !important; */
        font-size: 10px !important;
        line-height: 16px !important;
        padding: 12px 0 !important; }
        .main .content main .table label span b {
          /* font-size: 18px !important;  */
          font-size: 12px !important; 
        }
    .main .content main table a {
      font-size: 15px !important; }
    .main .content main table label {
      width: 54px !important;
      height: 54px !important; }
      .main .content main table label span {
        font-size: 14px !important;
        line-height: 12px !important;
        padding: 12px 0 !important; }
        .main .content main table label span b {
          font-size: 18px !important; }
    .main .content main table .infoModalVip a {
      font-size: 15px !important; }
    .main .content .companiesRow a {
      padding-right: 14px !important;
      padding-left: 14px !important; }
      .main .content .companiesRow a p {
        font-size: 13px !important; }
    .main .content .companiesRow li:last-child a {
      font-weight: bold !important; }
  .statementPage .left .filterFromLeft .iconholder {
    height: 18px !important; }
    .statementPage .left .filterFromLeft .iconholder span {
      height: 18px !important; }
  .statementPage .left .filterFromLeft .expand span {
    top: -19px !important; }
  .statementPage .content .statementTitle h1 {
    font-size: 24px !important; }
  .statementPage .content .statementPrint a {
    font-size: 14px !important; }
  .statementPage .content .statementLogos div {
    height: 100%;
    padding: 11px 15px !important; }
    .statementPage .content .statementLogos div p {
      margin: 0; }
    .statementPage .content .statementLogos div .desc {
      font-size: 15px !important; }
  .statementPage .content .statementLogos .title {
    font-size: 13px !important; }
  .statementPage .content .statementLogos .desc {
    font-size: 15px !important; }
  .statementPage .content .statementMain .statementTags a {
    margin: 0 12px 12px 0 !important; }
  .statementPage .content .statementMain .statementTags .tagTitle {
    font-size: 13px !important; }
  .statementPage .content .statementMain .statementTags .tagDesc {
    font-size: 15px !important; }
  .statementPage .content .statementMain .statementBody * {
    font-size: 15px !important; }
  .slider .container .sliderContent .sliderTitle p {
    font-size: 18px !important; }
  .slider .container .sliderContent .sliderTitle a {
    font-size: 18px !important; }
  .slider .container .sliderContent .swiper-container .swiper-slide a p:first-child {
    font-size: 15px !important; }
  .slider .container .sliderContent .swiper-container .swiper-slide a p:last-child {
    font-size: 14px !important; }
  .slider .container .sliderFake {
    margin-right: 52px;
    width: 0;
    height: 100%; }
  .RegisterPage .ads {
    -ms-flex-item-align: unset !important;
    -ms-grid-row-align: unset !important;
    align-self: unset !important; }
  .dashboard {
    padding: 89px 0 50px 0 !important; }
    .dashboard form label,
    .dashboard form input {
      font-size: 15px !important; }
    .dashboard form textarea {
      font-size: 15px !important; }
    .dashboard .dashboardResume .uploadWrapper.profilePic .fileFormats {
      position: absolute;
      right: 31px;
      bottom: 14px; }
    .dashboard .dashboardResume .uploadWrapper.added .fileTitle {
      top: 5px !important; }
    .dashboard .dashboardResume .uploadWrapper .fileTitle {
      font-size: 15px !important;
      top: 15px !important; }
  .faq.container h2 {
    font-size: 18px !important; }
  .faq.container .accordion {
    font-size: 16px !important; }
    .faq.container .accordion p {
      line-height: 24px !important; }
  .loginPage.container main {
    width: 20vw !important; }
    .loginPage.container main h2 {
      font-size: 18px !important; }
  .select-box {
    font-size: 15px;
    margin-bottom: 24px !important; }
  .employee main .searchResult {
    margin-bottom: 100px; }
  .employee main .profile:first-child .profileName:before,
  .employee main .profile:first-child .profileAge:before {
    top: -70px !important; }
  footer {
    font-size: 15px !important;
    margin-bottom: 30px !important; } }