* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFFFF;
    overflow: visible;
}

.header {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(128.04deg, #F1F0ED 58.68%, #69876C 208.6%);
    overflow: hidden;
    position: relative;
	z-index: 9;
}

.header__nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 42px;
    opacity: 0;
    animation: opacityUp 1s ease-in-out 4.5s forwards;
    visibility: hidden;
}

.nav__container {
    border-top: 1px solid #69876C;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 38px;
}

.bas,
.nav__list li  a {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #69876C;
}

.nav__list li  a {
    text-decoration: none;
}

.nav__list {
    list-style-type: none;
    display: flex;
    gap: 41px;
}

.header__content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, #4A5E4C, #4A5E4C),
        linear-gradient(315.3deg, rgba(74, 94, 76, 0.6) -0.74%, rgba(241, 240, 237, 0.6) 153.36%);
    animation: wh 1s ease-in-out 1.2s forwards;
    position: relative;

    box-shadow: 50px 50px 14px 0px #4A5E4C33;
    border: 1px solid;

    border-image-source: linear-gradient(315.16deg, #354A37 -2.53%, #F1F0ED 113%);
    
    
}

@keyframes wh {
    0% {
        width: 100%;
        height: 100%;
    }
    100% {
        width: 302px;
        height: 302px;
    }
}

.trajan {
    position: absolute;
    z-index: 9;
    left: 9px;
    bottom: 49%;
    animation: moveUpDown 1s ease-in-out 2.5s forwards;
    opacity: 0;
}

@keyframes moveUpDown {
    0% {
        bottom: 49%;
        opacity: 0;
    }
    100% {
        bottom: 12px;
        opacity: 1;
    }
}

.left__title {
    position: absolute;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    color: #FFFFFF;
    right: 0;
    top: -47%;
    transform: translateY(80px);
    opacity: 0;
    font-size: clamp(50px, 5vw, 72px);
    line-height: clamp(50px, 5vw, 72px);
    animation: leftMove 1s ease-in-out 3.5s forwards;
}

.right__title {
    position: absolute;
    font-weight: 600;
    text-align: right;
    text-transform: uppercase;
    color: #FFFFFF;
    transform: translateY(-196px);
    /* left: -2px; */
    right: 0;
    bottom: -47%;
    max-width: 233px;
    font-size: 50px;
    line-height: 50px;
    font-size: clamp(50px, 5vw, 72px);
    line-height: clamp(50px, 5vw, 72px);
    opacity: 0;
    animation: rightMove 1s ease-in-out 4.5s forwards;
}

@keyframes rightMove {
    0% {
        transform: translateY(-196px);
        opacity: 0;
    }
    100% {
        transform: translateY(10px);
        opacity: 1;
    }
}

@keyframes leftMove {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }
    100% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.logo__container {
    position: relative;
    width: 180px;
    height: 180px;
}

.start__logo,
.end__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.end__logo {
    opacity: 0;
    animation: op 1s ease-in-out forwards;
}

.end__logo svg {
    filter: drop-shadow(0px 0px px rgba(0, 0, 0, 0.2));
    animation: fadeShadow 1s ease-in-out 1.5s forwards;
}

@keyframes fadeShadow {
    0% {
        filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.2));
    }
    100% {
        filter: drop-shadow(30px 30px 14px rgba(0, 0, 0, 0.2));
    }
}

.logo__container {
    animation: scaleUp 1s ease-in-out forwards;
    opacity: 1;
}

@keyframes scaleUp {
    0% {
      transform: scale(.55);
    }
    100% {
      transform: scale(1);
    }
}

@keyframes op {
    0% {
      opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
      transform: scale(.55);
    }
    100% {
      transform: scale(1);
    }
}


.manifeste__section {
    position: relative;
    min-height: calc(100vh - 44px);
    margin: 22px;

    background-image: url("./img.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;

    display: flex;
    align-items: center;

    padding-top: 129px;
    padding-bottom: 68px;
}

.bg__logo {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 996px;
    margin: 0 auto;
}

.manifeste__content {
    display: flex;
    gap: 122px;
    min-height: 562px;

    flex-direction: column;
}

.manifeste__h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    /* letter-spacing: -0.05em; */
    text-transform: uppercase;
    color: #69876C;

    margin-bottom: 36px;
}

.manifeste__h2 {
    font-weight: 600;
    font-size: 44px;
    line-height: 110.00000000000001%;
    /* letter-spacing: -0.05em; */
    color: #C9BE8F;

    margin-bottom: 48px;
    width: 100%;
    max-width: 445px;

}

.manifeste__p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    /* letter-spacing: -0.05em; */
    color: #69876C;
}

.manifeste__qoute {
    font-weight: 300;
    font-style: italic;
    font-size: 24px;
    line-height: 140%;
    /* letter-spacing: -0.05em; */
    color: #69876C;
}

.manifeste__author {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    /* letter-spacing: -0.05em; */
    color: #C9BE8F;
}

.manifeste__qoute {
    font-weight: 300;
    font-style: italic;
    font-size: 24px;
    line-height: 140%;
    /* letter-spacing: -0.05em; */

    margin-bottom: 40px;
}

.manifeste__right {
    margin-top: auto;
}

.manifeste__right__content::before {
    content: "";
    border: 1px solid #C9BE8F;
    display: block;
    margin-bottom: 41px;
}




/* expertises*/

.expertises {
    background: linear-gradient(128.04deg, #FFFFFF -29.6%, #F1F0ED 58.68%, #69876C 208.6%);
    position: relative;
}

.expertises::before {
    content: "";
    position: absolute;
    background-image: url("./img2.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    top: 22px;
    left: 22px;
    width: calc(100% - 22px);
    height: calc(100% - 44px);
}

.expertises__content {
    min-height: calc(100vh);
    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}


.expertises__h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    /* letter-spacing: -0.05em; */
    text-transform: uppercase;
    color: #4A5E4C;

    margin-bottom: 36px;
}


.expertises__h2 {
    font-weight: 600;
    font-size: 44px;
    line-height: 110.00000000000001%;
    /* letter-spacing: -0.05em; */
    color: #C9BE8F;

    margin-bottom: 25px;
    width: 100%;
    max-width: 730px;
}

.expertises__top {
    margin-bottom: 61px
}

.expertises__p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    /* letter-spacing: -0.05em; */
    color: #4A5E4C;
    width: 100%;
    max-width: 749px;
}

.expertises__bottom {
    border-top: 1px solid #C9BE8F;
    padding-top: 25px;
    display: flex;
    /* justify-content: space-between; */

    flex-direction: column;
    gap: 50px;
}



.main__list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.left__list {
    list-style-type: none;
    
    font-weight: 400;
    font-size: 28px;
    line-height: 170%;
    /* letter-spacing: -0.05em; */
    color: #4A5E4C;
}

.main__list__item {
    font-weight: 400;
    font-size: 28px;
    line-height: 110%;
    /* letter-spacing: -0.05em; */
    color: #C9BE8F;

    display: flex;
    align-items: flex-start;
    gap: 90px;
	cursor: pointer;
}

.order__text {
	flex: 1;
	text-align: left;
}


.main__list__item__active {
    font-weight: 600;
    color: #69876C;
}


.main__list__item .order {
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    /* letter-spacing: -0.05em; */
    vertical-align: bottom;
	display: block;
    width: 22px;
}


.left__list___item {
    font-weight: 400;
    font-size: 28px;
    line-height: 170%;
    /* letter-spacing: -0.05em; */
    color: #4A5E4C;
}

/* end expertises */

.section__team {
    /* height: 488px; */
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 4;
    overflow: hidden;
}

.section__team img {
    width: 100%;
    /* height: 100%; */
    height: auto;
    /* object-fit: cover; */
    object-fit: contain;
    /* object-position: 100% 6%; */
}

.dd {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: blue;
}

/* associes */

.associes {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
    background-color: #FFFFFF;

    /* only mobile */
    
        padding-top: 96px;
        padding-bottom: 138px;
}

.associes__content {
    flex: 1;
}

.associes__h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    /* letter-spacing: -0.05em; */
    text-align: center;
    text-transform: uppercase;
    color: #4A5E4C;
    margin-bottom: 36px;
}

.associes__h2 {
    font-weight: 600;
    font-size: 44px;
    line-height: 110%;
    /* letter-spacing: -0.05em; */
    text-align: center;
    color: #C9BE8F;
    margin-bottom: 45px;
}

.associes__p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    /* letter-spacing: -0.05em; */
    text-align: center;
    color: #4A5E4C;

    max-width: 975px;
}

.associes__top {
    margin-bottom: 72px;
}

.associes__bottom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;

    padding-left: 22px;
    padding-right: 22px;
}

.associe {
    min-height: 350px;
    position: relative;

    background-color: #ccd2d3;
    overflow: hidden;

    aspect-ratio: 278 / 350;
}


.back__logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    /* opacity: 0; */
    transition: all 0.3s ease-in-out;
}


.associe:hover .back__logo {
    opacity: 1;
}

.associe__img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    height: 100%;
}

.associe__content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(74, 94, 76, 0.7);
    backdrop-filter: blur(34px);
    box-shadow: 0px 4px 4px 0px #4A5E4C4D;
    display: flex;
    align-items: center;
    justify-content: space-between;

    transform: translateY(0px);
    /* transform: translateY(121px); */
    /* transition: all 0.3s ease-in-out; */
    /* opacity: 0; */
}

/* .associe:hover .associe__content {
    opacity: 1;
    transform: translateY(0px);
} */

.associe__content__details {
    padding: 20px 0 19px 21px;
}

.associe__content__media {
    display: flex;
    flex-direction: column;
}

.associe__content__media a {
    padding: 17px;
}

.associe__content__media a:nth-child(1) {
    background-color: #C9BE8F;
}

.associe__content__media a:nth-child(2) {
    background-color: #69876C;
}

.associe__content__details h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    /* letter-spacing: -0.05em; */
    color: #C9BE8F;
    margin-bottom: 3px;
}

.associe__content__details span {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    /* letter-spacing: -0.05em; */
    color: #F1F0ED;
}

/* end associes */


.footer__container {
    background-color: #4A5E4C;
    padding-bottom: 45px;
	position: relative;
    z-index: 4;
}

.footer {
    display: flex;
    /* align-items: center; */
    /* gap: 455px; */
    gap: 50px;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 22px;
    padding-right: 22px;
    flex-direction: column;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    padding: 39px 0;
    gap: 146px;
}

.footer__media__group {
    /* display: flex;
    flex-direction: column; */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 15px;
}

.footer__svg {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    background-color: #D8D2C61A;
}

.media__social {
    display: flex;
    gap: 15px;

    align-items: center;
}

.media__social {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    color: #F1F0ED;
    text-decoration: none;
    position: relative;
}

.line {
    border-top: 1px solid #C9BE8F;
    margin-top: 53px;
    margin-bottom: 41px;
}

.footer__copy__nav {
    display: flex;
    justify-content: space-between;
    align-items: self-start;    
    gap: 51px;
    margin-bottom: 27px;
    flex-direction: column;

    /* align-items: center; */
}

.copy {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    color: #F1F0ED;
}

.mentions,
.politique {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
    color: #F1F0ED;
    text-decoration: none;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    /* gap: 3px; */
    gap: 10px;
}

.by {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
    text-decoration: none;
    color: #F1F0ED4D;
}

.footer__mobile__content {
    width: 100%;
}


/* mobile */

    /* MOBILE FIRST STYLES (default) */
    .mobile-nav-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        display: block;
    }
    
    .mobile-nav-scroll-hint {
        display: none; /* Hidden by default, can enable if needed */
        font-size: 12px;
        color: #666;
        margin-bottom: 8px;
    }
    
    .mobile-nav-trigger {
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px 16px;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1000;
        display: flex;
        align-items: center;
        align-items: center;
        background-color: rgba(74, 94, 76, .3);
/*         border-radius: 45px; */
        color: #FFFFFF;
        gap: 3px;
    }
    
    .mobile-nav-burger {
        display: block;
        width: 20px;
        height: 2px;
        background: #FFFFFF;
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .mobile-nav-burger::before,
    .mobile-nav-burger::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background: #FFFFFF;
        transition: all 0.3s ease;
        right: 0;
    }
    
    .mobile-nav-burger::before {
        top: -6px;
    }
    
    .mobile-nav-burger::after {
        bottom: -6px;
    }
    
    .mobile-nav-drawer {
        position: absolute;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: right 0.3s ease;
        z-index: 999;
        padding: 100px 20px 20px;
        /* visibility: hidden;
        opacity: 0; */
    }
    
    .mobile-nav-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-items li {
        margin-bottom: 20px;
    }
    
    .mobile-nav-items a {
		font-weight: 600;
		font-size: 16px;
		line-height: 100%;
		text-transform: uppercase;
		color: #69876C;
		text-decoration: none;
		width: 100%;
		height: 54px;
		padding: 20px 36px 20px 20px;
		font-size: 30px;
		font-weight: 500;
		display: flex;
		align-items: center;
    }
    
    /* Active states */
    .mobile-nav-trigger[aria-expanded="true"] .mobile-nav-burger {
        background: transparent;
    }
    
    .mobile-nav-trigger[aria-expanded="true"] .mobile-nav-burger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-nav-trigger[aria-expanded="true"] .mobile-nav-burger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .mobile-nav-drawer.active {
        right: 0;
    }
    
    /* TABLET/DESKTOP STYLES - HIDE COMPLETELY */
    @media (min-width: 769px) {
        .mobile-nav-wrapper {
            display: none;
        }
    }

/* end */

.info__details__accossie {
	position: absolute;
    z-index: 99999;
    right: 44px;
    top: -23px;
    align-items: center;
    gap: 0.5px;
    transition: 0.3s;
    padding-top: 5px;
    gap: 3px;
    display: flex;
    flex-direction: column;
    align-items: end;
	opacity: 0;
	visibility: hidden;
}

.associe__media__to__copy {
	position: relative;
}

.info__details__accossie span {
    width: max-content;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background: #C9BE8F;
    z-index: 1;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #fbf7f3;
    transition: opacity 0.3s;
	color: #4A5E4C;
}

.associe__media__to__copy:hover .info__details__accossie {

	opacity: 1;
	visibility: visible;

}


.info__details {
    position: absolute;
    z-index: 99999;
    right: 0;
    top: 36px;
    align-items: center;
    gap: 0.5px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding-top: 5px;
    gap: 0px;
    display: none;
}

.info__details span {
    width: max-content;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background: #C9BE8F;
    z-index: 1;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fbf7f3;
    transition: opacity 0.3s;
	color: #4A5E4C;
}

.media__social:hover .info__details {
    opacity: 1;
    visibility: visible;
}

.contanct__nous__parent {
	position: fixed;
    top: 50%;
	right: -64px;
	display: none;
	z-index: 2;
}

.contanct__nous {
    height: 59px;
    width: 306px;
    border-width: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid;

    border-image-source: linear-gradient(315.16deg, #354A37 -2.53%, #F1F0ED 113%);

    transform: translateY(-50%);

    transform: rotate(-90deg);


    background: linear-gradient(0deg, #4A5E4C, #4A5E4C),
    linear-gradient(315.3deg, rgba(74, 94, 76, 0.6) -0.74%, rgba(241, 240, 237, 0.6) 153.36%);

    box-shadow: -50px 50px 14px 0px #4A5E4C33;


   color: #F1F0ED;



    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;

    text-decoration: none;

}

/* .contanct__nous__mobile {
	    height: 59px;
    width: 306px;
    border-width: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid;

    border-image-source: linear-gradient(315.16deg, #354A37 -2.53%, #F1F0ED 113%);


    background: linear-gradient(0deg, #4A5E4C, #4A5E4C),
    linear-gradient(315.3deg, rgba(74, 94, 76, 0.6) -0.74%, rgba(241, 240, 237, 0.6) 153.36%);

    box-shadow: 50px 50px 14px 0px #4A5E4C33;


   color: #F1F0ED;

	max-width: 306px;

    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;

    text-decoration: none;
} */


.active__modal {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.modal__container {
    background-color: #F5FBFD;
    padding: 30px;
    position: relative;
    height: 78vh;
    overflow-y: scroll;
    width: 643px;
    max-width: 90%;
}

.close__modal {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transform: rotate(45deg);
    display: block;
}

.modal__header {
    display: flex;
    justify-content: flex-end;
}

.modal__container::-webkit-scrollbar {
    width: 5px;
}
.modal__container::-webkit-scrollbar-thumb
 {
    background: #4A5E4C;
}

.modal__container::-webkit-scrollbar-track {
    background: #F1F0ED;
}

.modal__content {
	color: #1D1D1B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;	
}

.modal__content p {
	margin: 10px 0;
}

.modal__content a {
    color: #4A5E4C;
    text-decoration: none;
}




#form-header-title {
  color: #393939;
  font-family: Arial, Verdana, sans-serif;
  font-size: 25px;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
#label-FIRSTNAME_ID {
  color: #393939;
  font-family: Arial, Verdana, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}
#input-FIRSTNAME_ID {
  border: 1px solid #e6e4e4;
  background-color: #f1f1f1;
  height: 35px;
  margin: 5px 0 18px 0;
  font-size: 0.9em;
  padding-left: 5px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: 5px;
  width: 100%;
}
#label-LASTNAME_ID {
  color: #393939;
  font-family: Arial, Verdana, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}
#input-LASTNAME_ID {
  border: 1px solid #e6e4e4;
  background-color: #f1f1f1;
  height: 35px;
  margin: 5px 0 18px 0;
  font-size: 0.9em;
  padding-left: 5px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: 5px;
  width: 100%;
}
#label-EMAIL_ID {
  color: #393939;
  font-family: Arial, Verdana, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}
#input-email {
  border: 1px solid #e6e4e4;
  background-color: #f1f1f1;
  height: 35px;
  margin: 5px 0 18px 0;
  font-size: 0.9em;
  padding-left: 5px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: 5px;
  width: 100%;
}
#label-PHONE_ID {
  color: #393939;
  font-family: Arial, Verdana, sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}
#input-phone {
  border: 1px solid #e6e4e4;
  background-color: #f1f1f1;
  height: 35px;
  margin: 5px 0 18px 0;
  font-size: 0.9em;
  padding-left: 5px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: 5px;
  width: 100%;
}
#form-mandatory {
  font-size: 13px;
  margin-left: 5px;
  font-family: Arial, Verdana, sans-serif;
  color: #393939;
}
input::-webkit-input-placeholder, input:-moz-placeholder, input::-moz-placeholder, input:-ms-input-placeholder, input::-ms-input-placeholder {
  color: #848484;
  opacity: 0.6;
}
select {
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  cursor:pointer;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  select {padding-right:18px}
}
.select-arrow {
  position:relative;
}
.select-arrow:after {
  content:'^';
  font:15px "Consolas", monospace;
  color: #848484;
  -webkit-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -ms-transform:rotate(180deg);
  transform:rotate(180deg);
  right:8px; top:-3px;
  padding:0 0 0px;
  position:absolute;
  pointer-events:none;
}
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-left: 5px;
  margin-right: 6px;
  cursor: pointer;
  font-size: 18px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  border: 1px solid;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  transform: rotate(45deg);
  border-style: solid;
  border-color: #848484;
  border-width: 0 2px 2px 0;
  position: absolute;
}
.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #848484;
  position: absolute;
}
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input:focus {
  outline: solid 1px #736F6F !important;
}
textarea:focus {
  outline: solid 1px #736F6F !important;
}
select:focus {
  outline: solid 1px #736F6F !important;
}
input:disabled,
input[disabled]{
  opacity: 0.2;
  cursor: default;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
}
.loader {
  margin-top: 5px;
  margin-left: 10px;
  font-size: 10px;
  position: relative;
  border: 0.5em solid #919798;
  border-left-color: #3c9f51;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1s infinite linear;
  animation: load8 1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#sb_form {
  background: #ffffff;
  padding: 10px 20px 20px 20px;
  border-radius: 0px;
}
input {
  color: #848484 !important;
}
#div-submitInput {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
#submitInput {
  border-style: solid;
  text-align: center;
  color: #ffffff;
  border-color: #ffffff;
  border-width: 1px;
  border-radius: 5px;
  padding: 10px 25px;
  text-decoration: none;
  display: block;
  font-family: &#x27;Arial&#x27;;
  font-style: inherit;
  font-weight: inherit;
  font-size: 15px;
  background-color:#0595d6;
  cursor: pointer;
  
}
#form-footer-mandatory {
  color: #393939;
  font-family: Arial, Verdana, sans-serif;
  font-size: 12px;
  display: block;
  margin-top: 20px;
}
