@font-face {
    font-family: 'Plain-Regular';
    src: url('/fonts/Plain-Regular.woff2') format('woff2'),
        url('/fonts/Plain-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Plain-Light';
    src: url('/fonts/Plain-Light.woff2') format('woff2'),
        url('/fonts/Plain-Light.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Plain-Bold';
    src: url('/fonts/Plain-Bold.woff2') format('woff2'),
        url('/fonts/Plain-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
.img-2
{
  width: 96%;
  margin-top: -27%;
  margin-left: -12%;
}
.IMG-1
{
    width: 27%;
    margin-top: -3%;
    margin-left: 1%;
}
.fa {
  padding: 20px;
  font-size: 26px;
  width: 60px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 30px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;

}
.fa-google {
  background: #df4b38;
  color: white;

}
.google
{
  padding: 20px;
  padding-top: 1%;
  font-size: 28px;
  width: 60px;
  height: 60px;
  background-color: #df4b38;
  text-align: center;
  text-decoration: none;
  margin-top: -18.5%;
  margin-left: 21%;
  border-radius: 30px;

}


:root {
  --primary-color:        #057a8d;
  --secondary-color:      #3f4257;
  --white-color:          #ffffff;
  --dark-color:           #df4b38;
  --project-bg:           #f0f8ff;
  --menu-bg:              #0c8195;

  --title-color:          #df4b38;
  --gray-color:           #000000;
  --link-color:           #3f4257;
  --p-color:              #3f4257;

  --base-font-family:     'Plain-Light', sans-serif;
  --title-font-family:    'Plain-Regular', sans-serif;
  --font-bold-family:     'Plain-Bold', sans-serif;
  --font-weight-bold:     bold;

  --h1-font-size:         42px;
  --h2-font-size:         32px;
  --h3-font-size:         24px;
  --p-font-size:          14px;
  --base-font-size:       16px;
  --menu-font-size:       14px;

  --border-radius-large:  100px;
  --border-radius-small:  5px;
}

body {
  background: #edf2f6;
  font-family: var(--base-font-family);
 overflow-x: hidden;
}
/*--------------------LOGIN FORM-----------------------*/
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px; }
.control .caption {
      position: relative;
      top: .2rem;
      color: white; }

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0; }

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border-radius: 4px; }

.control--radio .control__indicator {
    border-radius: 50%; }

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: white; }

.control input:checked ~ .control__indicator {
    background: #df4b38; }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #847dff; }

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.9;
    pointer-events: none; }

.control__indicator:after {
    font-family: 'icomoon';
    content: '\e5ca';
    position: absolute;
    display: none;
    font-size: 16px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }

  .control input:checked ~ .control__indicator:after {
    display: block;
    color: #fff; }

  .control--checkbox .control__indicator:after {
    top: 50%;
    left: 50%;
    margin-top: -1px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

  .control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #0000; }

  .control--checkbox input:disabled:checked ~ .control__indicator {
    background-color: #df4b38;
    opacity: .2; }
    .content .bg {
      background-size: cover;
      background-position: center; }
    .content .btn {
      height: 54px;
      padding-left: 30px;
      padding-right: 30px; }

    .content .forgot-pass {
      position: relative;
      top: 2px;
      font-size: 14px;
    color:#3B5998; }
/*---------------------------------------
   TYPOGRAPHY
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  /* font-family: var(--title-font-family); */
  line-height: inherit;
}

h1 {
  color: var(--title-color);
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: 100;
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: 100;
  margin-bottom: 0;
}

h4 {
  color: var(--gray-color);
  font-family: var(--base-font-family);
  font-size: var(--p-font-size);
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  line-height: 1.5em;
}

b,
strong {
  letter-spacing: 0;
  color: var(--secondary-color);
}

/*---------------------------------------
   GENERAL
-----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: var(--secondary-color);
  outline: none;
  text-decoration: none;
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding: 6em 0;
}
.section-padding-half {
  padding: 2em 0;
}

.google-map iframe {
  display: block;
  width: 100%;
}

/*---------------------------------------
   FOOTER
-----------------------------------------*/

.site-footer {
  background: var(--dark-color);
  padding: 7em 0 6em 0;
}

.site-footer a {
  color: var(--p-color);
}

.site-footer a:hover,
.footer-icon {
  color: var(--secondary-color);
}

.footer-link li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}

.copyright-text,
.footer-link,
.site-footer .social-icon {
  margin-top: 6em;
}

.copyright-text {
  margin-top: 5.3em;
}



/*---------------------------------------
   SOCIAL ICON
-----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 4em 0 0 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  text-decoration: none;
  display: inline-block;
  font-size: var(--base-font-size);
  margin: 10px;
  text-align: center;
}



/*---------------------------------------
   RESPONSIVE STYLES
-----------------------------------------*/

@media screen and (min-width: 1200px) {

  .about-info h2 {
    max-width: 70%;
  }
}

@media screen and (min-width: 991px) {

  .project h2 {
    max-width: 32%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 991px) {

  .hero {
    padding-top: 14em;
  }

  .hero-text {
    bottom: 2em;
  }

  .navbar {
    padding: 1em;
  }

  .navbar-collapse {
    text-align: center;
    padding: 2.5em 0;
  }

  .nav-link {
    display: inline-block;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact {
    margin: 1em 0;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 3em;
    padding: 0;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .project-info {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .section-padding{
    width: 100%;
  } 
  .footer-link,
  .site-footer .social-icon {
    margin-top: 1em;
  }

  .copyright-text {
    margin: 2.5em 0 1em 0;
  }

  .footer-link li {
    margin-left: 0;
  }
}

.btn
{
  background-color: #df4b38;
  color: black;
  width: 100%;
  height: 14%;
}
@media (max-width: 991.98px) {
        .content .bg {
          height: 500px; }
        .IMG-1
      {
        width: 80%;
        margin-top: -10%;
      }
      .img-2
      {
        margin-top: -18%;
        margin-left: -1%;
      }

    }

      .content .contents, .content .bg {
        width: 50%; }
@media (max-width: 1199.98px) {
.content .contents, .content .bg {
            width: 100%; } }
.content .contents .form-group, .content .bg .form-group {
          overflow: hidden;
          margin-bottom: 0;
          padding: 15px 15px;
          border-bottom: none;
          position: relative;
          background: #edf2f5;
          border-bottom: 1px solid #e6edf1; }
.content .contents .form-group label, .content .bg .form-group label {
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease; }
.content .contents .form-group input, .content .bg .form-group input {
            background: transparent; }
.content .contents .form-group.first, .content .bg .form-group.first {
            border-top-left-radius: 7px;
            border-top-right-radius: 7px; }
.content .contents .form-group.last, .content .bg .form-group.last {
            border-bottom-left-radius: 7px;
            border-bottom-right-radius: 7px; }
.content .contents .form-group label, .content .bg .form-group label {
            font-size: 12px;
            display: block;
            margin-bottom: 0;
            color: #b3b3b3; }
.content .contents .form-group.focus, .content .bg .form-group.focus {
            background: #fff; }
.content .contents .form-group.field--not-empty label, .content .bg .form-group.field--not-empty label {
            margin-top: -20px; }
.content .contents .form-control, .content .bg .form-control {
          border: none;
          padding: 0;
          font-size: 14px;
          border-radius: 0; }
.content .contents .form-control:active, .content .contents .form-control:focus, .content .bg .form-control:active, .content .bg .form-control:focus {
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none; }

.content .bg {
        background-size: cover;
        background-position: center; }

.content a {
        color: #ffff;
        }

.content .btn {
        height: 54px;
        padding-left: 30px;
        padding-right: 30px; }
.content .forgot-pass {
        position: relative;
        top: 2px;
        font-size: 14px; }
.forgot-pass:hover{
  text-decoration: underline;
}
.join_now:hover{
  text-decoration: underline;
}

#landing-page-logo {
  margin-top: 7px !important;
  margin-left: 92px !important;
}

.illustration-img {
  margin-left: -5% !important;
  margin-top: 55px !important;
  width: 96% !important;
}

#landing-img {
  margin-top: -2% !important;
  width: 90% !important;
}

.sign-in-title {
  color: #df4b38 !important;
}

.input-fields {
  background-color: white !important;
}

.password-group {
  position: relative !important;
}

.toggle-eye {
  cursor: pointer !important;
  font-size: 18px !important;
  color: #000000 !important;
}
#togglePassword span i{
  font-size: 18px !important;
}

.form-check-label {
  color: #3b5998 !important;
}

.forgot-pass {
  color: #3B5998 !important;
}

.sign-in-btn {
  margin-top: -4% !important;
  color: #fff !important;
}

.new-to-palsome {
  color: darkgray !important;
}

.join-now {
  color: #3b5998 !important;
}
.join-now:hover {
  text-decoration: underline !important;
}

#contentMain{
  margin-left: 5% !important;
}
#close_icon{
  width: 14px !important; height: 14px !important;
}
