@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --theme-color-blue: #8dbdf3;
  --theme-color-black: #000000;
  --theme-font-family: "Montserrat", sans-serif;
}

body {
  font-family: var(--theme-font-family);
  overflow-x: hidden;
}

.pd-100 {
  padding: 100px 0;
}

.pd-60 {
  padding: 60px 0;
}

a {
  text-decoration: none;
  color: var(--theme-color-black);
  font-weight: 500;
}

header {
  padding: 30px 0;
}

.logo img {
    width: 70%;
}

nav a.nav-link {
  font-weight: medium;
  font-size: 20px;
  color: var(--theme-color-black);
  position: relative;
}

/*nav a.nav-link.active {*/
/*  border-bottom: 1px solid;*/
/*}*/

ul.navbar-nav {
  width: 100%;
  justify-content: space-between;
}

.login {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: end;
}

.login a {
  font-size: 17px;
  font-weight: 500;
}

.theme-btn {
  background-color: var(--theme-color-blue);
  border-radius: 75.5px;
  font-size: 18px;
  padding: 15px 50px;
  display: inline-block;
  color: var(--theme-color-black);
  text-decoration: none;
}

a.theme-btn-2:hover {
  background: #f000;
  color: #000;
}

a.theme-btn-2 {
  transition: all 0.5s ease-in-out;
}

section.carousel-section .carousel-item img {
  margin-left: auto;
  width: 48% !important;
  margin-bottom: -47px;
}

section.carousel-section .carousel-caption {
  text-align: left;
  left: auto;
  right: auto;
  top: 10%;
}

section.carousel-section .carousel-caption h4 {
  font-size: 35px;
  color: var(--theme-color-black);
  font-weight: 400;
  text-transform: uppercase;
}

section.carousel-section .carousel-caption h1 {
  font-size: 60px;
  color: var(--theme-color-black);
  text-transform: uppercase;
  margin: 10px 0;
}

section.carousel-section .carousel::before {
  content: url(../img/carousel-d.png);
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  display: block;
  width: 13%;
  text-align: right;
}

section.carousel-section .carousel::after {
  content: url(../img/carousel-after.png);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  display: block;
  width: 100%;
  text-align: right;
}

section.carousel-section h1 span {
  color: var(--theme-color-blue);
}

section.carousel-section .carousel-caption p {
  font-size: 20px;
  color: var(--theme-color-black);
  font-weight: 400;
  border-left: 1px solid var(--theme-color-blue);
  padding-left: 15px;
  margin: 20px 0 30px;
}

.theme-btn-2 {
  background-color: var(--theme-color-black);
  border-radius: 75.5px;
  font-size: 17px;
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  box-shadow: 0px 4px 7px 0px #000;
  font-weight: 400;
}

.caro-btn {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 20px 0;
}

section.about-section {
  background-image: url(../img/about-banner.png);
}

.about-left h5 {
  font-size: 18px;
  font-weight: bolder;
  line-height: 36px;
  margin-bottom: 40px;
}

.about-left p {
  font-size: 18px;
  font-weight: 500;
}

.about-right h4 {
  font-size: 23px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
}

.about-right h4::after {
  content: "";
  width: 12%;
  height: 1px;
  background-color: var(--theme-color-black);
  position: absolute;
  bottom: 0;
  left: 0;
}

.about-right h2 {
  font-size: 70px;
  font-weight: 600;
  color: var(--theme-color-black);
  margin: 10px 0;
}

.about-right a img {
  padding-left: 10px;
}

.custom-head h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--theme-color-black);
  text-align: center;
}

.customize-section .row {
  margin: 100px 0;
}
.custom-box:hover {
  transform: translateY(-20px);
}

.custom-box:hover a {
  color: var(--theme-color-blue);
}

.custom-box {
  text-align: center;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.custom-box::before {
  content: "";
  background-color: transparent;
  border: 26px solid var(--theme-color-blue);
  top: 0;
  left: 30%;
  display: block;
  z-index: -1;
  position: absolute;
  padding: 30px;
  transform: rotate(138deg);
  width: 160px;
  border-radius: 50%;
  opacity: 30%;
}

.custom-box::after {
  content: "";
  background-color: transparent;
  border: 16px solid #bcd4ef;
  top: 0;
  left: 30%;
  display: block;
  z-index: -1;
  position: absolute;
  padding: 40px;
  transform: rotate(138deg);
  width: 160px;
  border-radius: 50%;
  opacity: 50%;
}

.custom-box img {
  width: 20%;
  margin: 10px 0 20px 0px;
}

.custom-box-2 img {
  width: 17%;
}

.custom-box h5 {
  font-size: 28px;
  font-weight: bold;
  margin: 15px 0;
  color: var(--theme-color-black);
}

.custom-box p {
  color: var(--theme-color-black);
  font-size: 16px;
  margin: 20px auto;
  width: 70%;
}

.custom-box a {
  font-size: 17px;
  text-decoration: underline;
  color: var(--theme-color-black);
  font-weight: 500;
}

.custom-box a img {
  padding-left: 10px;
  width: unset;
}

.custom-a {
  display: block;
  margin: 30px auto;
  text-align: center;
  width: 17%;
}

.marquee__bar__sec {
  background: var(--theme-color-black);
    padding: 23px 0 10px;
    margin-top: 10px;
    overflow: hidden !important;
    transform: rotate(5deg);
    width: 110%;
    margin-left: -30px;
}

.marquee__bar__sec-2 {
  transform: rotate(-5deg);
  position: relative;
  top: -120px;
  background: var(--theme-color-blue);
}

.marquee_text ul li {
  list-style: none;
}

.ticker__text ul li {
  padding: 10px 80px 10px 0;
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
}

.marquee__bar__sec-2 .ticker__text ul li {
  color: var(--theme-color-black);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 40px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color-blue);
  transition: 0.4s;
  border-radius: 34px;
}

.toggle-switch .slider:before {
  position: absolute;
  content: url(../img/before-arrow.png);
  height: 33px;
  width: 30px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*padding-top: 5px;*/
}

.toggle-switch input:checked + .slider {
  background-color: var(--theme-color-blue);
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(52px) rotate(180deg);
}

.about-right a:hover img {
  filter: invert(1);
}

.pack-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.package-left h2 {
  font-size: 40px;
  font-weight: bold;
}
.package-left p {
  font-size: 18px;
  font-weight: 400;
  margin: 30px 0 30px 30px !important;
  border-left: 1px solid var(--theme-color-blue);
  padding-left: 30px;
  color: var(--theme-color-black);
}

.package-left span:nth-child(odd) {
  color: var(--theme-color-black);
  opacity: 50%;
}

.package-right {
  padding: 30px 50px;
  background-color: var(--theme-color-blue);
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.pack-before-after {
  position: relative;
}

.pack-before-after::before {
  content: "";
  background-color: transparent;
  border: 26px solid #fefefe;
  top: -90px;
  left: 30%;
  display: block;
  z-index: 3;
  position: absolute;
  padding: 30px;
  transform: rotate(138deg);
  width: 160px;
  border-radius: 50%;
  opacity: 30%;
}

.pack-before-after::after {
  content: "";
  background-color: #ffffffc2;
  border: 16px solid #c6def9;
  top: -90px;
  left: 30%;
  display: block;
  z-index: 1;
  position: absolute;
  padding: 40px;
  transform: rotate(138deg);
  width: 160px;
  border-radius: 50%;
}

.package-right::before {
  content: "";
  position: absolute;
  right: -24%;
  bottom: -10%;
  display: block;
  width: 72%;
  height: 72%;
  z-index: 1;
  background-color: #fff;
  border-radius: 50%;
  opacity: 20%;
  overflow: hidden;
}

div#package-details::after {
  content: "";
  background: url(../img/pakage-before.png);
  position: absolute;
  top: 106px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  right: 90px;
  z-index: -1;
}

.package-right img {
  position: absolute;
  top: -75px;
  left: 43%;
  width: 23%;
  z-index: 3;
}

.package-right h5 {
  margin-top: 60px;
  font-size: 39px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}

.package-right a {
  background-color: #fff;
  color: var(--theme-color-black);
  font-size: 18px;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 31px;
  display: inline-block;
  margin: 20px 0;
  box-shadow: 0px 4px 7px 0px #000;
}

.package-right h3 {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.package-right p {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}

footer {
  background-color: var(--theme-color-black);
  padding: 100px 0 0;
}

.col1 img {
  width: 65%;
  display: block;
  margin-bottom: 30px;
}

.col1 p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  width: 75%;
}

.col2 h4 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}

.col2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col2 ul li {
  margin-bottom: 7px;
}

.col2 ul li a {
  font-weight: 300;
  color: #fff;
  font-size: 18px;
}

.mail-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.col2 p {
  margin-bottom: 0;
}

.col2 a {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.col2 i {
  color: var(--theme-color-blue);
  font-weight: 600;
}

.gray-div {
  width: 100%;
  height: 1px;
  background-color: #808080;
  margin: 40px 0 0;
  display: block;
}

.copyright {
  text-align: center;
  background-color: var(--theme-color-black);
  padding: 20px 0;
}

.copyright p {
  font-size: 18px;
  color: #a0a0a0;
  font-weight: 400;
  margin-bottom: 0;
}

.copyright span {
  color: var(--theme-color-blue);
}

.map-pin i::before {
  z-index: 1;
  position: relative;
}

.map-pin i::after {
  content: "";
  background: var(--theme-color-blue);
  position: absolute;
  height: 50px;
  width: 18px;
  top: -24px;
  left: -3px;
}

.map-pin i {
  position: relative;
  z-index: 10;
  color: #000;
}

ul.navbar-nav li.nav-item a.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  width: 0%;
  height: 2px;
  background: #000;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}

ul.navbar-nav li.nav-item a.nav-link:hover:before {
  width: 90%;
}

.login .theme-btn {
  border: 1px solid var(--theme-color-blue);
  transition: all 0.5s ease-in-out;
}

.login .theme-btn:hover {
  color: var(--theme-color-blue);
  background: #f000;
}
.caro-btn a:hover {
  color: var(--theme-color-blue);
}

.caro-btn a {
  transition: all 0.5s ease-in-out;
}
div#package-details a:hover {
  background: #000;
  color: var(--theme-color-blue);
}

div#package-details a {
  transition: all 0.5s ease-in-out;
}

.col2 ul li a:hover {
  color: var(--theme-color-blue);
}

.col2 ul li a {
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1366px) {
  section.carousel-section .carousel::after {
    top: -20%;
    left: 0%;
}
}

/***********Step-form************/
section.Form.Header h2 {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 60px;
    padding-left: 20px;
    color: var(--theme-color-blue);
}

section.form-main label {
    margin: 22px 0 10px;
    font-weight: 500;
    font-size: 17px;
}

section.form-main form p{
   margin:0;
   margin-bottom: 0 !important;
}

section.form-main {
    margin-bottom: 60px;
}

.save-btn {
    background: var(--theme-color-blue);
    border: 1px solid var(--theme-color-blue);
    margin-top: 30px;
    border-radius: 25px;
    padding: 15px 35px;
    margin-left:0 !important;
}

section.form-main a {
    margin-left: 20px;
}

label.labelyes-no {
    margin: 0 !important;
}

.custom-tooltip {
    --bs-tooltip-max-width:350px;
}
.tooltip-inner {
    text-align: left;
}

input#closing_date {
    margin-bottom: 20px;
}

input#affidavit {
    width: 7%;
    display: inline;
}

input#committed {
    width: 8%;
    display: inline;
}
label.af-sf a {
    margin-left: 10px;
}

input#survey {
    width: 8%;
    display: inline;
}

input#aware {
  width: 9%;
  display: inline;
}

label#label-small-size {
    font-size: 16px;
}

section.form-main form {
    /*border: 2px solid var(--theme-color-blue);*/
    padding: 10px 20px 20px;
    /*border-radius: 17px;*/
    /*background-color: #8dbdf329;*/
}
label.check-box-fin {
    width: 97%;
}

input#terminate {
    height: 32%;
}

input#no-days-in {
    width: 9%;
    margin-left: 20px;
}

label#informational_items {
    font-size: 15px;
}
section.form-main p {
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0 !important;
}
input#contract {
    position: relative;
    bottom: 130px;
}
input#no-f-da {
    margin-left: 14px;
    width: 9%;
    margin-right: 10px;
}
.check-boxes-inpu-typ label {
    font-size: 15px !important;
}
input#hazards {
    height: 63px;
}

.number-filed-days {
    position: relative;
}

input#option {
    padding-right: 90px;
}

span.suffix-days {
    position: absolute;
    right: 226px;
    top: 5px;
    font-size: 18px;
    font-weight: 500;
}

p.sub-head-form-13 {
    font-size: 19px !important;
    font-weight: 600 !important;
}

.form-navigation a {
    margin: 0 !important;
    display: block;
    font-size: 13px !important;
    transition:all 0.5s ease;
    margin-bottom:10px !important;
}
.form-navigation a.active-step{
    color:var(--theme-color-blue);
    font-weight:600;
    font-size: 15px !important;
}
.form-navigation a:hover {
    color:var(--theme-color-blue);
    font-weight:600;
}


.form-navigation {
    background: #8dbdf329;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid var(--theme-color-blue);
    height: fit-content;
}


/***********Step-form************/
/***********What WE DO************/
section.innerpage-banner {
    background: url(../img/innerpage-banner.png);
    text-align: center;
    padding: 200px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    TOP: -122px;
}

section.innerpage-banner h2 {
    font-size: 50px;
    font-weight: 500;
    position: relative;
    top: 68px;
}

section.innerpage-banner h2::before {
    content: '';
    background: #000;
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 39%;
}
/***********What WE DO************/
/***********Contact************/
section.contact-section input,
section.contact-section textarea {
    width: 100%;
    padding: 10px 25px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    margin-bottom:20px;
}

section.contact-section {
    padding-bottom: 100px;
    margin-top: -120px;
    padding-top: 60px;
    background: url(../img/contact-bg.png);
    background-size: contain;
}
section.contact-section .col-md-6 ,
section.contact-section .col-md-12 {
    position: relative;
}
section.contact-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 45px;
    font-weight: 700;
}

section.contact-section .col-md-6 i, section.contact-section .col-md-12 i {
    position: absolute;
    top: 13px;
    right: 30px;
    font-size: 20px;
    color: var(--theme-color-blue);
}

input.submit-btn {
    background: var(--theme-color-blue);
    color: #fff;
    font-size: 21px;
    border: none !important;
    border-radius: 5px !important;
}

/***********Contact************/
/***********T&C************/
.main-cont h2 {
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}


.main-cont p {
  margin-bottom: 30px;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

section.terms-section {
    margin-bottom: 100px;
}
h2.privacy-baner::before {
    left: 580px !important;
}
h2.terms-banner::before {
    left: 510px !important;
}
/***********T&C************/
/***********About************/
.about-page-left p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: justify;
    width: 93%;
}

section.about-page {
    margin-bottom: 100px;
}

.about-page-right h5 {
    font-size: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin-left: 30px;

}

.about-page-right h5:before {
    content: '';
    position: absolute;
    background: #000;
    bottom: 0;
    left: -14px;
    width: 60px;
    height: 2px;
}

.about-page-right h2 {
    font-size: 68px;
}

.about-page-left {
    margin-top: 30px;
}

.about-page-right img {
    width: 85%;
}
/***********About************/
/***********BLOGS************/
.blog-assets img {
    width: 100%;
}

.blog-assets {
    position: relative;
}

.blog-cont {
    background: #fff;
    width: 92%;
    margin: 0 auto;
    padding: 16px 23px;
    position: absolute;
    bottom: -4rem;
    left: 4%;
    box-shadow: 0 3px 10px 4px #0000002b;
}

.blog-cont p {
  margin: 0;
  margin-top: 6px;
  font-size: 12px;
}

section.blogs-page {
    margin-bottom: 200px;
}

.b-c-top a {
    font-size: 15px;
}

.b-c-top a i {
    color: var(--theme-color-blue);
    font-size: 17px;
}

a.bolg-title {
    font-size: 15px;
    display: block;
    margin-top: 11px;
    font-weight: 700;
}

.row-1 {
    margin-bottom: 10rem;
}

h2.blog-page-heading::before {
    left: 710px !important;
}

/***********BLOGS************/
/***********FAQS************/
.faq-left {
    position: relative;
}

.faq-left img {
    width: 97%;
}

.faq-left h2 {
    position: absolute;
    top: 100px;
    left: 15%;
    color: #fff;
    font-size: 54px;
    font-weight: 700;
}

.faq-left p {
    position: absolute;
    top: 270px;
    left: 15%;
    font-size: 20px;
    width: 79%;
    color: #fff;
    font-weight: 500;
}
.faq-right {
    margin-top: 50px;
}

section.faq-page {
    margin-bottom: 100px;
}

.faq-right .accordion-button:focus {
    box-shadow: unset;
}

.faq-right .accordion-button:not(.collapsed) {
    background-color: unset;
}

.faq-right button.accordion-button {
    font-size: 18px;
    font-weight: 700;
    padding: 30px 20px;
}

.faq-right .accordion-body {
    font-size: 17px;
    font-weight: 500;
    padding: 30px 20px;
}

.faq-right .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
}

button.accordion-button {
    border-radius: 10px !important;
}

/***********FAQS************/
/***********BLOG SINGLE POST************/
.blog-banner {
    position: relative;
}

.blog-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}

.blog-time {
  position: absolute;
  bottom: 2rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.blog-body {
  margin: 50px 0;
}
.blog-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0;
}


.blog-time h3 {
    color: #fff !important;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 30px;
}

.blog-time a {
    color: #fff;
    margin-right: 20px;
}

.blog-time a i {
    margin-right: 5px;
}

.blog-banner p {
    margin-top: 50px;
}

.tags-blog {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag-socials i {
    background-color: #e0e0e0;
    padding: 10px;
    margin-right: 10px;
    transition: all 0.5s ease-in-out;
}

.tag-socials i:hover {
    color: var(--theme-color-blue);
    background-color: #d3d3d3;
}

.tags-blog p {
    margin: 20px 0;
}

.tags-blog {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 50px;
}

.recent-blogs h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: 600;
}



/***********BLOG SINGLE POST************/

a.extra-waring {
    margin: 0 !important;
    font-size: 20px !important;
}

/*label.toal__amount span {*/
/*    color: #aaa;*/
/*}*/

.warning p img {
    width: 6%;
}

.warning {
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    color: red;
}
h4.survey-heading {
    margin: 20px 0;
}

#cash_amount {
  width: 76%;
}
#finance_amount {
  width: 56%;
}
#toal__amount {
  width: 50%;
}

#earnest {
  width: 90%;
}
#termination {
  width: 75%;
}
#option {
  width: 50%;
}

.print-standard {
  font-size: 1.5rem !important;
}
.print-standard span {
  font-size: 18px;
}
.survey-heading span {
  font-size: 18px;
}

.purchased-acceptable-not {
  display: inline;
}
.slelel-rad {
  display: inline;
}
.bybyby-rad {
  display: inline;
}

#maxium_line {
  margin-left: 27px;
  font-size: 15px;
  margin: 10px 0;
}

/*======================================
   Login & Register & My Account CSS
========================================*/
.alert-success {
  color: #ffffff;
  background-color: #00b894;
  border-color: #00b894;
}

.alert-danger {
  color: #FFF;
  background-color: #ff4949;
  border-color: #ff4949;
}

.section{
padding-top: 80px;
padding-bottom: 50px;
}

.section-heading{
text-align: center;
font-weight: 600;
margin-bottom: 60px;
color: var(--primary-color);
position: relative;
line-height: 24px;
}

.section-heading::after{
content: '';
  width: 60px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 10px;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

#auth{
padding: 60px 0px;
}

.login_register{
background: #ffffff;
  padding: 50px;
  box-shadow: 1px 3px 10px #d8d8d8;
}

.login_register .form-control {
height: auto;
  display: block;
  width: 100%;
   padding: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #CCC;
  border-radius: .25rem;
  margin-top: 15px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login_register .form-control:focus{
outline: none;
-webkit-box-shadow: none;
  box-shadow: none;
border: 1px solid #000;
}

.login_register .btn-login{
display: block;
  background: #FFF;
  padding: 18px 50px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
transition: all 0.3s;
width: 100%;
margin-top: 30px;
}
.login_register .btn-login:hover{
  background: var(--primary-color);
  color: #FFF;
}

.login_register .right_link{
color: var(--primary-color);
margin-top: 15px;
transition: all 0.3s;
display: inline-block;
}

.login_register .right_link:hover{
text-decoration: underline;
}

.create-account-link{
color: var(--primary-color);
display: inline-block;
margin-top: 15px;
transition: all 0.3s;
}

.create-account-link:hover{
color: var(--primary-color);
text-decoration: underline;
}

.customer_dashboard{
box-shadow: 0 0 4px 0 #e9e9e9;
}

.customer_dashboard{
box-shadow: 0 0 4px 0 #d0cfcf;
}

.customer_dashboard .nav-tabs li.nav-item a {
  text-align: left;
  padding: 12px 20px;
  border-radius: 0;
  border-bottom: 1px solid #efefef;
  color: #2b2f4c;
}
.customer_dashboard .nav-tabs li.nav-item a.active{
background: #1d2224;
color: #FFF;
}
.customer_dashboard .nav-tabs li.nav-item a i {
  margin-right: 8px;
  vertical-align: middle;
}

.dashboard_content .card-header {
  background-color: #1d2224;
  border-color: #1d2224;
  padding: 14px 20px;
}

.dashboard_content .card-header > h4 {
font-size: 16px;
color: #FFF;
font-weight: 400;
margin: 0;
}

.account_details .form-control {
height: auto;
  display: block;
  width: 100%;
   padding: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #CCC;
  border-radius: .25rem;
  margin-top: 15px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.account_details .form-control:focus{
outline: none;
-webkit-box-shadow: none;
  box-shadow: none;
border: 1px solid #000;
}

.account_details .btn-login{
  background: #FFF;
  padding: 18px 50px;
  border: 1px solid #303952;
  color: #303952;
transition: all 0.3s;
margin-top: 30px;
}
.account_details .btn-login:hover{
  background: #303952;
  color: #FFF;
}
.btn-add-address{
color: #FFF !important;
padding: 6px 16px;
display: inline-block;
font-size: 14px;
border: 1px solid #FFF;
border-radius: 50px;
}

/*======================================
End Login CSS
========================================*/

.form-navigation ul li {
  list-style: none;
}

.form-navigation ul {
  margin: 0;
  padding: 0;
}
section.form-main h2 {
  color: var(--theme-color-blue);
  margin: 0 0 20px 0;
}