/********* */

/*----- Base -----*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);

* {
    margin:0;
    padding:0;
    border:0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-smooth: always;
    font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family:'Open sans', sans-serif;
    font-weight:400;
    outline:none;
}

.mobile_only {
    display:none;
}

.flex {
    display:flex;
}

.flex-wrap {
    flex-wrap:wrap;
}

html, body {
    scroll-behavior: smooth;
    font-size:17px;
    overflow-x:hidden;
    color:#505b60;
}

h5 {
    font-size: 1em;
    font-weight: 600;
}

h4 {
    font-size: 1.2em;
    font-weight: 600;
}

h3 {
    font-size: 1.4em;
    font-weight: 600;
}

h2 {
    font-size: 2em;
}

h1 {
    font-size:3em;
}

b,
strong {
    font-weight:600;
}

a {
    text-decoration: none;
}

section {
    padding: 8vh 0;
    scroll-margin-top: 80px;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.center-text {
    text-align: center;
    justify-content: center;
}

.button {
    padding:0.7em 1.4em;
    margin:0.5em 0;
    border-radius:0.15em;
    text-transform:uppercase;
    color:#FFFFFF;
    background-color:#99cc33;
    border:2px solid #99cc33;
    text-align:center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.button svg * {
    fill: #fff;
}
.button:hover {
    background-color:#fff;
    color: #99cc33;
}
.button:hover svg * {
    fill:#99cc33;
}

.button.reverted {
    background-color:#fff;
    color:#99cc33;
}
.button.reverted svg * {
    fill: #99cc33;
}
.button.reverted:hover {
    background-color:#99cc33;
    color:#fff;
}
.button.reverted:hover svg * {
    fill:#fff;
}

/**** NAV ****/
.topnav {
    overflow: hidden;
    background-color: rgba(255, 255, 255, .92);
    position: fixed;
    width: 100%;
    z-index: 50;
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0px 2px 5px 2px rgba(154,154,154,0.2); 
    box-shadow: 0px 2px 5px 2px rgba(154,154,154,0.2);
}

.topnav .nav_links .nav_links_item {
    color: #505b60;
    text-align: center;
    padding: 10px 1.5em;
    font-size: 1.5em;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease;
}
  
.topnav .nav_links .nav_links_item:hover {
    color: #99cc33;
}

.logolive {
    display: flex;
    align-items: center;
}

#logo_desktop {
    padding:0;
    min-width: 180px;
    height: 100%;
    display: flex;
    align-items: center;
}

#logo_desktop svg {
    height: 100%;
    width: 100%;
}

.nav_links_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2.5em 0 0 0;
}

.nav_links {
    display: flex;
    margin: 0 20px 5px 0;
}

.nav_desktop {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.nav_mobile {
    display: none;
}

.clear {
    clear: both;
}

.topnav .icon {
    display: none;
}

#menu_top {
    position: absolute;
    top:0px;
    right:5%;
    display: flex;
}

#menu_top a {
    padding: 0;
}

#menu_top .back_immomig_top {
    color:#B2071B;
    margin-right: 1em;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

#menu_top .back_immomig_top:hover {
    color:#810715;
    font-weight: 600;
}

#menu_top .back_immomig_top i {
    display: inline-flex;
    align-items: center;
}

#menu_top .back_immomig_top svg {
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    transform: rotate(0);
    border-radius: 0;
    transition: all 0.2s ease;
}

#menu_top .back_immomig_top:hover {
    color:#961121;
}

#menu_top .back_immomig_top:hover svg {
    width: 1.2em;
    height: 1.2em;
    transform: rotate(90deg);
    border-radius: 50%;
}

#menu_top .menu_languages {
    padding : 0.2em 0.5em;
    background-color: #99cc33;
}

#menu_top .menu_languages a, 
#menu_top .menu_languages {
    color:#fff;
    transition: all 0.2s ease;
}

#menu_top .menu_languages a.active {
    font-weight: 800;
}

#menu_top .menu_languages a:hover {
    color:#505b60;
}

/* Icon menu */

.topnav #nav-icon {
    width: 30px;
    height: 18px;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    cursor: pointer;
}

.topnav #nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333333;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.topnav #nav-icon span:nth-child(1) {
    top: 0px;
}

.topnav #nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 8px;
}

.topnav #nav-icon span:nth-child(4) {
    top: 16px;
}

.topnav.open #nav-icon span:nth-child(1) {
    opacity: 0;
}

.topnav.open #nav-icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.topnav.open #nav-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.topnav.open #nav-icon span:nth-child(4) {
    opacity: 0;
}

/*******/

.navigation_link.selected, a.selected, a:hover {
    color:#99cc33;
}

strong {
    font-weight: bold;
    color: #99cc33;
}

.container > h2 {
    margin-bottom: 1em;
}

.banner_digirent {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background-image: url("/images/digirent/png/banner_digirent.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.banner_digirent::after {
    content:'';
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}

.mobile_banner {
    display: none;
    object-fit: cover;
    max-height: 50vh;
}

.banner_digirent .title_part {
    margin:auto;
    font-weight: 700;
    width: 80%;
    display: flex;
    justify-content: center;
    z-index: 11;
}

.banner_digirent .title_part h1 {
  margin-top: 0;
  line-height: 1.8em;
  color:#fff;
  text-shadow: 2px 2px 5px rgba(0,0,0, 0.4);
}

.banner_digirent .title_part strong {
  color:#99cc33;
  font-size: 1.2em;
  font-weight: 700;
}

.banner_digirent .infos_box {
    z-index: 10;
    width: 25%;
    display: flex;
    flex-direction: column;
    background: #fff;
    align-self: flex-end;
    margin-right: 10%;
    padding:2em;
}

.banner_digirent .infos_box h3 {
    margin-bottom: 1em;
}

.infos_box .button {
    font-weight: bold;
    position: unset;
    margin-top: 1em;
}

.infos_box .button.fixed {
    position:fixed;
    margin-top: 0;
    box-shadow: 2px 3px 3px rgba(33,33,33, 0.1);
}

/**** SECTION ADVANTAGES ****/

#digirent_advantages {
    display:flex;
    flex-direction: column;
    padding-bottom: 0;
}
  
.advantages_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -2em;
}

.advantages_item {
    position: relative;
    width: calc(33.33% - 4em);
    padding:0;
    margin: 2em;
}

.advantages_item .advantage_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1em;
}

.advantages_item .advantage_title h5 {
    margin: 0;
}

.advantages_item .advantage_title svg {
    margin-right: 1em;
    height: 2.5em;
    width: 2.5em;
    fill:#99cc33;
}

.advantages_item .advantage_title svg * {
    fill:#99cc33;
}

.advantages_item:hover {
    background-color: #99cc33;
    box-shadow: 2px 3px 3px rgba(33,33,33, 0.1);
    margin: 0;
    padding: 2em;
    width: 33.33%;
    font-weight: bolder;
    transition: all 0.2s ease-out;
    color:#fff;
    cursor: default;
}

.advantages_item:hover strong, .advantages_item:hover .advantage_title svg * {
    color:#505b60;
    fill:#505b60;
    transition: all 0.2s ease-out;
}

.brochure {
    display:flex;
    justify-content: center;
    margin-top: 4vh;
}

.brochure .button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 10px;
    font-weight: 600;
}

.brochure .button > .digirent {
    text-transform: none;
    font-size: 1.4em;
    font-weight: 600;
}

/**** SECTION OFFER ****/

#digirent_offer .offer_row {
    display:flex;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    padding : 0.5em 0;
    cursor: default;
}

#digirent_offer .offer_row:first-child {
    border-top: none;
}

#digirent_offer .offer_container {
    margin-top: 2em;
}

#digirent_offer .offer_row .col_left {
    width: 75%;
    display: flex;
    align-items: center;
}

#digirent_offer .offer_row .col_right {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#digirent_offer .offer_row .label_title span {
    max-height: 0;
    display: block;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#digirent_offer .offer_row .label_title i {
    display: inline;
}

#digirent_offer .offer_row .label_title p.more span {
    max-height: 1000px;
    opacity: 1;
}

#digirent_offer .offer_row .label_title i::before {
    content: "\002b";
    color: #fff;
    background: #99cc33;
    border-radius: 50%;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    padding: 0 5.5px;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.2s;
    border: 2px solid #99cc33;
    vertical-align: middle;
    cursor: pointer;
}

#digirent_offer .offer_row .label_title p.more i::before {
    content: "\2212";
}

#digirent_offer .offer_row .label_title i:hover::before {
    color: #99cc33;
    background: #FFF;
}

#digirent_offer .offer_row .check_title i {
    background-color: #99cc33;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#digirent_offer .offer_row svg {
    width: 0.85em;
    height: 0.85em;
}

#digirent_offer .offer_row svg * {
   fill:#fff;
}

/**** SECTION REFERENCES ****/
#references {
    background: #FAFAFA;
}

#references .customers_list {
    margin: 7vh auto 0 auto;
    display : grid;
    grid-template-columns: repeat(4, 1fr);
}

#references .customer_logo {
    margin-bottom: 40px;
    display: flex;
    position: relative;
  }

#references .customer_logo img {
    filter: grayscale(100%) brightness(98%);
    max-width: 80%;
    margin: auto;
    display: block;
    max-height: 80px;
    transition: all 0.2s ease;
}

#references .customer_logo img[alt='truvag'] {
    filter: grayscale(100%) brightness(99%);
}

#references .customer_logo:hover img {
    filter: grayscale(0%) brightness(98%);
}

#references .customer_logo:hover img[alt='truvag'] {
    filter: grayscale(0%) brightness(99%);
}

/****** CONTACT *****/

textarea, input, button, select { font-family: inherit; font-size: inherit; }

input, textarea, .select-css {
  border:1px solid #e3e3e3;
  border-radius: 0 5px 5px 5px;
  background-color: white;
  padding:10px 15px;
  font-size: 1rem;
  margin: 5px 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, textarea:focus {
  border: 1px solid #333333 !important;
  box-shadow: none;
  outline:0;
}

textarea {
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.select-css {
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
}

/* Hide arrow icon in IE browsers */
.select-css::-ms-expand {
  display: none;
}

/* Hover style */
.select-css:hover {
  border-color: #888;
}
/* Focus style */
.select-css:focus {
  border-color: #aaa;
  outline: none;
}

/* Set options to normal weight */
.select-css option {
  font-weight:normal;
}

.contact_container {
  display: flex;
}

.contact_infos, .contact_form {
  width: 50%;
}

.form {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto;
  width: 100%;
}

.form_col11 {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
  display: flex;
  flex-direction: column;
  margin-right: 5px;
}

.form_col12 {
  grid-column: 2 / 2;
  grid-row: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left:5px;
}

.form_col2_12 {
  grid-column: 1 / span 2;
  grid-row: 2 / 2;
}

.form_col31 {
  grid-column: 1 / 1;
  grid-row: 3 / 3;
}

.form_col32 {
  grid-column: 2 / 2;
  grid-row: 3 / 3;
  display: flex;
  justify-content: flex-end;
}

.contact_infos { 
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact_box {
    display: flex;
    margin:0 auto 50px 0;
    align-items: flex-start;
    background-color: #FAFAFA;
}

.contact_box img {
    width: auto;
    max-width: 150px;
}

.contact_box div {
    margin: 0 4em 0 2em;
}

.contact_box div h4 {
    margin-top:20px;
    margin-bottom:5px;
}

.form_success, .form_error {
    background-color: white;
    border-radius: 0 5px 5px 0px;
    padding: 20px;
    text-align: center;
}

.form_success {
    border-left: 5px solid lightgreen;
}

.form_error {
    border-left: 5px solid #b20e10;
}

footer {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9em;
    color:#fff;
    background-color: #99cc33;
    padding: 1em 0 0 0;
}

footer a {
    text-decoration: none;
    color:#fff;
}

footer a:hover {
    color:#505b60;
}

.footer_part {
    width: 100%;
}

.footer_infos .addresses {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.footer_address_part {
    padding: 1em;
}

.footer_contact_direct {
    width: 100%;
    padding:0.5em;
    margin: 1em 0 2em 0;
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.footer_social_links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 1em;
    justify-content: center;
}

.footer_social_links a {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
}

.footer_social_links a svg {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0.5em 0;    
    border-radius: 50%;
}

.footer_social_links a.appstore_link svg,
.footer_social_links a.googleplay_link svg {
    width: 122px;
    border-radius: 0;
}

.footer_social_links a:not(.googleplay_link):not(.appstore_link) svg * {
    fill: #FFF;
    transition: all 0.2s ease;
}

.footer_social_links a:not(.googleplay_link):not(.appstore_link):hover svg * {
    fill: #505b60;
}

.footer_copyright {
    text-align: center;
    background: #505b60;
    color: #fff;
    padding: 0.5em 0;
}

footer .footer_copyright a:hover {
    color:#99cc33;
}

footer .footer_copyright .immomig_website:hover {
    color:#B2071B;
}