@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

a:hover {
    text-decoration: none;
}

::selection {
    color: white;
    background: #152F6B;
}

::-webkit-selection {
    color: white;
    background: #152F6B;
}

::-moz-selection {
    color: white;
    background: #152F6B;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    display: inline-block;
    padding: 5px 0px 0px 13px;
    font-size: 20px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.scrolltotop:hover {
    background: #152F6B;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}


/*-- header area start --*/
.header-wrapper {
    background-image: url(img/hbg.png);
    background-repeat: no-repeat;
    background-position: top right;
}

.header-area {
    padding: 20px 0px;
}

.navbar {
    padding: 0px;
}

.navbar-brand img {
    width: 180px;
}

.main-menu-part ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu-part ul li {
    float: left;
}

.main-menu-part ul li a {
    display: block;
    padding: 0px 5px 0px 15px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    color: #152f6b;
    margin-left: 15px;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.main-menu-part ul li a:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0ADDBD;
    border-radius: 50%;
    bottom: -10px;
    left: 50%;
    opacity: 0;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.main-menu-part ul li a.menu-active:after {
    opacity: 1;
}

.main-menu-part ul li a:hover:after {
    opacity: 1;
}

.main-menu-part ul li a.menu-active {
    color: #000;

}

.main-menu-part ul li:nth-child(5) a {
    background: #0ADDBD;
    padding: 0px 25px;
    border-radius: 38px;
    color: #fff;
    height: 40px;
    padding-top: 8px;
    margin-top: -8px;
}

.main-menu-part ul li:nth-child(5) a:after {
    content: none;
}

.main-menu-part ul li:nth-child(5) a:hover {
    opacity: .7;
    color: #fff;
}

.main-menu-part ul li:nth-child(6) a {
    background: #152F6A;
    padding: 0px 25px;
    border-radius: 38px;
    color: #fff;
    height: 40px;
    padding-top: 8px;
    margin-top: -8px;
}

.main-menu-part ul li:nth-child(6) a:after {
    content: none;
}

.main-menu-part ul li:nth-child(6) a:hover {
    color: #fff;
    opacity: .7;
}


.main-menu-part ul li a:hover {
    color: #152F6A;
}

.hamburger {
    padding: 0px 0px 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    outline: 0px !important;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}


.home-header-wrapper p {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 0;
}

.home-header-wrapper p span {
    color: #0BDEBE;
}

.home-header-wrapper h4 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.37;
    letter-spacing: 0.3px;
    color: #0bddbf;
    margin-bottom: 0;
}

.home-header-wrapper h4.home-h-c-one {
    margin-top: 50px;
}

.home-header-wrapper span.home-dot {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #0addbe;
    border-radius: 50%;
    margin: 25px 0;
}

.home-header-wrapper a {
    display: inline-block;
    font-size: 18px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #0addbe;
    border-radius: 25px;
    background-color: #aeffea;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    padding: 8px 30px;
}

.home-header-wrapper a:hover {
    opacity: .7;
}

.home-header-contant {
    padding-top: 60px;
    padding-bottom: 176px;
}

/*-- header area end --*/

/*-- home-les area start --*/
.home-les-wrap {
    background-color: #ADFFE9;
    border-radius: 10px;
    padding: 100px 0;
}

.home-les-heading {
    width: 1367px;
    padding-left: 128px;
    margin: 0 auto;
}

.home-les-heading h2 {
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
}

.home-les-heading span#circel {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #0bddbf;
    border-radius: 50%;
    margin: 20px 0;
}

.home-les-heading p {
    font-size: 20px;
    font-weight: 500;
    color: #2e7268;
    margin-bottom: 0;
    opacity: 0.5;
}

.home-les-list-one {
    background: #fff;
    padding: 60px 25px;
    padding-bottom: 30px;
    box-shadow: 0 2px 30px 0 #0addbe;
    border-radius: 10px;
    margin-top: 30px;
    min-height: 511px;
}

.home-les-list-one img {
    height: 165px;
}

.home-les-list-one h5 {
    font-weight: bold;
    color: #152f6b;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.home-les-list-one p {
    font-size: 20px;
    color: #8696ab;
    margin-bottom: 0;
}

.home-les-cont {
    padding: 0px 50px;
    margin-top: 110px;
}

.home-les-cont h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
}

.home-les-cont h3 span {
    color: #0BDEBE;
}

.home-les-cont a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #0addbe;
    background: #fff;
    padding: 10px 40px;
    border-radius: 38px;
    margin-top: 20px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.home-les-cont a:hover {
    opacity: .7;
}

/*-- home-les area end --*/


/*-- home-nous area start --*/
.home-nous-heading p {
    font-size: 20px;
    color: #0addbe;
    font-weight: 600;
    margin-top: 20px;
}

.home-nous-heading {
    margin-bottom: 142px;
}

.home-nous-heading h3 {
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
}

.home-nous-heading span {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #0addbe;
    margin: 0 auto;
    border-radius: 50%;
    margin-top: 10px;
}

.home-nous-one img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.home-nous-two h5 {
    font-weight: 600;
    color: #0ADDBE;
    font-size: 20px;
}

.home-nous-two h4 {
    color: #152F6B;
    font-weight: 600;
}

.home-nous-two > span {
    display: block;
    width: 20px;
    height: 20px;
    background: #0ADDBE;
    border-radius: 50%;
    margin: 20px 0px;
}

.home-nous-two p {
    color: #8696ab;
    font-size: 20px;
}

.home-nous-list {
    margin: 120px 0;
}

.home-nous {
    padding: 120px 0;
    padding-bottom: 25px;
}

/*-- home-nous area end --*/


/*-- home-offer area start --*/
.home-offer-wrap {
    background: #152F6B;
    padding: 120px 0;
    border-radius: 10px;
}

.home-offer-heading h6 {
    font-size: 20px;
    color: #0addbe;
}

.home-offer-heading h3 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.29;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.home-offer-heading > span {
    display: block;
    width: 20px;
    height: 20px;
    background: #0ADDBE;
    border-radius: 50%;
    margin: 15px 0px;
}

.home-offer-heading p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    opacity: .5;
}

.home-offer-one {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 2px 30px 0 #061043;
    height: 460px;
}

.home-offer-one-contant img {
    position: relative;
    top: -20px;
    height: 105px;
}

.home-offer-one-contant h6 {
    font-size: 16px;
    font-weight: bold;
    color: #152F6B;
    margin-bottom: 20px;
}

.home-offer-one-contant p {
    font-size: 16px;
    color: #8696ab;
    height: 170px;
}

.home-offer-one-contant a {
    display: block;
    color: #0addbe;
    font-weight: 500;
    border-radius: 25px;
    background-color: #aeffea;
    font-size: 18px;
    padding: 10px 0px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.home-offer-one-contant a:hover {
    opacity: .7;
}

.home-offer-one-contant a.home-2nd {
}

.home-offer-one-contant a.home-1st {
}

/*-- home-offer area end --*/


/*-- home-seul area start --*/
.home-seul {
    padding: 136px 0px;
}

.home-seul-wrapper h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.29;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 0;
}

.home-seul-wrapper > span {
    display: block;
    width: 20px;
    height: 20px;
    background: #0ADDBE;
    border-radius: 50%;
    margin: 25px auto;
    margin-bottom: 0;
}

/*-- home-seul area end --*/


/*-- home-nous area start --*/
.home-avec-wrap {
    background: #AEFFEA;
    border-radius: 10px;
    padding: 150px 0px;
    margin-bottom: 30px;
}

.home-avec-heading h2 {
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
}

.home-avec-heading > span {
    display: block;
    width: 20px;
    height: 22px;
    background-color: #07e2a3;
    border-radius: 50%;
    margin-top: 15px;
}

.home-avec-heading h6 {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #2e7268;
    opacity: .5;
    margin-top: 5px;
}

.home-avec-one {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 30px 0 #0addbe;
    margin-top: 30px;
    min-height: 460px;
    padding: 42px;
    padding-top: 25px;
}

.home-avec-one table img {
    display: block;
    width: 140px;
    height: 140px;
}

.home-avec-one table td h3 {
    padding-left: 5px;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2px;
    color: #152f6b;
    margin-bottom: 0;
}

.home-avec-one p {
    font-size: 15px;
    line-height: 1.67;
    color: #8696ab;
    height: 175px;
}

.home-avec-one-link a {
    color: #0addbe;
    display: inline-block;
    background: #aeffea;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 12px 40px;
    border-radius: 25px;
    margin-top: 15px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.home-avec-one-link a:hover {
    opacity: .7;
}


/*-- home-nous area end --*/


/*-- footer area start --*/
.footer {
    background: #152F6B;
    padding-top: 70px;
    padding-bottom: 100px;
}

.footer-left-logo a img {
    display: block;
    margin-bottom: 40px;
    width: 150px;
    margin-top: 20px;
}

.footer-left-contant p.footer-heading {
    margin-bottom: 35px;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 0.1px;
    color: #ffffff;
}

.footer-left-contant ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-left-contant ul li {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-left-contant ul li p span {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 26px;
}

.footer-right ul li a {
    margin-top: 20px;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0.1px;
    color: #ffffff;
}

.footer-right ul li a:hover {
    color: #ddd;
}


/*
========================
19_inscription-pharmacies page start
========================
*/

/*-- main-insc area start --*/

.main-insc {
    background-image: url(../../img/Background.png);
    background-repeat: repeat;
    background-position: top;
    background-size: contain;
}

/*-- main-insc area end --*/


/*-- inp-header area start --*/

.inp-heading h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 0;
    line-height: 1.33;
}

.inp-heading {
    margin-top: 28px;
}

/*-- inp-header area end --*/


/*-- inp-id area start --*/
.inp-id {
    margin-top: 70px;
    padding-bottom: 60px;
}

.inp-id-contant h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 20px;
}

.inp-id-contant > span {
    display: block;
    width: 15px;
    height: 15px;
    background-color: #07e2a3;
    border-radius: 50%;
}

.inp-form-contact input {
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 27.5px;
    border: solid 2px #0addbe;
    background-color: #ffffff;
    padding-left: 30px;
    margin-bottom: 16px;
}

.inp-form-contact input::placeholder {
    font-size: 16px;
    color: #8696ab;
}


.inp-form-one input {
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 27.5px;
    border: solid 2px #0addbe;
    background-color: #ffffff;
    padding-left: 30px;
    margin-top: 20px;
}

.inp-form-one input::placeholder {
    font-size: 16px;
    color: #8696ab;
}

/*-- inp-id area end --*/


/*-- inp-info area start --*/

.inp-info-wrapper {
    border-radius: 10px;
    background-color: #aeffea;
    padding: 55px 0;
}

.inp-info-contant h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 20px;
}

.inp-info-contant > span {
    display: block;
    width: 15px;
    height: 15px;
    background-color: #07e2a3;
    border-radius: 50%;
}

.inp-info-one-left input,
.inp-info-two-left input {
    display: block;
    width: 100%;
    border-radius: 27.5px;
    border: solid 3px #ffffff;
    background-color: #ffffff;
    height: 55px;
    padding-left: 30px;
    margin-top: 25px;
}

.inp-info-one-left input::placeholder,
.inp-info-two-left input::placeholder {
    font-size: 16px;
    letter-spacing: normal;
    color: #8696ab;

}


.inp-info-two-right button {
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 25px;
    background-color: #0addbe;
    border: none;
    outline: none;
    margin-top: 25px;
    border: solid 3px #0addbe;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #ffffff;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.inp-info-two-right button:hover {
    opacity: .7;
}

/*-- inp-info area end --*/


/*-- inp-de area start --*/

.inp-de-wrapper h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 20px;
}

.inp-de-wrapper > span {
    display: block;
    width: 15px;
    height: 15px;
    background-color: #07e2a3;
    border-radius: 50%;
}

.inp-de-one input {
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 27.5px;
    border: solid 2px #0addbe;
    background-color: #ffffff;
    padding-left: 30px;
    margin-top: 20px;
}

.inp-de-one input::placeholder {
    font-size: 16px;
    letter-spacing: normal;
    color: #8696ab;
}

.inp-de {
    margin: 55px 0;
}

/*-- inp-de area end --*/


/*-- inp-coment area start --*/

.inp-coment-wrapper h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 35px;
}

.inp-crb-area {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #8696ab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.inp-crb-area input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


.inp-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid #cbd4e1;
}


.inp-crb-area input:checked ~ .inp-checkmark {
    background-color: #fff;
    border: 3px solid #0addbe;
}

.inp-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.inp-crb-area input:checked ~ .inp-checkmark:after {
    display: block;
}


.inp-crb-area .inp-checkmark:after {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0addbe;
}

.inp-coment-left {
    margin-bottom: 25px;
}

/*-- inp-coment area end --*/


/*-- inp-np area start --*/

.inp-np {
    padding: 30px 0px 60px 0;
}

.inp-np-contant ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.inp-np-contant ul li {
    display: inline-block;
}

.inp-np-contant ul li a {
    display: inline-block;
    width: 230px;
    height: 50px;
    border-radius: 25px;
    background-color: #aeffea;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #0addbe;
    padding-top: 11px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.inp-np-contant ul li a:hover {
    opacity: .7;
}

/*-- inp-np area end --*/


/*
========================
19_inscription-pharmacies page end
========================
*/


/*
========================
20_lnscription-laboratoires start
========================
*/
.inl-info-input input::placeholder,
.inl-de-two input::placeholder {
    font-size: 16px;
    color: #8696ab;
}

.inl-de-two select {
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 27.5px;
    border: solid 2px #0addbe;
    background-color: #ffffff;
    padding-left: 30px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-top: 20px;
    font-size: 16px;
    color: #8696ab;
    background-image: url(../../img/plo.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: right 20px top 20px;
}

/*
========================
20_lnscription-laboratoires end
========================
*/


/*
========================
37_log-in page start
========================
*/


.log-in {
    width: 545px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 2px 24px 0 rgba(23, 152, 108, 0.5);
    background-color: #ffffff;
}

.log-in-contant {
    padding: 30px 100px 20px 100px;
}

.log-in-contant h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 25px;
}

.log-in-contant input {
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 27.5px;
    border: solid 2px #0addbe;
    background-color: #ffffff;
    padding-left: 30px;
    margin-bottom: 20px;
}

.log-in-contant input::placeholder {
    font-size: 16px;
    color: #152f6b;
}

.log-in-contant input.log-last {
    border: 2px solid #aeffea;
}

.log-input input::placeholder {
    color: #8696ab;
}

/* The container */
.log-box {
    display: block;
    font-size: 16px;
    color: #8696ab;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    opacity: 0.41;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.log-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.logmark {
    position: absolute;
    top: 5px;
    left: 12px;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #979797;
}

/* On mouse-over, add a grey background color */
.log-box:hover input ~ .logmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.log-box input:checked ~ .logmark {
    background-color: #fff;
    border: 1px solid #979797;
}

/* Create the checkmark/indicator (hidden when not checked) */
.logmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.log-box input:checked ~ .logmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.log-box .logmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #0addbe;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.log-label {
    margin-left: 26px;
}

.log-in-contant button {
    display: block;
    width: 210px;
    height: 50px;
    border-radius: 25px;
    background-color: #aeffea;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #0addbe;
    margin: 20px auto;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;

}

.log-in-contant button:hover {
    opacity: .7;
}

.log-forget a {
    display: inline-block;
    font-size: 16px;
    color: #8696ab;
    opacity: 0.41;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.log-forget a:hover {
    opacity: .8;
}


/*
========================
37_log-in page end
========================
*/


/*========================
38_profil page  start
========================*/

/*-- profil area start --*/

.profil-heading h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #152f6b;
    margin-bottom: 0;
    line-height: 1.33;
}

.profil-heading {
    margin-top: 35px;
}

.profil-contant {
    margin-top: 50px;
}

.profil-one {
    height: 390px;
    border-radius: 10px;
    box-shadow: 0 2px 24px 0 #aeffea;
    background-color: #ffffff;
    overflow: hidden;
    padding: 0px 20px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.profil-one:hover {
    background-color: #aeffea;
}

.profil-one img {
    display: block;
    width: 90px;
    height: 94px;
    margin: 40px auto;
}

.profil-one h4 {
    font-size: 16px;
    line-height: 1.38;
    font-weight: bold;
    color: #152f6b;
    margin-bottom: 30px;
}

.profil-one p {
    font-size: 16px;
    line-height: 1.38;
    color: #8696ab;
}

.profile-link a {
    display: block;
    width: 210px;
    height: 50px;
    border-radius: 25px;
    background-color: #aeffea;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: center;
    color: #0addbe;
    margin-top: 50px;
    padding-top: 12px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.profile-link a:hover {
    opacity: .7;
}

.profile-link {
    margin-bottom: 50px;

}

/*-- profil area end --*/


/*========================
38_profil page  end
========================*/


/*========================
39_landing page  start
========================*/


/*========================
39_landing page  end
========================*/


/*
========================
Reset Password
========================
*/
.reset-title {
    color: #1B366B;
}

.log-in-contant .btn {
    display: block;
    width: 210px;
    height: 50px;
    border-radius: 25px;
    background-color: #aeffea;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #0addbe;
    margin: 20px auto;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    padding-top: 10px !important;
}

.log-in-contant .btn:hover {
    opacity: .7;
}

.link-check-email {
    color: #aeffea
}