/* files */
@import url('../css/header_footer.css');

/* fonts */
@font-face {
        font-family: 'Metropolis Regular';
        font-style: normal;
        font-weight: normal;
        src: local('Metropolis Regular'), url('../fonts/Metropolis-Regular.woff') format('woff');
    }
    @font-face {
        font-family: 'Metropolis Light';
        font-style: normal;
        font-weight: normal;
        src: local('Metropolis Light'), url('../fonts/Metropolis-Light.woff') format('woff');
    }
    @font-face {
        font-family: 'Metropolis Thin';
        font-style: normal;
        font-weight: normal;
        src: local('Metropolis Thin'), url('../fonts/Metropolis-Thin.woff') format('woff');
    }
    @font-face {
        font-family: 'Metropolis Medium';
        font-style: normal;
        font-weight: normal;
        src: local('Metropolis Medium'), url('../fonts/Metropolis-Medium.woff') format('woff');
    }
    @font-face {
        font-family: 'Metropolis Semi Bold';
        font-style: normal;
        font-weight: normal;
        src: local('Metropolis Semi Bold'), url('../fonts/Metropolis-SemiBold.woff') format('woff');
    }
    @font-face {
        font-family: 'Metropolis Bold';
        font-style: normal;
        font-weight: normal;
        src: local('Metropolis Bold'), url('../fonts/Metropolis-Bold.woff') format('woff');
    }
    @font-face {
        font-family: 'Metropolis Extra Bold';
        font-style: normal;
        font-weight: normal;
        src: local('Metropolis Extra Bold'), url('../fonts/Metropolis-ExtraBold.woff') format('woff');
    }

/*----- BASIC -----*/
/* only for login flow height */
html.sign_pages_main, html.sign_pages_main body, html.sign_pages_main body main, html.sign_pages_main body main section{
  height: 100%;
}
/* only for blank pages */
html.blankpage, html.blankpage body, html.blankpage body main, html.blankpage body main section.wd-md-ter-con {
    height: 100%;
}

html, body{
  height: auto;
}
body {
  font-family: 'Metropolis Regular';
  background: #FFFFFF;
  color: #142247;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}
a, a:hover{
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
h1,h2,h3{
  font-family: 'Metropolis Bold';
}
h4,h5,h6{
  font-family: 'Metropolis Semi Bold';
}
.favicon{
  width: 16px;
  height: 16px;
  object-fit: contain;
}
p{
  line-height: 1.8;
  font-size: 14px;
}
.yellow-btn {
  background: #ffbf1b;
    color: #142247;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 5px;
    font-family: 'Metropolis Semi Bold';
    display: inline-block;
    box-shadow: 0 5px 20px rgb(255 191 27 / 50%);
    border: 1px solid transparent;
}
.yellow-btn:hover{
  border: 1px solid #ffbf1b;
  color: #ffbf1b;
  background: transparent;
  box-shadow: 0 5px 20px transparent;
}
.title-head h3{
  text-transform: uppercase;
  font-size: 40px;
  color: #000;
  font-family: 'Metropolis Medium';
}
.title-head b{
  color: #FFBF1B;
}
.wd-sl-customeradio [type="radio"]:checked,
.wd-sl-customeradio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.wd-sl-customeradio [type="radio"]:checked + label,
.wd-sl-customeradio [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: normal;
    display: inline-block;
    color: rgb(0 0 0 / 80%);
    margin-bottom: 0;
}
.wd-sl-customeradio [type="radio"]:checked + label:before{
  content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 20px;
    height: 20px;
    border: 2px solid #FFBF1B;
    border-radius: 100%;
    background: #fff;
}
.wd-sl-customeradio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 20px;
    height: 20px;
    border: 2px solid #D3D3D3;
    border-radius: 100%;
    background: #fff;
}
.wd-sl-customeradio [type="radio"]:checked + label:after,
.wd-sl-customeradio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #FFBF1B;
    position: absolute;
    top: 1px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.wd-sl-customeradio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.wd-sl-customeradio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*----- MAIN -----*/
#home{
  background-image: url(../images/home-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}
#home h1{
  font-size: 50px;
    text-transform: inherit;
    font-family: 'Metropolis Semi Bold';
    margin-bottom: 12px;
    display: inline-block;
}
#home h1 b{
  color: #FFBF1B;
}
#home h2{
  font-size: 60px;
  color: #FFBF1B;
  text-transform: uppercase;
  display: inline-block;
}
#work {
    padding: 3rem 0;
}
#work .wd-sl-works {
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    margin: 60px 0 30px;
}
#work .bgry {
  background: #FAFAFA;
  border-radius: 50%;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#work .bgry img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
#work .wd-sl-works span {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 5%);
    font-size: 18px;
    color: #FFBF1B;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -10px 0;
    position: relative;
    font-family: 'Metropolis Bold';
}
#work .wd-sl-works p{
  text-transform: uppercase;
  color: #000;
  margin:20px 0 0;
}
#service{
  background-image: url(../images/service_provide_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 100px 0;
}
#service h3{
  color: #FFFFFF;
}
#service .wd-sl-service img {
    width: 90px !important;
    height: 90px;
    object-fit: contain;
    margin: 0 auto;
}
#service .wd-sl-service span {
    width: 160px;
    height: 160px;
    border: 3px solid #ffbf1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 20px;
}
#service .wd-sl-service{
  margin-bottom: 0;
  font-size: 20px;
  font-family: 'Metropolis Regular';
}
#service .owl-nav.disabled, #service .owl-nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
#service button.owl-prev, #service button.owl-next {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 11px rgb(0 0 0 / 25%);
    width: 35px;
    border-radius: 50%;
    height: 35px;
    object-fit: contain;
}
#service button.owl-prev span, #service button.owl-next span{
  color: #FFBF1B;
    font-size: 28px;
    margin: -5px 0;
    display: inline-block;
    line-height: normal;
}
#offer{
  padding: 100px 0;
}
#offer p{
  font-size: 16px;
  color: #525252;
  margin: 30px 0;
}
#offer ul li {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
}
#offer ul li svg{
  margin-right: 10px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
#offer ul li span{
  font-family: 'Metropolis Semi Bold';
}
#support{
  position: relative;
}
#support .yellowbg{
  background: #FFBF1B;
  padding: 50px 0;
  text-align: center;
}
#support .yellowbg img{
  width: 80%;
  margin: 0 auto;
}
#support .greybg{
  background: #F1F1F1;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}
#support .greybg h4{
  font-size: 34px;
  line-height: 1.5;
  color: #000;
  font-family: 'Metropolis Medium';
}
#support .greybg h3{
  color: #FBB040 !important;
  font-size: 40px;
}
#support .wd-sl-bottomimg{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  text-align: center;
}
#support .wd-sl-bottomimg img {
    width: 13%;
}
#support .wd-sl-topimg{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  text-align: center;
}
#support .wd-sl-topimg img {
    width: 4%;
}
#rating{
  background-image: url(../images/rating-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}
#rating .wd-sl-rates{
  background: #FFFFFF;
  box-shadow: 0px 6px 19px rgba(0, 0, 0, 0.3);
  border-radius: 90px;
  padding: 15px;
  display: flex;
  align-items: center;
}
#rating .wd-sl-rates span{
  border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}
#rating .wd-sl-rates span img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}
#rating .wd-sl-rates .wd-sl-ratescontent img {
    width: 60%;
}
#rating .wd-sl-rates .wd-sl-ratescontent h6{
  margin-bottom: 3px;
}
/*----- SECTION -----*/
/*===============login==============*/
.input-tell{
  display: flex;
  align-items: center;
}
.input-tell input#phone {
    width: 50px;
    margin-right: 10px;
}
.iti__selected-flag{
  justify-content: center;
}
.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container{
  right: 6px;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color: transparent;}
.wd-md-login-main
{
  background: url(../images/Login.png) no-repeat;
    background-size: cover;
}
.wd-md-login{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
.wd-md-login .wd-md-log-blog{
  background: #FFFFFF;
  box-shadow: 0px 4px 37px rgba(0, 0, 0, 0.25);
  border-radius: 21px;
  width: 373px;
  height: auto;
  padding: 20px;
  text-align: center;
  margin-top: 1vh ;
  margin-bottom: 1vh;
}
.wd-md-login .wd-md-log-blog h2{
  font-family: 'Metropolis Bold';
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #243F86;
  margin-top: 1rem;
}
.wd-md-login .wd-md-log-blog p{

  font-size: 14px;
  line-height: 23px;
  text-align: center;
  color: #545454;
}
.wd-md-login .wd-md-log-blog .form-group input{
  background: #F5F5F5;
  border-radius: 11px;
  height: 52px;
  font-family: 'Metropolis Medium';
  font-size: 15px;
  line-height: 15px;
  color: #545454;
  border: none;
  opacity: 0.6;
}
.wd-md-login .wd-md-log-blog .form-group input.wd-md-code{
  width: 70px;
  margin-right: 10px;
  text-align: right;
  padding: 10px;
}
.wd-md-login .wd-md-log-blog .form-group input.wd-md-p-num{
  width: 248px;
  padding: 10px;
}
.wd-md-login .wd-md-log-blog .form-group input.wd-md-p-num::placeholder{
  padding-left: 35px;
}
.wd-md-login .wd-md-log-blog .form-group.wd-eye-psw{
  position: relative;
}
.wd-md-login .wd-md-log-blog .form-group.wd-eye-psw a{
  position: absolute;
  right:7px;
  top: 15px;
  color: #222C53;
  opacity: 0.2;
}
.wd-md-login .wd-md-log-blog .form-group button.wd-btn-login{
  background: #FFBF1B;
  border-radius: 8px;
  border: none;
  display: inline-block;
  width: 100%;
  height: 52px;
  font-family: 'Metropolis Bold';
  font-size: 16px;
  text-transform: uppercase;
  color: #142247;
  margin-bottom: 15px;
  border: 1px solid #FFBF1B;
}
.wd-md-login .wd-md-log-blog .form-group button.wd-btn-login:hover{
  background: #ffffff;
}
.wd-md-login .wd-md-log-blog .form-group button.wd-send-code{
   background: #FFBF1B;
  border-radius: 8px;
  border: none;
  display: inline-block;
  width: 100%;
  height: 52px;
  font-family: 'Metropolis Bold';
  font-size: 16px;
  text-transform: uppercase;
  color: #142247;
  border: 1px solid #FFBF1B;
  margin-bottom: 0;
}
.wd-md-login .wd-md-log-blog .form-group button.wd-send-code:hover{
  background: #ffffff;
}
.wd-md-login .wd-md-log-blog a.wd-for-psw{
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  color: #142247;
}
.wd-md-login .wd-md-log-blog a.wd-for-psw:hover{
  text-decoration: none;
}
.wd-md-login .wd-md-log-blog p{
  font-family: 'Metropolis Medium';
  font-size: 15px;
  color: #545454;
  margin-top: 18px;
}
.wd-md-login .wd-md-log-blog p a{
  color: #FFBF1B;
}
.wd-md-login .wd-md-log-blog p a:hover{
  text-decoration: none;
}
.wd-sl-cutomecheck {
  display: block;
  margin-bottom: 1rem;
  text-align: left;
}
.wd-sl-cutomecheck input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.wd-sl-cutomecheck label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 12px;
  white-space: nowrap;
}
.wd-sl-cutomecheck label a{
  color: #ffbf1b;
  font-family: 'Metropolis Semi Bold';
}
.wd-sl-cutomecheck label:before {
  content: '';
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: 2px solid #ffbf1b;
    padding: 0px;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 5px;
}
.wd-sl-cutomecheck input:checked + label:after {
  content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 8px;
    width: 6px;
    height: 13px;
    border: solid #ffbf1b;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/*============login-end============*/
/*===========about-us==============*/
.wd-md-inner-pages section{
  padding-top: 50px;
}
.wd-md-inner-pages{
  padding-top: 80px;
}
.wd-md-about-banner{
  background: url(../images/inner-banner.png) no-repeat;
  width: 100%;
  height: auto;
  background-size:cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}
.wd-md-about-banner h2{
  font-family: 'Metropolis Bold';
  font-size: 50px;
  line-height: 32px;
  color: #FFFFFF;
}
.wd-md-about-banner .breadcrumb {
    margin-bottom: 0;
    padding-bottom: 0;
}
.wd-md-about-banner ol.breadcrumb{
  background: transparent;
  align-items: center;
}
.wd-md-about-banner ol.breadcrumb li{
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  padding: 0 10px;
}
.wd-md-about-banner .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #FFBF1B;
    content: "";
}
h3.wd-md-title{
  font-family: 'Metropolis Medium';
  font-size: 50px;
  line-height: 137.5%;
  text-transform: uppercase;
  color: #000000;
  position: relative;
}
span.yew-text{
  color: #FFBF1B;
}
h3.wd-md-title:before{
  content: '';
  background: url('../images/hadline.png') no-repeat;
  width:100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.wd-md-about-blog .wd-md-who p{
  font-size: 16px;
  line-height: 30px;
  color: rgb(82 82 82 / 80%);
}
h3.wd-tit-center{
  font-family: 'Metropolis Medium';
  font-size: 50px;
  line-height: 137.5%;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  text-align: center;
}
h3.wd-tit-center:before{
  content: '';
  background: url('../images/hedcenline.png') no-repeat;
  width:100%;
  height: 6px;
  position: absolute;
  bottom: -7px;
  left: 47%;
}
.wd-md-works{
  background: #F9F9F9;
  padding-bottom: 50px;
}
.wd-md-works .wd-md-work-blog{
  padding-top: 30px;
}
.wd-md-works .wd-md-work-blog .wd-md-how-work{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.wd-md-works .wd-md-work-blog .wd-md-how-work h6{
  font-family: 'Metropolis Bold';
  font-size: 30px;
  line-height: 70px;
  width: 70px;
  height: 70px;
  margin-bottom: -14px;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  color: #FFBF1B;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}
.wd-md-works .wd-md-work-blog .wd-md-how-work .wd-md-how-wrok-img{
  background: #FFFFFF;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  text-align: center;
  line-height: 320px;
}
.wd-md-works .wd-md-work-blog .wd-md-how-work p{
  font-family: 'Metropolis Medium';
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
  color: #000000;
}
.wd-md-redy-help{
  background: url('../images/about-us/redy-help.png');
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  padding: 100px 0;
  color: #FFFFFF;
}
.wd-md-redy-help h3{color: #FFFFFF;line-height: 1.6;}
.wd-md-redy-help p{
  line-height: 1.8;
  margin: 30px 0;
}
.wd-md-offer{
  padding-bottom: 50px;
}
.wd-md-offer p{

  font-size: 16px;
  line-height: 30px;
  color: rgb(82 82 82 / 80%);
}
.wd-md-offer h5{
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  color: #000000;
}
.wd-md-offer h5 span{
  padding-right: 10px;
}
/*===========about-us-end==============*/
/*===========we-offer-start=============*/
.wd-md-offer-blog{
  padding-top: 0;
  padding-bottom: 70px;
}
.wd-md-offer-blog .wd-md-offer-list{
  background: #FFFFFF;
  box-shadow: 8px 8px 29px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0 20px 30px;
  text-align: center;
  margin-top: 85px;
}
.wd-md-offer-blog .wd-md-offer-list img{
  margin-top: -35px;
  padding-bottom: 20px;
}
.wd-md-offer-blog .wd-md-offer-list h3{
  font-family: 'Metropolis Bold';
  font-size: 22px;
  line-height: 22px;
  color: #3E5798;
  padding-bottom: 20px;
}
.wd-md-offer-blog .wd-md-offer-list p{
  font-size: 15px;
  line-height: 16px;
  color: #545454;
  width: 100%;
  background: #F9F9F9;
  border-radius: 0px 7px 7px 0px;
  padding: 14px 8px;
  margin-bottom: 0;
  text-align: left;
}
.wd-md-offer-blog .wd-md-offer-list span{
  background: #666666;
  border-radius: 7px 0px 0px 7px;
  color: #FFFFFF;
  padding: 10px 7px;
  font-weight: 600;
  font-size: 16px;
}
.wd-md-works .bgry{background: #FFFFFF !important;}
.wd-md-about-blog {
    padding: 70px 0 !important;
}
.wd-md-about-blog p{
  margin: 30px 0;
}
/*===========we-offer-end=============*/
/* modal-css */
.custome-modal .modal-content {
    background: #FFFFFF;
    box-shadow: 8px 8px 18px rgb(0 0 0 / 15%);
    border-radius: 16px;
    border: none;
}
.custome-modal .modal-header{
  background: #F8F8F8;
  border-radius: 16px 16px 0px 0px;
  position: relative;
  justify-content: center;
  border-bottom: none;
}
.custome-modal button.close, .custome-modal button.close:hover {
    position: absolute;
    right: 0;
    top: 0;
    background: #FFBF1B;
    opacity: 1;
    border-radius: 50%;
    padding: 5px 10px !important;
}
.custome-modal p{
  line-height: 1.7;
}
.custome-modal ul li {
    font-size: 13px;
    padding: 0 0 10px;
    font-family: 'Metropolis Semi Bold';
    display: flex;
    align-items: baseline;
}
.custome-modal ul li span{
  width: 10px;
  height: 9px;
  background: #FFBF1B;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
/*===========contact-us===============*/
.wd-md-contact-detail{
  padding: 50px 0;
}
.wd-md-form-blog {
    margin: 30px 0 0;
}
.wd-md-contact-detail .wd-md-con-inner img{
  width: 80px;
    height: 80px;
    object-fit: contain;
}
.wd-md-contact-detail .wd-md-con-inner h4{
  margin-top: 15px;
  font-family: 'Metropolis Semi Bold';
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #142247;
}
.wd-md-contact-detail .wd-md-con-inner p{

  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: rgb(20 34 71 / 50%);
}
.wd-md-cont-add{
  background: #F5F5F5;
  padding: 0!important;
}
.wd-md-cont-add .wd-md-add-blog .wd-md-cont-form{
  max-width: 100%;
  width: 50%;
  margin: 30px auto;
}
.wd-md-cont-add .wd-md-add-blog .wd-md-cont-form .wd-md-form-blog label{

  font-size: 16px;
  line-height: 16px;
  color: #000000;
}
.wd-md-cont-add .wd-md-add-blog .wd-md-cont-form .wd-md-form-blog input{
  background: #FFFFFF;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  border: none;
}
.wd-md-cont-add .wd-md-add-blog .wd-md-cont-form .wd-md-form-blog textarea{
  background: #FFFFFF;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  border: none;
}
.wd-md-cont-add .wd-md-add-blog .wd-md-cont-form .wd-md-form-blog button.wd-btn-cont{
  background: #FFBF1B;
    border-radius: 5px;
    padding: 5px 20px;
    font-family: 'Metropolis Bold';
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #142247;
    border: 1px solid #FFBF1B;
    display: block;
    margin: 41px auto 0;
    box-shadow: 0px 7px 21px rgb(255 191 27 / 61%);
}
.wd-md-cont-add .wd-md-add-blog .wd-md-cont-form .wd-md-form-blog button.wd-btn-cont:hover{
  background: transparent;
    text-decoration: none;
}
/*===========contact-us-end===========*/
/*===========my-profile===============*/
.wd-md-myprofile{
  padding-bottom: 70px;
  background: #E5E5E5;
}
.wd-md-myprofile .wd-md-pro-img{
  background: #FFFFFF;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin: 0 auto;
  padding: 33px;
  height: 100%;
  text-align: center;
}
.wd-md-myprofile .wd-md-pro-img h5{
  font-family: 'Metropolis Semi Bold';
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #142247;
  margin-top: 20px;
}
.wd-md-myprofile .wd-md-mypro-details{
  background: #FFFFFF;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.wd-md-myprofile .wd-md-mypro-details .wd-md-mypro-box{
  padding: 15px 0;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  width: 100%;
  margin: 0 auto;
}
.wd-md-myprofile .wd-md-mypro-details .wd-md-mypro-box label{
  font-family: 'Metropolis Semi Bold';
  font-size: 15px;
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  padding: 0 20px;
}
.wd-md-myprofile .wd-md-mypro-details .wd-md-mypro-box p{

  font-size: 15px;
  line-height: 15px;
  color: #000000;
  margin-bottom: 0;
}
.wd-md-myprofile .wd-md-mypro-details a{
  margin: 20px;
}
/*===========my-profile-end============*/
/*===========edit-profile==============*/
.wd-md-myprofile .wd-md-pro-img .wd-md-edit-pho{
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.wd-md-myprofile .wd-md-pro-img .wd-md-edit-pho .wd-md-camera{
  position: absolute;
    top: 0;
    right: 0;
    background: #FFBF1B;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 27px;
    overflow: hidden;
    margin: -10px;
}
.wd-md-myprofile .wd-md-pro-img .wd-md-edit-pho .wd-md-camera input {
    position: absolute;
    opacity: 0;
    width: 35px;
    height: 35px;
    left: 0;
    top: 0;
}
.wd-md-myprofile .wd-md-mypro-details .wd-md-mypro-box input.wd-cus-input{
  border: none;
  width: 100%;
  margin-right: 20px;
  height: auto;
    padding: 0;
    white-space: nowrap;
}
.wd-md-myprofile .wd-md-mypro-details .wd-md-mypro-box input.wd-cus-input::placeholder{

  font-size: 15px;
  line-height: 15px;
  color: #777777;
}
.wd-md-myprofile .wd-md-mypro-details .wd-md-mypro-box input.wd-cus-input:focus{
  box-shadow: none;
}
.wd-md-myprofile .wd-md-mypro-details a.wd-btn-save{
  padding: 10px 55px;
}
/*===========edit-profile-end==========*/
/*==============booking-summary============*/
.wd-md-booking-sum {
  background: #E5E5E5;
  padding-bottom: 70px;
}
.wd-md-booking-sum .wd-md-sum-first-blog{
  background: #FFFFFF;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  margin-bottom: 32px;
}
.wd-md-booking-sum .wd-md-sum-first-blog h5.wd-md-sum-tit{
  background: #F8F8F8;
  padding: 15px;
  border-radius: 16px 16px 0px 0px;
  font-family: 'Metropolis Semi Bold';
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}
.wd-md-booking-sum .wd-md-sum-first-blog h5.wd-md-sum-tit svg{
  margin-right: 10px;
}
.wd-md-booking-sum .wd-md-sum-first-blog h5.wd-mid-sum-tit{
  border-radius: 0;
}
.wd-md-booking-sum .wd-md-sum-first-blog .wd-md-sum-det-blog{
  padding: 0 15px;
}
.wd-md-booking-sum .wd-md-sum-first-blog .wd-md-sum-det-blog .wd-md-sum-det{
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.wd-md-booking-sum .wd-md-sum-first-blog .wd-md-sum-det-blog .wd-md-sum-det h6{
  font-family: 'Metropolis Medium';
  font-size: 16px;
  line-height: 16px;
  color: #333333;
  margin-bottom: 0;
  padding: 15px 0;
}
.wd-md-booking-sum .wd-md-sum-first-blog .wd-md-sum-det-blog .wd-md-sum-det p{

  font-size: 16px;
  line-height: 1.5;
  color: #777777;
  margin-bottom: 0;
  padding: 15px 0;
  text-align: left;
  width: 37%;
}
.wd-md-sum-pay-details-blog{
  padding:15px;
}
.wd-md-sum-pay-details-blog hr{
  border-top: 1px solid rgb(0 0 0 / 20%);
}
.wd-md-sum-pay-details-blog .wd-md-sum-pay-details h6{
  font-family: 'Metropolis Medium';
  font-size: 16px;
  line-height: 16px;
  color: #333333;
  padding-left: 20px;
}
.wd-md-sum-pay-details-blog .wd-md-sum-pay-details p{
  font-family: 'Metropolis Medium';
  font-size: 16px;
  line-height: 16px;
  color: #333333;
  padding-right: 20px;
  width: 10%;
  text-align: left;
}
.wd-md-booking-sum .wd-md-book-btn-blog a.edit-btn{
  background: transparent;
    color: #3E5798;
    font-size: 16px;
    padding: 10px 60px;
    border-radius: 5px;
    font-family: 'Metropolis Semi Bold';
    display: inline-block;
    border: 1px solid #3E5798;
    margin-left: 20px;
}
.wd-md-booking-sum .wd-md-book-btn-blog a.edit-btn:hover{
  background: #3E5798;
  color: #ffffff;
}
.wd-md-booking-sum .wd-md-book-cancle-policy p{
  padding-top: 40px;

  font-size: 16px;
  line-height: 18px;
  color: #000000;
  text-align: center;
}
.wd-md-booking-sum .wd-md-book-cancle-policy p a{
  color: #FFBF1B;
}
/*=============payment-redio-btn=========*/
.wd-md-pay-opation{
  padding: 23px 0;
}
.wd-md-pay-opation .wd-md-pay-card-blog p{
  font-size: 14px;
    line-height: normal;
    color: rgb(0 0 0 / 70%);
    text-align: right;
    display: block;
    margin-bottom: 0;
    padding: 10px 0;
}
.wd-md-pay-card-blog
{
  display:inline-block;
  width:490px;
  margin:10px;
  height:60px;
  position:relative;
  padding:0 2%;
}
.wd-md-pay-card-blog input[type="radio"]
{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  opacity:0;
}
.wd-md-pay-card-blog .selected_img
{
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.02);
  pointer-events: none;
  width:100%;
  height:100%;
  padding:15px;
}
.wd-md-pay-card-blog input[type="radio"]:checked ~ .selected_img
{
    border: 1px solid #FFBF1B;
    padding:15px;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.02);
}
/*=============payment-redio-btn-end=====*/
/*============booking-summary-end==========*/
/*============booking-details==============*/
.wd-md-booking-sum .wd-md-sum-first-blog h5.wd-md-sum-tit span.wd-md-completed{
  font-family: 'Metropolis Medium';
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #00A454;
}
.wd-md-booking-sum .wd-md-book-btn-blog a.wd-cancle-btn{
  font-family: 'Metropolis Medium';
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #343434;
  opacity: 0.6;
  margin-left: 20px;
}
/*=============cancle-booking-model=========*/
#wd-cancle-booking .modal-dialog{
  max-width: 700px;
}
#wd-cancle-booking .modal-content {
    background: #FFFFFF;
    box-shadow: 8px 8px 18px rgb(0 0 0 / 15%);
    border-radius: 16px;
    border: none;
    width: 700px;
}
#wd-cancle-booking .modal-header {
    background: #F8F8F8;
    border-radius: 16px 16px 0px 0px;
    border-bottom: none;
    width: 700px;
    padding:0 15px;
}
#wd-cancle-booking .modal-body{
  padding: 0;
}
#wd-cancle-booking button.close, #wd-cancle-booking button.close:hover {
    position: absolute;
    right: 0;
    top: 0;
    background: #FFBF1B;
    opacity: 1;
    border-radius: 50%;
    padding: 5px 10px !important;
}
#wd-cancle-booking p {
  font-size: 16px;
    line-height: 1.5;
  color: #000000;
  padding: 20px 15px;
  margin-bottom: 0;
}
#wd-cancle-booking p a{
  color: #FFBF1B;
}
#wd-cancle-booking h5{
  background: #F8F8F8;
  font-family: 'Metropolis Semi Bold';
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  padding: 20px 15px;
  margin-bottom: 0;
}
#wd-cancle-booking hr{
  margin: 0;
}
/*=============cancle-booking-model-end=====*/
/*============booking-details-end==========*/
/*============terms-conditions=============*/
.wd-md-ter-con{
  padding-bottom: 70px;
}
.wd-md-ter-con .wd-md-ter-con-blog{
  background: #FFFFFF;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 30px;
}
.wd-md-ter-con .wd-md-ter-con-blog .wd-md-ter-det{
  padding-bottom: 20px;
}
.wd-md-ter-con .wd-md-ter-con-blog .wd-md-ter-det h5{
  font-family: 'Metropolis Semi Bold';
  font-size: 22px;
  line-height: 22px;
  color: #000000;
}
.wd-md-ter-con .wd-md-ter-con-blog .wd-md-ter-det p{
  color: #777777;
}
.wd-md-ter-con .wd-md-ter-con-blog .wd-md-ter-det ul{
  margin-left: 15px;
}
.wd-md-ter-con .wd-md-ter-con-blog .wd-md-ter-det ul li{

  font-size: 14px;
  line-height: 28px;
  color: #777777;
}
.wd-md-ter-con .wd-md-ter-con-blog .wd-md-ter-det ul li::before{
  content: "\2022";
  color: #FFBF1B;
  font-weight: bold;
  display: inline-block;
  width: 15px;
  margin-left: -15px;
}
/*===========terms-conditions-end==========*/

/* APPLY-SERVICES */
.wd-sl-extraspace{
  margin-top: 30px;
  margin-bottom: 30px;
}
#apply-service {
    background: #E5E5E5;
    padding: 70px 0;
}
.wd-sl-form .wd-sl-imgradio [type="radio"]:checked,
.wd-sl-form .wd-sl-imgradio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.wd-sl-form .wd-sl-imgradio label{
  position: relative;
    cursor: pointer;
    display: flex;
    background: #FFFFFF;
    border: 3px solid #FFBF1B;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.wd-sl-form .wd-sl-imgradio label svg {
    width: 55px;
    height: 50px;
    object-fit: contain;
}
.wd-sl-form .wd-sl-imgradio [type="radio"]:checked + label
{
  background: #142247;
  border-color: #142247;
}
.wd-sl-form .wd-sl-imgradio [type="radio"]:checked + label svg path.forwhite{
  fill:#FFFFFF;
}
.wd-sl-form .form-group.wd-sl-imgradio {
    -webkit-columns: 8;
    -moz-columns: 8;
    columns: 8;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
}
.wd-sl-form .form-group.wd-sl-imgradio p{
  position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    break-inside: avoid;
    text-align: center;
    color: #545454;
    font-family: 'Metropolis Medium';
    font-size: 13px;
    line-height: 1.5;
}
.wd-sl-howhelp{
  margin-bottom: 15px;
  position: relative;
}
.wd-sl-howhelp h5 {
    display: inline-block;
    color: #3E5798;
    background: #E5E5E5;
    position: relative;
    padding-right: 15px;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    white-space: nowrap;
}
.wd-sl-howhelp span{
    display: inline-block;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: -13px;
    right: 0;
}
.wd-sl-form .form-control{
  background: #FFFFFF;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  height: auto;
  padding: 12px 15px;
  border:none;
  line-height: normal;
  font-size: 16px;
}
.wd-sl-form label{
  font-size: 15px;
  margin-bottom: 3px;
}
.wd-sl-customeradio {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.wd-sl-commonflex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*datepicker & timepicker*/
.input-group-append{margin-left: 0 !important;}
.input-group-append button {
    width: auto !important;
    border: none !important;
    padding: 0;
    color: #6c757d !important;
    z-index: 11 !important;
}
.input-group-append button:focus{box-shadow: none !important;color: #6c757d;}
.input-group:not(.has-validation)>.form-control:not(:last-child){
  border-top-right-radius: 9px;
    border-bottom-right-radius: 9px
}
.gj-datepicker-bootstrap [role=right-icon] button .gj-icon, .gj-timepicker-bootstrap [role=right-icon] button .gj-icon{
  right: 0;
  top: 0 !important;
  left: unset !important;
  color: #6c757d !important;
  margin: 10px 10px;
}
.wd-sl-propay{
  padding: 30px 0 0;
}
.edit-tell .iti__selected-flag{
  padding: 0;
  justify-content: flex-start !important;
}
/* Book History */
#book-history{
  height: 100%;
  background: #E5E5E5;
  padding: 70px 0;
}
#book-history .container-fluid{
  width: 90%;
}
#book-history .form-control{
  background: #FFFFFF;
    box-shadow: 0px 4px 11px rgb(0 0 0 / 10%);
    border-radius: 9px;
    height: auto;
    padding: 10px 15px;
    border: none;
    line-height: normal;
    font-size: 16px;
    appearance: auto;
}
.wd-sl-bookhistory table thead tr{
  background:#FFBF1B;
  font-size: 16px;
  font-family: 'Metropolis Semi Bold';
}
.wd-sl-bookhistory table, .wd-sl-bookhistory table thead th, .wd-sl-bookhistory table tbody td{
  border:none;
  vertical-align: middle;
}
.wd-sl-bookhistory table tbody td:last-child{
  text-align: center;
}
.wd-sl-bookhistory table tbody td{
  font-size: 14px;
  color: #555555;
}
.wd-sl-bookhistory .table-striped tbody tr:nth-of-type(odd) {
    background-color: #F8F8F8;
}
.wd-sl-bookhistory .table-striped tbody tr:nth-of-type(even) {
    background-color: #FFFFFF;
}
.status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wd-sl-bookhistory .in-progress{
  background: #FFFFFF;
  border: 1px solid #0678E1;
  color: #0678E1;
  font-size: 14px;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 4px;
  line-height: normal;
}
.wd-sl-bookhistory .complt{
  background: #FFFFFF;
  border: 1px solid #26850F;
  color: #26850F;
  font-size: 14px;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 4px;
  line-height: normal;
}
.wd-sl-bookhistory .pending{
  background: #FFFFFF;
  border: 1px solid #FF8D23;
  color: #FF8D23;
  font-size: 14px;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 4px;
  line-height: normal;
}
.wd-sl-bookhistory .danger{
  background: #F34018;
  border: 1px solid #F34018;
  padding: 8px 10px;
  display: inline-block;
  border-radius: 4px;
  line-height: normal;
  font-size: 14px;
  margin-bottom: 0;
}
.wd-sl-bookhistory .download{
  background: #142247;
    border: 1px solid #142247;
    padding: 4px;
    display: inline-block;
    border-radius: 4px;
    line-height: normal;
    font-size: 14px;
}
.wd-sl-bookhistory .pagination .previous a{
  border-radius: 9px 0 0 9px;
    padding: 10px 15px;
    line-height: normal;
    border:none;
    width: auto;
    height: auto;
}
.wd-sl-bookhistory .pagination .next a{
  border-radius: 0 9px 9px 0;
    padding: 10px 15px;
    line-height: normal;
    border:none;
    width: auto;
    height: auto;
    border-left: 1px solid #FFBF1B;
}
.wd-sl-bookhistory .pagination li.active a{
  background: #FFBF1B;
  color: #142247;
  border-right: 1px solid #FFBF1B;
    border-left: 1px solid #FFBF1B;
}
.wd-sl-bookhistory .pagination li a{
  background: #FFFFFF;
  color: #FFBF1B;
  font-size: 14px;
  padding: 8px 12px;
  border: none;
    border-left: 1px solid #FFBF1B;
  width: 32px;
    height: 34px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    z-index: 1;
    margin-left: 0;
}
.wd-sl-bookhistory .page-link:hover{z-index: 1 !important;}
#bookhist_info {
    font-size: 14px;
}
.wd-sl-bookhistory label{font-size: 14px;margin-bottom: 0;}
#bookhist {
    margin: 30px 0 !important;
}
.custome-modal .form-control {
    background: #F5F5F5;
    border: none;
    border-radius: 9px;
    padding: 10px 15px;
    font-size: 14px;
    height: 100px;
}
.wd-sl-form .form-control:focus{
  outline: none;
}

#support a#adm_mobile{color: #FFBF1B;}

footer a#adm_mobile{color: #FFFFFF;}
.wd-md-contact-detail a#adm_mobile{color: rgb(20 34 71 / 50%);}
.wd-md-myprofile #phar_mobile a{color: #000000;white-space: nowrap;text-align: left;display: block;margin: 0;}
.wd-md-sum-det a{color: #777777;}
.wd-md-add-map, .wd-md-add-map iframe{
  height: 100%;
  width: 100%;
}
footer .personal-links ul li a {
    display: flex;
}
#main_form .form-group{text-align: left;}
label.error {
    font-size: 11px;
    padding: 0 15px;
}
.wd-sl-bookhistory button, table.table-bordered.dataTable td:last-child, table.table-bordered.dataTable td:last-child, th, td{white-space: nowrap;}
.wd-sl-bookhistory .danger{margin-right: 5px;}
.wd-sl-custome_value {
    max-width: 100%;
    margin: 0 auto 1rem;
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}
.wd-sl-custome_value .wd-sl-custome_valueinner{
  margin-right: 20px;
}
#atitle p {
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    color: #142247;
    font-family: 'Metropolis Medium';
}

/* otp verify modal */
form.wd-sl-popform .form-control {background: #F5F5F5;
border-radius: 50px;width: 50px;height: 50px;text-align: center;}
form.wd-sl-popform h5 {font-size: 22px;font-weight: 700;color: #243F86;}
form.wd-sl-popform {text-align: center;}
form.wd-sl-popform p {font-size: 14px;font-weight: 400;color: #545454;}
button.wd-btn-login {background: #FFBF1B;
border-radius: 8px;font-size: 14px;font-weight: 600;border: none;padding: 10px 30px;margin: 20px 0;}

p.wd-eye-psw span a {color: #FFBF1B;}
.wd-sl-otpverify .modal-header {padding: 0;border: 0;position: relative;}

.wd-sl-otpverify .modal-header button.close {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #243F86;
    opacity: 1 !important;
    color: #fff;
    text-shadow: unset;
    padding: 0;
    border-radius: 30px;
    right: 5px;
    top: 5px;
    z-index: 1;
}
.wd-sl-otpverify .modal-content {
    border-radius: 21px;
}
form.wd-sl-popform .form-group.col-formgrid {
    max-width: 90%;
    margin: 30px auto 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wd-sl-otpverify .modal-content .modal-body {
    padding: 25px;
}
#more{
    padding: 100px 0;
}
.wd-kr-more-img img{
    width: 100%;
    height: 100%;
}
.wd-kr-more-txt h3{
    font-family: 'Metropolis Medium';
    font-size: 40px;
    text-transform: uppercase;
    color: #000000;
    margin: 15px auto;
}
.wd-kr-more-txt h3 b{
    color: #FFBF1B;
}
.wd-kr-more-txt p{
    font-size: 16px;
    color: #525252;
    margin-bottom: 35px;
}
/*---location---*/
.wd-kr-inner-pages{
    padding-top: 80px;
}
.wd-kr-location-banner{
    background: url(../images/location/banner.jpg) no-repeat;
    width: 100%;
    height: 591px;
    background-size:cover;
    display: flex;
    align-items: center;
}
.wd-kr-location-banner h2{
    font-family: 'Metropolis Bold';
    font-size: 60px;
    line-height: 137.5%;
    color: #FFFFFF;
}
.wd-kr-location-banner h2 b{
    color: #FFBF1B;
    display: block;
}
.wd-kr-location-banner p{
    font-family: 'Metropolis Medium';
    font-size: 20px;
    line-height: 182.5%;
    color: #FFFFFF;
}

.wd-kr-location-menu h3{
    font-family: 'Metropolis Medium';
    font-size: 40px;
    line-height: 137.5%;
    color: #000000;
    padding: 40px 0 0;
    margin-bottom: 30px;
}
.wd-kr-location-menu h3 b{
    color: #FFBF1B;
}
.wd-kr-location-menu form .form-group{
    position: relative;
}
.wd-kr-location-menu form .form-group .form-control{
    background: transparent;
    border-bottom: 1px solid #142247;
    padding: 0px 0px 10px 30px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    font-family: 'Metropolis Medium';
    font-size: 16px;
    color: #142247;
}
.wd-map-icon{
    position: absolute;
    top: 0;
    left: 0;
}
.wd-map-icon svg{
    width: 25px;
    height: 25px;
    vertical-align: middle;
}
.wd-kr-location-menu  .form-control:focus{
    border-color: none;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%);
}
.wd-kr-location-bx{
    margin-bottom: 40px;
}
.wd-kr-location-menu ul li a{
    font-size: 14px;
    line-height: 14px;
    text-decoration-line: underline;
    color: #000000;
    margin-bottom: 16px;
}

.wd-kr-location-menu ul{
    margin-bottom: 15px;
}

/*--------- LOCATION DETAILS --------*/

.wd-jk-location-detail {
    border-top: 1px solid rgba(20, 34, 71, 0.3);;
}

.wd-jk-location-detail h4 {
    margin-top: 20px;
    font-size: 28px;
    color: #000000;
}

.wd-jk-location-detail b {
    color: #FFBF1B;
}

.wd-jk-location-detail h5 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 22px;
    color: #142247;
}

.wd-jk-location-detail span {
    margin-top: 20px;
    font-weight: 600;
    font-size: 22px;
    color: #142247;
    display: block;
}

.wd-jk-location-detail ul.week-timing li {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.wd-jk-location-detail ul.week-timing li span {
    font-weight: 600;
    font-size: 16px;
    color: #142247;
}

.wd-jk-location-detail h6 {
    margin-top: 30px;
    font-weight: 600;
    font-size: 22px;
    color: #142247;
}

.wd-jk-location-detail ul li a {
    margin-top: 25px;
    font-weight: 600;
    font-size: 16px;
    color: #142247;
    display: block;
}

.wd-jk-location-detail .replacement {
    border-left: 1px solid rgba(20, 34, 71, 0.3);
}

.wd-jk-location-detail .replacement h6 {
    margin: 20px 0 0 20px;
    font-weight: 600;
    font-size: 25px;
    color: #142247;
}

.wd-jk-location-detail .replacement p {
    margin: 15px 0 0 20px;
    font-weight: 500;
    font-size: 18px;
    color: rgba(20, 34, 71, 0.7);
}
/*.pera_text {
    font-family: 'Metropolis Semi Bold' !important;
    font-size: 16px !important;
    color: #142247 !important;
    margin-bottom: 10px !important;
}*/