@import url('../avant-garde-gothic-pro/itc-avantgardepro.css');

:root {
  --color-black: #000;
  --color-white: #fff;
  --theme-color: #00919a;
  --text-sky-blue: #0795F5;
  --light-black: #21232D;
  --light-border-black: #21232D;
  --light-gray: #525252;
  --para-text: #848484;
  --test-black: #444343;
  --faq-bg-black: #0E0E0E;
  --footer-bg-black: #1A1A1A;
  --color-footer-text: #888;

}

body {
  font-family: 'ITC Avant Garde Gothic Pro Book';
  overflow-x: hidden;
  font-style: normal;
  font-size: 16px;
  color: #000;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'ITC Avant Garde Gothic Pro Book';
  font-weight: normal;
  /*color: var(--color-white);*/
  color:#515656;
  margin: 0;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
}

ul {
  padding-left: 0px;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: #000;
  outline: medium none;
  cursor: pointer;
}

.btn-full:hover {
  background: transparent;
  color: #26469c;
  border-color: #26469c;
  border: 1px solid #26469c;
}

a:hover {
  color: #26469c;
}

p {
  color: var(--para-text);
  font-family: 'ITC Avant Garde Gothic Pro Book';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  margin: 0;
}

button {
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  display: inline-block;
}

html {
  overflow-x: hidden;
}

::selection {
  background: #26469c;
  color: #fff;
  text-shadow: none;
}

section {
  padding: 20px 0;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 4px 6px 10px #3d81383b; 
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown1;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown1;
}

@keyframes fadeInDown1 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0)
  }
}

.dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 170px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
        }
        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }

.main-btn {
  font-weight: 500;
  padding: 10px 14px;
  line-height: 1.5;
  border-radius: 25px;
  border: 1px solid #000;
  z-index: 9;
  display: inline-flex;
  font-weight: 300;
  font-style: normal;
  font-family: "ITC Avant Garde Gothic Pro Md", sans-serif;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  overflow: hidden;
  position: relative;
}

.btn-orange::before {
  content: '';
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #f5f5f1;
  transition: .5s ease;
  display: block;
  z-index: -1;
  color: #fff;
}

.btn-orange:hover::before {
  width: 105%;
}

.btn-orange:hover {
  color: #111;
}

.btn-orange {
  background: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-color);
}

.btn-orange:hover {
  background: #fff;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.outline-btn {
  font-weight: 500;
  padding: 10px 14px;
  line-height: 1.5;
  border-radius: 25px;
  border: 1px solid #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  overflow: hidden;
  position: relative;
  color: #000;
  z-index: 1;
}

.outline-btn::before {
  content: '';
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--theme-color);
  transition: .5s ease;
  display: block;
  z-index: -1;
  color: #fff;
}

.outline-btn:hover::before {
  width: 105%;
}

.outline-btn:hover {
  color: #fff;
  border: 1px solid var(--theme-color);
}
.collapse .outline-btn i{
  margin-right: 5px;
}


.light-black-btn {
  background-color: var(--light-black);
  border: 1px solid var(--light-border-black);
}

.light-black-btn:hover {
  background: var(--light-black);
  color: var(--light-black);
  border: 1px solid var(--light-black);
}

.normal-btn {
  color: var(--theme-color);
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;

}

.normal-btn:hover {
  color: var(--theme-color);
}

/* .main-btn:hover {
  background: var(--color-white);
  color: var(--theme-color);
} */

.white-btn {
  background-color: #fff;
  color: #26469c;
}

.white-btn:hover {
  background-color: #fff;
  color: #26469c;
}

.button-area {
  display: flex;
  align-items: center;
  height: 100%;
}



.sub-title .tagline {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #26469c;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sub-title .tagline::after {
  content: '';
  width: 30px;
  height: 1px;
  background: #26469c;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 1;
  margin-left: 10px;
  margin-top: 0;
}

.title {
  position: relative;
  margin: 0;
  font-weight: 700;
  color: #000;
  text-align: center;
  font-family: 'ITC Avant Garde Gothic Pro Md';
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.title-desc {
  padding: 25px 0px 0px 0px;
}

.main-title {
  font-size: 128px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-text-stroke: 1px var(--light-gray);
  color: transparent;
}

.title-section {
  /*margin-bottom: 30px;*/
}

.list-section ul li {
  padding: 5px 0;
}

.list-section ul li i {
  margin-right: 5px;
  color: #27489f;
}

.list-section .list-text {
  font-size: 16px;
}

.dark-btn {
  background-color: #32343b;
}

.dark-black {
  background: var(--color-black);
}

.heading {
  color: var(--theme-color);
  font-family: Metrisch;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.read-btn {
  color: var(--text-sky-blue);
  font-family: Metrisch;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.read-btn:hover {
  color: var(--theme-color);
}

.read-btn-green {
  color: var(--theme-color);
  font-family: Metrisch;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.read-btn-green:hover {
  color: var(--text-sky-blue);
}

.heading-section {
  margin-bottom: 30px;
}

/* header section */
.header-section {
  position: relative;
}

.header-section .navbar {
  background-color:#d8e9e5;
  color: var(--color-black);
  /*height: 80px;*/
  padding: 10px 0px;
}

.header-section .navbar .navbar-nav .nav-item .nav-link {
  color: var(--color-black);
}

.header-section .navbar .navbar-nav .nav-item .nav-link {
  color: var(--color-black);
  font-family: Metrisch;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  padding: 0 20px;
  position: relative;
}

/* .header-section .navbar-brand.main-logo div {
  min-height: 75px;
  height: 75px;
  display: flex;
} */

.header-section .navbar .d-flex .main-btn:hover {
  color: var(--theme-color);
}



.header-section .navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--theme-color);
}

.header-section .navbar .navbar-nav>.nav-item>a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  border-radius: 20px;
  content: "";
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: var(--theme-color);
}

.header-section .navbar .navbar-nav>.nav-item:hover>a:before {
  right: auto;
  left: 50%;
  width: 70%;
  transform: translate(-50%, 0);
}

.header-section li.nav-item {
  position: static;
  display: inline-block;
  padding: 0px 0px;
  font-weight: 600;
}

.header-section .btn-area-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-area-top li {
  width: 40px;
  height: 40px;
  display: flex;

}

/* header section */
textarea {
  resize: none;
}

/* banner-section*/
.banner-section {
  /*background: url(../images/banner-bg.png);*/
  background-position: center;
  background-size: contain;
  background-repeat: repeat-x;
  position: relative;
  /*padding: 30px 0px 90px 0;*/
}

.banner-section .row {
  position: sticky;
}

.banner-section .mainbanner-bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: auto;
}

.banner-section .banner-left .banner-content h5 {
  color: #000;
  font-family: 'Robert', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.banner-section .banner-left .banner-content h1 {
  color: #000;
  text-align: center;
  font-family: 'ITC Avant Garde Gothic Pro Md';
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.banner-section .banner-left .banner-content p {
  color: #A9A5A5;
  font-family: 'Robert', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.banner-section .banner-left .banner-content .btn-area {
  margin-top: 20px;
}

.banner-section .banner-right .banner-img {
  padding: 0 20px;
  width: 80%;
  margin: auto;
}

.search-wrapper {
  /* width: 450px;
  margin: 150px auto 50px auto;
  border-radius: 40px;
background: transparent;
  box-shadow: 0 4px 20px -2px #e9e9e9; */
  position: relative;
  width: 440px;
  margin: auto;

}

.banner-input-sec {
 /* margin-top: 20px; */
}

/* Form text input */

.search-wrapper input {
  padding-left: 20px;
  width: 100%;
  height: 52px;
  padding: 10px 5px;
  float: left;
  font-size: 14px;
  border: 0;
  background: #fff;
  border-radius: 40px;
  border-top-style: none;
  border: 1px solid #000;
}
/*
.search-wrapper select {
  padding-left: 20px;
  width: 100%;
  height: 52px;
  padding: 10px 5px;
  float: left;
  font-size: 14px;
  border: 0;
  font-weight: 300;
  font-style: normal;
   font-family: "ITC Avant Garde Gothic Pro Md", sans-serif;
  background: #fff;
  border-radius: 40px;
  border-top-style: none;
  border: 1px solid #000;
}
*/
.search-wrapper select {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    font-size: 15px;
    font-family: "ITC Avant Garde Gothic Pro Md", sans-serif;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: linear-gradient(45deg, transparent 50%, #333 50%), 
                      linear-gradient(135deg, #333 50%, transparent 50%);
    background-position: calc(100% - 20px) center, calc(100% - 15px) center;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;

    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-wrapper select:hover {
    border-color: #bbb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.search-wrapper select:focus {
    outline: none;
    border-color: #ff6f00;
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.2);
}

.search-wrapper select option {
    font-size: 15px;
    padding: 10px;
    background: #fff;
}




.search-wrapper input:focus {
  outline: 0;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8) inset;
}

.search-wrapper input::-webkit-input-placeholder {
  color: #999;
  font-weight: normal;
  font-style: italic;
  padding-left: 20px;
}

.search-wrapper input:-moz-placeholder {
  color: #999;
  font-weight: normal;
  font-style: italic;
}

.search-wrapper input:-ms-input-placeholder {
  color: #999;
  font-weight: normal;
  font-style: italic;
  border-style: none;
}


/* Form submit button */
.search-wrapper button {
  background: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-color);
  float: right;
  padding: 10px 20px;
  border-radius: 61px;
}

.search-wrapper button {
  overflow: visible;
  position: absolute;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 40px;
  width: 110px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background: #198cff;
  border-radius: 40px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
  right: 10px;
  top: 10px;
  transform: translate(0px, 0%);
}

.search-wrapper button:hover {
  /*     background: #e54040; */
}

.search-wrapper button:active,
.search-wrapper button:focus {
  background: #198cff;
  outline: 0;
}

.search-wrapper button:focus:before,
.search-wrapper button:active:before {
  border-right-color: #c42f2f;
}

.search-wrapper button::-moz-focus-inner {
  /* remove extra button spacing for Mozilla Firefox */
  border: 0;
  padding: 0;
}

.search-wrapper>input[type='file'] {
  display: none;
}

.search-wrapper label span {
  background: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-color);
  padding: 10px 15px;
  border-radius: 62px;
}

.search-wrapper>label {
  color: hsl(204, 86%, 53%);
  border-color: hsl(204, 86%, 53%);
}

.search-wrapper>label {
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  outline: 0;
  user-select: none;
  border-radius: 58px;
  border: 1px solid #000;
  background-color: transparent;
  color: #938E8E;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#pcategories
{
  /*padding-right:8px;*/
  background-position: calc(100% - 20px) center;
}


.show-password-btn {
  position: absolute;
  top: 50%;
  right: 10px; 
  transform: translateY(-50%); 
  background: none;
  border: none;
  cursor: pointer;
  color: #000; 
  font-size: 18px; 
  z-index: 1; 
}



#snackbar {
  visibility: hidden; 
  min-width: 250px;
  margin-left: -125px; 
  background-color: #ff6700;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%; 
  top: 30px;  
  font-size: 17px; 
}

#snackbar.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 4.5s; 
}

/* banner-section*/
/* categories-section*/
.categories-section .categories-box {
  position: relative;
}

.categories-section .categories-inner .categories-box {
  position: relative;
}

.categories-section .categories-inner .categories-box {
  border-radius: 36px;
  border: 1px solid #C9C9C9;
  background: #FFF;
  /*margin-bottom: 30px;*/
      box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s
}

.categories-section .categories-inner .categories-box img {
  border-radius: 16px 16px 0px 0px;
}

.categories-section .categories-inner .categories-box .categories-content h4 {
  color: #000;
  text-align: center;
  font-family: 'ITC Avant Garde Gothic Pro Md';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  /*height:80px;
  padding: 30px 10px;*/ 
}

.categories-section .categories-inner {
  margin-top: 25px;
  
}

/* categories-section*/

/* footer-section */
.footer-section {
  position: relative;
}

.footer-section .footer-top .contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
}


.footer-section .footer-top .contact-box .contact-icon {
  background: #F1F1F1;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


.footer-section .footer-top .contact-box .contact-title a {
  color: #000;
  font-family: 'ITC Avant Garde Gothic Pro Md';
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer-top .getdirection a {
  color: #66B449;
  font-family: 'ITC Avant Garde Gothic Pro Md';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.footer-section .footer-top .contact-box .contact-title a:hover {
  color: var(--theme-color);
}


.footer-section .footer-top {
  padding-bottom: 40px;
  /*border-top: 1px solid #000;*/
  padding-top: 20px;
}

.footer-section .footer-top-x {
  border-top: 1px solid #000;
}
.footer-section .footer-main .social-list {
  margin-bottom: 25px;
}

.footer-section .footer-main .footer-part {
  margin-bottom: 25px;
}

.footer-section .footer-main .footer-part h3 {
  color: #000;
  font-family: Metrisch;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-section .footer-main .footer-part ul li a {
  color: #898989;
  font-family: 'Robert', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

.footer-section .footer-main .footer-part ul li a:hover {
  color: var(--theme-color);
}

.footer-section .footer-main .footer-part ul li {
  margin-bottom: 5px;
}

.footer-section .footer-main {
  padding-top: 50px;
}

.footer-section .footer-main .footer-img p {
  color: #000;
  font-family: Metrisch;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 20px;
}

.footer-section .footer-menu ul {
  display: flex;
  gap: 40px;
  justify-content: end;
}

.footer-section .footer-menu ul li a {
  color: #000;
  font-family: 'ITC Avant Garde Gothic Pro Md';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer-section .footer-menu ul li a:hover {
  color: var(--theme-color)
}

.social-list ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-list ul li {
  border: 1px solid #B3B3B3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #B3B3B3;

}

.social-list ul li a {
  color: #B3B3B3;
}

.social-list {
  padding-top: 20px;
}

.social-list ul li:hover {
  color: #B3B3B3;
  border: 1px solid var(--theme-color);
  background: var(--theme-color);
}

.social-list ul li:hover a {
  color: #fff;
}

.copyright-section {
  /* background: #fff;
  padding: 30px 0;
  color: #fff; */
}

.copyright-section .copyright-top {
  border-top: 1px solid #000;
  background: #fff;
  padding: 30px 0;
  color: #fff;
  margin-top:20px; 
}

.copyright-section .copyright-right p a {
  color: #FF6700;
}


.copyright-section p {
  color: #959595;
  font-family: 'ITC Avant Garde Gothic Pro Md';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.scroll-top1 {
  background: var(--theme-color);
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #ffffff;
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #fff;
  border: none;
  transition: all .2s;
}

/* footer-section */
.login-screen {
  position: relative;
}

.login-screen::before {
  background: url(../images/login-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
}

.form-section {
  max-width: 550px;
  margin: 0 auto;
}
.login-screen .form-section .details {
  padding: 60px;
  border-radius: 5px;
  margin-bottom: 30px;
  background: #f5f5f5;
  position: relative;
  z-index: 0;
}
.login-screen .form-section h3 {
  margin: 0 0 40px;
  font-size: 25px;
  font-weight: 400;
  color: #040404;
  text-align: center;
}
.login-screen .form-section .form-box {
  float: left;
  width: 100%;
  position: relative;
  text-align: left;
}
.login-screen .form-section .form-group {
  margin-bottom: 40px;
}
.login-screen .form-section .form-control {
  font-size: 16px;
  outline: none;
  background: transparent!important;
  color: #535353;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  border: none;
  border-bottom: solid 2px #bdbdbd;
}
.login-screen .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #ff6700;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(244 247 251 / 25%);
}
.login-screen .form-section .checkbox {
  margin-bottom: 30px;
  font-size: 15px;
}

.login-screen .form-section .form-box {
  float: left;
  width: 100%;
  position: relative;
  text-align: left;
}
.login-screen .form-section .form-check {
  float: left;
  margin-bottom: 0;
  padding-left: 0;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}
.login-screen .form-section input[type=checkbox], input[type=radio] {
  margin-top: 4px;
}
.login-screen .form-section .form-check-input {
  position: absolute;
  margin-left: 0;
}
.login-screen .form-section .checkbox {
  margin-bottom: 30px;
  font-size: 15px;
}
.login-screen .form-section .form-check-label {
  padding-left: 25px;
  margin-bottom: 0;
  font-size: 16px;
  color: #535353;
}
.login-screen .form-section a.forgot-password {
  font-size: 16px;
  color: #535353;
}
.login-screen .form-section .checkbox a {
  float: right;
}
.login-screen a {
  text-decoration: none;
}

.login-screen .social-list a {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  font-size: 15px;
  color: rgb(255, 255, 255);
  margin: 0 2px 2px 0;
  border-radius: 50px;
}
.login-screen .facebook-bg {
  background: #4867aa;
}
.login-screen .twitter-bg {
  background: #33CCFF;
}
.login-screen .google-bg {
  background: #db4437;
}
.login-screen .linkedin-bg {
  background: #2392e0;
}
.login-screen .social-list span {
  margin-right: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #535353;
}
.login-screen .form-section p {
  color: #535353;
  margin-bottom: 0;
  font-size: 16px;
  text-align: center;
}
.login-screen .logo-2 h5{
  color: #000;
  margin-bottom: 25px;
  font-size: 30px;
  text-align: center;
}
/* ------------------------PRE Loader--------------------------- */



#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999;
}

#preloader .preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
}

#preloader .preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff6700;
  -webkit-animation: preloader1 1.3s linear infinite;
  animation: preloader1 1.3s linear infinite;
}

#preloader .preloader span:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes preloader1 {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes preloader1 {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


.customer-details {
  height: 171px;
}