@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
.box_es {
    height: 420px;
}
:root {
  --clr-bg-header: #3D8361;
  --clr-btn: #3D8361;
  --clr-dropdown: #1C6758;
  --clr-nav-hover: #1E6F5C;
  --clr-dropdown-hov: #289672;
  --clr-dropdown-link-hov: #29BB89;
  --clr-light: #FAFAFA;
}.faq {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 6% 12%;
    background: #003873;
}img.logo {
    margin-left: -25px!important;
}
.faq h6 {
    font-size: 45px;
    color: #fff;
    margin-bottom: 2%;
}
.faq h6 {
    font-size: 45px;
    color: #fff;
    margin-bottom: 2%;
}

.faq h1 {
    color: #fff;
    font-size: 23px;
    font-weight: 100;
    line-height: 35px;
}

.faq p {
    text-align: left;
    color: #fff;
    font-size: 15px!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
}
.faq h1 {
    color: #fff;
    font-size: 23px;
    font-weight: 100;
    line-height: 35px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.slider {
    width: 80%!important;
}
body {
  font-family: 'Poppins', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
      position: sticky;
    top: 0px;
    width: 100%;
    z-index: 1000;
    background: #fff;
}



.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 130, 95, 0.5);
}

.container {
  max-width: 65rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
}

.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.logo {
  color: var(--clr-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 2px solid var(--clr-light);
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
}

.btn.solid,
.btn.transparent:hover {
  background-color: var(--clr-light);
  color: var(--clr-btn);
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: var(--clr-light);
}

.nav-links > ul {
    display: flex;
    justify-content: end;
    align-items: center;
}body {
    overflow-x: hidden;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  line-height: 3rem;
  color: #000;
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link > a > i {
  margin-left: .2rem;
}


.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 17rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  color: 000;
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}


.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: var(--clr-light);
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}


.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}.dropdown {
    background: #eceff1;
}li.dropdown-link {
    list-style: none;
}

li.dropdown-link a {
    color: #000;
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color:#003873;
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color:#003873;
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
          position: fixed;
        height: calc(100vh - 3rem);
        top: 5rem;
        left: 0;
        width: 100%;
        background-color: #003873;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation .5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: .5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: .7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}
.parent h2 {
    font-size: 48px;
    line-height: 53px;
    margin-bottom: 24px;
    text-align: center;
}p.para {
    text-align: center;
    font-size: 20px;
    width: 80%;
    margin: auto;
    margin-bottom: 3%;
}
.left {
    width: 40%;
    float: left;
}
.left1 {    width: 60%;
    float: left;
    padding-right: 6%;
}
.one {
    width: 80%;
    margin: 3% auto;
    overflow: hidden;
}
.left .bb {
    float: right;
    width: 100%;
    margin-top: 20%;
}

img.aa {
    width: 103px;
}
.left1 p {
    margin-bottom: 10px;
    font-size: 17px;
}
h1.text-neutral-900 {
     font-size: 60px;
    line-height: 77px;
    margin-bottom: 24px;
}
sup.fs-60-prc {
    font-size: 30px;
}
span.text-primary-500 {
    color: #0081ff;
}
a.cc {
    background: #003873;
    color: #fff;
    padding: 16px 40px;
    font-size: 20px;
    margin-top: 35px;
    display: inline-block;
    border-radius: 5px;
}
.clear{clear: both;}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}
.three {
      margin: auto;
    background: #eceff1 !important;
    padding: 3% 0%;
}

.dd {      width: 80%;
    display: flex;
    align-items: center;
    margin: auto;
}

.dd h5 {
    width: 36%;
    float: left;
    font-size: 25px;
    padding-right: 3%;
    line-height: 32px;
}

.ee {     text-align: center;
    margin: 5px 15px;
}

.ee h3 {
    font-size: 26px;
}

.ee p {
    font-size: 17px;
}

.ee img {
    margin-bottom: -18px;
}


/* CSS variables */
:root {
  --primary-text: #4f8f70;
  --secondary-text: #e9fff3;
  --white-text-white: #ffffff;
  --black-text-black: #000000;
}
/* custom font */
/* @font-face {
  font-family: "Avenir";
  src: url("../assets/font/AvenirLight.woff2") format("woff2"),
    url("../assets/font/AvenirLight.woff") format("woff");
  font-weight: 400;
  font-style: normal;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--white-text-white);
  color: var(--black-text-black);
  font-family: sans-serif;
  /* custom scroll bar   */
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: var(--secondary-text);
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-text);
  border-radius: 100px;
}
a {
  text-decoration: none;
}
.accordion-body ul li a {
  color: black;
  font-weight: 700;
}
.faq-section .accordion {
  width: 100%;
}

.accordion-button:not(.collapsed) {
  /* background-color: #c5e5d8;*/
  background-color: var(--secondary-text);
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:before {
  content: "";
  position: absolute;
  /*   right: 0.75rem; */
  right: 0.75rem;
  top: 1.25rem;
  height: 2px;
  width: 1rem;
  background-color: var(--primary-text);
}
.accordion-button.collapsed:after {
  content: "";
  position: absolute;
  /*   right: 1.1875rem; */
  right: 1.1875rem;
  top: 0.8125rem;
  height: 1.0625rem;
  width: 0.125rem;
  border-style: none;
  background-color: var(--primary-text);
}

.faq-section .accordion-button h5 {
  /*   color: #7dbc9e; */
  color: var(--primary-text);
  margin-right: 13px;
}
.accordion-body {
  background-color: var(--secondary-text);
}
/* button:focus:not(:focus-visible) {
    outline: 0;
} */

/* list */
ul {
  list-style-type: none;
  list-style-type: disc; /* Default bullet points for ul */
  margin-left: 20px;
}
ul li {
  margin-bottom: 5px;
}
.accordion-body ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
}

.accordion-body ol > li {
  counter-increment: step-counter; /* Increment custom counter */
  margin-bottom: 10px;
}

.accordion-body ol > li::before {
  content: "Steps " counter(step-counter) ": "; /* Custom prefix */
  font-weight: bold;
}
@media(max-width:768px){
    .left {
    display: none;
}.box_es {
    height: auto;
}img.logo {
    margin-left: 6px !important;
}
    div#tp-widget-rating {
    margin-right: 11px;
    font-weight: 600;
    font-size: 14px;
}div#trust-score {
    margin-right: 11px;
    font-weight: 600;
    font-size: 12px;
}
    .pap h1 {
    font-size: 20px !important;}
    .pap {
    background: #fff;
    width:96%!important}
    .right_s {
    margin-top: 5%!important;
    margin-bottom: 5%!important;
}
    .services {
    width: 96%!important;
    margin: auto;
}
    .parent {
    width: 96%!important;}
    .container3 {
    width: 96%!important;}
    .container3 h2 {
    font-size: 30px!important;}
    .left_S h1 {        font-size: 30px !important;
        line-height: 37px !important;}
        .right_s img {
    width: 100% !important;
}.sec_l img {
    width: 100%;
    display: none;
}.ser {
    margin-top: 0%!important;
}p.para {
    text-align: center;
    font-size: 18px!important;
    width: 100%!important;}
    .box_es {
    width: 100%!important;
    margin-right: 0px!important;}
    .parent h2 {
    font-size: 30px!important;
    line-height: 36px!important;}
}
@media screen and (min-width: 768px) {
  /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */

  .accordion-button:before {
    right: 0.75rem;
  }

  .accordion-button.collapsed:after {
    right: 1.1875rem;
  }

  .faq-section .accordion-button h5 {
    margin-right: 0px;
  }
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.gg {background: #003873;padding: 5% 0%;}

.ll {width:50%;
    float: left;
}
.ll img{width:100%}
.rr {
      float: right;
    color: #fff;
    font-size: 23px;
    margin-left: 7%;
    width: 50%;
}

.rr h6 {
    color: #0081ff;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 9px;
}
.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 11em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
     font-size: 15px;
    font-weight: 300;
    margin: 2em 0;
    line-height: 23px;
}.accordion-item {
    margin: 1% 0%;
}.container1 span {
    color: #0081ff;
    font-size: 19px;
}

.four {
    width: 80%;
    margin: 6% auto;
    text-align: center;
}

.four h1 {
    font-size: 49px;
    margin-top: 20px;
}
.lia {
    background: #eceff1 !important;
    padding: 15px;
}

.tabs {
  display: grid;
}

[role=tablist] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 10px;
}

[role=tabpanel] {
  padding: 2rem;
}

.wrapper button {
     border: 0;
    cursor: pointer;
    font-size: 18px;
    padding: 18px 9px;
}
.lia {
    margin-top: 4%;
}
button[aria-selected=true] {
      background: #003873;
    box-shadow: none;
    color: #fff;
}

button:focus {
  outline: 0;
  --bs-color: rgba(0,0,0,0.6);
}.la {
    float: left;
    width: 49%;
    text-align: left;
}

.la h2 {
    font-size: 30px;
    margin-bottom: 6%;
}

.la p {
     font-size: 15px;
    margin-bottom: 1%;
    line-height: 24px;
}
.la h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 29px;
    line-height: 28px;
}
.la a {
    background: #003873;
    margin-top: 20px;
    color: #fff;
    padding: 15px 28px;
    font-size: 18px;
    margin-top: 5px;
    display: inline-block;
    border-radius: 5px;
}.review {
    background: #f2f5f7;
    padding: 7% 12%;
    text-align: center;
}

a#profile-link {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
div#trust-score {
    margin-right: 11px;
    font-weight: 600;
    font-size: 17px;
}div#tp-widget-rating {
    margin-right: 11px;
    font-weight: 600;
    font-size: 17px;
}
.tp-stars--5 .tp-star:nth-of-type(-n + 5) .tp-star__canvas, .tp-stars--5 .tp-star:nth-of-type(-n + 5) .tp-star__canvas--half {
    fill: #00b67a;
}
.wpb_wrapper {
        width: 29%;
    float: left;
    background: #fff;
    text-align: left;
    margin: 2%;
    line-height: 24px;
    padding: 30px;
    margin-top: 5%;
}
.tp-widget-stars {
    margin: 0 12px 4px 0;
    width: 111px;
}.review h1 {
    font-size: 50px;
    margin: 2% 0% 10px;
}
.review span {
    font-size: 18px;
    color: #003873;
}span.text-nowrap {
       font-weight: 100;
    font-size: 17px;
    margin-bottom: 6%;
    display: inline-block;
}.wpb_wrapper p img {
    margin-bottom: 5%;
}.wpb_wrapper p {
    font-size: 16px;
}span.check-promo-icon.collected-by-rc {
    font-size: 16px;
    font-weight: 100;
    margin-top: 6%;
    display: block;
    color: gray;
}.footer {
    background: #001c3a;
    padding: 2%;
}
li.nav-link {
    list-style: none;
}

li.nav-link a {
    font-size: 18px;
}
.pap {
    background: #fff;
    width: 54%;
    padding: 4px 2% 17px;
    margin: auto;
    border-radius: 7px;
}

.pap h1 {
    font-size: 25px;
    color: #040404;
}
.nav-links {
    margin-top: 11px;
}
.footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
div#trust-score {
    color: #000;
}

div#tp-widget-rating {
    color: #000;
}
.footer ul li {
    list-style: none;
    padding: 5px 23px;
}

.footer ul li a {
    color: #ffffffa3;
}
.five {
    background: #003873;
    color: #fff;
    text-align: center;
    padding: 5% 14%;
}

.five h1 {
    font-size: 50px;
    margin-bottom: 5%;
}

.five span {
    color: #0081ff;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3%;
    display: inline-block;
}.aab {
    display: flex;
    align-items: center;
}

.aab p {
    font-size: 18px;
    text-align: left;
    line-height: 28px;
}


button.close.no_thanks {
    position: absolute;
    right: 5%;
    background: transparent;
    border: 0px;
    font-size: 27px;
    top: 12px;
}

h5.text-white {
    font-size: 18px;
}h4.text-orng {
    text-align: center;
    font-size: 22px;
    font-weight: 100;
}button.close.no_thanks {
    position: absolute;
    right: 5%;
    background: transparent;
    border: 0px;
    font-size: 27px;
    top: 12px;
}

h5.text-white {
    font-size: 18px;
}

h4.text-orng {
    text-align: center;
    font-size: 22px;
    font-weight: 100;
}
.rr h1 {
    font-size: 40px;
}
.form-group input {
       width: 100%;
    border: 1px solid #ccc !important;
    border-radius: 5px;
    padding: 9px;
    font-size: 14px;
    height: 55px !important;
}button.call_btn {
       background:#003873!important;
    border: 0px;
    color: #fff;
    padding: 12px 34px;
    font-size: 18px;
    border-radius: 5px;
    width: 100%;
}
.dropdown {
    border-top: 5px solid #003873;
    background: #EEF6FB !important;
}div#ouibounce-modal input {
    margin-bottom: 8%;
}
#ouibounce-modal
{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:11111111}
#ouibounce-modal .underlay
{width:100%;height:100%;position:absolute;top:0;left:0;background-color:rgba(0,0,0,.5);
  cursor:pointer;-webkit-animation:.5s fadein;animation:.5s fadein}
#ouibounce-modal .exit-modal{
    width:420px;height:450px;background-color:#fff;z-index:1;position:absolute;
    margin:auto;top:0;right:0;bottom:0;left:0;
    -webkit-animation:.3s popin;animation:.3s popin}
#ouibounce-modal .modal-title{font-size:16px;
    background:#003873;color:#fff;padding:20px;margin:0;
  text-align:center}
#ouibounce-modal h3{color:#fff;margin:.2em;font-weight:500}
#ouibounce-modal .modal-body{padding:20px 35px;font-size:.9em}
#ouibounce-modal p{color:#344a5f}
#ouibounce-modal form{text-align:center;margin-top:25px}
#ouibounce-modal form input[type=text]{padding:12px;color:#444;
  width:100%;border:1px solid #ccc;-webkit-font-smoothing:antialiased}
#ouibounce-modal form input[type=submit]{color:#fff;background:#6730e3;border:none;
  cursor:pointer;-webkit-font-smoothing:antialiased}
#ouibounce-modal form p{text-align:left;margin-left:35px;opacity:.8;margin-top:1px;
  padding-top:1px;font-size:.9em}
#ouibounce-modal .modal-footer{position:absolute;bottom:3px;text-align:center;width:100%}