/* loader css */

.cart_loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000024;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}
.payment_loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000024;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}
h2.loader_text {
    font-size: 20px;
    position: absolute;
    width: 450px;
    left: -170px;
    top: -50px;
    text-align: center;
    color: #26334c;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: fixed;
    left: 46%;
    top: 46%;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #a7b20e;
    border-color: #26344c transparent #26344c transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* loader css end*/

/* location area css start */

.locations1Thumbs .locations1Thumb--3 {
    margin: 0 15px;
}
.home_location_map {
    background-color: #2c3b58;
    padding: 20px 20px 20px 0;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.left_side_address_area {
    width: 40%;
    float: left;
}
.home_location_map .locations1Map {
    width: 60%;
    float: right;
}
.left_side_address_area ul {
    border-bottom: 1px solid #c7c7c7;
    padding: 30px 0;
    margin: 0 0 20px;
    list-style: none;
}
.left_side_address_area ul li a.active {
    background-color: #192335ad;
}

.left_side_address_area ul li a {
    display: flex;
    padding: 10px 30px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}
.left_side_address_area ul li a:hover {
    background-color: #192335ad;
}
.left_side_address_area ul li a img {
    width: 200px;
    margin: 0 25px 0 0;
}
.left_side_address_area ul li a p {
    font-size: 15px;
    color: #fff;
    padding: 17px 0;
    line-height: 22px;
}
.locations1Thumb_active img {
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
    right: 0;
}
.locations1Thumb_active {
    position: relative;
	    cursor: pointer;
}


@media screen and (max-width: 1060px) and (min-width: 851px){
  .left_side_address_area ul li a img {
    width: 150px;
    margin: 0 15px 0 0;
}
.left_side_address_area{width: 45%;}
.home_location_map .locations1Map {width: 55%;}
.left_side_address_area ul li a {padding: 10px 20px;}
}
@media screen and (max-width: 850px){
.locations1Thumbs .locations1Thumb--3 {
    margin: 0px;
}
.left_side_address_area {
    width: 100% !important;
    display: none;
}
.home_location_map .locations1Map {
    width: 100% !important;
    margin-top: 0px;
}
.left_side_address_area ul li a {
    justify-content: center;
}
.home_location_map {
    padding-right: 0px !important;
    padding: 0px;
}
.locations1Thumbs .locations1Thumb {
    padding: 4rem 1rem !important;
}
}

/* location area css end */

.liveChatBtn span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    transform: rotate(0deg);
    opacity: 0;
}
.cartSummaryWrap .cartSummary__right a {
    text-decoration: none;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummaryNext a {
    text-decoration: none;
}
.discountText {
    margin: 20px 0 0;
    line-height: 20px;
    width: 100%
}

@media screen and (max-width: 425px) {
    .discountText {
    width: 100%;
    margin-top: 15px !important;
}
}

.discountText i {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    font-style: normal;
}
.select2 option {
    font-size: 1.6rem;
}


/* The mailing check */

.mailing_check {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 25px 0 0;
    color: #4d4c70;
        font-family: "Roboto", sans-serif;
}
.mailing_check .checkmark:after {
    color: #fff !important;
    display: none; !important;
}

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

/* Create a custom checkbox */
.mailing_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #ee851f;
}

/* On mouse-over, add a grey background color */
.mailing_check:hover input ~ .checkmark {
  background-color: #ffffff;
}

/* When the checkbox is checked, add a blue background */
.mailing_check input:checked ~ .checkmark {
    background-color: #ee851f;
    border: 2px solid #ee851f;
    border-radius: 4px;
}

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

/* Show the checkmark when checked */
.mailing_check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.mailing_check .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* The mailing check end */

/* billing form css */

.billing_address_form_row {
    display: block;
    padding: 0px 0px;
    background-color: transparent;
}
.billing_address_form {
    padding: 0px;
    margin: 0;
    grid-template-rows: max-content 0fr 0fr 0fr 0fr !important;
}
.billing_address_form_main .row {
    display: flex;
}
.billing_address_form_main .row .col-md-6 {
    width: 48%;
}
.billing_address_form_main .row .col-md-6:last-child {
    width: 50%;
    padding: 0 0 0 40px;
}
.billing_address_form .personalDetails__heading {
    padding: 15px 30px;
}
.billing_address_form_main {
    background-color: #e8e8e8;
    margin: 30px 0 0;
    padding: 40px 30px;
}

/* billing form css end */

.freeCompanyFModal {
    margin: 20px auto;
}
.next_btns {
    grid-column: 2 / span 1 !important;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}
.next_btns .editOrder_btn {
    float: left;
    margin-left: 19%;
}

@media screen and (max-height: 800px){
    .createPasswordWrap .createPassword__next button {
    margin: 15px 0 15px;
    width: 100%;
}
.combo img {
    margin-bottom: 15px;
}
}

.next_btns .proceedCartStep3 {
    margin-left: 8%;
}
.editOrder_btn button:hover {
    background-color: #ee851f !important;
    border-color: #ee851f !important;
}

.editOrder_btn button {
    background-color: #B4B4B4 !important;
    border-color: #b4b4b4 !important;
}
.createPasswordWrap .createPassword__next a {
    text-decoration: none;
}
.editOrder_btn button:hover {
    background-color: #ee851f !important;
    border-color: #ee851f !important;
}

.editOrder_btn button {
    background-color: #B4B4B4 !important;
    border-color: #b4b4b4 !important;
}
.createPasswordWrap .createPassword__next button {
    margin-top: 0px !important
}
.getInTouch__col2 a {position: relative;}

.upsellsWrap .upsell-1__name {
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
    padding-top: 2rem;
}
.upsellsWrap .upsell-1__price {
    grid-column: 2 / span 2;
    grid-row: 2 / span 1;
    justify-self: auto;
    padding: 2rem 0px;
}
.upsellsWrap .upsell-1__select {
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
    padding-bottom: 2rem;
        padding-right: 4rem;
}
.upsellsWrap .upsell-1__add {
    grid-column: 3 / span 1;
    grid-row: 3 / span 1;
        margin-bottom: 2rem;
    margin-right: 2rem;
}
.upsellsWrap .upsell-2__img--build {
    /*background-image: url(../img/rand1.png);*/
}
.upsellsWrap .upsell-2__img--teleAnsw img {
    width: 100%;
    /*height: 100%;*/
}
.upsellsWrap .upsell-1 {
        padding: 0px;
}

.upsellsWrap .upsell-1__img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -ms-grid-column-align: stretch;
    justify-self: stretch;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center;
}
.upsellsWrap .upsell-1__select select {
    padding: 0.3em 1.4em 0.2em 0.8em;
    font-size: 1.4rem;
    background-image: url(../img/angle-down-solid.svg), linear-gradient(to bottom, #dbdbdb 100%, #F5F5F5 100%);
    border: none;
}
.upsellsWrap .upsell-2__select select {
    padding: 0.3em 1.4em 0.2em 0.8em;
    font-size: 1.4rem;
    background-image: url(../img/angle-down-solid.svg), linear-gradient(to bottom, #e9e9e9 100%, #F5F5F5 100%);
    border: none;
}

/* edit by 05-08 */
.gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 10px 10px 0;
    text-align: left;
}
.info_content h3 {
    font-size: 15px;
    margin-top: 5px;
}
.info_content p {
    font-size: 12px;
    text-align: left;
    margin: 8px 0 0;
}
.contactUsIntro__liveChat {
    position: relative;
}
.contactUsIntro__liveChat span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    transform: rotate(0deg);
    opacity: 0;
}
span.cart_value {
    position: absolute;
    font-size: 12px;
    top: -10px;
    left: -8px;
    background-color: #2c3b58;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
}
#button {
  display: inline-block;
  background-color: #ee851f;
    font-size: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #2c3b58;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.thankyou_modal {
    width: 500px;
    text-align: center;
}
.thankyou_modal h3 {
    font-size: 40px;
    margin: 15px 0 20px;
    font-weight: 500;
    color: #EE851F;
    font-family: "Roboto", sans-serif;
}
.thankyou_modal p {
    font-size: 18px;
    color: #545454;
    font-family: "Roboto", sans-serif;
}
.thankyou_modal .modal__head {
    height: 0px;
    position: relative;
}
.thankyou_modal .modal__head i {
    margin: -20px -15px 0 0;
    position: absolute;
    right: 0;
}

.meetingRoom_map .gm-style-iw h3 {
    font-size: 15px;
    color: #2c3b58;
    font-weight: 500;
}
.meetingRoom_map .gm-style-iw h3::after{
  display: none;
}
/* call-back-modal css */


.callBack_Modal_container {
    min-height: 100%;
    padding: 10% 0 0;
    overflow: auto;
    width: 100%;
    height: 100%;
}
.callBack_Modal {
    width: 460px;
    margin: 60px auto;
    font-family: "Roboto", sans-serif;
	    top: 0;
    position: absolute;
}
.callBack_Modal .modal-header .close {
    margin-top: -25px;
    opacity: 1;
    float: right;
    border: none;
    background-color: transparent;
}
.callBack_Modal .modal-header .close:focus {
    outline: none;
}
.callBack_Modal .modal-header .close span.close-cross {
    font-size: 20px;
    font-weight: 600;
    color: #EE851F;
}
.callBack_Modal .modal-header.no-border h1 {
    font-size: 27px;
   text-align: center;
    margin: 15px 0;
    text-shadow: none;
    color: #EE851F;
    font-weight: 400;
}
.callBack_Modal .request-txt {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 20px;
}
.callBack_Modal .modal-body {
    color: #666;
    padding: 15px;
}
.callBack_Modal .form-group {
    color: #666;
}

.callBack_Modal .form-group {
    margin-bottom: 18px;
}
.callBack_Modal .popup_form .form-group label, .form-check label {
    color: #666;
    font-weight: 400;
    font-size: 14px;
}
.callBack_Modal .popup_form .form-group label, .form-check label {
    font-weight: 400;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}
.callBack_Modal .modal-body input {
    padding: 4px !important;
}
.callBack_Modal .popup_form input {
    /* border-bottom: none !important; */
    border-radius: 4px;
    display: block;
    width: 100%;
    height: 44px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.callBack_Modal h5.best_call {
    font-size: 15px;
    color: #666;
    font-weight: 400;
    padding-bottom: 10px;
}
.callBack_Modal .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}
.callBack_Modal .form-check {
    background: rgba(255, 255, 255, 0.2196078431372549);
    margin-bottom: 4px;
    padding-top: 10px;
    padding-bottom: 3px;
    border-radius: 4px;
}
.callBack_Modal input.form-check-input.booking-option__radio {
    width: 1em;
    height: 1em;
    background-color: #fff;
    border-radius: 50% !important;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    top: -4px;
    position: relative;
    display: inline-block;
    padding: 0;
}
.callBack_Modal input.form-check-input.booking-option__radio {
    border-bottom: none !important;
    border-radius: 4px;
}
.callBack_Modal .booking-option__radio:checked {
    background-color: #EE851F !important;
    transition: all .4s;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    padding-bottom: 11px;
}
.callBack_Modal form.popup_form textarea.form-control {
    height: 66px;
    resize: none;
    width: 100%;
    border-color: #ccc;
    font-size: 14px;
    border-radius: 4px;
    padding: 5px;
}
.callBack_Modal .popup_form input:focus {
    outline: none;
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
.callBack_Modal form.popup_form textarea.form-control:focus {
    outline: none;
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
.callBack_Modal .popup_form .callBk-btn {
    color: #fff;
    display: inline-block;
    margin: 25px 0 0;
    font-size: 1.8rem;
    background-color: #ee851f;
    border: 1px solid#ee851f;
}
.callBack_Modal .popup_form .callBk-btn:hover {
    color: #fff;
}
.callBack_Modal .callBk-btn:hover {
    transition: all .2s;
    color: #ee851f;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (max-width:480px) and (min-width:320px){
	.liveChat_sideBtn {top: 250px !important;}
	.footer1 .footer1AboutUs__apps a {margin-bottom: 10px;}
	.callBack_Modal {
    width: 94%;}
}
/* call back css end */

.thankYouWrap .thankYou-OrderInfo__print a {
    text-decoration: none;
}
.meetingRoom_map {
    padding: 0px !important;
}
button.contactUsIntro__liveChat:focus {
    outline: none;
}

/* covid19-css */

.covid19 {
    display: none;
    flex-direction: column;
    padding: 16px 24px 16px;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    background: #f2f2f5;
    box-shadow: 0 0 11px 2px rgba(0,0,0,.14);
}
.covid19__close {
    align-self: flex-end;
    color: #000032;
    cursor: pointer;
    margin-bottom: 4px;
    float: right;
}
.covid19__close i {
    width: 20px;
    height: 20px;
    font-size: 16px;
}
.covid19__heading {
    color: #1b1b21;
        margin: 0px;
        font-size: 24px;
        font-family: "Lato", sans-serif;
}
.covid19__body {
    color: #1b1b21;
    margin: 10px 0 0;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 20px;
}
.covid19__body a {
    font-size: 16px;
    color: blue;
    text-decoration: none;
}


.covid19a {
    position: unset;
    float: left;
    width: 100%;
    padding: 30px 125px;
    box-shadow: none;
    border-bottom: 1px solid #e3e3e3;
}
.covid19a .covid19__close {
    color: #c2cf10;
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 5px;
}
.covid19a .covid19__body {
    font-size: 20px;
    margin: 0px;
    /*color: #c2cf10;*/
    color: #000; 
    float: left;
}
.covid19a .covid19a_body {
    /* display: flex; */
    float: left;
    width: 100%;
}
.covid19a .learn_btn:hover {
    color: #c2cf10 !important;
    background-color: transparent;
}
.covid19a .learn_btn {
    background-color: #c2cf10;
    height: auto;
    padding: 21px 0;
    line-height: 0px;
    border-radius: 55px;
    margin: 8px 0% 0 0;
}
/* edit by 06-08 */

.contact-capcha {
    grid-column: 1 / span 2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / span 1;
    margin-top: 5rem;
}
.payment__captcha {
    justify-content: center;
    display: flex;
}

@media screen and (max-width: 1024px){
.contact-capcha {
    margin-top: 0;
    margin-bottom: 5rem;
}
}
@media screen and (max-width: 600px){
.contact-capcha {
    grid-column: 1 / span 1;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6 / span 1;
}
}
@media screen and (max-width: 400px){
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__submit {
    grid-row: 7 / span 1;
}
.contact-capcha {
	margin :0px;
}
}

@media screen and (max-width:575px) and (min-width:401px){
	.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__submit {
    grid-row: 7 / span 1;
}
.contact-capcha {
	margin :0px;
}
}

.partner-capcha {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 5 / span 1;
    -ms-grid-column-align: end;
    justify-self: end;
    margin-bottom: 3rem;
}
.partnersContact__submit {
    grid-row: 6 / span 1 !important;
}
@media screen and (max-width:500px) and (min-width:320px){
	.partner-capcha {
    grid-column: 1 / span 1;
    grid-row: 6 / span 1;
	}
	.partnersContact__submit {
    grid-row: 7 / span 1 !important;
}
}



/* READY MADE CSS */


/* .readymadeRoundSwitch::before {
    -webkit-transform: translateX(40px) !important;
    transform: translateX(40px) !important;
} */
.header2 .header2Content--readymade {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 41, 77, 0.9)), to(rgba(3, 41, 77, 0.9))), url(../img/readymade/ready-made-banner.jpg);
    background-image: linear-gradient(
0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url(../img/readymade/ready-made-banner.jpg);
}
.header2 .header2Content--readymade .header2ContentInner__h1 {
    padding: 4rem 0;
}
.cartItem__itemOption .readyCompNum {
    display: inline-block !important;
    color: #ee851f;
}
.readymade__contant br {
    font-size: 6px;
}
.discnt_applicble h5 {
    font-size: 20px;
    text-align: center;
    margin-top: -30px;
    margin-bottom: 30px;
    color: #9196a0;
    font-family: "Roboto", sans-serif;
}
.readymade_topWrapper {
    padding: 5rem 0;
    background-color: #ffffff;
}
.readymade_topWrapper .readymade__contant h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    color: #2c3b58;
    line-height: 160%;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 2rem;
}
.readymade_topWrapper .readymade__contant p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
}
.companySelection__wrap {
    padding: 8rem 0;
}

.readymade__tableMain {
    padding-top: 2rem;
}
.readymade__tableMain .Readymade__table .year__incorporation ul {
    display: flex;
    justify-content: end;
    list-style: none;
    align-items: center;
}
.readymade__tableMain .Readymade__table .year__incorporation ul li {
    padding-left: 15px;
}
.readymade__tableMain .Readymade__table .year__incorporation ul li .myForms__input {
    margin: 0px 0px 0 0;
    border-color: #ee851f;
    background-color: #fff;
    font-size: 15px;
    padding: 13px 15px;
}
.readymade__tableMain .Readymade__table .year__incorporation ul .select_box {
    width: 155px;
    overflow: hidden;
    border: 1px solid #ee851f;
    position: relative;
    padding: 12px 8px;
    background-color: #fff;
    border-radius: 5px;
}
.readymade__tableMain .Readymade__table .year__incorporation ul .select_box:after {
    width: 15px;
    height: 10px;
    background-image: url(../img/readymade/orange-arrow.svg);
    position: absolute;
    top: 37%;
    right: 10px;
    content: "";
    z-index: 98;
}
.readymade__tableMain .Readymade__table .year__incorporation ul .select_box select {
    width: 137px;
    border: 0;
    position: relative;
    z-index: 99;
    background: none;
    font-weight: 500;
    font-size: 15px;
    color: #ee851f;
    font-family: "Roboto", sans-serif;
}
.readymade__tableMain .Readymade__table .year__incorporation ul .select_box select:focus-visible {
    border: none;
    outline: none;
}
.readymade__tableMain .Readymade__table .year__incorporation ul .select_box select option {
    font-weight: 500;
    font-size: 15px;
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
}
.readymade__tableMain .Readymade__table .year__incorporation ul li p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: #2c3b58;
    line-height: 160%;
    text-align: center;
    margin-right: 20px;
}
.readymade__tableMain .Readymade__table .year__incorporation ul li button {
    font-family: "Roboto", sans-serif;
    background-color: #ffffff;
    font-size: 16px;
    padding: 12px 0px;
    width: 100px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    color: #485671;
    font-weight: 600;
}
.readymade__tableMain .Readymade__table .year__incorporation ul li button.active__year {
    background-color: #ee851f;
    color: #fff;
}
.readymade__tableMain .Readymade__table .table {
    width: 100%;
    margin-top: 3rem;
    overflow-x: scroll;
    border-collapse: collapse;
}

.readymade__tableMain .Readymade__table .table thead tr th {
    padding: 7px 0px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    background-color: #2c3b58;
}
.readymade__tableMain .Readymade__table .table thead tr th:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.readymade__tableMain .Readymade__table .table thead tr th:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.readymade__tableMain .Readymade__table .table tbody tr td {
    text-align: center;
    padding: 20px 0px;
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    background-color: #ffffff;
}
.readymade__tableMain .Readymade__table .table tbody tr td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
    overflow: hidden;
}
.readymade__tableMain .Readymade__table .table tbody tr .year__infotd {
    background-color: #ee851f;
    width: 10px;
    padding: 0px;
}
.readymade__tableMain .Readymade__table .table tbody tr td:first-child .year__info {
    background-color: #ee851f;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    width: 100%;
    padding: 0 0;
    text-align: center;
    display: flex;
    justify-content: center;
    transform: rotate(-90deg);
}
.readymade__tableMain .Readymade__table .table tbody tr td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.readymade__tableMain .Readymade__table .table tbody tr td .dropdown__flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.readymade__tableMain .Readymade__table .table tbody tr td .dropdown__flex .dropdown__btn {
    font-size: 17px;
    color: #2c3b58;
    border: none;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    width: 270px;
    line-height: 22px;
}
.readymade__tableMain .Readymade__table .table tbody tr td .dropdown__flex .dropdown__icon {
    margin-left: 4rem;
}
.readymade__tableMain .Readymade__table .table tbody tr td .dropdown__flex .dropdown__icon i {
    font-size: 14px;
}
.readymade__tableMain .Readymade__table .table tbody tr td .dropdown__flex .dropdown__icon .up__arrow {
    transform: rotate(180deg);
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row {
    position: relative;
    top: -5px;
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row .closedropdown__row  {
    height: 0px;    
    transition: height 0.3s;
    overflow: hidden;
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row .opendropdown__row {
    height: 90px;
    transition: height 0.3s;
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row td {
    padding: 0px;
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row td ul {
    display: flex;
    list-style: none;
    padding-left: 73px;
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row td ul li {
    padding-right: 3rem;
    padding-bottom: 20px;
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row td ul li p {
    padding: 0px 0px;
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    background-color: #ffffff;
    text-align: left;
}
.readymade__tableMain .Readymade__table .table tbody .dropdown__row td ul li p span {
    padding: 0px 0px;
    color: #2c3b58;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}
.readymade__tableMain .Readymade__table .table tbody tr td .table__tick {
    width: 22px;
    margin-bottom: 10px;
}
.readymade__tableMain .Readymade__table .table tbody tr td .domain__tooltip a {
    color: #2c3b58;
    font-size: 13px;
    text-decoration: underline;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.readymade__tableMain .Readymade__table .table tbody tr td .domain__tooltip {
    position: relative;
}
.readymade__tableMain .Readymade__table .table tbody tr .domain__tooltip .domain__tooltipHover {
    position: absolute;
    bottom: 2.5rem;
    left: 4px;
    z-index: 3;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 160%;
    color: #f9f9f9;
    font-size: 1.4rem;
    text-align: center;
    background-color: #414f69;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    -webkit-transition: ease .2s;
    transition: ease .2s;
    display: none;
    box-shadow: 0px 4px 4px #414f6994;
}
.readymade__tableMain .Readymade__table .table tbody tr .domain__tooltip .domain__tooltipHover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #414f69 transparent transparent transparent;
}
.readymade__tableMain .Readymade__table .table tbody tr td .domain__tooltip:hover .domain__tooltipHover {
    display: block;
    -webkit-animation: slideDown 0.5s;
    animation: slideDown 0.5s;
}
.readymade__tableMain .Readymade__table .table tbody tr td .not__included {
    color: #e87272;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.readymade__tableMain .Readymade__table .table tbody tr .readymade__btns button {
    margin: 0px 8px 0;
}
.readymade__tableMain .Readymade__table .table tbody tr td .enquire__btn {
    background-color: #5aba5e;
    border: none;
    padding: 14px 0px;
    width: 125px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}
.readymade__tableMain .Readymade__table .table tbody tr td .enquire__btn img {
    width: 15px;
    margin: 0px 0 -1px 0px;
}
.readymade__tableMain .Readymade__table .table tbody tr td .buy__btn {
    background-color: #2c3b58;
    border: none;
    padding: 14px 0px;
    width: 125px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}
.readymade__tableMain .Readymade__table .table tbody tr td .buy__btn img {
    width: 15px;
    margin: 0 0 -3px 0;
}
.readymade__tableMain .Show__compnies {
    text-align: center;
    margin-top: 4rem;
}
.readymade__tableMain .Show__compnies .compnies__btn {
    font-family: "Roboto", sans-serif;
    background-color: #ee851f;
    border: none;
    color: #fff;
    width: 25rem;
    padding: 16px 0;
    font-size: 18px;
    display: inline-block;
    border-radius: 6px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.readymade__tableMain .Show__compnies .compnies__btn:hover {
    background-color: #2c3b58;
}

@media screen and (max-width:1100px) {
    .readymade__tableMain .Readymade__table {
        overflow-x: scroll;
    }
    .readymade__tableMain .Readymade__table .year__incorporation {
        width: 1100px;
    }
    .readymade__tableMain .Readymade__table .table {
        width: 1100px;
    }
}
@media screen and (max-width:800px) {
    .readymade__tableMain .Readymade__table .table {
        width: 100%;
    }
    .readymade__tableMain .Readymade__table .year__incorporation {
        width: 100%;
    }
    .readymade__tableMain .Readymade__table .year__incorporation ul {
        justify-content: flex-start;
    }
    .readymade__tableMain .Readymade__table .year__incorporation ul li p {
        font-size: 1.5rem;
    }
    .readymade__tableMain .Readymade__table .year__incorporation ul li button {
        font-size: 14px;
        padding: 10px 0px;
        width: 79px;
    }
    .readymade__tableMain .Readymade__table .table thead tr th {
        padding: 7px 5px;
    }
    .readymade__tableMain .Readymade__table .table tbody tr td {
        padding: 20px 5px;
    }
    .readymade__tableMain .Readymade__table .table tbody tr td .dropdown__flex .dropdown__btn {
        width: 130px;
        font-size: 15px;
    }
    .readymade__tableMain .Readymade__table .table tbody tr td .dropdown__flex .dropdown__icon {
        margin-left: 1.5rem;
    }
    .readymade__tableMain .Readymade__table .table tbody tr .readymade__btns button {
        display: block;
        margin: 0 5px;
    }
    .readymade__tableMain .Readymade__table .table tbody tr td .enquire__btn {
        margin-bottom: 12px;
        padding: 14px 0px;
        width: 100px;
        font-size: 12px;
    }
    .readymade__tableMain .Readymade__table .table tbody tr td .buy__btn {        
        width: 100px;
        font-size: 12px;
    }
    .readymade__tableMain .Readymade__table .table tbody .dropdown__row td ul {
        padding-left: 10px;
    }
}

@media screen and (max-width: 600px) {
    .readymade__tableMain .Readymade__table .table {
        width: 700px;
    }
    .readymade__tableMain .Readymade__table .year__incorporation {
        width: 700px;
    }
}

/* ENQUIRY MODAL */
.readymadeEnquiryModal {
    max-height: 100%;
    height: 100%;
}
.readymadeModal {
    width: 525px;
    margin-top: 20rem;
}
.readymadeModal .modal__head2 p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #2c3b58;
    font-size: 2rem;
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 50px;
}
.readymadeModal .modal__head2 p span {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4D4C4C;
    line-height: 14px;
}
.readymadeModal .modal__head2 .close_readymadeEnquiryModal {
    margin: 0px;
}
.readymadeModal .readymademodal_contant .myForms {
    padding: 0 25px;
}
.readymadeModal .readymademodal_contant .myForms label {
    color: #828282;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 15px;
    display: block;
}
.readymadeModal .readymademodal_contant .myForms .myForms__input {
    height: 50px;
    border-radius: 0px;
}

.readymadeModal .readymademodal_contant .myForms .readymade__sub {
    text-align: center;
    margin-top: 1rem;
}
.readymadeModal .readymademodal_contant .myForms .readymade__sub .submit {
    display: block;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    width: 100%;
    line-height: 100%;
    font-size: 16px;
    color: #f9f9f9;
    background-color: #EE851F;
    padding: 15px 2.2rem;
    border: 2px solid #EE851F;
    border-radius: 5px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    margin-bottom: 20px;
}
.readymadeModal .readymademodal_contant .myForms .readymade__sub .submit:hover {
    cursor: pointer;
    border-color: #2c3b58;
    background-color: #2c3b58;
    color: #f9f9f9;
}
.readymadeModal .readymademodal_contant .myForms .readymade__sub .close {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    color: #979797;
}
.readymadeModal .readymademodal_contant .myForms .readymade__sub .close i {
    font-size: 16px;
    color: #979797;
}

/* THANKYOU MODAL */
.readymadeThankyou {
    width: 525px;
}
.readymadeThankyou .modal__head2 i {
    margin: 0px;
}
.readymadeThankyou .modal__head2 p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #2c3b58;
    font-size: 3rem;
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 50px;
}
.readymadeThankyou .readymadeThankyou_contant {
    text-align: center;
    padding: 0 50px;
}
.readymadeThankyou .readymadeThankyou_contant .thankyou__thumb {
    margin-bottom: 4rem;
}
.readymadeThankyou .readymadeThankyou_contant .thankyou__thumb img {
    background-color: #f5f5f5;
    border-radius: 50%;
    padding: 2rem;
    width: 115px;
}
.readymadeThankyou .readymadeThankyou_contant p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #000;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 6rem;
    padding: 0 0px;
}
.readymadeThankyou .readymadeThankyou_contant button {
    background-color: #2c3b58;
    display: block;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    width: 100%;
    line-height: 100%;
    font-size: 16px;
    color: #f9f9f9;
    padding: 20px 2.2rem;
    border-radius: 5px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.readymade__tableMain .desktopTable_view {
    display: block;
}
.readymade__tableMain .mobileTable_view {
    display: none;
}

@media screen and (max-width:580px) {
    .readymade__tableMain .desktopTable_view {
        display: none;
    }
    .readymade__tableMain .mobileTable_view {
        display: block;
    }
}

/* MOBILE VIEW CSS */
.readymade__tableMain .mobileTable_view .year__incorporationMobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.readymade__tableMain .mobileTable_view .year__incorporationMobile p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #2c3b58;
    line-height: 160%;
}
.readymade__tableMain .readymade__tableMob .year__incorporationMobile .select_box {
    width: 200px;
    overflow: hidden;
    position: relative;
    padding: 15px 8px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ee851f;
}
  .readymade__tableMain .readymade__tableMob .year__incorporationMobile .select_box:after {
    width: 15px;
    height: 10px;
    background-image: url(../img/readymade/orange-arrow.svg);
    position: absolute;
    top: 37%;
    right: 10px;
    content: "";
    z-index: 98;
}
.readymade__tableMain .readymade__tableMob .year__incorporationMobile .select_box select {
    width: 216px;
    border: 0;
    position: relative;
    z-index: 99;
    background: none;
    font-weight: 500;
    font-size: 15px;
    color: #ee851f;
    font-family: "Roboto", sans-serif;
}
.readymade__tableMain .readymade__tableMob .year__incorporationMobile .select_box select:focus-visible {
    border: none;
    outline: none;
}
.readymade__tableMain .readymade__tableMob .year__incorporationMobile .select_box select option {
    font-weight: 500;
    font-size: 15px;
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
}
.readymade__tableMain .mobileTable_view .mobile__search {
    margin-top: 2rem;
}
.readymade__tableMain .mobileTable_view .mobile__search .myForms__input {
    border-color: #ee851f;
    background-color: #fff;
    margin: 0px;
}
.readymade__tableMain .mobileTable_view .detailTable__view {
    margin-top: 3rem;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__heading {
    background-color: #2c3b58;
    border-radius: 5px;
    padding: 20px 20px;
    display: flex;
    margin-bottom: 2rem;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__heading p {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    background-color: #2c3b58;
    width: 50%;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__heading p:last-child {
    padding-left: 20px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 20px;
    margin-bottom: 1.5rem;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .comdetail__price {
    display: flex;
    align-items: center;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .comdetail__price p {
    width: 50%;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .comdetail__price .com__name {
    font-size: 15px;
    color: #2c3b58;
    border: none;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    line-height: 22px;
    padding-right: 15px;
    text-align: center;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .comdetail__price .com__price {
    text-align: center;
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .comdetail__price .com__price .blue__dropdown {
    cursor: pointer;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .comdetail__price .com__price .blue__dropdown .up__arrow {
    transform: rotate(180deg);
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .readymade__mobBTN {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    margin-bottom: 1rem;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .readymade__mobBTN button {
    color: #fff;
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 18px 0px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .readymade__mobBTN .enquire__btn {
    background-color: #5aba5e;
    margin-right: 40px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .readymade__mobBTN .enquire__btn img {
    width: 15px;
    margin: 0px 0 -1px 0px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .readymade__mobBTN .buy__btn {
    background-color: #2c3b58;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .readymade__mobBTN .buy__btn img {
    width: 15px;
    margin: 0 0 -3px 0;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant {
    margin-top: 0rem;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .closedropdown__row {
    height: 0;
    overflow: hidden;
    transition: height 0.3s;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .opendropdown__row {
    transition: height 0.3s;
    height: 320px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 2rem;
    list-style: none;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li {
    display: flex;
    align-items: center;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li .mob__notIncluded span {
    color: #e87272;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li p {
    width: 50%;
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 45px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li p span {
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li p .domain__tooltip {
    position: relative;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li p .domain__tooltip a {
    color: #2c3b58;
    font-size: 14px;
    text-decoration: underline;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li p .domain__tooltip .domain__tooltipHover {
    position: absolute;
    bottom: 2.5rem;
    left: 4px;
    z-index: 3;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 160%;
    color: #f9f9f9;
    font-size: 1.4rem;
    text-align: center;
    background-color: #414f69;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    -webkit-transition: ease .2s;
    transition: ease .2s;
    display: none;
    box-shadow: 0px 4px 4px #414f6994;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li p .domain__tooltip .domain__tooltipHover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #414f69 transparent transparent transparent;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .domain__area li p .domain__tooltip:hover .domain__tooltipHover {
    display: block;
    -webkit-animation: slideDown 0.5s;
    animation: slideDown 0.5s;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .addressul__area {
    list-style: none;
    padding-top: 3rem;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .addressul__area li p {
    color: #4d4c4c;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 45px;
}
.readymade__tableMain .mobileTable_view .detailTable__view .mobTable__body .mobileView__dropContant .addressul__area li p span {
    color: #2c3b58;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 45px;
    margin-left: 3px;
}

/* MOBILE VIEW CSS END */
.readymade__faq {
    background-color: #ffffff;
}

/* READY MADE CSS END */

/* discount modal css */

.discountModal_success {
    width: 500px;
    margin: 0 auto;
    position: relative;
    top: 0px;
}
.discountModal_success .modal__head2 i {
    margin: -20px -12px 0 0;

  }
  .discountModal_success .modal__head2 h1 {
    margin: 0 0 30px;
    font-size: 35px;
    line-height: 45px;
    color: #ee851f;
}
.discountModal_success .modal__head2 p {
    margin: 0 0 0 0;
    padding: 0;
    width: 100%;
    font-size: 14px;
    color: #848484;
    text-align: center;
    font-family: "Roboto", sans-serif;
}

/* discount modal css end */

.thankYouWrap .thankYou-OrderInfo__print button:focus {
    outline: none;
}
.DropDownMenuLocations a {
    text-decoration: none;
}

.liveChat_sideBtn {
    z-index: 2147483647;
    color: rgb(255, 255, 255);
    cursor: pointer;
    top: 298px;
    position: fixed;
    right: -37px;
    background: rgb(238 133 31);
    display: block;
    transform: rotate(-90deg);
    padding: 14px;
    font-size: 17px;
    border-radius: 4px;
    line-height: 3px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}
.liveChat_sideBtn span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.liveChat_sideBtn span img {
    cursor: pointer;
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: inherit;
    z-index: 9999999;
    opacity: 0;
    width: auto;
    height: 100%;
}
.basicNumbersWrap .basicNumbers__number span {
    margin-top: 30px;
    display: block;
}

.cardDetailsWrap .cardDetails__detail--pay p #keyDiv {
    margin-left: 0px;
}

.faqS2 .faq2 {
    -ms-grid-rows: minmax(max-content, 100px) 1fr;
    grid-template-rows: minmax(-webkit-max-content, 100px) 1fr;
    grid-template-rows: minmax(max-content, 100px) 1fr;
}

/*.cardDetailsWrap .cardDetails__detail--pay {
    grid-column: 4 / span 1;
}*/
@media screen and (max-width: 1280px){
/*.cardDetailsWrap .cardDetails__detail--pay {
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-column: 4 / span 3;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6 / span 1;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
}*/
}
@media screen and (max-width: 700px){
/*.cardDetailsWrap .cardDetails__detail--pay {
    grid-column: 1 / span 2;
    grid-row: 7 / span 1;
}*/
}

@media screen and (max-width: 800px){
.next_btns {
    grid-column: 1 / span 1 !important;
    display: unset;
    justify-content: unset;
}
.next_btns .editOrder_btn {
    margin-left: 0;
}
.personalDetailsWrap .personalDetails {
    padding-right: 4rem;
}
.personalDetailsWrap .personalAddress {
    padding-left: 4rem;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummaryNext {
    padding-right: 3rem;
    padding-left: 3rem;
}
}

@media screen and (max-width: 500px) {
    .personalDetailsWrap .personalDetails {
    padding-right: 1.5rem;
}
.personalDetailsWrap .personalAddress {
    padding-left: 1.5rem;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountCode__apply {
    padding: 1rem 2rem;
    font-size: 1.6rem;
}
}

@media screen and (max-width: 600px) {  
    .upsellsWrap .upsell-1 {
    padding: 2rem !important;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}
.upsellsWrap .upsell-1__name {
    padding: 0 !important;
    margin: 0 !important;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}
.upsellsWrap .upsell-1__price {
    padding: 0 !important;
    margin: 0 !important;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / span 1;
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}
.upsellsWrap .upsell-1__select {
    padding: 0 !important;
    margin: 0 !important;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / span 1;
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}
.upsellsWrap .upsell-1__img {
    grid-column: 1 / span 1;
    grid-row: 5 / span 11;
    margin-right: 2rem;
}
.upsellsWrap .upsell-2__img {
        grid-column: 1 / span 1;
    grid-row: 5 / span 11;
    display: block;
}
.upsellsWrap .upsell-1__add {
    margin: 0 !important;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / span 1;
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}

}
@media screen and (max-width: 700px){
.cardDetailsWrap .cardDetails__detail--TandC {
    grid-row: 6 / span 1;
}
}

.locations1Thumbs .locations1Thumb__p {
    margin: 0px;
}
.locations1Thumbs .locations1Thumb h2 {
    font-size: 2.5rem;
}

.termsWrapper .terms__attention {
    font-weight: 600;
    font-size: 2rem;

}
.empty_cart {
    margin-bottom: 7rem;
}


/* whichServiceChart section start */

.whichServiceChartWrap {
  background-color: #F2F3F5;
  padding: 6rem 0;
  margin-bottom: 0rem;
}

.whichServiceChartWrap h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}

.whichServiceChartWrap h1:after {
  content: '';
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.whichServiceChart {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
  padding-top: 3rem;
  background-image: url("../img/chart-background.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.box1 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 4;
  grid-column: 2 / span 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
  -ms-grid-column-align: center;
      justify-self: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 2rem;
  background-color: #2c3b58;
}

.box1 p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  font-size: 2.2rem;
  line-height: 160%;
  text-align: center;
}

.arrow {
  background-color: #2c3b58;
  width: 2px;
  height: 4rem;
  position: relative;
}

.arrow::after {
  position: absolute;
  bottom: -1px;
  right: -5px;
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #2c3b58;
}

.arrow--2 {
  height: 8rem;
}

.arrow--4 {
  height: 2.3rem;
}

.arrow--5 {
  height: 2.3rem;
}

.arrow--6 {
  height: 2.3rem;
}

.box1-after {
  -ms-grid-column: 2;
  -ms-grid-column-span: 4;
  grid-column: 2 / span 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  padding-bottom: 2px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
}

.box1-after .arrow--1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  -ms-grid-column-align: start;
      justify-self: start;
}

.box1-after .arrow--2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
  -ms-grid-column-align: center;
      justify-self: center;
}

.box1-after .arrow--3 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  -ms-grid-column-align: end;
      justify-self: end;
}

.box1-after .horizontal {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  z-index: 2;
  background-color: #2c3b58;
  width: 100%;
  height: 2px;
}

.mailBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2rem 1fr 2rem;
      grid-template-columns: 2rem 1fr 2rem;
  -ms-grid-rows: 3rem 3rem;
      grid-template-rows: 3rem 3rem;
  padding: 1rem;
}

.mailBox p {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 /span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  z-index: 2;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 120%;
  text-align: center;
  color: #f9f9f9;
}

.mailBox .tooltip {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 /span 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
  text-align: end;
}

.mailBox .tooltip i {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
  font-size: 1.9rem;
  color: #f9f9f9;
}

.mailBox .tooltip .tooltipText {
  bottom: 4.5rem;
  left: -10px;
  background-color: #EE851F;
  border-bottom-right-radius: 0px !important;
  padding: 2rem;
}

.mailBox .tooltip .tooltipText::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  margin-left: -16px;
  border-width: 8px;
  border-style: solid;
  border-color: #EE851F #EE851F transparent transparent;
}

.mailBox--1 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / span 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 /span 2;
  background-color: #4CAF50;
}

.mailBox--2 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / span 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 /span 2;
  background-color: #A161A8;
}

.mailBox--3 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / span 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 /span 2;
  background-color: #56CCF2;
}

.arrow--4 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4 / span 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  -ms-grid-column-align: start;
      justify-self: start;
  margin-bottom: 2px;
}

.arrow--5 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4 / span 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-column-align: center;
      justify-self: center;
  margin-bottom: 2px;
}

.arrow--6 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4 / span 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 5 / span 1;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-bottom: 2px;
}

.box2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1 / span 6;
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  grid-row: 5 / span 1;
  -ms-grid-column-align: center;
      justify-self: center;
  width: 80%;
  max-width: 100%;
  padding: 2rem;
  background-color: #2c3b58;
}

.box2 p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  font-size: 2.2rem;
  line-height: 160%;
  text-align: center;
}

.arrow--7 {
  -ms-grid-row: 6;
  -ms-grid-row-span: 1;
  grid-row: 6 / span 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  -ms-grid-column-align: start;
      justify-self: start;
  margin-bottom: 2px;
}

.arrow--8 {
  -ms-grid-row: 6;
  -ms-grid-row-span: 1;
  grid-row: 6 / span 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-column-align: center;
      justify-self: center;
  margin-bottom: 2px;
}

.arrow--9 {
  -ms-grid-row: 6;
  -ms-grid-row-span: 1;
  grid-row: 6 / span 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 5 / span 1;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-bottom: 2px;
}

.sBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 8rem;
  padding: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 3rem;
  position: relative;
}

.sBox p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: #f9f9f9;
  line-height: 120%;
}

.sBox--green {
  background-color: #4CAF50;
}

.sBox--green:hover {
  background-color: #38813a;
}

.sBox--purple {
  background-color: #A161A8;
}

.sBox--purple:hover {
  background-color: #7b3883;
}

.sBox--blue {
  background-color: #56CCF2;
}

.sBox--blue:hover {
  background-color: #3787a1;
}

.sBox--or::after {
  position: absolute;
  bottom: -18px;
  content: "Or";
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #2c3b58;
}

.sBox--1 {
  -ms-grid-row: 7;
  -ms-grid-row-span: 1;
  grid-row: 7 / span 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sBox--2 {
  -ms-grid-row: 8;
  -ms-grid-row-span: 1;
  grid-row: 8 / span 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sBox--3 {
  -ms-grid-row: 7;
  -ms-grid-row-span: 1;
  grid-row: 7 / span 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sBox--4 {
  -ms-grid-row: 8;
  -ms-grid-row-span: 1;
  grid-row: 8 / span 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sBox--5 {
  -ms-grid-row: 7;
  -ms-grid-row-span: 1;
  grid-row: 7 / span 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sBox--6 {
  -ms-grid-row: 8;
  -ms-grid-row-span: 1;
  grid-row: 8 / span 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sBox--7 {
  -ms-grid-row: 9;
  -ms-grid-row-span: 1;
  grid-row: 9 / span 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sBox--8 {
  -ms-grid-row: 10;
  -ms-grid-row-span: 1;
  grid-row: 10 / span 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / span 2;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

@media screen and (max-width: 800px) {
  .box1 {
    padding: 1rem;
  }
  .box1 p {
    font-size: 1.8rem;
  }
  .mailBox p {
    font-size: 1.4rem;
  }
  .box2 {
    padding: 1rem;
  }
  .box2 p {
    font-size: 1.8rem;
  }
  .sBox p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 500px) {
  .whichServiceChartWrap {
    display: none;
  }
}

/* whichServiceChart section end */


/* partner slider css start */

.partnersInfoWrap {
    padding: 6rem 0 0 0;
}

.partnersInfoWrap .partnersInfo p {
    font-size: 1.6rem;
    line-height: 160%;
}

.partnersInfoWrap .partnersInfo p:not(:last-child) {
    margin-bottom: 3rem;
}

.partnersTypesWrap {
    padding: 6rem 0;
}

.partnersTypesWrap .partnersTypes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: max-content;
    grid-column-gap: 2rem;
}

.partnersTypesWrap .partnersBox {
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.partnersTypesWrap .partnersBox--bronze {
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/bronze1.png");
}

.partnersTypesWrap .partnersBox--silver {
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/silver1.png");
}

.partnersTypesWrap .partnersBox--gold {
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/gold1.png");
}

.partnersTypesWrap .partnersBox--platinum {
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/platinum1.png");
}

.partnersTypesWrap .partnersBox__head {
    padding: 4rem 1rem 0 2rem;
}

.partnersTypesWrap .partnersBox__head h2 {
    font-size: 2.8rem;
}

.partnersTypesWrap .partnersBox__head--bronze {
    background-color: #A4684F;
}

.partnersTypesWrap .partnersBox__head--silver {
    background-color: #A5A9AC;
}

.partnersTypesWrap .partnersBox__head--gold {
    background-color: #E7BE18;
}

.partnersTypesWrap .partnersBox__head--platinum {
    background-color: #5D5D5D;
}

.partnersTypesWrap .partnersBox__triangle img {
    width: 140%;
    height: auto;
    transform: translateX(-20%);
    transform: translateY(-3px);
}

.partnersTypesWrap .partnersBox__content {
    padding: 3rem 1rem 8rem;
}

.partnersTypesWrap .partnersBox__content .partners-required {
    font-size: 1.8rem;
    line-height: 160.19%;
    text-align: center;
}

.partnersTypesWrap .partnersBox__content .partners-discount {
    font-size: 2.2rem;
    line-height: 160.19%;
    text-align: center;
}

.partnersQuoteWrap {
    padding: 5rem 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.95), rgba(44, 59, 88, 0.95)), url("../img/partners2.png");
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5rem;
    grid-template-rows: max-content 2rem;
    grid-row-gap: 2rem;
}

.partnersQuoteWrap .partnersQuoteInner {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
    justify-self: center;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
}

.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: flex;
}

.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote {
    padding: 0 1rem;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__img {
    width: 4rem;
}

.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__quote {
    padding: 0rem 2rem;
    font-style: italic;
    font-size: 28px;
    line-height: 180.19%;
    text-align: center;
}

.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author {
    font-size: 2rem;
    line-height: 180.19%;
    text-align: center;
    font-style: italic;
    padding-top: 4rem;
}

.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author span {
    font-size: 2rem;
    line-height: 180.19%;
    color: white;
}

.partnersQuoteWrap__btn i {
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.partnersQuoteWrap__btn--prev {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
    justify-self: end;
}

.partnersQuoteWrap__btn--next {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    justify-self: start;
}

.partnersFeaturesWrap {
    padding: 6rem 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/call.png");
}

.partnersFeaturesWrap .partnersFeatures {
    max-width: 1000px;
    align-items: flex-start;
}

.partnersFeaturesWrap .partnersFeaturesCol ul {
    list-style: none;
}

.partnersFeaturesWrap .partnersFeaturesCol li {
    max-width: 40rem;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    font-size: 1.6rem;
    line-height: 160%;
}

.partnersFeaturesWrap .partnersFeaturesCol li img {
    width: 3rem;
    margin-right: 2rem;
}

.partnersFeaturesWrap .partnersFeaturesCol li:not(:last-child) {
    margin-bottom: 3rem;
}

.partnersContactWrap {
    padding: 6rem 0;
    background-color: white;
}

.partnersContactWrap__h1 {
    font-size: 2.6rem;
    line-height: 140%;
    text-align: center;
    width: fit-content;
    max-width: 90%;
    margin: auto;
    margin-bottom: 3rem;
}

.partnersContactWrap__h2 {
    text-align: center;
    width: 70rem;
    max-width: 90%;
    margin: auto;
    margin-bottom: 3rem;
}

.partnersContactWrap .partnersContact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content max-content max-content;
    grid-column-gap: 2rem;
    max-width: 70rem;
    margin: auto;
}

.partnersContactWrap .partnersContact__name {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
}

.partnersContactWrap .partnersContact__email {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
}

.partnersContactWrap .partnersContact__company {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
}

.partnersContactWrap .partnersContact__phone {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
}

.partnersContactWrap .partnersContact__message {
    grid-column: 1 / span 2;
    grid-row: 3 / span 1;
}

.partnersContactWrap .partnersContact__submit {
    grid-column: 1 / span 2;
    grid-row: 4 / span 1;
    justify-self: end;
    padding: 1.5rem 4rem !important;
}

@media screen and (max-width: 900px) {
    .partnersTypesWrap {
        padding: 6rem 0;
    }

    .partnersTypesWrap .partnersTypes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: max-content max-content;
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
    }

    .partnersFeaturesWrap .partnersFeatures {
        max-width: 1000px;
        flex-direction: column;
    }

    .partnersFeaturesWrap .partnersFeaturesCol--2 {
        margin-top: 6rem;
    }
}

@media screen and (max-width: 800px) {
    .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__img {
        width: 2rem;
    }

    .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__quote {
        padding: 0rem 1rem;
        font-size: 1.8rem;
    }

    .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author {
        font-size: 1.6rem;
        padding-top: 1.5rem;
    }

    .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author span {
        font-size: 1.6rem;
    }

    .partnersQuoteWrap__btn i {
        font-size: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .partnersTypesWrap {
        padding: 6rem 0;
    }

    .partnersTypesWrap .partnersTypes {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content max-content max-content;
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
    }
}

@media screen and (max-width: 500px) {
    .partnersContactWrap .partnersContact {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content max-content max-content max-content max-content;
        grid-column-gap: 2rem;
        max-width: 70rem;
        margin: auto;
    }

    .partnersContactWrap .partnersContact__name {
        grid-column: 1 / span 1;
        grid-row: 1 / span 1;
    }

    .partnersContactWrap .partnersContact__email {
        grid-column: 1 / span 1;
        grid-row: 2 / span 1;
    }

    .partnersContactWrap .partnersContact__company {
        grid-column: 1 / span 1;
        grid-row: 3 / span 1;
    }

    .partnersContactWrap .partnersContact__phone {
        grid-column: 1 / span 1;
        grid-row: 4 / span 1;
    }

    .partnersContactWrap .partnersContact__message {
        grid-column: 1 / span 1;
        grid-row: 5 / span 1;
    }

    .partnersContactWrap .partnersContact__submit {
        grid-column: 1 / span 1;
        grid-row: 6 / span 1;
        justify-self: end;
        padding: 1.5rem 4rem !important;
    }
}

/* partner slider css end */

/* Additional-informatio validation css start */

.validation {
    color: #f76369;
    font-size: 14px;
    margin: 8px 0 0;
    display: block;
    font-family: "Roboto", sans-serif;
}
.personalDetailsWrap__head h3 {
    float: left;
    font-size: 1.6rem;
    color: #fff;
    margin: 10px 0 0;
}
.personalDetailsWrap__head {
    padding-right: 4rem;
}
.fill_alert {
    font-family: "Roboto", sans-serif;
    color: #f76369;
    background-color: #ecd8d9;
    padding: 15px 20px;
    font-weight: 400;
    font-size: 1.4rem;
    border: 1px solid;
    border-radius: 5px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
}
.personalDetailsWrap .personalDetails {
    grid-template-rows: max-content 0fr 1fr 1fr 1fr;
    padding-top: 0px;
}
.personalDetailsWrap .personalAddress {
    padding-top: 0px;
}
.personalAddress__heading {
    padding: 0px 0 0;
}
.personalDetailsWrap .personalDetails__heading {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / span 1;
    margin: 0px 0 0;
}
.personalDetailsWrap .personalDetails__fName {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / span 1;
}
.personalDetailsWrap .personalDetails__lName {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / span 1;
}
.personalDetailsWrap .personalDetails__email {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / span 1;
}
.personalDetailsWrap .personalDetails__confirmemail {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 5 / span 1;
}
.personalDetailsWrap .personalDetails__phone {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 6 / span 1;
}
.personalDetailsWrap .personalDetails__mobile {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 7 / span 1;
}
.fill_alert i.fa.fa-exclamation {
    border: 2px solid;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 7px 5px;
}

.alert_bottom_form {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/ span 1;
    width: 100%;
    margin: 0 0 50px 0;
}
.select_fill_alert {
    width: 100%;
    margin: 0 0 20px 0;
}

@media screen and (max-width: 767px){
    .fill_alert {
    width: 100%;
    margin: 15px 0 0 0;
}
.alert_bottom_form {
    margin: 0 0 50px 0;
}
.select_fill_alert {
    margin: 0 0 20px;
}
}

@media screen and (max-width: 500px){
    .billing_address_form_main .row {
    display: block;
}
.billing_address_form_main .row .col-md-6 {
    width: 100%;
}
.billing_address_form_main .row .col-md-6:last-child {
    width: 100%;
    padding: 0px;
}
}

.billing_address_form .personalDetails__heading {
    margin-top: 0px;
}

/* Additional-informatio validation css end */


/* google review button css start */

.google_btn {
    display: flex;
    float: left;
    background-color: #2c3b58;
    border-radius: 5px;
    overflow: hidden;
}
.google_btn img {
    width: 60px;
    background-color: white;
    padding: 15px;
}
.google_btn p {
    color: #fff;
    font-size: 15px;
    padding: 13px 10px;
    font-family: "Roboto", sans-serif;
    line-height: 17px;
}
.google_btn p b {font-size: 17px;}
.thankYouWrap .thankYou-OrderInfo__print button {
    padding: 14px 0;
}

@media screen and (max-width: 500px){
    .google_btn {
    margin-right: 15px;
}
    .google_btn img {
    width: 30px;
    padding: 3px;
}
.google_btn p {
    font-size: 12px;
    padding: 9px 5px;
    line-height: 15px;
}
.google_btn p b {
    font-size: 12px;
}
.thankYouWrap .thankYou-OrderInfo__print button {
    padding: 0px;
}

}

/* google review button css end */

/* edit by 01-oct-2020 */

.locations1Thumbs .locations1Thumb--2 .first_location_box .locations1Thumb__p {
    background-color: #2c3b58b3;
    padding: 12px 15px;
    margin: 0 25px;
}
.locations1Thumbs .locations1Thumb--2 .first_location_box {
    display: flex;
}

@media screen and (max-width: 500px){
    .locations1Thumbs .locations1Thumb--2 .first_location_box {
    display: block;
}
.locations1Thumbs .locations1Thumb--2 .first_location_box .locations1Thumb__p {
    padding: 5px 15px;
    margin: 10px 0 0;
}

}

/* edit by 06-oct-2020 */

.notepremium {
    display: flex;
    align-items: flex-end;
    position: relative;
}
.notepremium p {
    padding: 15px 35px;
    line-height: 25px;
    font-size: 16px;
    background-color: #ee851f3b;
    border: 2px solid #ee851f;
    color: #ee851f;
    border-radius: 10px;
    height: auto;
    font-family: "Roboto", sans-serif;
    position: absolute;
    right: 0;
}
.notepremium p b {
    font-size: 16px;
}

@media screen and (max-width: 800px){
    .notepremium {
    margin-top: 25px;
}
}

/* edit by 07-oct-2020 */

/* service toggle button css */

.switchService_btn {
    border: 1px solid #2c3b58;
    margin: 12px 0 0;
    padding: 10px 10px;
    display: flex;
}
.switchService_btn .pricingHeading__toggle {
    margin: 0px;
    grid-template-columns: none;
}
.switchService_btn p {
    font-size: 18px;
    margin: 0 25px;
    font-family: "Roboto", sans-serif;
    color: #2c3b58;
    padding: 8px 0;
}
.switchService_btn p a {
    font-size: 18px;
    color: #ee851f;
}
.tooltip_hover:hover .tooltipText {
    display: block;
}
.tooltip_hover .tooltipText {
    width: 229px !important;
    left: -183px;
    color: #000;
    background-color: #fff;
    font-size: 16px;
    bottom: 70px;
    border-radius: 5px;
}
.tooltip_hover .tooltipText::after {
    top: 100%;
    left: 85%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}
.tooltip_hover {
    position: relative;
    cursor: pointer;
    padding: 4px 0;
}

.buyprice_change {
    font-size: 4.5rem !important;
    font-weight: 700 !important;
}

/* edit by 13-oct-2020 */

.location_drop1 {
    width: 440px;
    right: 11%;
}

@media screen and (max-width: 1366px) {
    .location_drop1 {
    width: 100%;
    right: 0;
}
}

/* edit by 17-oct-2020 */

p.purchase_adrs {
    color: #fff;
    font-size: 12px;
    padding: 8px 0 0;
    font-family: "Roboto", sans-serif;
    max-width: 210px;
    text-align: left;
}

@media screen and (max-width:1700px){
    p.purchase_adrs {
    max-width: 100%;
    text-align: center;
}
}

/* edit by 19-oct-2020 */

.boxTow_tooltop {
    display: flex;
    justify-content: center;
}
.boxTow_tooltop .tooltip_hover {
    padding: 0 0 0 10px;
}
.boxTow_tooltop .tooltip_hover img {
    width: 2.4rem;
}
.boxTow_tooltop .tooltip_hover .tooltipText--top {
    bottom: 45px;
    width: 330px !important;
}
.boxTow_tooltop .tooltip_hover .tooltipText--top::after {
    left: 62%;
}

@media screen and (max-width: 1366px) {
    .boxTow_tooltop .tooltip_hover .tooltipText--top {
    width: 245px !important;
}
.boxTow_tooltop .tooltip_hover .tooltipText--top::after {
    left: 83%;
}
}

/* edit by 20-oct-2020 */

.combo img {
    margin-top: -15px;
}
#tl_popupPOSEV {
    z-index: 999 !important;
}

element.style {
}
.createPasswordWrap .createPassword__next a {
    text-decoration: none;
}
.new_edit {
    margin-left: 3rem;
}
.new_edit button {
    background-color: #B4B4B4 !important;
    border-color: #b4b4b4 !important;
}

.footer_sll {
    width: 57%;
    text-align: right;
    position: relative;
}
.footer_sll a {
    position: absolute;
    right: 15px;
    top: 10px;
}
.footer_sll a img {
    width: 13rem !important;
}

.locationCard {
    position: relative;
    overflow: hidden;
}
.new_corner {
    position: absolute;
    top: -33px;
    right: -41px;
    background-color: #ee851f;
    padding: 50px 42px 10px;
    transform: rotate(40deg);
}

.new_corner span {
    font-size: 15px;
    color: #fff;
    font-family: "Roboto", sans-serif;
}
/*div#map_canvas{
    height:106% !important;
}*/
.faq--open dd .meeting_faq {
    font-weight: bold;
    font-size: 1.6rem;
}

/* edit by 26-oct-2020 */

.locselect {
    width: 110%;
}

@media screen and (max-width: 800px){
    .locselect {
    width: 100%;
}
.notepremium p {
    position: unset;
}
}
.stepsWrapper {
    padding-top: 6rem;
}

/* edit by 04-nov-2020 */

.pricingHeading__toggle .optionBox {
    cursor: pointer;
}

/* edit by 09-nov-2020 */

.locationCard__curve {
    display: none;
}
.locationsSection {
    display: block;
}
  
.locationCard {
    display: flex;
    margin-bottom: 35px;
    background-color: transparent;
        -webkit-box-shadow: none;
    box-shadow: none; 
}
.locationCard__top {
    width: 40%;
    position: relative;
    overflow: hidden;
        border-radius: 6px;
}
.locationCard__address {
    padding-bottom: 10rem;
}

.locationCard__bottom {
    width: 60%;
    margin-left: 30px;
    padding: 4rem 4rem;
        border-radius: 6px;
}
.location_card_text p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    margin-bottom: 3rem;
}
.location_card_list {
    display: flex;
}
.location_card_text ul {
    list-style: none;
        margin-right: 20px;
}
.location_card_text ul li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}
.location_card_text ul li img {
    margin-right: 10px;
    width: 18px;
}
.location_cqrd_btns {
    float: right;
    display: flex;
    margin: 0px 0 0 0;
}
.location_cqrd_btns button {
    margin: 0 0 0 20px;
    background-color: transparent;
    border: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    padding: 0px;
        text-decoration: underline;
}
.location_cqrd_btns button:hover {
    background-color: transparent;
    color: #4D4C4C;
}
.locationsSection__p {
    margin: 0px;
    padding: 20px 0;
}

.location_modal_container {
    background-color: rgb(44 59 88 / 86%);
}
.modal.location_modal {
    padding: 0px;
    position: relative;
    background-color: transparent;
    box-shadow: none;
        width: 60rem;
    max-width: 100%;
}
.location_modal .modal__head2 i {
    margin: 0 0 8px 0;
    font-size: 30px;
    color: #fff;
}
.location_modal_slide {
    position: relative;
}
.location_modal_slide button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}
.location_modal_slide button:focus {
    outline: none;
}
.location_modal_slide .w3-display-left {
    position: absolute;
    top: 38%;
    left: 5px;
}
.location_modal_slide .w3-display-right {
    position: absolute;
    top: 38%;
    right: 5px;
}

@media screen and (max-width: 1199px) {
    .location_cqrd_btns {
    margin: 0px 0 0 0;
}
}
@media screen and (max-width: 767px) {
.locationCard {
    display: block;
    }
    .locationCard__top {
    width: 100%;
}
.locationCard__bottom {
    width: 100%;
    margin-left: 0px;
    }
    .location_card_list {
    display: block;
}
.location_card_text ul {
    list-style: none;
    margin-right: 0px;
}
}

.ourMeetingRoomsWrap .ourMeetingRooms {
    grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 2rem;
}
.ourMeetingRoomsWrap .meetingRoom__capacity {
        padding: 6rem 1rem 16rem 6rem;
}

.ourMeetingRoomsWrap .meetingRoom__info {
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    border: none;
    background-color: transparent;
    box-shadow: none;
    padding: 0px 20px;
    width: 100%;
}
.ourMeetingRoomsWrap .meetingRoom__mapBtn {
    -ms-grid-row: 4;
    grid-row: 4 / span 1;
    width: 50%;
    justify-content: center;
}
    .ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPeople span {
    display: flex;
    font-size: 1.4rem;
}
.ourMeetingRoomsWrap .meetingRoom__info img {
    width: 1.8rem;
        margin-top: -2px;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPeople span b {
    font-weight: 400;
    font-size: 2rem;
    color: #2c3b58;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPeople {
    line-height: 50%;
    margin: 0px;
}
.ourMeetingRoomsWrap .meetingRoom {
    background-color: #fff;
    padding: 0px;
    display: block;
        border: 1px solid #dcdcdc;
}
.ourMeetingRoomsWrap .meetingRoom__about {
    padding: 0 20px;
    text-align: center;
    height: 160px;
}
@media screen and (max-width: 1191px) {
    .ourMeetingRoomsWrap .meetingRoom__about {
        height: 190px;
    }
}
@media screen and (max-width: 600px) {
    .ourMeetingRoomsWrap .meetingRoom__about {
        height: auto;
    }
}

.ourMeetingRoomsWrap .meetingRoom__about p {
    text-align: left;
}
.ourMeetingRoomsWrap .meetingRoom__about h3 {
    font-size: 2rem;
}
.view_mapPh {
    display: flex;
    width: 100%;
    float: left;
    background-color: #f2f3f5;
    padding: 20px 0;
    margin: 15px 0 0;
}

@media screen and (max-width:1270px) {
    .ourMeetingRoomsWrap .meetingRoom__mapBtn {
    padding: 0px;
}
.ourMeetingRoomsWrap .meetingRoom__about p {
    font-size: 1.5rem;
}
}
@media screen and (max-width:1191px) {
    .ourMeetingRoomsWrap .meetingRoom__about h3 {
    height: 65px;
}
.ourMeetingRoomsWrap .meetingRoom__about p {
    height: 140px;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPeople {
    width: 100%;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPrice {
    width: 100%;
}
}

@media screen and (max-width: 992px) {
    .ourMeetingRoomsWrap .ourMeetingRooms {
    grid-template-columns: 1fr 1fr;
}
.ourMeetingRoomsWrap .meetingRoom {
    margin-bottom: 20px;
}
}
@media screen and (max-width:600px) {
    .ourMeetingRoomsWrap .ourMeetingRooms {
    grid-template-columns: 1fr;
    grid-column-gap: 1rem;
}
.ourMeetingRoomsWrap .meetingRoom__about h3 {
    height: auto;
}
.ourMeetingRoomsWrap .meetingRoom__about p {
    height: auto;
}
}


.greatWrap85 {
  background-color: #F2F3F5;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 600px 50%;
      grid-template-columns: auto 600px 50%;
          margin-bottom: 6rem;
}

.greatWrap85 .greatYard85 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.greatWrap85 .greatYard85__col1 {
  width: 50%;
  padding: 5rem 5rem 5rem 0rem;
}

.greatWrap85 .greatYard85__col1 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #2c3b58;
  margin-bottom: 4rem;
}

.greatWrap85 .greatYard85__col1 p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 4rem;
}

.greatWrap85 .greatYard85__col1 .meetingRoomFeatures {
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.greatWrap85 .greatYard85__col1 .meetingRoomFeatures ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}

.greatWrap85 .greatYard85__col1 .meetingRoomFeatures ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.greatWrap85 .greatYard85__col1 .meetingRoomFeatures ul li i {
  color: #EE851F;
  margin-right: 1rem;
  font-size: 0.9rem;
}

.greatWrap85 .greatYard85__col1 .meetingRoomFeatures__1 {
  margin-right: 4rem;
}

.greatWrap85 .greatYard85__col1 .scrollToContactUs {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  padding: 2rem 4rem;
  margin: 0;
}

.greatWrap85 .greatYard85__col1 .scrollToContactUs:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

.greatWrap85 .greatYard85__col3 {
  width: 50%;
  padding: 5rem 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(44, 59, 88, 0.5)), to(rgba(44, 59, 88, 0.5))), url("../img/services-banners/london-strand.png");
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5)), url("../img/services-banners/london-strand.png");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.greatWrap85 .greatYard85__col3 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #f9f9f9;
  font-size: 3.2rem;
  margin: auto;
}

.greatWrap85 .greatYard85__col3 h3:after {
  content: '';
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.greatWrap85 .greatYard85__col3 h3:after {
  margin-bottom: 0;
}
.bellYardWrap {
    -ms-grid-columns: auto 600px auto;
    grid-template-columns: auto 600px auto;
}
.bellYardWrap .bellYard__col1 {
    padding: 5rem 5rem 5rem 5rem;
}

@media screen and (max-width: 1340px) {
  .greatWrap85 {
    -ms-grid-columns: auto 45% 50%;
        grid-template-columns: auto 45% 50%;
  }
}

@media screen and (max-width: 880px) {
    .greatWrap85 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
.greatWrap85 .greatYard85__col1 {
    width: 100%;
    padding: 5rem 5rem 5rem 5rem;
}
.greatWrap85 .greatYard85__col3 {
    width: 100%;
}
.bellYardWrap {
    grid-template-columns: 1fr;
}
.bellYardWrap .bellYard__col1 {
    width: 100%;
}
}

@media screen and (max-width: 1920px) and (min-width: 1600px) {
    .boxes1 .box__more {
    flex-wrap: nowrap;
    flex-direction: unset;
}
.boxes1 .box__more a {
    text-align: center;
    width: 190px;
    margin: 0px;
    align-self: center;
}
.boxes1 .box__moreInner h2 {
    text-align: left;
}
.boxes1 .box__moreInner {
    align-self: center !important;
}
}

/* services pages css */

.services_top_table {
    padding: 6rem 0 6rem;
}
.services__table {
    overflow-x: scroll;
}
.parcel__service__tabel {
    overflow-x: unset;
}
@media screen and (max-width: 992px) {
    .parcel__service__tabel {
        overflow-x: scroll;
    }
}
.services_top_table table {
    width: 100%;
        border-collapse: collapse;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.services__table::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.services__table {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/*.services_top_table table tbody:before {
    line-height: 40em;
    content: "\200C";
    display: block;
}*/
.services_top_table table tr {
    background-color: #ffffff;
}
.services_top_table table tbody tr {
        border-bottom: 1px solid #e4e4e4;
}
.services_top_table table tbody tr:last-child {
    border: none;
}
.services_top_table table th {
    text-align: center;
    padding: 15px 15px;
        border-right: 1px solid #e4e4e4;
}
.services_top_table table th:first-child {
    width: 650px;
    padding-right: 10rem;
    padding-left: 30px;
}
.services_top_table table th:nth-child(2) {
    width: 300px;
}
.services_top_table table th:last-child {
    border: none;
    width: 300px;
}
.services_top_table table th h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #2c3b58;
    line-height: 160%;
    font-size: 2.2rem;
    margin: 0 0 25px;
}
.registred__premium ul {
    list-style: none;
    display: flex;
}
.registred__premium ul li {
    width: 50%;
}
.services_top_table table th p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 160%;
    color: #2c3b58;
        margin: 0 0 20px;
}

.services_top_table table th span {
    margin: 30px 0 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 160%;
    color: #2c3b58;
}
.services_top_table table th span b {
    color: #ee851f;
    font-weight: 500;
    font-size: 2.4rem;
}
.services_top_table table tbody td {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 160%;
    color: #2c3b58;
    text-align: center;
    padding: 15px 30px 10px;
        border-right: 1px solid #e4e4e4;
}
.services_top_table table tbody td button {
    display: block;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.4rem;
    color: #f9f9f9;
    background-color: #2c3b58;
    border: 2px solid #2c3b58;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 1.2rem 4rem;
    margin: 10px auto;
    cursor: pointer;
}
.services_top_table table tbody td button:hover {
    border-color: #2c3b58;
    background-color: transparent;
    color: #2c3b58;
}
.services_top_table table tbody td img {
    width: 20px;
}
.services_top_table table tbody td .cancelIcon {
    width: 16px;
}

.serviceIntroWrapper .serviceIntro {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    }
    .serviceIntroWrapper .serviceIntro__col1 {
    padding-right: 0rem;
}
.serviceIntroWrapper {
    padding-bottom: 0px;
}
.serviceIntroWrapper .serviceIntro__col2 {
    width: 100%;
    display: flex;
}
.serviceIntro__col2 .center_border {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.serviceIntro__col2 .center_border p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 160%;
    color: #dddddd;
    text-transform: uppercase;
    position: relative;
        margin-top: -18rem;
}
.serviceIntro__col2 .center_border p::before {
    content: "";
    width: 4em;
    position: absolute;
    top: -11rem;
    left: -5rem;
    border: 1px solid;
    transform: rotate(90deg);
}
.serviceIntro__col2 .center_border p::after {
    content: "";
    width: 4em;
    position: absolute;
    bottom: -11rem;
    left: -5rem;
    border: 1px solid;
    transform: rotate(90deg);
}
.buyService--directorServAddress {
    background: none;
    border: 1px solid #e1e1e1;
}
.buyService--directorServAddress img {
    width: 100%;
}
.buyService__h {
    background-color: #2c3b58;
    font-size: 22px;
    text-align: center;
    padding: 10px 5px;
}
.buyService__h .telephone_ans__h
{
    text-align: left;
}
.director_address_h {
    font-size: 19px;
}
.buyService__buyBtn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
.buyService__buyBtn:hover {
    cursor: pointer;
    border-color: #2c3b58;
    background-color: transparent;
    color: #2c3b58;
}
.buyService__price {
    width: fit-content;
    width: auto;
    margin: 0px;
    color: #ee851f;
}
.buyService__price span {
    color: #ee851f;
}
.buyService__onlyAvailable {
    color: #2c3b58;
    border-color: #2c3b58;
        padding: 1.4rem 3.3rem;
}
.buyService__pricingBox {
    background-color: white;
}


.buyService--VBP-web {
    background: none;
        border: 1px solid #e1e1e1;
}
.buyService--VBP-web img {
    width: 100%;
}
.buyService__select select {
    color: #2c3b58;
    border-color: #2c3b58 !important;
    width: 19rem;
    background-image: url(../img/angle-down-solid.svg), -webkit-gradient(linear, left top, left bottom, color-stop(100%, #F5F5F5), to(#F5F5F5));
    background-image: url(../img/angle-down-solid.svg), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
}

.buyService--regOffAdd {
    background: none;
    border: 1px solid #e1e1e1;
}
.buyService--regOffAdd img {
    width: 100%;
}

.buyService--VBA-TAS {
    background: none;
    border: 1px solid #e1e1e1;
}
.buyService--VBA-TAS img {
    width: 100%;
}

.buyService--virtBussAdd {
    background: none;
    border: 1px solid #e1e1e1;
}
.buyService--virtBussAdd img {
    width: 100%;
}

.buyService--VBP-legal {
    background: none;
    border: 1px solid #e1e1e1;
}
.buyService--VBP-legal img {
    width: 100%;
}

.buyService--VBP-TAS {
    background: none;
    border: 1px solid #e1e1e1;
}
.buyService--VBP-TAS img {
    width: 100%;
}

.buyService--virtBussPlus {
    background: none;
    border: 1px solid #e1e1e1;
}
.buyService--virtBussPlus img {
    width: 100%;
}

@media screen and (max-width: 1293px) {
    .buyService__price {
            font-size: 3.5rem;
    }
}
@media screen and (max-width: 1260px) {
    .buyService__price {
            font-size: 2.5rem;
    }
    .buyprice_change {
    font-size: 3.5rem !important;
}
}
@media screen and (max-width: 1110px) {
    .buyprice_change {
    font-size: 3rem !important;
}
}
@media screen and (max-width: 1050px) {
    .buyprice_change {
    font-size: 2.8rem !important;
}

.buyService__select select {
    width: 19rem;
}
.buyService__price span {
    font-size: 1.3rem;
}
}
@media screen and (max-width: 991px) {
    .buyService__select {
    width: 100%;
}
.buyService__select select {
    width: 100%;
        max-width: 100%;
}
.buyService__price {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.buyService__onlyAvailable {
    width: 100%;
    text-align: center;
}
}

@media screen and (max-width: 767px) {
    .services_top_table table th:first-child {
    padding-right: 0px;
}
.services_top_table table {
    width: 850px;
}
.services_top_table table th:first-child {
    width: 300px;
    }
}
@media screen and (max-width: 600px) {
    .header2 .header2ContentInner__h2 {
    margin-top: 2rem;
}
}

/* telephone ansering css */

.telephone_ans_introWrapper {
    padding-bottom: 6rem;
}
.telephone_ans_intro {
    -ms-grid-columns: 1fr 450px !important;
    grid-template-columns: 1fr 550px !important;
}
.telephone_ans_intro__col1 {
    padding-right: 2rem !important;
}
.telephone_ans_intro__col2 {
    width: 100% !important;
    display: block !important;
}
.telephone_ans_intro__col2 .buyService--TAS {
    background: none;
    border: none;
    width: 100%;
}
.telephone_ans_intro__col2 .buyService--TAS img {
    width: 100%;
}
.telephone_ans__h {
    background-color: #2c3b58;
    font-size: 19px;
    text-align: center;
    padding: 10px 5px;
}
.telephone_ans__pricingBox {
        background-color: rgb(255 255 255 / 90%);
}
.telephone_ans__price {
    color: #ee851f;
    width: auto;
    margin: 0px;
}
.telephone_ans__price span {
    color: #ee851f;
}
.telephone_ans__price .buyprice_change {
    color: #ee851f;
}
.telephone_ans__select select {
    color: #2c3b58;
    border-color: #2c3b58 !important;
    width: 19rem;
        background-image: url(../img/angle-down-solid.svg), linear-gradient(to bottom, #f5f5f500 100%, #f5f5f500 100%);
}
.telephone_ans__buyBtn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
.telephone_ans__buyBtn:hover {
    color: #2c3b58;
    border-color: #2c3b58;
}

@media screen and (max-width: 767px) {
    .telephone_ans__price {
    margin-bottom: 0.5rem !important;
    text-align: left !important;
}
.telephone_ans__select {
    width: auto !important;
}
.telephone_ans__select select {
    width: 18rem !important;
}
}

@media screen and (max-width: 500px) {
    .telephone_ans__select select {
    width: 100% !important;
}
.telephone_ans__buyBtn {
    margin-top: 2rem;
    width: 100%;
}

}



@media screen and (max-width: 767px) {
    .buyService__onlyAvailable {
    width: 100%;
}
.buyService__price {
    width: 100%;
    margin: 10px 0 0;
        text-align: center;
}
.serviceIntro__col2 .center_border p {
    margin-top: 0px;
}

.buyService__select select {
    width: 100%;
    max-width: 100%;
}
.buyService__select {
    width: 100%;
}
}

@media screen and (max-width: 580px) {
    .serviceIntroWrapper .serviceIntro__col2 {
    display: block;
}
.buyService--directorServAddress {
    width: 100%;
}
.serviceIntro__col2 .center_border {
    width: 100%;
    display: block;
    text-align: center;
}
.serviceIntro__col2 .center_border p::before {
    content: "";
    top: 27px;
    top: 3rem;
    left: 0rem;
    width: 34%;
    transform: rotate(0deg);
}
.serviceIntro__col2 .center_border p::after {
    content: "";
    width: 33%;
    bottom: 27px;
    left: auto;
    right: 0;
    transform: rotate(0deg);
}

.buyService {
    width: 100%;
}
}


/* edit by 12-nov-2020 */

.aboutUsWrap {
    padding-top: 6rem;
        padding-bottom: 0;
}

/* edit vy 20-nov-2020 */

/* pricing page css start */

.pricing__tablesticky {
    padding: 0px !important;
    background-color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9;
    box-shadow: 0px 0px 5px #00000059;
}
.pricing__tablesticky__contant {
    overflow-x: inherit !important;
}
.pricing__tablesticky__contant table {
    border-collapse: collapse;
}

.pricing__table {
    padding: 6rem 0 0rem;
}
.pricing__table .pricingHeading__h1 {
    margin-bottom: 6rem;
}
.pricing__table_contant {
    overflow-x: scroll;
}
.pricing__table_contant::-webkit-scrollbar {
    display: none;
}
.pricing__table_contant {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.pricing__table_contant table {
    width: 100%;
    /*border-collapse: collapse;*/
    background-color: #f9f9f9;
}
.pricing__table_contant table tr {
    /*background-color: #ffffff;*/
}
.pricing__table_contant table th:first-child {
    width: 310px;
    background-color: transparent;
    vertical-align: bottom;
    padding: 0px;
}
.pricing__table_contant table th:first-child p {
    height: auto;
    margin: 0px;
    padding: 15px 15px;
    background-color: #fff;
    position: relative;
}
.pricing__table_contant table th:first-child p::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -18px;
    border-width: 15px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}
.pricing__table_contant table th:last-child {
    width: 290px;
}
.pricing__table_contant table th {
    text-align: center;
    padding: 15px 15px;
    /*border-right: 1px solid #e4e4e4;*/
    vertical-align: top;
    width: 250px;
    background-color: #fff;
}
.pricing__table_contant table th p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #2c3b58;
    line-height: 160%;
    font-size: 1.8rem;
    margin: 0 0 25px;
    height: 85px;
}
.pricing__table_contant table th p span {
    font-size: 1.8rem;
}
.pricing__table_contant table th h3 {
    font-size: 2.5rem;
    font-family: "Roboto", sans-serif;
    color: #2c3b58;
}
.th__tooltip {
    position: relative;
    margin-top: 10px;
}
.th__tooltip .tooltipText {
    width: 280px !important;
    padding: 20px 20px;
    left: -13rem;
}
.th__tooltip .tooltipText::after {
    left: 76%;
}
.pricing__trngl .tooltip {
    position: absolute;
    top: 0;
    right: 0;
}
.pricing__trngl .tooltip .tooltipText {
    width: 280px !important;
    padding: 20px 20px;
    left: -23rem;
    bottom: 15px;
}
.pricing__trngl .tooltip .tooltipText::after {
    left: 77%;
}
.pricing__table_contant table th h3 span {
    width: 100%;
    margin: 0 0 8px;
}
.pricing__table_contant table th img {
    width: 20px;
}
.pricing__table_contant table th h3 span b {
    font-size: 3rem;
    color: #ee851f;
}
.pricing__table_contant table th h3 span b .pricing__vat {
    font-size: 1.5rem;
}
/*.pricing__table_contant table tbody:before {
    line-height: 55em;
    content: "\200C";
    display: block;
}*/
.pricing__table_contant table tbody tr {
    /*border-bottom: 1px solid #e4e4e4;*/
}
.pricing__table_contant table tbody td {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 160%;
    color: #2c3b58;
    text-align: center;
    padding: 15px 30px 10px;
    /*border-right: 1px solid #e4e4e4;*/
    background-color: #fff;
}
.pricing__table_contant table tbody td:first-child {
    text-align: left;
}
.pricing__table_contant table tbody td img {
    width: 20px;
}
.pricing__table_contant table tbody td .cancelIcon {
    width: 16px !important;
}
.pricing__trngl {
    position: relative;
    padding-left: 8rem !important;
    padding-right: 8rem !important;
}
.pricing__trngl .triangle__tip {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
}
.pricing__trngl ul {
    list-style: none;
    display: inline-flex;
    width: 100%;
}
.pricing__trngl ul li {
    width: 50%;
}
.pricing__table_contant table tbody td .pricing__learnBtn {
    display: block;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    width: 110px;
    font-size: 1.4rem;
    color: #f9f9f9;
    background-color: #2c3b58;
    border: 2px solid #2c3b58;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 1.2rem 1rem;
    margin: 10px auto;
    cursor: pointer;
}
.pricing__table_contant table tbody td .pricing__learnBtn:hover {
    border-color: #2c3b58;
    background-color: transparent;
    color: #2c3b58;
}

@media screen and (max-width: 1150px) {
    .pricing__tablesticky {
    display: none !important;
}
}
@media screen and (max-width: 767px) {
    .pricing__table_contant table {
    width: 1300px;
}
}

/* pricing page css end */

/* black friday css start */

.headerSlide--blackfriday {
    background-image: url(../img/banners/Banner-BF.png);
    background-size: contain;
}
.black__friday_content h1 {
    color: #df0000;
    font-weight: 500;
    font-size: 50px;
}
.black__friday_content h1 span {
    color: #fff;
    font-size: 20px;
}
.black__friday_content h1 span b {
    font-size: 36px;
}
.black__friday_btn .headerSlide__button--1 {
    background-color: #df0000;
    border-color: #df0000;
}

.topNavigation__discount a span {
    color: #df0000;
    font-size: 1.8rem;
    font-weight: 500;
}

.black__friday_btn .headerSlide__button--1:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
p.getInTouchContacts__time_blackfriday {
    color: #ed1c24;
    font-size: 20px;
    margin-top: 10px;
}

/* black friday css end */

/* edit on 30-nov-2020 */

.footer1Links__worldPay {
    overflow: hidden;
    height: auto;
}

@media screen and (max-width: 580px) {
    .pricing__table {
    display: none;
}
.services_top_table {
    display: none;
}
.serviceIntroWrapper {
    padding-bottom: 6rem;
}
}

/* edit by 03-dec-2020 */

@media screen and (max-width: 580px) {
    .telephone_ans_intro__col1 {
    padding-right: 0rem !important;
}
.telephone_ans_intro__col2 {
    width: 100% !important;
}
.whatServiceWrap {
    display: none;
}
.covidWrap .covid__bottom--open {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
.covidWrap .covid__bottom--open .covid-faq:last-child {
    margin: 0px;
}
.covidWrap .covid__bottom--open .covid-faq {
    margin-bottom: 4rem;
}
.appKeyBenefitsWrap .appKeyBenefits .benefit:last-child {
    margin-bottom: 0px;
}

.appKeyBenefitsWrap .appKeyBenefits .benefit {
    width: 100%;
    margin-bottom: 4rem;
}
}


/* edit by 11-dec-2020 */

.cartSummaryWrap {
    padding: 3rem 0;
}
.cartSummary p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    width: 100%;
    text-align: center;
    color: #979797;
}
.cartSummary__left .cartSummary__summary {
    width: fit-content;
    width: -moz-fit-content;
}
.cartSummary__right .cartSummary__total {
    width: fit-content;
    width: -moz-fit-content;
}
.row80 {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}


.cartItemsWrap .cartItems td {
    padding: 20px 20px;
}
.cartItemsWrap .cartItem__itemName {
    color: #2c3b58;
    font-size: 2rem;
    }
.cartItemsWrap .cartItem__price {
    color: #2c3b58;
}
.cartItemsWrap {
    margin: 3rem auto 3rem auto;
    padding: 0rem;
    background-color: transparent;
}
.cartItems thead tr {
    background-color: #2c3b58;
}
.cartItems thead tr th {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: #fff;
    padding: 10px 20px;
}
.cartItems thead tr th:first-child {
    text-align: left;
}
.cartItemsWrap .cartItems td {
    padding: 10px 20px;
    border: 1px solid #e7e7e7;
}
.cartItemsWrap .cartItem__price {
    font-weight: 500;
}
.cartItemsWrap .cartItems tbody:before {
    content: "-";
    display: block;
    line-height: 2rem;
    color: transparent;
}
.cartItemsWrap .cartItem__itemName span {
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: -2px;
}
.cartItemsWrap .cartItem__info p img {
    width: 2rem;
}
.cartItemsWrap .cartItem__itemName img {
    width: 55px;
    float: left;
    margin-right: 20px;
}
.cartItemsWrap .cartItem__info p span {
    left: 8.3rem;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 0px;
    bottom: 2rem;
}
.cartItemsWrap .cartItem__info p span::after {
    left: 0;
    margin-left: 0px;
    transform: rotate(270deg);
}


.discount_cod_sec {
    background-color: #e5e5e5;
    padding: 25px 100px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}
.discount_cod_sec p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: #979797;
    margin-right: 45px;
}

.discountCode__main {
    max-width: 60rem;
    width: 50rem;
}
@media screen and (max-width: 767px) {
    .discountCode__main {
    width: 100%;
}
}

.discount_cod_sec .discountCode {
    max-width: 60rem;
    width: 50rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr max-content;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}
.discount_cod_sec .discountCode .discountCode__code {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.discount_cod_sec .discountCode .discountCode__apply {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.8rem;
    color: #f9f9f9;
    background-color: #EE851F;
    padding: 1rem 2.2rem;
    border: 2px solid #EE851F;
    border-radius: 5px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.discount_cod_sec .discountCode .discountCode__apply:hover {
    background-color: #2c3b58;
    border-color: #2c3b58;
}
.discount_cod_sec .discountCode .discountCode__apply:focus {
    outline: none;
}
.sales_assis {
    display: flex;
    padding: 4rem 4rem 0;
}
.sales_assis ul:first-child {
    width: 60%;
}
.sales_assis ul {
    list-style: none;
}
.sales_assis ul:last-child {
    width: 40%;
}
.sales_assis ul .sub__headings {
    color: #4d4c4c;
    font-size: 2rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.sales_assis ul li {
    padding: 0.5rem 0rem 0.8rem 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #808080;
}
.sales_assis ul .mob__numb {
    color: #2c3b58;
    font-weight: 500;
    font-size: 1.8rem;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary__item td {
    padding: 0.5rem 0rem 0.5rem 0;
}


/* upsel css */

.upselItemsWrap .cartItems thead tr {
    background-color: #e5e5e5;
}
.upselItemsWrap .cartItems thead tr th {
    color: #2c3b58;
}

.upsel_itemOption select {
    color: #2c3b58;
    width: 19rem;
    background-image: url(../img/angle-down-solid.svg), -webkit-gradient(linear, left top, left bottom, color-stop(100%, #F5F5F5), to(#F5F5F5));
    background-image: url(../img/angle-down-solid.svg), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
    font-size: 1.6rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 160%;
    padding: .6em 1.4em .5em .8em;
    width: 20rem;
    max-width: 90%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: 1.2rem auto, 100%;
}
.upsel_itemOption select option {
    font-size: 1.6rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #4D4C4C;
}
.upsel_itemOption {
    display: flex !important;
    margin-top: 20px !important;
}
.upsel_itemOption a {
    display: flex;
    align-items: center;
    color: #ee851f;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}
.cartItem__add button {
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.6rem;
    color: #f9f9f9;
    background-color: #EE851F;
    padding: 1rem 2.2rem;
    border: 2px solid #EE851F;
    border-radius: 5px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.cartItem__add button:hover {
    cursor: pointer;
    border-color: #2c3b58;
    background-color: #2c3b58;
    color: #f9f9f9;
}
small.cart__vat {
    font-size: 1.3rem;
}

.cartItemsWrap .cartItems td .upsell-1__price {
    font-size: 2.5rem;
}
.cartItemsWrap .cartItems td .upsell-1__price span {
    font-size: 2.5rem !important;
}
.cartItemsWrap .cartItems td .upsell-2__price {
    font-size: 2.5rem;
}
.cartItemsWrap .cartItems td .upsell-2__price span {
    font-size: 2.5rem !important;
}
.cartItemsWrap .cartItems td .upsell-1__name {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2rem;
}
.cartItemsWrap .cartItems td .upsell-1__price span:last-child {
    font-size: 1.2rem !important;
}
.cartItemsWrap .cartItems td .upsell-2__price span:last-child {
    font-size: 1.2rem !important;
}
.cartItemsWrap .cartItems td:first-child {
    width: 700px;
}
.cartItemsWrap .cartItems td:nth-child(2) {
    width: 190px;
}
.cartItem__price span {
    font-size: 1.2rem;
}
.cartItemsWrap .cartItems td:last-child {
    width: 190px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .cartItems thead tr th {
    font-size: 2rem;
}
.cartItemsWrap .cartItems td .upsell-1__price {
    font-size: 2rem;
}
.cartItemsWrap .cartItems td .upsell-2__price {
    font-size: 2rem;
}
.buyprice_change {
    font-size: 2rem !important;
}
.cartItemsWrap {
    overflow-x: scroll;
}
.cartItemsWrap .cartItems {
    width: 650px;
}
.cartItem__add button {
    width: 100px;
        padding: 1rem 0.2rem;
    }
    .discount_cod_sec {
    display: block;
    text-align: center;
}
.discount_cod_sec p {
    margin: 0 0 20px;
}
.discount_cod_sec .discountCode {
    width: 100%;
    margin: 0 auto 2rem;
}
.upsel_itemOption select {
    padding: 0.3em 0.4em 0.2em 0.8em;
    }
    .diccount-orderSummary-Wrap .dicountCodeWrap__head {
    display: none;
}
}

@media screen and (max-width: 580px) {
    .cartSummary p {
        font-size: 2rem;
    }
    .discount_cod_sec p {
    font-size: 2rem;
}
.discount_cod_sec .discountCode {
    width: 100%;
}
.discount_cod_sec {
    padding: 25px 30px;
}
.discount_cod_sec .discountCode .discountCode__apply {
    font-size: 1.5rem;
}
.sales_assis {
    display: block;
    padding: 4rem 4rem 0;
}
.sales_assis ul:first-child {
    width: 100%;
}
.sales_assis ul:last-child {
    width: 100%;
    margin-top: 3rem;
}
}

/* header basketdropdown css */

.basket__dropDown {
    position: absolute;
    background-color: #fff;
    width: 350px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #00000026;
    right: -25px;
    top: 40px;
    -webkit-animation: slideDown 0.5s;
    animation: slideDown 0.5s;
    display: none;
}
#carticon__hover:hover .basket__dropDown {
    display: block;
} 
#carticon__hover1:hover .basket__dropDown {
    display: block;
} 
.basket__dropDown::before {
    content: "";
    position: absolute;
    right: 18px;
    top: -28px;
    width: 0px;
    height: 0px;
    border: 15px solid;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: white;
    transform: rotate(0deg);
}
.basket__dropDown .bascket__item {
    display: flex;
    font-size: 1.7rem;
    padding: 20px 20px;
    font-family: "Roboto", sans-serif;
    color: #2c3b58;
    align-items: center;
}
.basket__dropDown .bascket__item .dropdown__cartIcon {
    margin-right: 5px;
}
.basket__dropDown .bascket__item b {
    font-size: 1.7rem;
    margin-right: 4px;
}
.basket__dropDown table {
    width: 100%;
    border-collapse: collapse;
}
.basket__dropDown table tr {
    background-color: #f6f6f6;
    border: 1px solid #e7e7e7;
}
.basket__dropDown table tr:last-child {
    border: none;
    background-color: #fff;
}
.basket__dropDown table tr:last-child td {
    font-weight: 600;
}
.basket__dropDown table tr td {
    font-size: 1.7rem;
    padding: 15px 20px;
    font-family: "Roboto", sans-serif;
    color: #2c3b58;
}
.basket_btn {
    margin: 10px 20px 20px;
}
.basket_btn button {
    width: 100%;
    border: none;
    background-color: transparent;
}
.basket_btn button a {
    width: 100%;
    padding: 14px 0;
    background-color: #ee851f;
    border: none;
    font-size: 1.7rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    border-radius: 4px;
        -webkit-transition: all 1s ease;
    transition: all 1s ease;
    text-decoration: none;
    float: left;
}
.basket_btn button a:hover {
    background-color: #2c3b58;
}
.basket_btn button:focus {
    outline: none;
}

@media screen and (max-width: 500px) {
    .basket__dropDown {
    right: -90px;
}
.basket__dropDown::before {
    right: 82px;
}
.mainNavigation__burger {
    z-index: 100;
}
.mainNavigation__logo {
    z-index: 100;
}
}

@media screen and (max-width: 400px) {
.basket__dropDown {
    left: 0;
    right: 0;
    width: 300px;
}
.basket__dropDown::before {
    left: 8px;
}
.basket__dropDown .bascket__item {
    font-size: 1.5rem;
}
.basket__dropDown table tr td {
    font-size: 1.5rem;
    }
    .basket_btn button {
        font-size: 1.5rem;
    }
}

/* header basketdropdown css end */

/* x-mas css */

.x__masBanner {
    padding-bottom: 6rem;
}
.x__masBanner img {
    width: 100%;
}

/* x-mas css end */

/* virtual tour slider css */

.businessLoungeSliderWrap h1 {
        font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 2.8rem;
    color: #4D4C4C;
    line-height: 180%;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 90%;
    margin: auto;
    margin-bottom: 6rem;
}
.businessLoungeSliderWrap h1:after {
    content: '';
    display: block;
    width: 3rem;
    height: 0;
    margin: auto;
    margin-top: 0rem;
    border-bottom: 4px solid #ee851f;
}

/* virtual tour slider css end */



/* meeting room 17-12 css start */
.portlandStreetWrap .portlandStreet__col2 .meetingRoomFeatures {
    margin-bottom: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.portlandStreetWrap .portlandStreet__col2 .meetingRoomFeatures ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    list-style: none;
}
.portlandStreetWrap .portlandStreet__col2 .meetingRoomFeatures__1 {
    margin-right: 4rem;
}
/* meeting room 17-12 css end */


/* edit by 5-jan-2020 */

.myco_banner_txt {
    font-size: 2rem;
    font-weight: 400;
}
@media screen and (max-width:500px) {
    .myco_banner_txt {
    font-size: 1.6rem;
}
}

/* edit by 7-jan-2020 */

.light_banner {
    background-color: #DA7717;
    padding: 3.5rem 0;
}
.light_banner .row90 {
    display: flex;
    align-items: center;
}
.light_banner h3 {
    color: #fff;
    font-size: 3.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    width: 50%;
    line-height: 40px;
}
.light_banner h3 b {
    font-size: 3.5rem;
    font-weight: 400;
}
.light_banner p {
    color: #ffffffd1;
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    line-height: 24px;
}

@media screen and (max-width:1199px) {
    .light_banner h3 {
    width: 65%;
}
}
@media screen and (max-width:850px) {
    .light_banner h3 {
    margin-right: 30px;
}
}
@media screen and (max-width:767px) {
    .light_banner .row90 {
    display: block;
    text-align: center;
}
.light_banner h3 {
    width: 100%;
    margin-bottom: 15px;
}
}

.headerSlide__content h1 {
    font-size: 2.9rem;
}
.headerSlide__content h1 span {
    font-size: 2.9rem;
}


/* edit by 11-jan-2020 */

/* testimonial css  */

.testimonialsWrap {
  margin-bottom: 0rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60rem 1fr;
      grid-template-columns: 60rem 1fr;
  -ms-grid-rows: max-content;
      grid-template-rows: -webkit-max-content;
      grid-template-rows: max-content;
}

.testimonialsWrap__left {
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.testimonialsWrap__left img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 100%;
  max-height: 100%;
}

.testimonialsWrap__right {
  background-color: #fff;
  padding: 5rem;
}

.testimonialsWrap__right h1 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  color: #2c3b58;
  line-height: 180%;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
}

.testimonialsWrap__right h1:after {
  content: '';
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-top: 1rem;
  border-bottom: 4px solid #ee851f;
}

@media screen and (max-width: 600px) {
  .testimonialsWrap__right h1 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.testimonialsWrap .testimonials {
  width: 100%;
  max-width: 100%;
  margin-bottom: 5rem;
  overflow: hidden;
}

.testimonialsWrap .testimonialsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.testimonialsWrap .testimonial {
  width: 100% !important;
  min-width: 100%;
}

.testimonialsWrap .testimonial__image {
  width: 8rem;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8rem;
      grid-template-columns: 8rem;
  -ms-grid-rows: 6rem 2rem 2rem;
      grid-template-rows: 6rem 2rem 2rem;
}

.testimonialsWrap .testimonial__image img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
  display: block;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
}

.testimonialsWrap .testimonial__image i {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / span 2;
  -ms-grid-column-align: center;
      justify-self: center;
  z-index: 2;
  font-size: 4rem;
  color: #ee851f;
}

.testimonialsWrap .testimonial__review {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 200%;
  color: #4D4C4C;
  text-align: center;
  padding: 5rem 0;
  max-width: 79rem;
  margin: auto;
}

.testimonialsWrap .testimonial__author {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 200%;
  color: #ee851f;
  text-align: center;
}
.testimonialsWrap .testimonial__author span {
    font-size: 1.8rem;
    color: #2c3b58;
}

.testimonialsWrap .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 15rem;
  margin: auto;
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.testimonialsWrap .controls .control {
  font-size: 1.5rem;
  color: #E5E5E5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

.testimonialsWrap .controls .control:hover {
  color: #ee851f;
}

.testimonialsWrap .controls .control--active {
  color: #ee851f;
}

.testimonialsWrap .trustPilot {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}

.testimonialsWrap .trustPilot a {
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 200%;
  color: #4D4C4C;
  text-align: center;
  cursor: auto;
}

.testimonialsWrap .trustPilot a img {
  display: block;
  margin: auto;
  width: 11rem;
}

@media screen and (max-width: 1164px) {
  .testimonialsWrap {
    display: block;
  }
  .testimonialsWrap__left {
    display: none;
  }
  .testimonialsWrap .testimonial {
    width: 100%;
  }
  .testimonialsWrap .testimonial__image {
    width: 8rem;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 8rem;
        grid-template-columns: 8rem;
    -ms-grid-rows: 6rem 2rem 2rem;
        grid-template-rows: 6rem 2rem 2rem;
  }
  .testimonialsWrap .testimonial__image img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
    display: block;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
  }
  .testimonialsWrap .testimonial__image i {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / span 2;
    -ms-grid-column-align: center;
        justify-self: center;
    z-index: 2;
    font-size: 4rem;
    color: #ee851f;
  }
  .testimonialsWrap .testimonial__review {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 200%;
    color: #4D4C4C;
    text-align: center;
    padding: 5rem 0;
    max-width: 79rem;
    margin: auto;
  }
  .testimonialsWrap .testimonial__author {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 200%;
    color: #ee851f;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  .testimonialsWrap__right {
    background-color: #F9F9F9;
    padding: 2rem 5%;
  }
  .testimonialsWrap .testimonial__image {
    width: 5rem;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5rem;
        grid-template-columns: 5rem;
    -ms-grid-rows: 4rem 1rem 1rem;
        grid-template-rows: 4rem 1rem 1rem;
  }
  .testimonialsWrap .testimonial__image img {
    width: 5rem;
    height: 5rem;
  }
  .testimonialsWrap .testimonial__image i {
    font-size: 2rem;
  }
  .testimonialsWrap .testimonial__review {
    font-size: 1.6rem;
    padding: 2rem;
  }
  .testimonialsWrap .testimonial__author {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 120%;
    color: #ee851f;
    text-align: center;
  }
  .testimonialsWrap .controls {
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
}

/* testimonial css end  */


/* new tas page css */

/*.serviceIntroWrapper .serviceIntro__col1 a {
    color: #fff;
    background-color: #ee851f;
    padding: 12px 40px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    display: inline-block;
}
.serviceIntroWrapper .serviceIntro__col1 a:hover {
    background-color: #2c3b58;
    color: #fff;
}*/
.functional__wrap__contant {
    padding: 2rem 0 5rem 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 4fr;
    grid-template-columns: 3fr 4fr;
    grid-column-gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.functional__inner_left img {
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
/*.functional__inner::before {
    position: absolute;
    bottom: 100%;
    content: '';
    border-style: solid;
    border-width: 10rem 0 0 98vw;
    border-color: transparent transparent transparent rgba(3, 41, 77, 0.9);
}*/

.functional__wrap {

}
.functional__inner {
    position: relative;
    background-image: url("../img/functional-banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 0rem;
    padding-top: 8rem;
}
.functional__inner_right h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    color: #2c3b58;
    line-height: 160%;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #f9f9f9;
}
.functional__inner_right h2::after {
    content: '';
    display: block;
    width: 5rem;
    height: 0;
    margin-bottom: 3rem;
    margin-top: 1rem;
    border-bottom: 4px solid #EE851F;
}
.functional__inner_right p {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 201%;
    color: #f9f9f9;
    margin-bottom: 3rem;
}
.functional__inner_right .appsOurAppText__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.functional__inner_right .appsOurAppText__buttons a:not(:last-child) {
    margin-right: 2rem;
}
.functional__inner_right .appsOurAppText__buttons img {
    height: 5rem;
}
.tas__pricing {
    padding-top: 6rem;
        padding-bottom: 6rem;
    background-image: url(../img/tas-pricing-banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tas__pricing__head h1::after {
    content: '';
    display: block;
    width: 5rem;
    height: 0;
    margin: auto;
    margin-bottom: 3rem;
    margin-top: 1rem;
    border-bottom: 4px solid #EE851F;
}
.tas__pricing__head h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 3rem;
    color: #2c3b58;
    line-height: 160%;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: fit-content;
    max-width: 90%;
    margin: auto;
}
.tas__pricingIndividual {
    padding: 0rem 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.tas__pricing_col {
    width: 30%;
    margin-top: 0rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: max-content 5rem max-content max-content;
    grid-template-rows: -webkit-max-content 5rem -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content 5rem max-content max-content;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    background-color: #fff;
    border: 1px solid #EFEFEF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 10px 30px rgba(131, 131, 131, 0.3);
    box-shadow: 0px 10px 30px rgba(131, 131, 131, 0.3);
    border-radius: 5px;
    box-sizing: border-box;
}
.tas_pricing_top {
    margin-bottom: 1rem;
}
.tas_pricing_top hr {
    height: 2rem;
    border: none;
}
.tas_pricing_top h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 160%;
    text-align: center;
    color: #2c3b58;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.tas_pricing_top .tas__price {
    color: #EE851F;
    font-size: 5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
}
.tas_pricing_top .tas__price span {
    color: #EE851F;
    font-size: 3rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    padding-right: 2px;
}
.tas_pricing_top .tas__price .serviceVat {
    color: #A6A4A4;
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin-left: 0.6rem;
}
.tas__pricing_col h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
    color: #ee851f;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 100%;
    border-top: 1px solid #f5f6f7;
    border-bottom: 1px solid #f5f6f7;
    padding: 1.4rem 0;
}
.tas__pricing_contant {
    margin-top: 3rem;
    padding: 0 60px;
    padding-right: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
}
.tas__pricing_contant p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.tas__pricing_contant p i {
    font-size: 1rem;
    color: #EE851F;
    margin-right: 1rem;
}
.tas__srvbtn button {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.8rem;
    color: #f9f9f9;
    background-color: #2c3b58;
    padding: 1.5rem 3.2rem;
    border: 2px solid #2c3b58;
    border-radius: 0px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: auto;
    margin-bottom: 3rem;
}
.tas__srvbtn button:hover{
    background-color:transparent;
    color:#2c3b58;
}
.call_banner_wrap {
    margin-top: 0rem;
    background-image: url(../img/promo-banner.png);
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.provive__ansBanner {
    background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/provide-banner.png");
    background-color: #2c3b58;
        margin-top: 6rem;
}
.call__bannerContant {
    padding: 0 12rem;
}
.call__bannerContant h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3.2rem;
    color: #ffffff;
    line-height: 160%;
    text-align: center;
    width: 100%;
    width: 100%;
    margin: 0 0 35px;
}
.call__bannerContant p {
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    line-height: 45px;
    font-weight: 300;
}
.call_bannerBTN {
    text-align: center;
    margin-top: 4rem;
}
.call_bannerBTN a {
    text-decoration: none;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.8rem;
    color: #f9f9f9;
    background-color: #ee851f;
    padding: 1.5rem 3.2rem;
    border: 2px solid #ee851f;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: auto;
    margin-bottom: 3rem;
}
.call_bannerBTN a:hover {
    background-color: transparent;
    border-color: #fff;
}
.servicework__trust .reason__number {
    position: relative;
    border-radius: 0px !important;
    padding: 15px 34px 15px 30.1px !important;
    margin-top: -15px;
    font-size: 2.5rem !important;
    font-weight: 400 !important;
}
.servicework__trust .reason__number::after {
    position: absolute;
    bottom: -22px;
    left: 0px;
    content: '';
    border-style: solid;
    border-width: 0rem 0px 23px 5.9vw;
    border-color: transparent transparent transparent #ee851f;
}
.servicework__trust .reason__text {
    text-align: center;
}
.ansBanner__contant p {
    font-size: 3rem;
    font-weight: 300;
    line-height: 170%;
}
.ansBanner__contant p b {
    font-size: 3rem;
}

.tas__appKeyBenefitsWrap {
    padding-bottom: 0px;
}
.tas__appKeyBenefits {
    align-items: stretch !important;
}
.tas__appKeyBenefits .benefit {
    padding: 50px 0 70px;
    background-color: #fff;
        margin-bottom: 3rem;
}

@media screen and (max-width: 1920px) {
    .servicework__trust .reason__number::after {
            border-width: 0rem 0px 23px 4.1vw;
    }
}
@media screen and (max-width: 1680px) {
    .servicework__trust .reason__number::after {
            border-width: 0rem 0px 23px 4.8vw;
    }
}
@media screen and (max-width: 1600px) {
    .servicework__trust .reason__number::after {
            border-width: 0rem 0px 23px 4.9vw;
    }
}
@media screen and (max-width: 1440px) {
    .servicework__trust .reason__number::after {
            border-width: 0rem 0px 23px 5.5vw;
    }
}
@media screen and (max-width: 1366px) {
    .servicework__trust .reason__number::after {
            border-width: 0rem 0px 23px 5.8vw;
    }
}
@media screen and (max-width: 1024px) {
    .servicework__trust .reason__number::after {
            border-width: 0rem 0px 23px 7.9vw;
    }
}

@media screen and (max-width: 992px) {
	.functional__inner::before {
		border-width: 10rem 0 0 100vw;
	}
	.tas__pricing_contant {
    padding: 0 2rem;
}
.call__bannerContant {
    padding: 0 0rem;
}
.servicework__trust .reason__number::after {
	    border-width: 0rem 0px 23px 7.9vw;
}
}

@media screen and (max-width: 956px) {
	.servicework__trust .reason__number::after {
	    display: none;
}
}

@media screen and (max-width: 850px) {
	.tas__pricing_col {
    width: 47%;
}
}

@media screen and (max-width: 767px) {
	.tas__appKeyBenefits .benefit {
    width: 100% !important;
    margin-bottom: 3rem;
}
.tas__appKeyBenefits .benefit {
    width: 100%;
    max-width: 100%;
}
}

@media screen and (max-width: 650px) {
	.functional__inner_right .appsOurAppText__buttons img {
    height: 4rem;
}
}

@media screen and (max-width: 580px) {
	.functional__wrap__contant {
    display: block;
    text-align: center;
}
.functional__inner_right h2 {
    text-align: center;
}
.functional__inner_right h2::after {
    margin: 1rem auto 2rem;
}
.functional__inner_right .appsOurAppText__buttons {
    justify-content: center;
}
.tas__pricing_col {
    width: 100%;
    margin-bottom: 3rem;
}
.functional__inner_left img {
    display: block;
    width: 80%;
    min-width: 80%;
    max-width: 80%;
    margin: auto;
}
}









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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 21%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 64rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 86%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 24%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 63rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 82%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 28%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 58rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 78%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 32%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 55rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 75%;
}

}



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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 35%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 52rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 72%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 39%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 51rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 68%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 44%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 47rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 64%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 46%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 45rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 61%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 49%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 43rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 58%;
}

}

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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 53%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 40rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 55%;
}

}


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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 54%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 40rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 51%;
}

}


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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 56%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 38rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 50%;
}

}


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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 58%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 36rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 48%;
}

}


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

.testimonialsWrap .testimonialsInner {
    margin-left: -25px;
}
.testimonialsWrap .testimonial__image {
    width: 62%;
    margin: 0 auto;
}
.testimonialsWrap .testimonial__review {
    text-align: center;
    max-width: 33rem;
    margin: auto 0;
}
.testimonialsWrap .testimonial__author {
    text-align: center;
    margin-left: 0;
    max-width: 45%;
}

}





/* new tas page css end */

.faq--open dd a{

    font-size:1.6rem;
}

/* edid by 12-fab-2020 */

.personalDetailsWrap__head {
    padding-left: 0rem;
    margin-bottom: 0rem;
    display: inline-block;
}
.companyInfoWrap .companyInfo__tradingName {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / span 1;
}

.companyInfoWrap .companyInfo__companyNum {
    -ms-grid-row: 2;
    grid-row: 2 / span 1;
}
.companyInfoWrap .companyInfo__newLimited {
    -ms-grid-row: 2;
    grid-row: 2 / span 1;
}

.personalDetailsWrap .personalDetails .fill_alert {
    margin-bottom: 22px;
}

.personalDetailsWrap .personalAddress .fill_alert {
    margin-bottom: 22px;
}

.companyInfoWrap .companyInfo__heading1 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/ span 1;
}

@media screen and (max-width: 800px){  
.companyInfoWrap .companyInfo__heading1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 5/ span 1;
    margin-top: 25px;
}  
.companyInfoWrap .companyInfo__companyNum {
    -ms-grid-row: 6;
    grid-row: 6 / span 1;
}
.companyInfoWrap .companyInfo__newLimited {
    -ms-grid-row: 6;
    grid-row: 6 / span 1;
}
}

/* edit by 25-feb-2021 */

.pricingHeading__select p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 160%;
    text-align: center;
    color: #A6A4A4;
}

.upsel_itemOption .upsell_service__1 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    /*border: 1px solid #f9f9f9;*/
    border-radius: 5px;
    color: #2c3b58;
    border-color: #2c3b58;
    padding: 0rem 0rem;
    margin-right: 1rem;
}

/* edit by 1-march-2021 */

.service--yearly {
    margin-top: 4.2rem;
}

@media screen and (max-width: 600px) {
    .service--yearly {
    margin-top: 0rem;
}
}

/* edit by 3-march-2021 */

.statutory__mail {
    margin-top: 4.2rem;
}
.year__price {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #ee851f;
    line-height: 100%;
    font-size: 1.6rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin: 1rem auto;
}
.year__price--popular {
    color: #fff;
}

.locationCard__top--ipswich2 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(44, 59, 88, 0.8)), to(rgba(44, 59, 88, 0.8))), url("../img//locations/ipsw2.png");
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/locations/ipsw2.png");
}

@media screen and (max-width:850px) {
.footer1Links__worldPay {
    overflow: hidden;
    height: auto;
}
.footer_sll a {
    position: absolute;
    right: -40px;
    top: 10px;
}
.img__footerWrd {
    margin-top: 10rem !important;
}
}

@media screen and (max-width:800px) {
    .personalDetailsWrap .personalDetails__fName {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / span 2;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-row: 3 / span 1;
    }
    .personalDetailsWrap .personalDetails__lName {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / span 2;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        grid-row: 4 / span 1;
    }
    .personalDetailsWrap .personalDetails__email {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / span 2;
        -ms-grid-row: 5;
        -ms-grid-row-span: 1;
        grid-row: 5 / span 1;
    }
    .personalDetailsWrap .personalDetails__confirmemail {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / span 2;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        grid-row: 6 / span 1;
    }
    .personalDetailsWrap .personalDetails__phone {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / span 2;
        -ms-grid-row: 6;
        -ms-grid-row-span: 1;
        grid-row: 7 / span 1;
    }
    .personalDetailsWrap .personalDetails__mobile {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / span 2;
        -ms-grid-row: 7;
        -ms-grid-row-span: 1;
        grid-row: 8 / span 1;
    }
}

/* edit by 13-aug-2021 */

@media screen and (max-width: 425px) {
    .companyInfoWrap .companyInfo__companyNum {
        display: block !important;
        border-radius: 5px;
    }
    .companyInfoWrap .companyInfo__companyNum button {
        width: 100%;
        border-radius: 5px;
        margin-top: 2rem;
    }
    .discount_cod_sec .discountCode {
        display: block;
    }
    .discount_cod_sec .discountCode .discountCode__code {
        border-radius: 5px;
        margin-bottom: 2rem;
    }
    .discount_cod_sec .discountCode .discountCode__apply {
        width: 100%;
        border-radius: 5px;
    }
}

.logIn__terms {
    margin-top: 2rem;
}

/* edit by 9-sep-2021 */
/* top discount header css */

.headerSlide__contentWrap {
        padding-top: 18rem;
    }
.top__discountWrapper {
    background-color: #2c3b58;
    /*background-color: #000;*/
    padding: 20px 0;
}
.top__discountWrapper .nav__discount--top {
    position: relative;
}
.top__discountWrapper .nav__discount--top p {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #ffffff;
}
.top__discountWrapper .nav__discount--top p a {
    color: #ee851f;
    font-size: 1.8rem;
    text-decoration: underline;
}
.top__discountWrapper .nav__discount--top .top__discountWrapper--cross {
    color: #ee851f;
    font-size: 1.8rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

@media screen and (max-width: 576px) {
    .headerSlide__contentWrap {
        padding-top: 6rem !important;
    }
    .top__discountWrapper .nav__discount--top p {
        font-size: 1.4rem;
    }
    .top__discountWrapper .nav__discount--top p a {
        font-size: 1.4rem;
    }
    .top__discountWrapper .nav__discount--top .top__discountWrapper--cross {
        font-size: 1.4rem;
    }
}

/* top discount header css end */


/* DISCOUNT MODAL CSS START */
.discountModal10 {
    padding: 12px;
    width: 730px;
}
.discountModal10 .modal__head2 {
    position: relative;
    height: 0px;
}
.discountModal10 .modal__head2 i {
    margin: 0px;
    font-size: 14px;
}
.discountModal10 .discount10__contant {
    display: flex;
    justify-content: space-between;
}
.discountModal10 .discount10__contant .discount__leftArea {
    background-image: url(../img/discount_side_image.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 49%;
    display: flex;
    justify-content: center;
    align-items: end;
}
.discountModal10 .discount10__contant .discount__leftArea .discountModal__text {
    font-family: "Roboto", sans-serif;
    bottom: 0;
    font-size: 13px;
    margin-bottom: 15px;
    background-color: #d8d9d3;
/*    background-color: transparent;*/
    color: #2c3b58;
    padding: 25px 25px;
    font-weight: 500;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    line-height: 150%;
}

.discountModal10 .discount10__contant .discount__leftArea .discountModal__text a {
    font-size: 13px;
    text-decoration: underline;
    color: #2c3b58;
}
.discountModal10 .discount10__contant .discountModal__submit {
    width: 49%;
}
.discountModal10 .discount10__contant .discountModal__submit h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #2c3b58;
    font-size: 5rem;
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 5rem;
    line-height: 105%;
}
.discountModal10 .discount10__contant .discountModal__submit h1 b {
    font-size: 5rem;
}
.discountModal10 .discount10__contant .discountModal__submit h1 span {
    color: #ee851f;
    font-size: 2.5rem;
    font-family: "Roboto", sans-serif;
}
.discountModal10 .discount10__contant .discountModal__submit p {
    text-align: center;
    font-size: 1.4rem;
    font-family: "Roboto", sans-serif;
    color: #2c3b58;
    margin-bottom: 4rem;
}
.discountModal10 .discount10__contant .discountModal__submit input {
    font-size: 1.4rem;
    text-align: center;
    background-color: transparent;
    border: 2px solid #adadad9e;
    color: #2c3b58;
    margin-bottom: 3rem;
    padding: 14px 0;
}
.discountModal10 .discount10__contant .discountModal__submit input::placeholder {
    color: #2c3b58;
}
.discountModal10 .discount10__contant .discountModal__submit .submit {
    font-family: "Roboto", sans-serif;
    width: 100%;
    margin-bottom: 3.5rem;
    background-color: #ee851f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 0;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.discountModal10 .discount10__contant .discountModal__submit .submit:hover {
    background-color: #2c3b58;
}
.discountModal10 .discount10__contant .discountModal__submit .no__thanks {
    width: 100%;
    background-color: transparent;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c3b58;
    text-decoration: underline;
    margin-bottom: 3rem;
    cursor: pointer;
}

@media screen and (max-width :580px) {
    .discountModal10 .discount10__contant {
        display: block;
    }
    .discountModal10 .discount10__contant .discount__leftArea {
        width: 100%;
        margin-top: 20px;
        display: none !important;
    }
    .discountModal10 .discount10__contant .discountModal__submit {
        width: 100%;
    }
}
/* DISCOUNT MODAL CSS END */
.cartProgressWrap .cartProgress__stageName .add_info {
    line-height: 20px;
    text-align: center;
}



/* black-friday-banner CSS */
.headerSlide--2.two-blackfriday {
    background-image: url("../img/banners/xmas-banner.jpe");
}
.two-blackfriday .headerSlide__content h2 {
    font-size: 38px;
    color: #EE851F;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
}
.two-blackfriday .headerSlide__content h2 span {
    font-size: 100%;
    color: #fff;
}
.two-blackfriday .headerSlide__content h4 {
    font-size: 26px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    margin: 20px 0 30px;
    font-weight: normal;
}
.two-blackfriday .headerSlide__content h4 span {
    font-size: 100%;
    color: #cc000f;
}
.two-blackfriday .headerSlide__content h6 {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 400;
}
.two-blackfriday .headerSlide__content h6 span {
    font-size: 100%;
    color: #cc000f;
}
.two-blackfriday .headerSlide__content p {
    margin-top: 40px;
    color: #fff;
    font-weight: 400;
}
.two-blackfriday .headerSlide__button--1 {
    border-color: #EE851F;
    background-color: #EE851F;
    margin-right: 2rem;
}
.two-blackfriday .headerSlide__content h4 small {
    font-weight: 400;
    font-size: 26px;
    color: #EE851F;
}
.headerSlide__buttons.offer_two_margin {
    margin-top: 25px;
}
/* black-friday-banner CSS END */

/* black-friday-modal CSS */
.black-friday-modal .discountModal10 {
    padding: 12px;
    width: 730px;
    background: #000;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit h2 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 15px;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit h2 span {
    display: block;
    font-size: 49px;
    text-transform: capitalize;
    color: #cc000f;
    letter-spacing: 0;
    font-weight: 600;
    padding: 12px 0 0;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit h1 {
    color: #fff;
    margin-bottom: 2rem;
    margin-top: 3rem;
    line-height: 90%;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit h1 span {
    color: #cc000f;
    display: block;
    margin-top: 8px;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit p {
    color: #fff;
    margin-bottom: 25px;
    line-height: 25px;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input {
    border: 2px solid #a8a8a8;
    color: #fff;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::placeholder {
    color: #fff;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #fff;
}

.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::-ms-input-placeholder { /* Microsoft Edge */
 color: #fff;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit .submit {
    background-color: #cc000f;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit .no__thanks {
    color: #fff;
}
.black-friday-modal .discountModal10 .modal__head2 i {
    color: #fff;
}

.black-friday-modal .discountModal10 .discount10__contant .discount__leftArea {
    background-image: url(../img/services-banners/leftside-BF.png);
    display: block;
    position: relative;
    background-size: cover;
    background-position: bottom;
}
.black-friday-modal .discountModal10 .discount10__contant .discount__leftArea h2 {
    font-size: 24px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: #cc000f;
    margin: 12rem 0 3rem;
}
.black-friday-modal .discountModal10 .discount10__contant .discount__leftArea h5 {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: #fff;
    padding: 0 10px;
    font-weight: 400;
    line-height: 30px;
}
.black-friday-modal .discountModal10 .discount10__contant .discount__leftArea .discountModal__text {
    bottom: 25px;
    position: absolute;
}

/* black-friday-modal CSS END */


.light_banner {
    background-color: #000;
    padding: 2.5rem 0;
}
.light_banner .row90 {
    display: flex;
    align-items: center;
}
.light_banner h3 {
    color: #fff;
    font-size: 3.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    width: 25%;
    line-height: 50px;
    border-right: 1px solid #fff;
    margin-right: 50px;
    text-align: center;
}
.light_banner h3 b {
    font-size: 3.5rem;
    font-weight: 500;
    display: block;
    color: #cc000e;
}
.light_banner p {
    color: #fff;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    line-height: 24px;
}
.light_banner p span {
    font-size: 100%;
    color: #cc000e;
}

@media screen and (max-width:1199px) {
    .light_banner h3 {
    width: 65%;
}
}
@media screen and (max-width:850px) {
    .light_banner h3 {
    margin-right: 30px;
}
}
@media screen and (max-width:767px) {
    .light_banner .row90 {
    display: block;
    text-align: center;
}
.light_banner h3 {
    width: 100%;
    margin-bottom: 15px;
    border: none;
}
}




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

.footer1 .footer1Links__worldPay .chamber__logo {
    width: auto;
    margin: 20px auto 0;
    float: none;
}

}

.paymentService__Wrapper .paymentServices .paymentServices__col .comodo__images.letsencrypt {
    position: relative;
    top: -40px;
}
.paymentService__Wrapper .paymentServices .paymentServices__col .comodo__images.letsencrypt .letcrypt {
    width: 200px;
}

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

.paymentService__Wrapper .paymentServices .paymentServices__col .comodo__images.letsencrypt {
    position: relative;
    top: -140px;
}

}

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

.paymentService__Wrapper .paymentServices .paymentServices__col .comodo__images.letsencrypt {
    position: relative;
    top: 0px;
}

}

img.chamber__logo {
    width: auto !important;
    margin-top: 20px;
    margin-right: 54px;
}


/* Placeholder css */


.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input {
    border: 2px solid #a8a8a8;
    color: #fff;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::placeholder {
    color: #fff;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #fff;
}

.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::-ms-input-placeholder { /* Microsoft Edge */
 color: #fff;
}

.offer_two_margin {
    margin-top: 22px;
}

.two-blackfriday .headerSlide__content h4 small {
    font-weight: 400;
    font-size: 28px;
}
.black-friday-modal .discountModal10 .discount10__contant .discountModal__submit h1 span {
    color: #cc000f;
    display: block;
    margin-top: 8px;
}


/*cyber monday css*/

.cyber-friday-modal .discountModal10 {
    background: #000;
}
.cyber-friday-modal .discountModal10 .discount10__contant .discount__leftArea h2 {
    font-size: 24px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: #cc000f;
    margin: 12rem 0 3rem;
}
.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit h2 {
    font-size: 48px;
    color: #cc000f;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 4px;
    margin-top: 40px;
}
.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit h2 span {
    display: block;
    font-size: 35px;
    text-transform: capitalize;
    color: #cc000f;
    letter-spacing: 0;
    font-weight: 600;
    padding: 12px 0 0;
}
.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit h1 {
    color: #fff;
    margin-bottom: 2rem;
    margin-top: 3rem;
    font-size: 4rem;
    line-height: 90%;
}
.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit p {
    color: #fff;
    margin-bottom: 25px;
    line-height: 25px;
}
.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit input {
    border: 2px solid #fff;
    color: #fff;
}

.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #fff;
}

.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit input::-ms-input-placeholder { /* Microsoft Edge */
 color: #fff;
}

.cyber-friday-modal .discountModal10 .discount10__contant .discountModal__submit .no__thanks {
    color: #fff;
}

/*readymade css start*/

.year__incorporation {
    display: flex;
    justify-content: space-between;
}
.readymade__tableMain .Readymade__table .year__incorporation ul {
    display: flex;
    justify-content: end;
    list-style: none;
    align-items: center;
}
.year__incorporation .hendred_companes li {
    font-size: 19px;
    font-family: "Roboto", sans-serif;
}
.year__incorporation .hendred_companes li b {
    font-size: 100%;
}
.readymade__tableMain .Readymade__table .table thead tr th .dropdown__icon {
    padding-left: 10px;
    font-size: 16px;
}
.readymade__tableMain .Readymade__table .table thead tr th .dropdown__icon .readyArrow_up {
    transform: rotate(180deg);
}
.year__incorporation .hendred_companes li b span {
    font-size: 100%;
}

/*readymade css end*/

.step__three_wrap .cardDetails__detail--pay.difrent_payment {
    display: block !important;
    width: 260px;
}
   
button#paymentPayNow_btn1 {
    display: block;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #f9f9f9;
    text-align: center;
    text-decoration: none;
    background-color: #EE851F;
    border-radius: 4px;
    padding: 0 0;
    height: 6rem;
    margin: 0;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

button#paymentPayNow_btn1:hover {
    background-color: #2c3b58;
}

button#paymentPayNow_btn1 img {
    position: relative;
    top: 4px;
    left: -8px;
}
        
form#paymentForm {
    display: contents;
}

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

.step__three_wrap .cardDetails__detail--TandC {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 0/span 6 !important;
}
.step__three_wrap .cardDetails__detail--editOrder {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/span 6 !important;
    margin-right: 2px;
}
.step__three_wrap .cardDetails__detail--pay.difrent_payment {
    display: block !important;
    width: 100%;
}
.step__three_wrap .cardDetails__detail--pay {
    grid-column: 1/span 6 !important;
    margin-right: 9px;
}
.step__three_wrap .cardDetails {
    padding: 20px !important;
    width: 100%;
    margin-right: 0px;
}
.step__three_wrap .cardDetails__detail--TandC .checkbox1 label {
    display: block;
    width: 90%;
}

}



.footer1 .footer1Links__worldPay img {
    display: block;
    margin-left: auto;
    width: 30rem;
    margin-top: 15px;
}

.diccount-orderSummary-Wrap .dicountCodeWrap .discountSafe__img--worldPay {
    height: 5rem;
    margin-right: 3rem;
}
.cardDetailsWrap .cardDetails__detail--security .cardDetailsSecurity-1 {
    height: 5rem;
    margin-right: 3rem;
}

/* black friday css start */




.headerSlide__content.blackfriday_red_prnt h1 {
    margin-bottom: 1rem;
}
.headerSlide__content.blackfriday_red_prnt h1 span {
    color: red;
    font-size: 4rem;
    margin-bottom: 2rem;
}
.headerSlide__content.blackfriday_red_prnt h3 {
    font-size: 3rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}
.headerSlide__content.blackfriday_red_prnt h4 {
    font-size: 2.8rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}
.headerSlide__content.blackfriday_red_prnt h4 span {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: red;
    font-size: 2.8rem;
}
.headerSlide__content.blackfriday_red_prnt p {
    color: #fff;
}
.headerSlide__content.blackfriday_red_prnt p span {
    color: #fff;
    font-size: 1.4rem;
}
.headerSlide__buttons.blackfriday_btn .headerSlide__button.headerSlide__button--1 {
    background-color: red;
    border-color: red;
}
.headerSlide__buttons.blackfriday_btn .headerSlide__button.headerSlide__button--1:hover {
    border-color: #f9f9f9;
    background-color: transparent;
}
/* black friday css end */
.top__discountWrapper.fifty_percentage {
    padding: 10px 0;
}
.top__discountWrapper.fifty_percentage .nav__discount--top .fifty_perc {
    font-weight: 500;
    font-size: 1.7rem;
    background: #f44436;
    width: 56%;
    margin: 0px auto;
    padding: 10px 0;
    border-radius: 50px;
}
.top__discountWrapper.fifty_percentage .nav__discount--top .fifty_perc .top_spanspace {
    font-size: 1.6rem;
    font-weight: 300;
}
.top__discountWrapper.fifty_percentage .nav__discount--top .fifty_perc .openDiscountModall {
    color: #fff;
    font-size: 1.7rem;
    text-decoration: underline;
}


.cyber-friday-modal .discountModal10.discountModal10_white_bg {
    background: #fff;
}
.black-friday-modal .discountModal10.discountModal10_white_bg .modal__head2 i {
    color: #f44436;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit h2 {
    font-size: 48px;
    color: #f44436;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0px;
    margin-top: 40px;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit h2 span {
    display: block;
    font-size: 48px;
    text-transform: capitalize;
    color: #f44436;
    letter-spacing: 0;
    font-weight: 600;
    padding: 0px 0 0;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit h1 {
    color: #2c3b58;
    margin-bottom: 1.8rem;
    margin-top: 1.5rem;
    font-size: 4rem;
    line-height: 90%;
    font-weight: 600;
    text-transform: uppercase;
}
.discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit h1 b {
    font-size: 4rem;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit p {
    color: #2c3b58;
    margin-bottom: 10px;
    line-height: 25px;
    font-weight: 500;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit .discount_code_regular {
    color: #2c3b58;
    margin-bottom: 10px;
    line-height: 25px;
    font-weight: 500;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit input {
    border: 2px solid #202020;
    color: #394762;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit input::placeholder {
  color: #394762;
  opacity: 1; /* Firefox */
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #394762;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit input::-ms-input-placeholder { /* Microsoft Edge */
 color: #394762;
}
.black-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit .submit {
    background-color: #f44436;
    font-size: 16px;
    font-weight: 500;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit .no__thanks {
    color: #2c3b58;
}
.cyber-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discount__leftArea h2 {
    font-size: 24px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: #f44436;
    margin: 4rem 3rem 3rem;
    background: #e2e3e4d6;
    padding: 30px 0;
    line-height: 40px;
}
.black-friday-modal .discountModal10.discountModal10_white_bg .discount10__contant .discount__leftArea h5 {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: #fff;
    padding: 0 10px;
    font-weight: 400;
    line-height: 30px;
    margin: 6rem 0 0;
}
.discountModal10.discountModal10_white_bg .discount10__contant .discount__leftArea {
    width: 46%;
}
.discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit {
    width: 52.5%;
}

.headerSlide--fifty_percentage {
    background-image: url(../img/banners/flash-banner.png);
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt {
    width: 70%;
    position: relative;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h1 {
    color: #f44436;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h3 {
    font-size: 2rem;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h3 span {
    font-size: 1.5rem;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h3 p .one_now {
    font-size: 1.8rem;
    margin-top: 6px;
    display: inline-block;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h3 p .two_now {
    font-size: 1.6rem;
    margin-top: 0px;
    display: inline-block;
    text-decoration: line-through;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h3 p .three_now {
    font-size: 1.6rem;
    margin-top: 3px;
    display: inline-block;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h3 p {
    margin-bottom: 20px;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h6 {
    font-size: 2rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt h5 {
    font-size: 2.2rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-top: 14px;
}
.fifty_off_img {
    position: absolute;
    right: 30px;
    bottom: 50px;
    width: 20%;
}


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

.top__discountWrapper.fifty_percentage .nav__discount--top .fifty_perc {
    width: 76%;
}

} 

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

.fifty_off_img {
    display: none;
}

} 

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

.top__discountWrapper.fifty_percentage .nav__discount--top .fifty_perc {
    width: 86%;
}

}   

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

.top__discountWrapper.fifty_percentage .nav__discount--top .fifty_perc {
    width: 100%;
}

} 

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

.headerSlide--fifty_percentage .headerSlide__contentWrap {
    padding-top: 18rem !important;
}

} 

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

.discountModal10.discountModal10_white_bg .discount10__contant .discountModal__submit {
    width: 100%;
}
.headerSlide--fifty_percentage .headerSlide__content.blackfriday_red_prnt {
    width: 100%;
}

}  


.topNavigation__socials .fa-brands.fa-x-twitter:hover {
  color: #000;
}
.footer_wrapp .footer1AboutUs .social_icons a .fa-brands.fa-x-twitter {
  font-size: 20px;
  color: #fff;
  padding-right: 20px;
  cursor: pointer;
}
.footer1 .footer1AboutUs__socials .fa-brands.fa-x-twitter:hover {
  color: #000;
}

.term-boxx .term-text a {
    color: #ee851f !important;
    font-size: 16px;
    text-decoration: none !important;
}
.top__discountWrapper.fifty_percentage.blackfriday .nav__discount--top p span {
    font-size: 1.8rem;
    color: #7F5CCE;
}

.top__discountWrapper.fifty_percentage.blackfriday a {
    color: #7F5CCE;
}

.top__discountWrapper.fifty_percentage.blackfriday {
    background: #000;
}

.modalContainer.blackfriday.openModal .discountModal10 .discount10__contant .discount__leftArea {
    background-size: contain;
    width: 44%;
}

.modalContainer.blackfriday.openModal .discountModal10 .discount10__contant .discountModal__submit {
    width: 54%;
}

.modalContainer.blackfriday.openModal .discountModal10 .discount10__contant .discount__leftArea .discountModal__text {
    font-family: "Roboto", sans-serif;
    bottom: 0;
    font-size: 12px;
    margin-bottom: 15px;
    background-color: #d8d9d3db;
    /* background-color: transparent; */
    color: #2c3b58;
    padding: 25px 25px;
    font-weight: 500;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    line-height: 150%;
}

.term-boxx {
    align-items: baseline;
}