@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600&display=swap);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500;600;700&display=swap);
.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }
  .Toastify__toast-container--top-left {
    top: 1em;
    left: 1em; }
  .Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--top-right {
    top: 1em;
    right: 1em; }
  .Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em; }
  .Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
    .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
      top: 0; }
    .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
      bottom: 0; }
    .Toastify__toast-container--rtl {
      right: 0;
      left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }
  .Toastify__toast--rtl {
    direction: rtl; }
  .Toastify__toast--default {
    background: #fff;
    color: #aaa; }
  .Toastify__toast--info {
    background: #3498db; }
  .Toastify__toast--success {
    background: #07bc0c; }
  .Toastify__toast--warning {
    background: #f1c40f; }
  .Toastify__toast--error {
    background: #e74c3c; }
  .Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1;
        flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .Toastify__close-button--default {
    color: #000;
    opacity: 0.3; }
  .Toastify__close-button:hover, .Toastify__close-button:focus {
    opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }
  .Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards; }
  .Toastify__progress-bar--controlled {
    transition: transform .2s; }
  .Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    transform-origin: right; }
  .Toastify__progress-bar--default {
    background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }
body{color:#000;font-weight:400}svg g#NZ-NTH:hover>path#NZ-NTL,svg g#NZ-GIS:hover>path#NZ-GIS-2,svg g#NZ-MWT:hover>path#NZ-MWT-2,svg g#NZ-TAS:hover>path#NZ-TAS-2,svg g#NZ-STL:hover>path#NZ-STL-2{fill:#d2e9b1}svg g#NZ_AUK:hover>path#NZ-AUK,svg g#NZ-BOP:hover>path#NZ-BOP-2,svg g#NZ-WGN:hover>path#NZ-WGN-2,svg g#NZ-CAN:hover>path#NZ-CAN-2{fill:#bdddb7}svg g#NZ-WKO:hover>path#NZ-WKO-2,svg g#NZ-WTC:hover>path#NZ-WTC-2{fill:#a5d4b7}svg g#NZ-HKB:hover>path#NZ-HKB-2,svg g#NZ-TKI:hover>path#NZ-TKI-2,svg g#NZ-MBH:hover>path#NZ-MBH-2,svg g#NZ-OTA:hover>path#NZ-OTA-2{fill:#bbe0b2}body .group-editible ul.birthYear{text-align:center}body .group-editible ul.birthYear li{display:inline-block;width:66px;color:#faffae;padding:5px 10px;border-radius:3px;margin:4px 2px;text-align:center;cursor:pointer}body .group-editible ul.birthYear li:hover{background:#000}body .group-editible ul.selectState{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}body .group-editible ul.selectState li{display:inherit;max-width:25%;padding:0px 5px;flex:0 0 25%}.tablePopup thead tr th{color:#fff;font-size:13px;font-weight:600;border:none;vertical-align:top}.tablePopup tbody tr{cursor:pointer}.tablePopup tbody tr td{background:#fff;font-size:14px}.tablePopup tbody tr:hover td{color:#fff}.tablePopup tbody tr:hover td a{color:#fff}.electicitySaving{display:inline-block;width:100%;padding:5%;background:#fff;border-radius:5px;box-shadow:0 0 24px 0 rgba(0,0,0,.09)}.electicitySaving h2{color:#000 !important;text-align:center;margin-top:0px !important;font-weight:500;margin-bottom:0px !important;letter-spacing:1px}.electicitySaving p{text-align:center;letter-spacing:1px;margin-bottom:30px}.electicitySaving .table-responsive{border-radius:5px}.electicitySaving .tablePopup{margin-bottom:0px}.electicitySaving .tablePopup thead tr th{color:#fff !important;font-size:16px}.electicitySaving .tablePopup thead tr th span{color:#fff !important}.electicitySaving .tablePopup tbody tr td{font-size:16px}.copyright_footer{text-align:left}.copyright_footer span{text-align:left}.footerDisclaimer{padding:30px 0px 0px 0px;border-top:1px solid rgba(255,255,255,.3);margin-top:20px;text-align:center}.footerDisclaimer p{max-width:1024px;width:100%;margin:auto}.footerDisclaimer p strong{font-weight:bold}.footerDisclaimer p strong span{font-weight:bold}.standard_blog_first-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_first-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_first-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_first-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_first-theme .noppading{padding:0px !important}.standard_blog_first-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_first-theme .affix+.container-fluid{padding-top:70px}.standard_blog_first-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_first-theme .affix-top{position:static;top:-35px}.standard_blog_first-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_first-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_first-theme .top-header p a{color:#000}.standard_blog_first-theme .top-header p.text-right{float:right}.standard_blog_first-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_first-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_first-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_first-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_first-theme #navbarResponsive ul li a{color:#131313}.standard_blog_first-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_first-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_first-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_first-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_first-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_first-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_first-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_first-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_first-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_first-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_first-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_first-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_first-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_first-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_first-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_first-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_first-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_first-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_first-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_first-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_first-theme .group-editible{text-align:center;padding:50px;background:#eaf2ff;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #c5d9ff}.standard_blog_first-theme .group-editible h4 strong{font-weight:500}.standard_blog_first-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_first-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_first-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_first-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#1b283f}.standard_blog_first-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_first-theme .boollets-points ul li a b{display:block}.standard_blog_first-theme .boollets-points ul li{padding:6px 0px}.standard_blog_first-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_first-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_first-theme .choos-boollets-points{border:1px solid #c5d9ff;background:#eaf2ff;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_first-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_first-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_first-theme .comparebtn a,.standard_blog_first-theme .comparebtn span{background:no-repeat;color:#1b283f;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #1b283f;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_first-theme .comparebtn a:hover,.standard_blog_first-theme .comparebtn span:hover{color:#fff;background:#1b283f}.standard_blog_first-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_first-theme .averagetext p{margin-bottom:0px}.standard_blog_first-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_first-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_first-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_first-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_first-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_first-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_first-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_first-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_first-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_first-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_first-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_first-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_first-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_first-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_first-theme .mid-content .mi-section-content .boollets-points,.standard_blog_first-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_first-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_first-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_first-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_first-theme .left-clinet-list ul li{display:inline-block}.standard_blog_first-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_first-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_first-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_first-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_first-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_first-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_first-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_first-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_first-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_first-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_first-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_first-theme .footer-section h2{font-size:20px}.standard_blog_first-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_first-theme .footer-section ul a{color:#ccc}.standard_blog_first-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_first-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_first-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_first-theme .doublelist ul li{width:50%;float:left}.standard_blog_first-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_first-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_first-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_first-theme .footer-logo{padding-top:20px}.standard_blog_first-theme .home-section-top{padding-top:1%}.standard_blog_first-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_first-theme #Australia-continent:hover g{opacity:.5}.standard_blog_first-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#1b283f;font-size:12px}.standard_blog_first-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_first-theme .foter-bottom ul li{display:inline-block}.standard_blog_first-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_first-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_first-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_first-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_first-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_first-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_first-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_first-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_first-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_first-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_first-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_first-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_first-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_first-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);background:#1b283f}.standard_blog_first-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#1b283f;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_first-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_first-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_first-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_first-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_first-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_first-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_first-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit !important;font-size:14px;padding:10px 30px}.standard_blog_first-theme a.header-button.nav-link:hover{background:#fff;color:#1b283f !important}.standard_blog_first-theme .stick_scroll{position:fixed;padding-top:80px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_first-theme .center-big-image{border:1px solid #eee}.standard_blog_first-theme .blogHeader{padding:8% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_first-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(0,0,0,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_first-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_first-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_first-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_first-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_first-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_first-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_first-theme .blogTextaria{margin-top:50px}.standard_blog_first-theme .blogSectionTop{padding-top:0px}.standard_blog_first-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_first-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_first-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_first-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_first-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_first-theme .group-editible ul.logoLIsting li a:hover{border-color:#1b283f}.standard_blog_first-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_first-theme svg g#AU-NT>path#AU-NT-2{fill:#2a2b40}.standard_blog_first-theme svg g#AU-WA>path#AU-WA-2{fill:#1b283f}.standard_blog_first-theme svg g#AU-SA>path#AU-SA-2{fill:#362d40}.standard_blog_first-theme svg g#AU-QLD>path#AU-QLD-2{fill:#673743}.standard_blog_first-theme svg g#AU-NSW>path#AU-NSW-2{fill:#a14245}.standard_blog_first-theme svg g#AU-VIC>path#AU-VIC-2{fill:#cd4b48}.standard_blog_first-theme svg g#AU-TAS>path#AU-TAS-2{fill:#f05249}.standard_blog_first-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#d4d3d5}.standard_blog_first-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#d2d3d5}.standard_blog_first-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#d7d4d5}.standard_blog_first-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#dcd4d5}.standard_blog_first-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#e0d6d6}.standard_blog_first-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#e2d6d5}.standard_blog_first-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e4d6d5}.standard_blog_first-theme .group-editible ul.birthYear li{background:#1b283f}.standard_blog_first-theme .group-editible ul.selectState li a{background-color:#eaf2ff;color:#1b283f;text-align:center;padding:8px 0px;border-color:#c5d9ff}.standard_blog_first-theme .group-editible ul.selectState li a:hover{background-color:#1b283f}.standard_blog_first-theme .tablePopup thead tr th{background:#1b283f}.standard_blog_first-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_first-theme .tablePopup tbody tr td{background:#fff;color:#1b283f;border-top:1px solid #c5d9ff}.standard_blog_first-theme .tablePopup tbody tr td a{color:#1b283f}.standard_blog_first-theme .tablePopup tbody tr:hover td{background:#eaf2ff}.standard_blog_first-theme .electicitySaving .table-responsive{border:1px solid #c5d9ff}@media(max-width: 1400px){.standard_blog_first-theme .stick_scroll{width:22.5%;right:15px}}@media(max-width: 1200px){.standard_blog_first-theme .stick_scroll{width:22.5%}}@media(max-width: 992px){.standard_blog_first-theme .stick_scroll{width:22%}.standard_blog_first-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_first-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_first-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_first-theme .navbar-nav{display:block !important}.standard_blog_first-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_first-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}.standard_blog_first-theme .mid-content .mi-section-content .big-text{margin:0px 0px 5px 0;line-height:58px}.standard_blog_first-theme .mid-content .mi-section-content p{line-height:normal}}@media(max-width: 767px){.standard_blog_first-theme .stick_scroll{width:21%}.standard_blog_first-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_first-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_first-theme .navbar-nav{display:block !important}.standard_blog_first-theme .top-header p.text-right{float:none}.standard_blog_first-theme .top-header p{display:block;text-align:center !important}.standard_blog_first-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_first-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_first-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_first-theme .article-heading h1{font-size:20px}.standard_blog_first-theme .choosearea-section svg{width:100%}.standard_blog_first-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_first-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_first-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_first-theme .navigation.active{padding:0px 0px}.standard_blog_first-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_first-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_first-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;height:50%;transition:.7s ease;right:0}.standard_blog_first-theme .advertisement-images{display:none}.standard_blog_first-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_first-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_first-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_first-theme .group-editible{padding:15px}.standard_blog_first-theme .group-editible ul li a{padding:15px}}@media(max-width: 767px){.group-editible::after{right:0px !important;bottom:-60px !important}.group-editible::before{left:0px !important;top:-60px !important}}.standard_blog_second-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_second-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_second-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_second-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_second-theme .noppading{padding:0px !important}.standard_blog_second-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_second-theme .affix+.container-fluid{padding-top:70px}.standard_blog_second-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_second-theme .affix-top{position:static;top:-35px}.standard_blog_second-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_second-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_second-theme .top-header p a{color:#000}.standard_blog_second-theme .top-header p.text-right{float:right}.standard_blog_second-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_second-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_second-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_second-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_second-theme #navbarResponsive ul li a{color:#131313}.standard_blog_second-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_second-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_second-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_second-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_second-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_second-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_second-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_second-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_second-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_second-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_second-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_second-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_second-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_second-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_second-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_second-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_second-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_second-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_second-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_second-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_second-theme .group-editible{text-align:center;padding:50px;background:#f0f0ff;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #d3d2fd}.standard_blog_second-theme .group-editible h4 strong{font-weight:500}.standard_blog_second-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_second-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_second-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_second-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#7773fa}.standard_blog_second-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_second-theme .boollets-points ul li a b{display:block}.standard_blog_second-theme .boollets-points ul li{padding:6px 0px}.standard_blog_second-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_second-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_second-theme .choos-boollets-points{border:1px solid #d3d2fd;background:#f0f0ff;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_second-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_second-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_second-theme .comparebtn a,.standard_blog_second-theme .comparebtn span{background:no-repeat;color:#7773fa;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #7773fa;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_second-theme .comparebtn a:hover,.standard_blog_second-theme .comparebtn span:hover{color:#fff;background:#7773fa}.standard_blog_second-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_second-theme .averagetext p{margin-bottom:0px}.standard_blog_second-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_second-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_second-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_second-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_second-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_second-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_second-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_second-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_second-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_second-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_second-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_second-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_second-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_second-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_second-theme .mid-content .mi-section-content .boollets-points,.standard_blog_second-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_second-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_second-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_second-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_second-theme .left-clinet-list ul li{display:inline-block}.standard_blog_second-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_second-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_second-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_second-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_second-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_second-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_second-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_second-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_second-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_second-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_second-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_second-theme .footer-section h2{font-size:20px}.standard_blog_second-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_second-theme .footer-section ul a{color:#ccc}.standard_blog_second-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_second-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_second-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_second-theme .doublelist ul li{width:50%;float:left}.standard_blog_second-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_second-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_second-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_second-theme .footer-logo{padding-top:20px}.standard_blog_second-theme .home-section-top{padding-top:1%}.standard_blog_second-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_second-theme #Australia-continent:hover g{opacity:.5}.standard_blog_second-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#7773fa;font-size:12px}.standard_blog_second-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_second-theme .foter-bottom ul li{display:inline-block}.standard_blog_second-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_second-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_second-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_second-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_second-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_second-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_second-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_second-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_second-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_second-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_second-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_second-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_second-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_second-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);background:#7773fa}.standard_blog_second-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#7773fa;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_second-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_second-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_second-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_second-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_second-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_second-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_second-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit !important;font-size:14px;padding:10px 30px}.standard_blog_second-theme a.header-button.nav-link:hover{background:#fff;color:#7773fa !important}.standard_blog_second-theme .stick_scroll{position:fixed;padding-top:80px;width:255px;height:50%;transition:.7s ease;margin-bottom:20px}.standard_blog_second-theme .center-big-image{border:1px solid #eee}.standard_blog_second-theme .blogHeader{padding:8% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_second-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(38,40,105,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_second-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_second-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_second-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_second-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_second-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_second-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_second-theme .blogTextaria{margin-top:50px}.standard_blog_second-theme .blogSectionTop{padding-top:0px}.standard_blog_second-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_second-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_second-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_second-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_second-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_second-theme .group-editible ul.logoLIsting li a:hover{border-color:#7773fa}.standard_blog_second-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_second-theme .group-editible ul.birthYear li{background:#7773fa}.standard_blog_second-theme .group-editible ul.selectState li a{background-color:#f0f0ff;color:#7773fa;text-align:center;padding:8px 0px;border-color:#d3d2fd}.standard_blog_second-theme .group-editible ul.selectState li a:hover{background-color:#7773fa}.standard_blog_second-theme .tablePopup thead tr th{background:#7773fa}.standard_blog_second-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_second-theme .tablePopup tbody tr td{background:#fff;color:#7773fa;border-top:1px solid #d3d2fd}.standard_blog_second-theme .tablePopup tbody tr td a{color:#7773fa}.standard_blog_second-theme .tablePopup tbody tr:hover td{background:#f0f0ff}.standard_blog_second-theme .electicitySaving .table-responsive{border:1px solid #d3d2fd}@media(max-width: 1400px){.standard_blog_second-theme .stick_scroll{width:22.5%;right:15px}}@media(max-width: 1200px){.standard_blog_second-theme .stick_scroll{width:22.5%}}@media(max-width: 992px){.standard_blog_second-theme .stick_scroll{width:22%}.standard_blog_second-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_second-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_second-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_second-theme .navbar-nav{display:block !important}.standard_blog_second-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_second-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}}@media(max-width: 767px){.standard_blog_second-theme .stick_scroll{width:21%}.standard_blog_second-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_second-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_second-theme .navbar-nav{display:block !important}.standard_blog_second-theme .top-header p.text-right{float:none}.standard_blog_second-theme .top-header p{display:block;text-align:center !important}.standard_blog_second-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_second-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_second-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_second-theme .article-heading h1{font-size:20px}.standard_blog_second-theme .choosearea-section svg{width:100%}.standard_blog_second-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_second-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_second-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_second-theme .navigation.active{padding:0px 0px}.standard_blog_second-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_second-theme .advertisement-images{display:none}.standard_blog_second-theme table td,.standard_blog_second-theme .table th{padding:.5rem !important}}@media(max-width: 576px){.standard_blog_second-theme .stick_scroll{position:relative !important;padding-top:0;height:50%;width:100%;transition:.7s ease;right:0}.standard_blog_second-theme .advertisement-images{display:none}.standard_blog_second-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_second-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_second-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_second-theme .group-editible{padding:15px}.standard_blog_second-theme .group-editible ul li a{padding:15px}}.standard_blog_default-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_default-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_default-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_default-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_default-theme .noppading{padding:0px !important}.standard_blog_default-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_default-theme .affix+.container-fluid{padding-top:70px}.standard_blog_default-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_default-theme .affix-top{position:static;top:-35px}.standard_blog_default-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_default-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_default-theme .top-header p a{color:#000}.standard_blog_default-theme .top-header p.text-right{float:right}.standard_blog_default-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_default-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_default-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_default-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_default-theme #navbarResponsive ul li a{color:#131313}.standard_blog_default-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_default-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_default-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_default-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_default-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_default-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_default-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_default-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_default-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_default-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_default-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_default-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_default-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_default-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_default-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_default-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_default-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_default-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_default-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_default-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_default-theme .group-editible{text-align:center;padding:50px;background:#d1f5f3;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #b3f7f2}.standard_blog_default-theme .group-editible h4 strong{font-weight:500}.standard_blog_default-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_default-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_default-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_default-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#13ac8f}.standard_blog_default-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_default-theme .boollets-points ul li a b{display:block}.standard_blog_default-theme .boollets-points ul li{padding:6px 0px}.standard_blog_default-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_default-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_default-theme .choos-boollets-points{border:1px solid #b3f7f2;background:#d1f5f3;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_default-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_default-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_default-theme .comparebtn a,.standard_blog_default-theme .comparebtn span{background:no-repeat;color:#13ac8f;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #13ac8f;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_default-theme .comparebtn a:hover,.standard_blog_default-theme .comparebtn span:hover{color:#fff;background:#13ac8f}.standard_blog_default-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_default-theme .averagetext p{margin-bottom:0px}.standard_blog_default-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_default-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_default-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_default-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_default-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_default-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_default-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_default-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_default-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_default-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_default-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_default-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_default-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_default-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_default-theme .mid-content .mi-section-content .boollets-points,.standard_blog_default-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_default-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_default-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_default-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_default-theme .left-clinet-list ul li{display:inline-block}.standard_blog_default-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_default-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_default-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_default-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_default-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_default-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_default-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_default-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_default-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_default-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_default-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_default-theme .footer-section h2{font-size:20px}.standard_blog_default-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_default-theme .footer-section ul a{color:#ccc}.standard_blog_default-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_default-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_default-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_default-theme .doublelist ul li{width:50%;float:left}.standard_blog_default-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_default-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_default-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_default-theme .footer-logo{padding-top:20px}.standard_blog_default-theme .home-section-top{padding-top:1%}.standard_blog_default-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_default-theme #Australia-continent:hover g{opacity:.5}.standard_blog_default-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#13ac8f;font-size:12px}.standard_blog_default-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_default-theme .foter-bottom ul li{display:inline-block}.standard_blog_default-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_default-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_default-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_default-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_default-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_default-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_default-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_default-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_default-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_default-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_default-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_default-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_default-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_default-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);background:#13ac8f}.standard_blog_default-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#13ac8f;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_default-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_default-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_default-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_default-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_default-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_default-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_default-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_default-theme a.header-button.nav-link:hover{background:#fff;color:#13ac8f !important}.standard_blog_default-theme .stick_scroll{position:fixed;padding-top:80px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_default-theme .center-big-image{border:1px solid #eee}.standard_blog_default-theme .blogHeader{padding:8% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_default-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(4,84,81,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_default-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_default-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_default-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_default-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_default-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_default-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_default-theme .blogTextaria{margin-top:50px}.standard_blog_default-theme .blogSectionTop{padding-top:0px}.standard_blog_default-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_default-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_default-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_default-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_default-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_default-theme .group-editible ul.logoLIsting li a:hover{border-color:#13ac8f}.standard_blog_default-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_default-theme .group-editible ul.birthYear li{background:#13ac8f}.standard_blog_default-theme .group-editible ul.selectState li a{background-color:#d1f5f3;color:#13ac8f;text-align:center;padding:8px 0px;border-color:#b3f7f2}.standard_blog_default-theme .group-editible ul.selectState li a:hover{background-color:#13ac8f}.standard_blog_default-theme .tablePopup thead tr th{background:#13ac8f}.standard_blog_default-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_default-theme .tablePopup tbody tr td{background:#fff;color:#13ac8f;border-top:1px solid #b3f7f2}.standard_blog_default-theme .tablePopup tbody tr td a{color:#13ac8f}.standard_blog_default-theme .tablePopup tbody tr:hover td{background:#d1f5f3}.standard_blog_default-theme .electicitySaving .table-responsive{border:1px solid #b3f7f2}@media(max-width: 1400px){.standard_blog_default-theme .stick_scroll{width:22.5%;right:15px}}@media(max-width: 1200px){.standard_blog_default-theme .stick_scroll{width:22.5%}}@media(max-width: 992px){.standard_blog_default-theme .stick_scroll{width:22%}.standard_blog_default-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_default-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_default-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_default-theme .navbar-nav{display:block !important}.standard_blog_default-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_default-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}}@media(max-width: 767px){.standard_blog_default-theme .stick_scroll{width:21%}.standard_blog_default-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_default-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_default-theme .navbar-nav{display:block !important}.standard_blog_default-theme .top-header p.text-right{float:none}.standard_blog_default-theme .top-header p{display:block;text-align:center !important}.standard_blog_default-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_default-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_default-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_default-theme .article-heading h1{font-size:20px}.standard_blog_default-theme .choosearea-section svg{width:100%}.standard_blog_default-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_default-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_default-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_default-theme .navigation.active{padding:0px 0px}.standard_blog_default-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_default-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_default-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;height:50%;transition:.7s ease;right:0}.standard_blog_default-theme .advertisement-images{display:none}.standard_blog_default-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_default-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_default-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_default-theme .group-editible{padding:15px}.standard_blog_default-theme .group-editible ul li a{padding:15px}}.standard_blog_third-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_third-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_third-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_third-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_third-theme .noppading{padding:0px !important}.standard_blog_third-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_third-theme .affix+.container-fluid{padding-top:70px}.standard_blog_third-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_third-theme .affix-top{position:static;top:-35px}.standard_blog_third-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_third-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_third-theme .top-header p a{color:#000}.standard_blog_third-theme .top-header p.text-right{float:right}.standard_blog_third-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_third-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_third-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_third-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_third-theme #navbarResponsive ul li a{color:#131313}.standard_blog_third-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_third-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_third-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_third-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_third-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_third-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_third-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_third-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_third-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_third-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_third-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_third-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_third-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_third-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_third-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_third-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_third-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_third-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_third-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_third-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_third-theme .group-editible{text-align:center;padding:50px;background:#ebfbff;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #c0f2ff}.standard_blog_third-theme .group-editible h4 strong{font-weight:500}.standard_blog_third-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_third-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_third-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_third-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#4094a9}.standard_blog_third-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_third-theme .boollets-points ul li a b{display:block}.standard_blog_third-theme .boollets-points ul li{padding:6px 0px}.standard_blog_third-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_third-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_third-theme .choos-boollets-points{border:1px solid #c0f2ff;background:#ebfbff;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_third-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_third-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_third-theme .comparebtn a,.standard_blog_third-theme .comparebtn span{background:no-repeat;color:#4094a9;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #4094a9;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_third-theme .comparebtn a:hover,.standard_blog_third-theme .comparebtn span:hover{color:#fff;background:#4094a9}.standard_blog_third-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_third-theme .averagetext p{margin-bottom:0px}.standard_blog_third-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_third-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_third-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_third-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_third-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_third-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_third-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_third-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_third-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_third-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_third-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_third-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_third-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_third-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_third-theme .mid-content .mi-section-content .boollets-points,.standard_blog_third-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_third-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_third-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_third-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_third-theme .left-clinet-list ul li{display:inline-block}.standard_blog_third-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_third-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_third-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_third-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_third-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_third-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_third-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_third-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_third-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_third-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_third-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_third-theme .footer-section h2{font-size:20px}.standard_blog_third-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_third-theme .footer-section ul a{color:#ccc}.standard_blog_third-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_third-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_third-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_third-theme .doublelist ul li{width:50%;float:left}.standard_blog_third-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_third-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_third-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_third-theme .footer-logo{padding-top:20px}.standard_blog_third-theme .home-section-top{padding-top:1%}.standard_blog_third-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_third-theme #Australia-continent:hover g{opacity:.5}.standard_blog_third-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#4094a9;font-size:12px}.standard_blog_third-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_third-theme .foter-bottom ul li{display:inline-block}.standard_blog_third-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_third-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_third-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_third-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_third-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_third-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_third-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_third-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_third-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_third-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_third-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_third-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_third-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_third-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(75,66,66,.2);background:#4094a9}.standard_blog_third-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#4094a9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_third-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_third-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_third-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_third-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_third-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_third-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_third-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_third-theme a.header-button.nav-link:hover{background:#fff;color:#4094a9 !important}.standard_blog_third-theme .stick_scroll_demo{position:fixed}.standard_blog_third-theme .stick_scroll{position:fixed;padding-top:80px;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_third-theme .center-big-image{border:1px solid #eee}.standard_blog_third-theme .blogHeader{padding:6% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_third-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(28,58,76,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_third-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_third-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_third-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_third-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_third-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_third-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_third-theme .blogTextaria{margin-top:50px}.standard_blog_third-theme .blogSectionTop{padding-top:0px}.standard_blog_third-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_third-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_third-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_third-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_third-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_third-theme .group-editible ul.logoLIsting li a:hover{border-color:#4094a9}.standard_blog_third-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_third-theme .group-editible ul.birthYear li{background:#4094a9}.standard_blog_third-theme .group-editible ul.selectState li a{background-color:#ebfbff;color:#4094a9;text-align:center;padding:8px 0px;border-color:#c0f2ff}.standard_blog_third-theme .group-editible ul.selectState li a:hover{background-color:#4094a9}.standard_blog_third-theme .tablePopup thead tr th{background:#4094a9}.standard_blog_third-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_third-theme .tablePopup tbody tr td{background:#fff;color:#4094a9;border-top:1px solid #c0f2ff}.standard_blog_third-theme .tablePopup tbody tr td a{color:#4094a9}.standard_blog_third-theme .tablePopup tbody tr:hover td{background:#ebfbff}.standard_blog_third-theme .electicitySaving .table-responsive{border:1px solid #c0f2ff}@media(max-width: 1400px){.standard_blog_third-theme .stick_scroll{width:12.5%;right:15px}}@media(max-width: 1200px){.standard_blog_third-theme .stick_scroll{width:12.5%}}@media(max-width: 992px){.standard_blog_third-theme .stick_scroll{width:22%}.standard_blog_third-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_third-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_third-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_third-theme .navbar-nav{display:block !important}.standard_blog_third-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_third-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}}@media(max-width: 767px){.standard_blog_third-theme .stick_scroll{width:21%}.standard_blog_third-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_third-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_third-theme .navbar-nav{display:block !important}.standard_blog_third-theme .top-header p.text-right{float:none}.standard_blog_third-theme .top-header p{display:block;text-align:center !important}.standard_blog_third-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_third-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_third-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_third-theme .article-heading h1{font-size:20px}.standard_blog_third-theme .choosearea-section svg{width:100%}.standard_blog_third-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_third-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_third-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_third-theme .navigation.active{padding:0px 0px}.standard_blog_third-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_third-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_third-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;transition:.7s ease;right:0}.standard_blog_third-theme .advertisement-images{display:none}.standard_blog_third-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_third-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_third-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_third-theme .group-editible{padding:15px}.standard_blog_third-theme .group-editible ul li a{padding:15px}}.standard_blog_sixth-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_sixth-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_sixth-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_sixth-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_sixth-theme .noppading{padding:0px !important}.standard_blog_sixth-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_sixth-theme .affix+.container-fluid{padding-top:70px}.standard_blog_sixth-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_sixth-theme .affix-top{position:static;top:-35px}.standard_blog_sixth-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_sixth-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_sixth-theme .top-header p a{color:#000}.standard_blog_sixth-theme .top-header p.text-right{float:right}.standard_blog_sixth-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_sixth-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_sixth-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_sixth-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_sixth-theme #navbarResponsive ul li a{color:#131313}.standard_blog_sixth-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_sixth-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_sixth-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_sixth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_sixth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_sixth-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_sixth-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_sixth-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_sixth-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_sixth-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_sixth-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_sixth-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_sixth-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_sixth-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_sixth-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_sixth-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_sixth-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_sixth-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_sixth-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_sixth-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_sixth-theme .group-editible{text-align:center;padding:50px;background:#f4e3ff;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #e7c1ff}.standard_blog_sixth-theme .group-editible h4 strong{font-weight:500}.standard_blog_sixth-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_sixth-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_sixth-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_sixth-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#5c0f8b}.standard_blog_sixth-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_sixth-theme .boollets-points ul li a b{display:block}.standard_blog_sixth-theme .boollets-points ul li{padding:6px 0px}.standard_blog_sixth-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_sixth-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_sixth-theme .choos-boollets-points{border:1px solid #e7c1ff;background:#f4e3ff;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_sixth-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_sixth-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_sixth-theme .comparebtn a,.standard_blog_sixth-theme .comparebtn span{background:no-repeat;color:#5c0f8b;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #5c0f8b;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_sixth-theme .comparebtn a:hover,.standard_blog_sixth-theme .comparebtn span:hover{color:#fff;background:#5c0f8b}.standard_blog_sixth-theme .averagetext{text-align:left;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_sixth-theme .averagetext p{margin-bottom:0px}.standard_blog_sixth-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_sixth-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_sixth-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_sixth-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_sixth-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_sixth-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_sixth-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_sixth-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_sixth-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_sixth-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_sixth-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_sixth-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_sixth-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_sixth-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_sixth-theme .mid-content .mi-section-content .boollets-points,.standard_blog_sixth-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_sixth-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_sixth-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_sixth-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_sixth-theme .left-clinet-list ul li{display:inline-block}.standard_blog_sixth-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_sixth-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_sixth-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_sixth-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_sixth-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_sixth-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_sixth-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_sixth-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_sixth-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_sixth-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_sixth-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_sixth-theme .footer-section h2{font-size:20px}.standard_blog_sixth-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_sixth-theme .footer-section ul a{color:#ccc}.standard_blog_sixth-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_sixth-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_sixth-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_sixth-theme .doublelist ul li{width:50%;float:left}.standard_blog_sixth-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_sixth-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_sixth-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_sixth-theme .footer-logo{padding-top:20px}.standard_blog_sixth-theme .home-section-top{padding-top:1%}.standard_blog_sixth-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_sixth-theme #Australia-continent:hover g{opacity:.5}.standard_blog_sixth-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#5c0f8b;font-size:12px}.standard_blog_sixth-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_sixth-theme .foter-bottom ul li{display:inline-block}.standard_blog_sixth-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_sixth-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_sixth-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_sixth-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_sixth-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_sixth-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_sixth-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_sixth-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_sixth-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_sixth-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_sixth-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_sixth-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_sixth-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_sixth-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(75,66,66,.2);background:#5c0f8b}.standard_blog_sixth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#5c0f8b;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_sixth-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_sixth-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_sixth-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_sixth-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_sixth-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_sixth-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_sixth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_sixth-theme a.header-button.nav-link:hover{background:#fff;color:#5c0f8b !important}.standard_blog_sixth-theme .stick_scroll_demo{position:fixed}.standard_blog_sixth-theme .stick_scroll{position:fixed;padding-top:80px;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_sixth-theme .center-big-image{border:1px solid #eee}.standard_blog_sixth-theme .blogHeader{padding:6% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_sixth-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(28,58,76,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_sixth-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_sixth-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_sixth-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_sixth-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_sixth-theme .blogTextaria{margin-top:50px}.standard_blog_sixth-theme .blogSectionTop{padding-top:0px}.standard_blog_sixth-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_sixth-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_sixth-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_sixth-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_sixth-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_sixth-theme .group-editible ul.logoLIsting li a:hover{border-color:#5c0f8b}.standard_blog_sixth-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_sixth-theme svg path#AU-NT-2{fill:#81057b}.standard_blog_sixth-theme svg path#AU-WA-2{fill:#6e0269}.standard_blog_sixth-theme svg path#AU-SA-2{fill:#91188b}.standard_blog_sixth-theme svg path#AU-QLD-2{fill:#ac1192}.standard_blog_sixth-theme svg path#AU-NSW-2{fill:#c20c6b}.standard_blog_sixth-theme svg path#AU-VIC-2{fill:#d91958}.standard_blog_sixth-theme svg path#AU-TAS-2{fill:#f80d55}.standard_blog_sixth-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#e0c9df}.standard_blog_sixth-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#e4cae3}.standard_blog_sixth-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#e8cee6}.standard_blog_sixth-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#edcce8}.standard_blog_sixth-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#f2cbdf}.standard_blog_sixth-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#f7cedb}.standard_blog_sixth-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#fecbdb}.standard_blog_sixth-theme .group-editible ul.birthYear li{background:#5c0f8b}.standard_blog_sixth-theme .group-editible ul.selectState li a{background-color:#f4e3ff;color:#5c0f8b;text-align:center;padding:8px 0px;border-color:#e7c1ff}.standard_blog_sixth-theme .group-editible ul.selectState li a:hover{background-color:#5c0f8b}.standard_blog_sixth-theme .tablePopup thead tr th{background:#5c0f8b}.standard_blog_sixth-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_sixth-theme .tablePopup tbody tr td{background:#fff;color:#5c0f8b;border-top:1px solid #e7c1ff}.standard_blog_sixth-theme .tablePopup tbody tr td a{color:#5c0f8b}.standard_blog_sixth-theme .tablePopup tbody tr:hover td{background:#f4e3ff}.standard_blog_sixth-theme .electicitySaving .table-responsive{border:1px solid #e7c1ff}@media(max-width: 1400px){.standard_blog_sixth-theme .stick_scroll{width:12.5%;right:15px}}@media(max-width: 1200px){.standard_blog_sixth-theme .stick_scroll{width:12.5%}}@media(max-width: 992px){.standard_blog_sixth-theme .stick_scroll{width:22%}.standard_blog_sixth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_sixth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_sixth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_sixth-theme .navbar-nav{display:block !important}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_sixth-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}}@media(max-width: 767px){.standard_blog_sixth-theme .stick_scroll{width:21%}.standard_blog_sixth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_sixth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_sixth-theme .navbar-nav{display:block !important}.standard_blog_sixth-theme .top-header p.text-right{float:none}.standard_blog_sixth-theme .top-header p{display:block;text-align:center !important}.standard_blog_sixth-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_sixth-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_sixth-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_sixth-theme .article-heading h1{font-size:20px}.standard_blog_sixth-theme .choosearea-section svg{width:100%}.standard_blog_sixth-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_sixth-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_sixth-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_sixth-theme .navigation.active{padding:0px 0px}.standard_blog_sixth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_sixth-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_sixth-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;transition:.7s ease;right:0}.standard_blog_sixth-theme .advertisement-images{display:none}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_sixth-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_sixth-theme .group-editible{padding:15px}.standard_blog_sixth-theme .group-editible ul li a{padding:15px}}.standard_blog_fourth-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_fourth-theme .navbar img{max-height:50px}.standard_blog_fourth-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_fourth-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_fourth-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_fourth-theme .noppading{padding:0px !important}.standard_blog_fourth-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_fourth-theme .affix+.container-fluid{padding-top:70px}.standard_blog_fourth-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_fourth-theme .affix-top{position:static;top:-35px}.standard_blog_fourth-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_fourth-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_fourth-theme .top-header p a{color:#000}.standard_blog_fourth-theme .top-header p.text-right{float:right}.standard_blog_fourth-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_fourth-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_fourth-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_fourth-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_fourth-theme #navbarResponsive ul li a{color:#131313}.standard_blog_fourth-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_fourth-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_fourth-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_fourth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_fourth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_fourth-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_fourth-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_fourth-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_fourth-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_fourth-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_fourth-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_fourth-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_fourth-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_fourth-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_fourth-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_fourth-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_fourth-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_fourth-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_fourth-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_fourth-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_fourth-theme .group-editible{text-align:center;padding:50px;background:#ffe0df;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #ffbfbc}.standard_blog_fourth-theme .group-editible h4 strong{font-weight:500}.standard_blog_fourth-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_fourth-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_fourth-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_fourth-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#12122d}.standard_blog_fourth-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_fourth-theme .boollets-points ul li a b{display:block}.standard_blog_fourth-theme .boollets-points ul li{padding:6px 0px}.standard_blog_fourth-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_fourth-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_fourth-theme .choos-boollets-points{border:1px solid #ffbfbc;background:#ffe0df;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_fourth-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_fourth-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_fourth-theme .comparebtn a,.standard_blog_fourth-theme .comparebtn span{background:no-repeat;color:#12122d;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #12122d;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_fourth-theme .comparebtn a:hover,.standard_blog_fourth-theme .comparebtn span:hover{color:#fff;background:#12122d}.standard_blog_fourth-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all;display:none}.standard_blog_fourth-theme .averagetext p{margin-bottom:0px}.standard_blog_fourth-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_fourth-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_fourth-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_fourth-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_fourth-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_fourth-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_fourth-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_fourth-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_fourth-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_fourth-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_fourth-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_fourth-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_fourth-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_fourth-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_fourth-theme .mid-content .mi-section-content .boollets-points,.standard_blog_fourth-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_fourth-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_fourth-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_fourth-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_fourth-theme .left-clinet-list ul li{display:inline-block}.standard_blog_fourth-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_fourth-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_fourth-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_fourth-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_fourth-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_fourth-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_fourth-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_fourth-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_fourth-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_fourth-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_fourth-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_fourth-theme .footer-section h2{font-size:20px}.standard_blog_fourth-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_fourth-theme .footer-section ul a{color:#ccc}.standard_blog_fourth-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_fourth-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_fourth-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_fourth-theme .doublelist ul li{width:50%;float:left}.standard_blog_fourth-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_fourth-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_fourth-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_fourth-theme .footer-logo{padding-top:20px}.standard_blog_fourth-theme .home-section-top{padding-top:1%}.standard_blog_fourth-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_fourth-theme #Australia-continent:hover g{opacity:.5}.standard_blog_fourth-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#12122d;font-size:12px}.standard_blog_fourth-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_fourth-theme .foter-bottom ul li{display:inline-block}.standard_blog_fourth-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_fourth-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_fourth-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_fourth-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_fourth-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_fourth-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_fourth-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_fourth-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_fourth-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_fourth-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_fourth-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_fourth-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_fourth-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_fourth-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(75,66,66,.2);background:#12122d}.standard_blog_fourth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#12122d;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_fourth-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_fourth-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_fourth-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_fourth-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_fourth-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_fourth-theme nav.header .row{width:100%}.standard_blog_fourth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_fourth-theme a.header-button.nav-link:hover{background:#fff;color:#4094a9 !important}.standard_blog_fourth-theme .stick_scroll_demo{position:fixed}.standard_blog_fourth-theme .stick_scroll{position:fixed;padding-top:80px;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_fourth-theme .center-big-image{border:1px solid #eee}.standard_blog_fourth-theme .mid-content .blogImg{display:inline-block;width:100%;overflow:hidden}.standard_blog_fourth-theme .mid-content .blogImg img{max-height:none;max-width:100%}.standard_blog_fourth-theme .blogHeader{padding:30px 0px 0px 0px;background-repeat:no-repeat;background-size:cover;position:relative;margin-bottom:30px;padding-bottom:20px;border-bottom:1px solid #ddd}.standard_blog_fourth-theme .blogHeader .blogHeaderText{padding:0px 0%}.standard_blog_fourth-theme .blogHeader .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:10px;color:#000;text-align:left;line-height:normal}.standard_blog_fourth-theme .blogHeader ul{display:inline-block;text-align:left;width:100%;margin-bottom:0px}.standard_blog_fourth-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_fourth-theme .blogHeader ul li p{margin:0px 0px;padding:0px 10px 0px 0px;float:left;color:#12122d;border-right:1px solid #ddd;font-size:14px}.standard_blog_fourth-theme .blogHeader ul li p+p{padding-left:10px;border-right:none}.standard_blog_fourth-theme .blogTextaria{margin-top:20px}.standard_blog_fourth-theme .blogSectionTop{padding-top:0px}.standard_blog_fourth-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_fourth-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_fourth-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_fourth-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_fourth-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_fourth-theme .group-editible ul.logoLIsting li a:hover{border-color:#12122d}.standard_blog_fourth-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_fourth-theme .group-editible ul.coverListing{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_fourth-theme .group-editible ul.coverListing li{flex:0 0 33.3333%;max-width:33.3333%;padding:5px 5px;background:rgba(0,0,0,0);text-align:center}.standard_blog_fourth-theme .group-editible ul.coverListing li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1);height:100%;font-size:16px}.standard_blog_fourth-theme .group-editible ul.coverListing li a:hover{border-color:#12122d;color:#12122d !important}.standard_blog_fourth-theme .group-editible ul.coverListing li a img{max-width:100%;margin-bottom:5px}.standard_blog_fourth-theme .group-editible ul.birthYear li{background:#12122d}.standard_blog_fourth-theme .group-editible ul.selectState li a{background-color:#ffe0df;color:#12122d;text-align:center;padding:8px 0px;border-color:#ffbfbc}.standard_blog_fourth-theme .group-editible ul.selectState li a:hover{background-color:#12122d}.standard_blog_fourth-theme .tablePopup thead tr th{background:#12122d}.standard_blog_fourth-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_fourth-theme .tablePopup tbody tr td{background:#fff;color:#12122d;border-top:1px solid #ffbfbc}.standard_blog_fourth-theme .tablePopup tbody tr td a{color:#12122d}.standard_blog_fourth-theme .tablePopup tbody tr:hover td{background:#ffe0df}.standard_blog_fourth-theme .electicitySaving .table-responsive{border:1px solid #ffbfbc}@media(max-width: 1400px){.standard_blog_fourth-theme .stick_scroll{width:12.5%;right:15px}}@media(max-width: 1366px){.standard_blog_fourth-theme .stick_scroll{width:255px;right:5%}}@media(max-width: 1200px){.standard_blog_fourth-theme .stick_scroll{right:2.5%}}@media(max-width: 1024px){.standard_blog_fourth-theme .stick_scroll{width:226px;right:15px}}@media(max-width: 992px){.standard_blog_fourth-theme .stick_scroll{width:22%}.standard_blog_fourth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_fourth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_fourth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_fourth-theme .navbar-nav{display:block !important}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_fourth-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}}@media(max-width: 767px){.standard_blog_fourth-theme .stick_scroll{width:21%}.standard_blog_fourth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_fourth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_fourth-theme .navbar-nav{display:block !important}.standard_blog_fourth-theme .top-header p.text-right{float:none}.standard_blog_fourth-theme .top-header p{display:block;text-align:center !important}.standard_blog_fourth-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_fourth-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_fourth-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_fourth-theme .article-heading h1{font-size:20px}.standard_blog_fourth-theme .choosearea-section svg{width:100%}.standard_blog_fourth-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_fourth-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_fourth-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_fourth-theme .navigation.active{padding:0px 0px}.standard_blog_fourth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_fourth-theme .advertisement-images{display:none}.standard_blog_fourth-theme .navbar-nav{width:100%;padding:0px 10px}}@media(max-width: 576px){.standard_blog_fourth-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;transition:.7s ease;right:0}.standard_blog_fourth-theme .advertisement-images{display:none}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_fourth-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_fourth-theme .group-editible{padding:15px}.standard_blog_fourth-theme .group-editible ul li a{padding:15px}.standard_blog_fourth-theme .navbar{padding:0rem 1rem}.standard_blog_fourth-theme .header.navbar .navbar-brand{padding:0px 0px;height:70px;background:url(/static/media/my-life-logo.7d0c338f561cd0f00d39150b3a88f481.png);width:190px;background-size:contain;background-repeat:no-repeat;background-position:0px 10px;margin-left:15px}.standard_blog_fourth-theme .header.navbar .navbar-brand img{display:none}.standard_blog_fourth-theme .navbar-dark .navbar-toggler{top:13px}.standard_blog_fourth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:0px}}.standard_blog_fifth-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_fifth-theme .navbar img{max-height:50px}.standard_blog_fifth-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_fifth-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_fifth-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_fifth-theme .noppading{padding:0px !important}.standard_blog_fifth-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_fifth-theme .affix+.container-fluid{padding-top:70px}.standard_blog_fifth-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_fifth-theme .affix-top{position:static;top:-35px}.standard_blog_fifth-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_fifth-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_fifth-theme .top-header p a{color:#000}.standard_blog_fifth-theme .top-header p.text-right{float:right}.standard_blog_fifth-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_fifth-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_fifth-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_fifth-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_fifth-theme #navbarResponsive ul li a{color:#131313}.standard_blog_fifth-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_fifth-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_fifth-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_fifth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_fifth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_fifth-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_fifth-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_fifth-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_fifth-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_fifth-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_fifth-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_fifth-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_fifth-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_fifth-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_fifth-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_fifth-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_fifth-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_fifth-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_fifth-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_fifth-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_fifth-theme .group-editible{text-align:center;padding:50px;background:#ffe7df;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #f8ccaf}.standard_blog_fifth-theme .group-editible h4 strong{font-weight:500}.standard_blog_fifth-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_fifth-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_fifth-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_fifth-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#262f36}.standard_blog_fifth-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_fifth-theme .boollets-points ul li a b{display:block}.standard_blog_fifth-theme .boollets-points ul li{padding:6px 0px}.standard_blog_fifth-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_fifth-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_fifth-theme .choos-boollets-points{border:1px solid #f8ccaf;background:#ffe7df;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_fifth-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_fifth-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_fifth-theme .comparebtn a,.standard_blog_fifth-theme .comparebtn span{background:no-repeat;color:#262f36;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #262f36;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_fifth-theme .comparebtn a:hover,.standard_blog_fifth-theme .comparebtn span:hover{color:#fff;background:#262f36}.standard_blog_fifth-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all;display:none}.standard_blog_fifth-theme .averagetext p{margin-bottom:0px}.standard_blog_fifth-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_fifth-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_fifth-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_fifth-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_fifth-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_fifth-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_fifth-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_fifth-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_fifth-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_fifth-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_fifth-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_fifth-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_fifth-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_fifth-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_fifth-theme .mid-content .mi-section-content .boollets-points,.standard_blog_fifth-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_fifth-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_fifth-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_fifth-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_fifth-theme .left-clinet-list ul li{display:inline-block}.standard_blog_fifth-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_fifth-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_fifth-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_fifth-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_fifth-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_fifth-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_fifth-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_fifth-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_fifth-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_fifth-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_fifth-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_fifth-theme .footer-section h2{font-size:20px}.standard_blog_fifth-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_fifth-theme .footer-section ul a{color:#ccc}.standard_blog_fifth-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_fifth-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_fifth-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_fifth-theme .doublelist ul li{width:50%;float:left}.standard_blog_fifth-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_fifth-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_fifth-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_fifth-theme .footer-logo{padding-top:20px}.standard_blog_fifth-theme .home-section-top{padding-top:1%}.standard_blog_fifth-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_fifth-theme #Australia-continent:hover g{opacity:.5}.standard_blog_fifth-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#262f36;font-size:12px}.standard_blog_fifth-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_fifth-theme .foter-bottom ul li{display:inline-block}.standard_blog_fifth-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_fifth-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_fifth-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_fifth-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_fifth-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_fifth-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_fifth-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_fifth-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_fifth-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_fifth-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_fifth-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_fifth-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_fifth-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_fifth-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(75,66,66,.2);background:#262f36}.standard_blog_fifth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#262f36;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_fifth-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_fifth-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_fifth-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_fifth-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_fifth-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_fifth-theme nav.header .row{width:100%}.standard_blog_fifth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_fifth-theme a.header-button.nav-link:hover{background:#fff;color:#4094a9 !important}.standard_blog_fifth-theme .stick_scroll_demo{position:fixed}.standard_blog_fifth-theme .stick_scroll{position:fixed;padding-top:80px;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_fifth-theme .center-big-image{border:1px solid #eee}.standard_blog_fifth-theme .mid-content .blogImg{display:inline-block;width:100%;overflow:hidden}.standard_blog_fifth-theme .mid-content .blogImg img{max-height:none;max-width:100%}.standard_blog_fifth-theme .blogHeader{padding:30px 0px 0px 0px;background-repeat:no-repeat;background-size:cover;position:relative;margin-bottom:30px;padding-bottom:20px;border-bottom:1px solid #ddd}.standard_blog_fifth-theme .blogHeader .blogHeaderText{padding:0px 0%}.standard_blog_fifth-theme .blogHeader .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:10px;color:#000;text-align:left;line-height:normal}.standard_blog_fifth-theme .blogHeader ul{display:inline-block;text-align:left;width:100%;margin-bottom:0px}.standard_blog_fifth-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_fifth-theme .blogHeader ul li p{margin:0px 0px;padding:0px 10px 0px 0px;float:left;color:#262f36;border-right:1px solid #ddd;font-size:14px}.standard_blog_fifth-theme .blogHeader ul li p+p{padding-left:10px;border-right:none}.standard_blog_fifth-theme .blogTextaria{margin-top:20px}.standard_blog_fifth-theme .blogSectionTop{padding-top:0px}.standard_blog_fifth-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_fifth-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_fifth-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_fifth-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_fifth-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_fifth-theme .group-editible ul.logoLIsting li a:hover{border-color:#262f36}.standard_blog_fifth-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_fifth-theme .group-editible ul.coverListing{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_fifth-theme .group-editible ul.coverListing li{flex:0 0 33.3333%;max-width:33.3333%;padding:5px 5px;background:rgba(0,0,0,0);text-align:center}.standard_blog_fifth-theme .group-editible ul.coverListing li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1);height:100%;font-size:16px}.standard_blog_fifth-theme .group-editible ul.coverListing li a:hover{border-color:#262f36;color:#262f36 !important}.standard_blog_fifth-theme .group-editible ul.coverListing li a img{max-width:100%;margin-bottom:5px}.standard_blog_fifth-theme .group-editible ul.birthYear li{background:#262f36}.standard_blog_fifth-theme .group-editible ul.selectState li a{background-color:#ffe7df;color:#262f36;text-align:center;padding:8px 0px;border-color:#f8ccaf}.standard_blog_fifth-theme .group-editible ul.selectState li a:hover{background-color:#262f36}.standard_blog_fifth-theme .tablePopup thead tr th{background:#262f36}.standard_blog_fifth-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_fifth-theme .tablePopup tbody tr td{background:#fff;color:#262f36;border-top:1px solid #f8ccaf}.standard_blog_fifth-theme .tablePopup tbody tr td a{color:#262f36}.standard_blog_fifth-theme .tablePopup tbody tr:hover td{background:#ffe7df}.standard_blog_fifth-theme .electicitySaving .table-responsive{border:1px solid #f8ccaf}@media(max-width: 1400px){.standard_blog_fifth-theme .stick_scroll{width:12.5%;right:15px}}@media(max-width: 1366px){.standard_blog_fifth-theme .stick_scroll{width:255px;right:5%}}@media(max-width: 1200px){.standard_blog_fifth-theme .stick_scroll{right:2.5%}}@media(max-width: 1024px){.standard_blog_fifth-theme .stick_scroll{width:226px;right:15px}}@media(max-width: 992px){.standard_blog_fifth-theme .stick_scroll{width:22%}.standard_blog_fifth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_fifth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_fifth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_fifth-theme .navbar-nav{display:block !important}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_fifth-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}}@media(max-width: 767px){.standard_blog_fifth-theme .stick_scroll{width:21%}.standard_blog_fifth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_fifth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_fifth-theme .navbar-nav{display:block !important}.standard_blog_fifth-theme .top-header p.text-right{float:none}.standard_blog_fifth-theme .top-header p{display:block;text-align:center !important}.standard_blog_fifth-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_fifth-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_fifth-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_fifth-theme .article-heading h1{font-size:20px}.standard_blog_fifth-theme .choosearea-section svg{width:100%}.standard_blog_fifth-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_fifth-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_fifth-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_fifth-theme .navigation.active{padding:0px 0px}.standard_blog_fifth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_fifth-theme .advertisement-images{display:none}.standard_blog_fifth-theme .navbar-nav{width:100%;padding:0px 10px}}@media(max-width: 576px){.standard_blog_fifth-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;transition:.7s ease;right:0}.standard_blog_fifth-theme .advertisement-images{display:none}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_fifth-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_fifth-theme .group-editible{padding:15px}.standard_blog_fifth-theme .group-editible ul li a{padding:15px}.standard_blog_fifth-theme .navbar{padding:0rem 1rem}.standard_blog_fifth-theme .header.navbar .navbar-brand{padding:0px 0px;height:70px;background:url(/static/media/my-life-logo.7d0c338f561cd0f00d39150b3a88f481.png);width:190px;background-size:contain;background-repeat:no-repeat;background-position:0px 10px;margin-left:15px}.standard_blog_fifth-theme .header.navbar .navbar-brand img{display:none}.standard_blog_fifth-theme .navbar-dark .navbar-toggler{top:13px}.standard_blog_fifth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:0px}}.standard_blog_seventh-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_seventh-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_seventh-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_seventh-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_seventh-theme .noppading{padding:0px !important}.standard_blog_seventh-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_seventh-theme .affix+.container-fluid{padding-top:70px}.standard_blog_seventh-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_seventh-theme .affix-top{position:static;top:-35px}.standard_blog_seventh-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_seventh-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_seventh-theme .top-header p a{color:#000}.standard_blog_seventh-theme .top-header p.text-right{float:right}.standard_blog_seventh-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_seventh-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_seventh-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_seventh-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_seventh-theme #navbarResponsive ul li a{color:#131313}.standard_blog_seventh-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_seventh-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_seventh-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_seventh-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_seventh-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_seventh-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_seventh-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_seventh-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_seventh-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_seventh-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_seventh-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_seventh-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_seventh-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_seventh-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_seventh-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_seventh-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_seventh-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_seventh-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_seventh-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_seventh-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_seventh-theme .group-editible{text-align:center;padding:50px;background:#eaf2ff;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #c5d9ff}.standard_blog_seventh-theme .group-editible h4 strong{font-weight:500}.standard_blog_seventh-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_seventh-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_seventh-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_seventh-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#1b283f}.standard_blog_seventh-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_seventh-theme .boollets-points ul li a b{display:block}.standard_blog_seventh-theme .boollets-points ul li{padding:6px 0px}.standard_blog_seventh-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_seventh-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_seventh-theme .choos-boollets-points{border:1px solid #c5d9ff;background:#eaf2ff;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_seventh-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_seventh-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_seventh-theme .comparebtn a,.standard_blog_seventh-theme .comparebtn span{background:no-repeat;color:#1b283f;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #1b283f;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_seventh-theme .comparebtn a:hover,.standard_blog_seventh-theme .comparebtn span:hover{color:#fff;background:#1b283f}.standard_blog_seventh-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_seventh-theme .averagetext p{margin-bottom:0px}.standard_blog_seventh-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_seventh-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_seventh-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_seventh-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_seventh-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_seventh-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_seventh-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_seventh-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_seventh-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_seventh-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_seventh-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_seventh-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_seventh-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_seventh-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_seventh-theme .mid-content .mi-section-content .boollets-points,.standard_blog_seventh-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_seventh-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_seventh-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_seventh-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_seventh-theme .left-clinet-list ul li{display:inline-block}.standard_blog_seventh-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_seventh-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_seventh-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_seventh-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_seventh-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_seventh-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_seventh-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_seventh-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_seventh-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_seventh-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_seventh-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_seventh-theme .footer-section h2{font-size:20px}.standard_blog_seventh-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_seventh-theme .footer-section ul a{color:#ccc}.standard_blog_seventh-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_seventh-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_seventh-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_seventh-theme .doublelist ul li{width:50%;float:left}.standard_blog_seventh-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_seventh-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_seventh-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_seventh-theme .footer-logo{padding-top:20px}.standard_blog_seventh-theme .home-section-top{padding-top:1%}.standard_blog_seventh-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_seventh-theme #Australia-continent:hover g{opacity:.5}.standard_blog_seventh-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#1b283f;font-size:12px}.standard_blog_seventh-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_seventh-theme .foter-bottom ul li{display:inline-block}.standard_blog_seventh-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_seventh-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_seventh-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_seventh-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_seventh-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_seventh-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_seventh-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_seventh-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_seventh-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_seventh-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_seventh-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_seventh-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_seventh-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_seventh-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);background:#1b283f}.standard_blog_seventh-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#1b283f;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_seventh-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_seventh-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_seventh-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_seventh-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_seventh-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_seventh-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_seventh-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_seventh-theme a.header-button.nav-link:hover{background:#fff;color:#1b283f !important}.standard_blog_seventh-theme .stick_scroll{position:fixed;padding-top:80px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_seventh-theme .center-big-image{border:1px solid #eee}.standard_blog_seventh-theme .blogHeader{padding:8% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_seventh-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(0,0,0,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_seventh-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_seventh-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_seventh-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_seventh-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_seventh-theme .blogTextaria{margin-top:50px}.standard_blog_seventh-theme .blogSectionTop{padding-top:0px}.standard_blog_seventh-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_seventh-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_seventh-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_seventh-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_seventh-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_seventh-theme .group-editible ul.logoLIsting li a:hover{border-color:#1b283f}.standard_blog_seventh-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_seventh-theme svg g#AU-NT>path#AU-NT-2{fill:#2a2b40}.standard_blog_seventh-theme svg g#AU-WA>path#AU-WA-2{fill:#1b283f}.standard_blog_seventh-theme svg g#AU-SA>path#AU-SA-2{fill:#362d40}.standard_blog_seventh-theme svg g#AU-QLD>path#AU-QLD-2{fill:#673743}.standard_blog_seventh-theme svg g#AU-NSW>path#AU-NSW-2{fill:#a14245}.standard_blog_seventh-theme svg g#AU-VIC>path#AU-VIC-2{fill:#cd4b48}.standard_blog_seventh-theme svg g#AU-TAS>path#AU-TAS-2{fill:#f05249}.standard_blog_seventh-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#d4d3d5}.standard_blog_seventh-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#d2d3d5}.standard_blog_seventh-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#d7d4d5}.standard_blog_seventh-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#dcd4d5}.standard_blog_seventh-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#e0d6d6}.standard_blog_seventh-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#e2d6d5}.standard_blog_seventh-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e4d6d5}.standard_blog_seventh-theme .group-editible ul.birthYear li{background:#1b283f}.standard_blog_seventh-theme .group-editible ul.selectState li a{background-color:#eaf2ff;color:#1b283f;text-align:center;padding:8px 0px;border-color:#c5d9ff}.standard_blog_seventh-theme .group-editible ul.selectState li a:hover{background-color:#1b283f}.standard_blog_seventh-theme .tablePopup thead tr th{background:#1b283f}.standard_blog_seventh-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_seventh-theme .tablePopup tbody tr td{background:#fff;color:#1b283f;border-top:1px solid #c5d9ff}.standard_blog_seventh-theme .tablePopup tbody tr td a{color:#1b283f}.standard_blog_seventh-theme .tablePopup tbody tr:hover td{background:#eaf2ff}.standard_blog_seventh-theme .electicitySaving .table-responsive{border:1px solid #c5d9ff}@media(max-width: 1400px){.standard_blog_seventh-theme .stick_scroll{width:22.5%;right:15px}}@media(max-width: 1200px){.standard_blog_seventh-theme .stick_scroll{width:22.5%}}@media(max-width: 992px){.standard_blog_seventh-theme .stick_scroll{width:22%}.standard_blog_seventh-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_seventh-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_seventh-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_seventh-theme .navbar-nav{display:block !important}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_seventh-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}.standard_blog_seventh-theme .mid-content .mi-section-content .big-text{margin:0px 0px 5px 0;line-height:58px}.standard_blog_seventh-theme .mid-content .mi-section-content p{line-height:normal}}@media(max-width: 767px){.standard_blog_seventh-theme .stick_scroll{width:21%}.standard_blog_seventh-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_seventh-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_seventh-theme .navbar-nav{display:block !important}.standard_blog_seventh-theme .top-header p.text-right{float:none}.standard_blog_seventh-theme .top-header p{display:block;text-align:center !important}.standard_blog_seventh-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_seventh-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_seventh-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_seventh-theme .article-heading h1{font-size:20px}.standard_blog_seventh-theme .choosearea-section svg{width:100%}.standard_blog_seventh-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_seventh-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_seventh-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_seventh-theme .navigation.active{padding:0px 0px}.standard_blog_seventh-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_seventh-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_seventh-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;height:50%;transition:.7s ease;right:0}.standard_blog_seventh-theme .advertisement-images{display:none}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_seventh-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_seventh-theme .group-editible{padding:15px}.standard_blog_seventh-theme .group-editible ul li a{padding:15px}}.standard_blog_eighth-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_eighth-theme footer{background-color:#cb232e;padding:25px}.standard_blog_eighth-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_eighth-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_eighth-theme .noppading{padding:0px !important}.standard_blog_eighth-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_eighth-theme .affix+.container-fluid{padding-top:70px}.standard_blog_eighth-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_eighth-theme .affix-top{position:static;top:-35px}.standard_blog_eighth-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_eighth-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_eighth-theme .top-header p a{color:#000}.standard_blog_eighth-theme .top-header p.text-right{float:right}.standard_blog_eighth-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_eighth-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_eighth-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_eighth-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_eighth-theme #navbarResponsive ul li a{color:#131313}.standard_blog_eighth-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_eighth-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_eighth-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_eighth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_eighth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_eighth-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_eighth-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_eighth-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_eighth-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_eighth-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_eighth-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_eighth-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_eighth-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_eighth-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_eighth-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_eighth-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_eighth-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_eighth-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_eighth-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_eighth-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_eighth-theme .group-editible{text-align:center;padding:50px;background:#feeeee;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #fed1d3}.standard_blog_eighth-theme .group-editible h4 strong{font-weight:500}.standard_blog_eighth-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_eighth-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_eighth-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_eighth-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#cd232e}.standard_blog_eighth-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_eighth-theme .boollets-points ul li a b{display:block}.standard_blog_eighth-theme .boollets-points ul li{padding:6px 0px}.standard_blog_eighth-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_eighth-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_eighth-theme .choos-boollets-points{border:1px solid #fed1d3;background:#feeeee;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_eighth-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_eighth-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_eighth-theme .comparebtn a,.standard_blog_eighth-theme .comparebtn span{background:no-repeat;color:#cd232e;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #cd232e;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_eighth-theme .comparebtn a:hover,.standard_blog_eighth-theme .comparebtn span:hover{color:#fff;background:#cd232e}.standard_blog_eighth-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_eighth-theme .averagetext p{margin-bottom:0px}.standard_blog_eighth-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_eighth-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_eighth-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_eighth-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_eighth-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_eighth-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_eighth-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_eighth-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_eighth-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_eighth-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_eighth-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_eighth-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_eighth-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_eighth-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_eighth-theme .mid-content .mi-section-content .boollets-points,.standard_blog_eighth-theme .mid-content .mi-section-content .boollets-points *{color:#000;line-height:1.6em}.standard_blog_eighth-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_eighth-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_eighth-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_eighth-theme .left-clinet-list ul li{display:inline-block}.standard_blog_eighth-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_eighth-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_eighth-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_eighth-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_eighth-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_eighth-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_eighth-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_eighth-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_eighth-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_eighth-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_eighth-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_eighth-theme .footer-section h2{font-size:20px}.standard_blog_eighth-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_eighth-theme .footer-section ul a{color:#ccc}.standard_blog_eighth-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_eighth-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_eighth-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_eighth-theme .doublelist ul li{width:50%;float:left}.standard_blog_eighth-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_eighth-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_eighth-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_eighth-theme .footer-logo{padding-top:20px}.standard_blog_eighth-theme .home-section-top{padding-top:1%}.standard_blog_eighth-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_eighth-theme #Australia-continent:hover g{opacity:.5}.standard_blog_eighth-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#1c1c1c;font-size:12px}.standard_blog_eighth-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_eighth-theme .foter-bottom ul li{display:inline-block}.standard_blog_eighth-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_eighth-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_eighth-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_eighth-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_eighth-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_eighth-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_eighth-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_eighth-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_eighth-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_eighth-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_eighth-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_eighth-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_eighth-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_eighth-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);background:#cd232e}.standard_blog_eighth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#cd232e;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_eighth-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_eighth-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_eighth-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_eighth-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_eighth-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_eighth-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_eighth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_eighth-theme a.header-button.nav-link:hover{background:#fff;color:#1b283f !important}.standard_blog_eighth-theme .stick_scroll{position:fixed;padding-top:80px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_eighth-theme .center-big-image{border:1px solid #eee}.standard_blog_eighth-theme .blogHeader{padding:8% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_eighth-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(0,0,0,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_eighth-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_eighth-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_eighth-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_eighth-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_eighth-theme .blogTextaria{margin-top:50px}.standard_blog_eighth-theme .blogSectionTop{padding-top:0px}.standard_blog_eighth-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_eighth-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_eighth-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_eighth-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_eighth-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_eighth-theme .group-editible ul.logoLIsting li a:hover{border-color:#cd232e}.standard_blog_eighth-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_eighth-theme svg g#AU-NT>path#AU-NT-2{fill:#2a2b40}.standard_blog_eighth-theme svg g#AU-WA>path#AU-WA-2{fill:#1b283f}.standard_blog_eighth-theme svg g#AU-SA>path#AU-SA-2{fill:#362d40}.standard_blog_eighth-theme svg g#AU-QLD>path#AU-QLD-2{fill:#673743}.standard_blog_eighth-theme svg g#AU-NSW>path#AU-NSW-2{fill:#a14245}.standard_blog_eighth-theme svg g#AU-VIC>path#AU-VIC-2{fill:#cd4b48}.standard_blog_eighth-theme svg g#AU-TAS>path#AU-TAS-2{fill:#f05249}.standard_blog_eighth-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#d4d3d5}.standard_blog_eighth-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#d2d3d5}.standard_blog_eighth-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#d7d4d5}.standard_blog_eighth-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#dcd4d5}.standard_blog_eighth-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#e0d6d6}.standard_blog_eighth-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#e2d6d5}.standard_blog_eighth-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e4d6d5}.standard_blog_eighth-theme .group-editible ul.birthYear li{background:#cd232e}.standard_blog_eighth-theme .group-editible ul.selectState li a{background-color:#feeeee;color:#cd232e;text-align:center;padding:8px 0px;border-color:#fed1d3}.standard_blog_eighth-theme .group-editible ul.selectState li a:hover{background-color:#cd232e}.standard_blog_eighth-theme .tablePopup thead tr th{background:#cd232e}.standard_blog_eighth-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_eighth-theme .tablePopup tbody tr td{background:#fff;color:#cd232e;border-top:1px solid #fed1d3}.standard_blog_eighth-theme .tablePopup tbody tr td a{color:#cd232e}.standard_blog_eighth-theme .tablePopup tbody tr:hover td{background:#feeeee}.standard_blog_eighth-theme .electicitySaving .table-responsive{border:1px solid #fed1d3}@media(max-width: 1400px){.standard_blog_eighth-theme .stick_scroll{width:22.5%;right:15px}}@media(max-width: 1200px){.standard_blog_eighth-theme .stick_scroll{width:22.5%}}@media(max-width: 992px){.standard_blog_eighth-theme .stick_scroll{width:22%}.standard_blog_eighth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_eighth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_eighth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_eighth-theme .navbar-nav{display:block !important}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_eighth-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}.standard_blog_eighth-theme .mid-content .mi-section-content .big-text{margin:0px 0px 5px 0;line-height:58px}.standard_blog_eighth-theme .mid-content .mi-section-content p{line-height:normal}}@media(max-width: 767px){.standard_blog_eighth-theme .stick_scroll{width:21%}.standard_blog_eighth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_eighth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_eighth-theme .navbar-nav{display:block !important}.standard_blog_eighth-theme .top-header p.text-right{float:none}.standard_blog_eighth-theme .top-header p{display:block;text-align:center !important}.standard_blog_eighth-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_eighth-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_eighth-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_eighth-theme .article-heading h1{font-size:20px}.standard_blog_eighth-theme .choosearea-section svg{width:100%}.standard_blog_eighth-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_eighth-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_eighth-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_eighth-theme .navigation.active{padding:0px 0px}.standard_blog_eighth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_eighth-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_eighth-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;height:50%;transition:.7s ease;right:0}.standard_blog_eighth-theme .advertisement-images{display:none}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_eighth-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_eighth-theme .group-editible{padding:15px}.standard_blog_eighth-theme .group-editible ul li a{padding:15px}}.standard_blog_ninth-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_ninth-theme footer{background-color:#cb232e;padding:25px}.standard_blog_ninth-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_ninth-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_ninth-theme .noppading{padding:0px !important}.standard_blog_ninth-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_ninth-theme .affix+.container-fluid{padding-top:70px}.standard_blog_ninth-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_ninth-theme .affix-top{position:static;top:-35px}.standard_blog_ninth-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_ninth-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_ninth-theme .top-header p a{color:#000}.standard_blog_ninth-theme .top-header p.text-right{float:right}.standard_blog_ninth-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_ninth-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_ninth-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_ninth-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_ninth-theme #navbarResponsive ul li a{color:#131313}.standard_blog_ninth-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_ninth-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_ninth-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_ninth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_ninth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_ninth-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_ninth-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_ninth-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_ninth-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_ninth-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_ninth-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_ninth-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_ninth-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_ninth-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_ninth-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_ninth-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_ninth-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_ninth-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_ninth-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_ninth-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_ninth-theme .group-editible{text-align:center;padding:50px;background:#f0f0f0;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #c5d9ff}.standard_blog_ninth-theme .group-editible h4 strong{font-weight:500}.standard_blog_ninth-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_ninth-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_ninth-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_ninth-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#00467f}.standard_blog_ninth-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_ninth-theme .boollets-points ul li a b{display:block}.standard_blog_ninth-theme .boollets-points ul li{padding:6px 0px}.standard_blog_ninth-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_ninth-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_ninth-theme .choos-boollets-points{border:1px solid #c5d9ff;background:#f0f0f0;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_ninth-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_ninth-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_ninth-theme .comparebtn a,.standard_blog_ninth-theme .comparebtn span{background:no-repeat;color:#00467f;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #00467f;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_ninth-theme .comparebtn a:hover,.standard_blog_ninth-theme .comparebtn span:hover{color:#fff;background:#00467f}.standard_blog_ninth-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_ninth-theme .averagetext p{margin-bottom:0px}.standard_blog_ninth-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_ninth-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_ninth-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_ninth-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_ninth-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_ninth-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_ninth-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_ninth-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_ninth-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_ninth-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_ninth-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_ninth-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_ninth-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_ninth-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points,.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_ninth-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_ninth-theme .left-clinet-list ul li{display:inline-block}.standard_blog_ninth-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_ninth-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_ninth-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_ninth-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_ninth-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_ninth-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_ninth-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_ninth-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_ninth-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_ninth-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_ninth-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_ninth-theme .footer-section h2{font-size:20px}.standard_blog_ninth-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_ninth-theme .footer-section ul a{color:#ccc}.standard_blog_ninth-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_ninth-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_ninth-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_ninth-theme .doublelist ul li{width:50%;float:left}.standard_blog_ninth-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_ninth-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_ninth-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_ninth-theme .footer-logo{padding-top:20px}.standard_blog_ninth-theme .home-section-top{padding-top:1%}.standard_blog_ninth-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_ninth-theme #Australia-continent:hover g{opacity:.5}.standard_blog_ninth-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#00467f;font-size:12px}.standard_blog_ninth-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_ninth-theme .foter-bottom ul li{display:inline-block}.standard_blog_ninth-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_ninth-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_ninth-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_ninth-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_ninth-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_ninth-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_ninth-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_ninth-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_ninth-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_ninth-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_ninth-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_ninth-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_ninth-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_ninth-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);background:#00467f}.standard_blog_ninth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#00467f;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_ninth-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_ninth-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_ninth-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_ninth-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_ninth-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_ninth-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_ninth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_ninth-theme a.header-button.nav-link:hover{background:#fff;color:#1b283f !important}.standard_blog_ninth-theme .stick_scroll{position:fixed;padding-top:80px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_ninth-theme .center-big-image{border:1px solid #eee}.standard_blog_ninth-theme .blogHeader{padding:8% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_ninth-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(0,0,0,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_ninth-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_ninth-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_ninth-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_ninth-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_ninth-theme .blogTextaria{margin-top:50px}.standard_blog_ninth-theme .blogSectionTop{padding-top:0px}.standard_blog_ninth-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_ninth-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_ninth-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_ninth-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_ninth-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_ninth-theme .group-editible ul.logoLIsting li a:hover{border-color:#00467f}.standard_blog_ninth-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_ninth-theme svg g#AU-NT>path#AU-NT-2{fill:#2a2b40}.standard_blog_ninth-theme svg g#AU-WA>path#AU-WA-2{fill:#1b283f}.standard_blog_ninth-theme svg g#AU-SA>path#AU-SA-2{fill:#362d40}.standard_blog_ninth-theme svg g#AU-QLD>path#AU-QLD-2{fill:#673743}.standard_blog_ninth-theme svg g#AU-NSW>path#AU-NSW-2{fill:#a14245}.standard_blog_ninth-theme svg g#AU-VIC>path#AU-VIC-2{fill:#cd4b48}.standard_blog_ninth-theme svg g#AU-TAS>path#AU-TAS-2{fill:#f05249}.standard_blog_ninth-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#d4d3d5}.standard_blog_ninth-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#d2d3d5}.standard_blog_ninth-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#d7d4d5}.standard_blog_ninth-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#dcd4d5}.standard_blog_ninth-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#e0d6d6}.standard_blog_ninth-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#e2d6d5}.standard_blog_ninth-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e4d6d5}.standard_blog_ninth-theme .group-editible ul.birthYear li{background:#00467f}.standard_blog_ninth-theme .group-editible ul.selectState li a{background-color:#f0f0f0;color:#00467f;text-align:center;padding:8px 0px;border-color:#c5d9ff}.standard_blog_ninth-theme .group-editible ul.selectState li a:hover{background-color:#00467f}.standard_blog_ninth-theme .tablePopup thead tr th{background:#00467f}.standard_blog_ninth-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_ninth-theme .tablePopup tbody tr td{background:#fff;color:#00467f;border-top:1px solid #c5d9ff}.standard_blog_ninth-theme .tablePopup tbody tr td a{color:#00467f}.standard_blog_ninth-theme .tablePopup tbody tr:hover td{background:#f0f0f0}.standard_blog_ninth-theme .electicitySaving .table-responsive{border:1px solid #c5d9ff}@media(max-width: 1400px){.standard_blog_ninth-theme .stick_scroll{width:22.5%;right:15px}}@media(max-width: 1200px){.standard_blog_ninth-theme .stick_scroll{width:22.5%}}@media(max-width: 992px){.standard_blog_ninth-theme .stick_scroll{width:22%}.standard_blog_ninth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_ninth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_ninth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_ninth-theme .navbar-nav{display:block !important}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_ninth-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}.standard_blog_ninth-theme .mid-content .mi-section-content .big-text{margin:0px 0px 5px 0;line-height:58px}.standard_blog_ninth-theme .mid-content .mi-section-content p{line-height:normal}}@media(max-width: 767px){.standard_blog_ninth-theme .stick_scroll{width:21%}.standard_blog_ninth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_ninth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_ninth-theme .navbar-nav{display:block !important}.standard_blog_ninth-theme .top-header p.text-right{float:none}.standard_blog_ninth-theme .top-header p{display:block;text-align:center !important}.standard_blog_ninth-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_ninth-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_ninth-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_ninth-theme .article-heading h1{font-size:20px}.standard_blog_ninth-theme .choosearea-section svg{width:100%}.standard_blog_ninth-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_ninth-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_ninth-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_ninth-theme .navigation.active{padding:0px 0px}.standard_blog_ninth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_ninth-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_ninth-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;height:50%;transition:.7s ease;right:0}.standard_blog_ninth-theme .advertisement-images{display:none}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_ninth-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_ninth-theme .group-editible{padding:15px}.standard_blog_ninth-theme .group-editible ul li a{padding:15px}}.standard_blog_ninth-theme .navbar{margin-bottom:0;border-radius:0}.standard_blog_ninth-theme footer{background-color:#f2f2f2;padding:25px}.standard_blog_ninth-theme a{transition:all .3s ease 0s;text-decoration:none}.standard_blog_ninth-theme button{transition:all .3s ease 0s;text-decoration:none}.standard_blog_ninth-theme .noppading{padding:0px !important}.standard_blog_ninth-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.standard_blog_ninth-theme .affix+.container-fluid{padding-top:70px}.standard_blog_ninth-theme label.switch.mob{float:right;margin-top:8px;display:none}.standard_blog_ninth-theme .affix-top{position:static;top:-35px}.standard_blog_ninth-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.standard_blog_ninth-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.standard_blog_ninth-theme .top-header p a{color:#000}.standard_blog_ninth-theme .top-header p.text-right{float:right}.standard_blog_ninth-theme .top-header{background:#fff;padding:6px 0px}.standard_blog_ninth-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.standard_blog_ninth-theme #navbarResponsive ul li.active a{color:#4094a9;background:rgba(0,0,0,0)}.standard_blog_ninth-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.standard_blog_ninth-theme #navbarResponsive ul li a{color:#131313}.standard_blog_ninth-theme #navbarResponsive ul li a:hover{color:#4094a9}.standard_blog_ninth-theme #navbarResponsive ul li a:active{color:#4094a9}.standard_blog_ninth-theme #navbarResponsive ul li a:focus{color:#4094a9}.standard_blog_ninth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#4094a9;border-radius:4px;padding:10px 15px;color:#fff}.standard_blog_ninth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.standard_blog_ninth-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:0px 0px 10px 0px #ddd}.standard_blog_ninth-theme .navbar-header .navbar-brand{padding:0px 0px}.standard_blog_ninth-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.standard_blog_ninth-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.standard_blog_ninth-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.standard_blog_ninth-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.standard_blog_ninth-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.standard_blog_ninth-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_ninth-theme .slidercode .carousel-caption ul li:hover a{color:#000}.standard_blog_ninth-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.standard_blog_ninth-theme .slidercode .carousel-caption ul li.active a{color:#000}.standard_blog_ninth-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.standard_blog_ninth-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.standard_blog_ninth-theme .slidercode .carousel-caption p{font-size:20px}.standard_blog_ninth-theme .navigation.active{background:#fff !important;padding:10px 0px}.standard_blog_ninth-theme .group-editible{text-align:center;padding:50px;background:#fffbea;width:550px;border-radius:5px;margin:0px auto;max-width:100%;border:1px solid #fdf5d0}.standard_blog_ninth-theme .group-editible h4 strong{font-weight:500}.standard_blog_ninth-theme .group-editible ul{padding:0px;list-style:none;margin-top:35px;text-align:left;margin-bottom:0px}.standard_blog_ninth-theme .group-editible ul li{display:inline-block;width:100%}.standard_blog_ninth-theme .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0px;width:100%;font-size:18px;text-decoration:none;border-radius:5px;font-weight:500}.standard_blog_ninth-theme .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease;background:#1d2c35}.standard_blog_ninth-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.standard_blog_ninth-theme .boollets-points ul li a b{display:block}.standard_blog_ninth-theme .boollets-points ul li{padding:6px 0px}.standard_blog_ninth-theme .boollets-points ul{padding:0px 0px 0px 15px}.standard_blog_ninth-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.standard_blog_ninth-theme .choos-boollets-points{border:1px solid #fdf5d0;background:#fffbea;padding:20px;margin:20px 0px;border-radius:5px}.standard_blog_ninth-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.standard_blog_ninth-theme .comparebtn{text-align:center;margin-top:40px}.standard_blog_ninth-theme .comparebtn a,.standard_blog_ninth-theme .comparebtn span{background:no-repeat;color:#1d2c35;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;border:2px solid #1d2c35;text-transform:uppercase;letter-spacing:1px;font-weight:400}.standard_blog_ninth-theme .comparebtn a:hover,.standard_blog_ninth-theme .comparebtn span:hover{color:#fff;background:#1d2c35}.standard_blog_ninth-theme .averagetext{text-align:center;font-size:14px;color:#777;background:#fff;padding:15px;margin-top:25px;word-break:break-all}.standard_blog_ninth-theme .averagetext p{margin-bottom:0px}.standard_blog_ninth-theme .contactfomr{padding-top:2%;width:70%}.standard_blog_ninth-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.standard_blog_ninth-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.standard_blog_ninth-theme .contactfomr .form-control{text-transform:capitalize}.standard_blog_ninth-theme .article-heading h1{font-size:38px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.standard_blog_ninth-theme .mid-content .mi-section-content{padding-bottom:20px;margin-bottom:15px}.standard_blog_ninth-theme .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:bold;margin:17px 0px 20px 0;color:#000}.standard_blog_ninth-theme .mid-content .mi-section-content:last-child{border:none}.standard_blog_ninth-theme .mid-content .mi-section-content p{color:#625f5f;line-height:1.6em;font-weight:400}.standard_blog_ninth-theme .mid-content .mi-section-content p strong{font-weight:500;color:#000}.standard_blog_ninth-theme .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0px}.standard_blog_ninth-theme .mid-content .mi-section-content h5 strong{font-weight:500;color:#000}.standard_blog_ninth-theme .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.standard_blog_ninth-theme .mid-content .mi-section-content h2 strong{font-weight:500;color:#000 !important}.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points,.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points *{color:#625f5f;line-height:1.6em}.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points strong,.standard_blog_ninth-theme .mid-content .mi-section-content .boollets-points * strong{font-weight:500;color:#000}.standard_blog_ninth-theme .left-clinet-list ul{display:inline-block;width:100%;margin-top:10px}.standard_blog_ninth-theme .left-clinet-list ul li{display:inline-block}.standard_blog_ninth-theme .left-clinet-list ul li p b{padding-right:3px;color:#000}.standard_blog_ninth-theme .left-clinet-list ul li p{background:rgba(0,0,0,0);padding:0px 8px 0px 0px;font-size:14px;text-transform:capitalize;float:left;margin-bottom:0px;margin-right:15px;color:#717171}.standard_blog_ninth-theme .left-clinet-list ul{padding:0px;list-style:none}.standard_blog_ninth-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.standard_blog_ninth-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.standard_blog_ninth-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.standard_blog_ninth-theme .aqualheight{height:660px;display:table;padding-top:5%}.standard_blog_ninth-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.standard_blog_ninth-theme .col-sm-6.left-sec{background:#f2f2f2}.standard_blog_ninth-theme .content-chaselife h1{font-size:72px;font-weight:600}.standard_blog_ninth-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.standard_blog_ninth-theme .footer-section h2{font-size:20px}.standard_blog_ninth-theme .footer-section ul{padding:0px;list-style:none}.standard_blog_ninth-theme .footer-section ul a{color:#ccc}.standard_blog_ninth-theme .footer-section ul a:hover{color:#e9c87b}.standard_blog_ninth-theme .footer-section ul a:focus{color:#e9c87b}.standard_blog_ninth-theme .footer-section ul a:active{color:#e9c87b}.standard_blog_ninth-theme .doublelist ul li{width:50%;float:left}.standard_blog_ninth-theme .col-sm-3.noppading.formnews p{color:#ccc}.standard_blog_ninth-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.standard_blog_ninth-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.standard_blog_ninth-theme .footer-logo{padding-top:20px}.standard_blog_ninth-theme .home-section-top{padding-top:1%}.standard_blog_ninth-theme #Australia-continent g:hover{opacity:1 !important}.standard_blog_ninth-theme #Australia-continent:hover g{opacity:.5}.standard_blog_ninth-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#1d2c35;font-size:12px}.standard_blog_ninth-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px;margin-bottom:0px}.standard_blog_ninth-theme .foter-bottom ul li{display:inline-block}.standard_blog_ninth-theme .foter-bottom ul li a{color:#fff;padding:0px 2px;cursor:pointer}.standard_blog_ninth-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.standard_blog_ninth-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.standard_blog_ninth-theme .foter-bottom .col-sm-12.text-center p{margin-bottom:0px}.standard_blog_ninth-theme .advertisement-images{padding:0px;padding-top:0px;list-style:none;padding-top:25px;width:255px;max-width:100%}.standard_blog_ninth-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.standard_blog_ninth-theme .bgbluew{background:#4094a9;height:240px;display:block}.standard_blog_ninth-theme .content-innerpages{position:relative;margin-top:-180px;background:#fff;padding:10px 30px 30px;box-shadow:0px 0px 7px 1px #ddd;margin-bottom:5%}.standard_blog_ninth-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-15px;left:0}.standard_blog_ninth-theme .content-innerpages h2{color:#4094a9;text-transform:capitalize;font-weight:600;position:relative}.standard_blog_ninth-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.standard_blog_ninth-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.standard_blog_ninth-theme img.img-responsive{display:block;max-width:100%;height:auto}.standard_blog_ninth-theme .header{width:100%;z-index:9;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);background:#1d2c35}.standard_blog_ninth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0px;background:#1d2c35;box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s;height:80px}.standard_blog_ninth-theme .navbar-dark .navbar-toggler{background:rgba(0,0,0,0);border:2px solid #fff}.standard_blog_ninth-theme .navbar-dark .navbar-nav .nav-link{color:#fff;text-transform:uppercase;letter-spacing:1px}.standard_blog_ninth-theme .navbar-dark .navbar-brand{color:#fff}.standard_blog_ninth-theme .pd_o{padding:0 1rem 0 1rem}.standard_blog_ninth-theme svg:not(:root){overflow:hidden;width:100%}.standard_blog_ninth-theme nav.header .row{width:100%;padding-left:15px}.standard_blog_ninth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;border:2px solid #fff;text-transform:inherit;font-size:14px;padding:10px 30px}.standard_blog_ninth-theme a.header-button.nav-link:hover{background:#fff;color:#1b283f !important}.standard_blog_ninth-theme .stick_scroll{position:fixed;padding-top:80px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px}.standard_blog_ninth-theme .center-big-image{border:1px solid #eee}.standard_blog_ninth-theme .blogHeader{padding:8% 0%;background-repeat:no-repeat;background-size:cover;position:relative}.standard_blog_ninth-theme .blogHeader:before{content:"";width:100%;height:100%;background:rgba(0,0,0,.5);position:absolute;left:0px;top:0px;z-index:0}.standard_blog_ninth-theme .blogHeader .container{z-index:10;position:relative}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{padding:0px 10%}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:48px;font-weight:600;padding-bottom:20px;color:#fff;text-align:center;line-height:normal}.standard_blog_ninth-theme .blogHeader ul{display:inline-block;text-align:center;width:100%}.standard_blog_ninth-theme .blogHeader ul li{margin:0px;padding:0px;display:inline-block}.standard_blog_ninth-theme .blogHeader ul li p{margin:0px 5px;padding:5px 10px;float:left;color:#ddd;border:1px solid #ddd}.standard_blog_ninth-theme .blogTextaria{margin-top:50px}.standard_blog_ninth-theme .blogSectionTop{padding-top:0px}.standard_blog_ninth-theme .pointsListing{padding:0px 0px 0px 50px}.standard_blog_ninth-theme .stick_scroll{padding-top:0px;top:100px}.standard_blog_ninth-theme .group-editible ul.logoLIsting{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_ninth-theme .group-editible ul.logoLIsting li{flex:0 0 25%;max-width:25%;padding:2.5px 5px;background:rgba(0,0,0,0)}.standard_blog_ninth-theme .group-editible ul.logoLIsting li a{border:2px solid rgba(0,0,0,0);background:#fff;padding:10px;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.standard_blog_ninth-theme .group-editible ul.logoLIsting li a:hover{border-color:#1d2c35}.standard_blog_ninth-theme .group-editible ul.logoLIsting li a img{max-width:100%}.standard_blog_ninth-theme svg g#AU-NT>path#AU-NT-2{fill:#2a2b40}.standard_blog_ninth-theme svg g#AU-WA>path#AU-WA-2{fill:#1b283f}.standard_blog_ninth-theme svg g#AU-SA>path#AU-SA-2{fill:#362d40}.standard_blog_ninth-theme svg g#AU-QLD>path#AU-QLD-2{fill:#673743}.standard_blog_ninth-theme svg g#AU-NSW>path#AU-NSW-2{fill:#a14245}.standard_blog_ninth-theme svg g#AU-VIC>path#AU-VIC-2{fill:#cd4b48}.standard_blog_ninth-theme svg g#AU-TAS>path#AU-TAS-2{fill:#f05249}.standard_blog_ninth-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#d4d3d5}.standard_blog_ninth-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#d2d3d5}.standard_blog_ninth-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#d7d4d5}.standard_blog_ninth-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#dcd4d5}.standard_blog_ninth-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#e0d6d6}.standard_blog_ninth-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#e2d6d5}.standard_blog_ninth-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e4d6d5}.standard_blog_ninth-theme .group-editible ul.birthYear li{background:#1d2c35}.standard_blog_ninth-theme .group-editible ul.selectState li a{background-color:#fffbea;color:#1d2c35;text-align:center;padding:8px 0px;border-color:#fdf5d0}.standard_blog_ninth-theme .group-editible ul.selectState li a:hover{background-color:#1d2c35}.standard_blog_ninth-theme .tablePopup thead tr th{background:#1d2c35}.standard_blog_ninth-theme .tablePopup tbody tr{cursor:pointer}.standard_blog_ninth-theme .tablePopup tbody tr td{background:#fff;color:#1d2c35;border-top:1px solid #fdf5d0}.standard_blog_ninth-theme .tablePopup tbody tr td a{color:#1d2c35}.standard_blog_ninth-theme .tablePopup tbody tr:hover td{background:#fffbea}.standard_blog_ninth-theme .electicitySaving .table-responsive{border:1px solid #fdf5d0}@media(max-width: 1400px){.standard_blog_ninth-theme .stick_scroll{width:22.5%;right:15px}}@media(max-width: 1200px){.standard_blog_ninth-theme .stick_scroll{width:22.5%}}@media(max-width: 992px){.standard_blog_ninth-theme .stick_scroll{width:22%}.standard_blog_ninth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_ninth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_ninth-theme a.header-button.nav-link{background:rgba(0,0,0,0);border-radius:4px;color:#fff !important;display:block;display:inline-block;padding:8px 15px}.standard_blog_ninth-theme .navbar-nav{display:block !important}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:28px}.standard_blog_ninth-theme .blogHeader ul li p{padding:5px 5px;font-size:12px}.standard_blog_ninth-theme .mid-content .mi-section-content .big-text{margin:0px 0px 5px 0;line-height:58px}.standard_blog_ninth-theme .mid-content .mi-section-content p{line-height:normal}}@media(max-width: 767px){.standard_blog_ninth-theme .stick_scroll{width:21%}.standard_blog_ninth-theme .navbar-dark .navbar-toggler{position:absolute;right:15px;top:20px}.standard_blog_ninth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:auto !important;padding-bottom:20px}.standard_blog_ninth-theme .navbar-nav{display:block !important}.standard_blog_ninth-theme .top-header p.text-right{float:none}.standard_blog_ninth-theme .top-header p{display:block;text-align:center !important}.standard_blog_ninth-theme .header-or-banner.clearfix{background:#fff;position:relative}.standard_blog_ninth-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.standard_blog_ninth-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.standard_blog_ninth-theme .article-heading h1{font-size:20px}.standard_blog_ninth-theme .choosearea-section svg{width:100%}.standard_blog_ninth-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.standard_blog_ninth-theme .navigation{padding:4px 0px;background:#fff}.standard_blog_ninth-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px}.standard_blog_ninth-theme .navigation.active{padding:0px 0px}.standard_blog_ninth-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.standard_blog_ninth-theme .advertisement-images{display:none}}@media(max-width: 576px){.standard_blog_ninth-theme .stick_scroll{position:relative !important;padding-top:0;width:100%;height:50%;transition:.7s ease;right:0}.standard_blog_ninth-theme .advertisement-images{display:none}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{padding:0px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:22px}.standard_blog_ninth-theme .blogHeader ul li p{display:inline-block;float:none;margin-top:10px}.standard_blog_ninth-theme .group-editible{padding:15px}.standard_blog_ninth-theme .group-editible ul li a{padding:15px}}#australiaHigh *{cursor:pointer;-webkit-transition:all .4s;-moz-transition:all .4s;-o-transition:all .4s;transition:all .4s;z-index:1}.maplabels{opacity:0;cursor:pointer;-webkit-transition:all .4s;-moz-transition:all .4s;-o-transition:all .4s;transition:all .4s}.state-map:hover .maplabels{opacity:1}svg g#AU-NT:hover>path#AU-NT-2{fill:#ccdcc7;transition:.5s}svg g#AU-WA:hover>path#AU-WA-2{fill:#bad8c8;transition:.5s}svg g#AU-SA:hover>path#AU-SA-2{fill:#cbdccd;transition:.5s}svg g#AU-QLD:hover>path#AU-QLD-2{fill:#d3dec5;transition:.5s}svg g#AU-NSW:hover>path#AU-NSW-2{fill:#dbe0c3;transition:.5s}svg g#AU-VIC:hover>path#AU-VIC-2{fill:#ddee9d;transition:.5s}svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e3fbc3;transition:.5s}.standard_blog_default-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_default-theme .blogHeader::before{display:none}.standard_blog_default-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_default-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_default-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_default-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_default-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_default-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_default-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_default-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_default-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_default-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_default-theme .group-editible h4{text-align:left}.standard_blog_default-theme .group-editible h4 strong{font-weight:bold}.standard_blog_default-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_default-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_default-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_default-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_default-theme .choos-boollets-points{background:none;border:none}.standard_blog_default-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_default-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_default-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_default-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_default-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_default-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_default-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_default-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_default-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_default-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_default-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_default-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_default-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_default-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_default-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_default-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_default-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_default-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_default-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_default-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_default-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_default-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_default-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_default-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_default-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_default-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_default-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_default-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_default-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_default-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_default-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_default-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_default-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_default-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_default-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_default-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_default-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_default-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_default-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_default-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_default-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_default-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_default-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_default-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_default-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_default-theme .blogHeader{padding-top:20px}.standard_blog_default-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_default-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_default-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_default-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_default-theme .blogHeader{padding-top:0px}.standard_blog_default-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_default-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_default-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_default-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_default-theme .blogTextaria{margin-top:0px}.standard_blog_default-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_default-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_default-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_default-theme .choosearea-section svg{height:400px}.standard_blog_default-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_default-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_default-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_default-theme .comparebtn a,.standard_blog_default-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_default-theme .choosearea-section svg{height:auto}.standard_blog_default-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_default-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_first-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_first-theme .blogHeader::before{display:none}.standard_blog_first-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_first-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_first-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_first-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_first-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_first-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_first-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_first-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_first-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_first-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_first-theme .group-editible h4{text-align:left}.standard_blog_first-theme .group-editible h4 strong{font-weight:bold}.standard_blog_first-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_first-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_first-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_first-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_first-theme .choos-boollets-points{background:none;border:none}.standard_blog_first-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_first-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_first-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_first-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_first-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_first-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_first-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_first-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_first-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_first-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_first-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_first-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_first-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_first-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_first-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_first-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_first-theme svg.goldGreenMap g#AU-WA>path#AU-WA-2{fill:#b29700}.standard_blog_first-theme svg.goldGreenMap g#AU-WA:hover path#AU-WA-2{fill:#f3eed6}.standard_blog_first-theme svg.goldGreenMap g#AU-NT>path#AU-NT-2{fill:#d4af37}.standard_blog_first-theme svg.goldGreenMap g#AU-NT:hover path#AU-NT-2{fill:#faf5e4}.standard_blog_first-theme svg.goldGreenMap g#AU-SA>path#AU-SA-2{fill:#e1c158}.standard_blog_first-theme svg.goldGreenMap g#AU-SA:hover path#AU-SA-2{fill:#faf5e4}.standard_blog_first-theme svg.goldGreenMap g#AU-QLD>path#AU-QLD-2{fill:#7daa6a}.standard_blog_first-theme svg.goldGreenMap g#AU-QLD:hover path#AU-QLD-2{fill:#eaf1e7}.standard_blog_first-theme svg.goldGreenMap g#AU-NSW>path#AU-NSW-2{fill:#619a46}.standard_blog_first-theme svg.goldGreenMap g#AU-NSW:hover path#AU-NSW-2{fill:#e5efe1}.standard_blog_first-theme svg.goldGreenMap g#AU-VIC>path#AU-VIC-2{fill:#438029}.standard_blog_first-theme svg.goldGreenMap g#AU-VIC:hover path#AU-VIC-2{fill:#e0ebdc}.standard_blog_first-theme svg.goldGreenMap g#AU-TAS>path#AU-TAS-2{fill:#e1c158}.standard_blog_first-theme svg.goldGreenMap g#AU-TAS:hover path#AU-TAS-2{fill:#faf5e4}.standard_blog_first-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_first-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_first-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_first-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_first-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_first-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_first-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_first-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_first-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_first-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_first-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_first-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_first-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_first-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_first-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_first-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_first-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_first-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}.standard_blog_first-theme .group-editible.expendEditable{width:850px}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow{display:flex;flex-wrap:wrap;margin:0px -5px}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn{max-width:25%;flex:0 0 25%;padding:5px;height:100%;transition:.5s}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn:hover p{border-color:#1b283f}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn:hover p strong{color:#fff;background:#1b283f}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p{border:2px solid #eaf2ff;border-radius:5px;height:100%;display:inline-block;overflow:hidden;line-height:18px}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p a{display:inline-block;color:#000}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p strong{background:#eaf2ff;padding:15px 5px;text-align:center;font-weight:600;font-size:18px;width:100%;display:inline-block}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p span{text-align:center;font-size:14px;padding:15px 5px;background:#fff;min-height:60px;display:inline-block;width:100%}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p span:nth-of-type(2n+2){background:#eee}@media(max-width: 1300px){.standard_blog_first-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_first-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_first-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_first-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_first-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_first-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_first-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_first-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_first-theme .blogHeader .container .blogHeaderText{min-height:400px}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p span{font-size:12px}}@media(max-width: 992px){.standard_blog_first-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn{max-width:50%;flex:0 0 50%}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p{margin-bottom:0px}.standard_blog_first-theme .group-editible.expendEditable .tableGrid .tableGridRow .tableGridColumn p span{font-size:14px}}@media(max-width: 767px){.standard_blog_first-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_first-theme .blogHeader{padding-top:20px}.standard_blog_first-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_first-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_first-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_first-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_first-theme .blogHeader{padding-top:0px}.standard_blog_first-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_first-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_first-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_first-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_first-theme .blogTextaria{margin-top:0px}.standard_blog_first-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_first-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_first-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_first-theme .choosearea-section svg{height:400px}.standard_blog_first-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_first-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_first-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_first-theme .comparebtn a,.standard_blog_first-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_first-theme .choosearea-section svg{height:auto}.standard_blog_first-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_first-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_second-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_second-theme .blogHeader::before{display:none}.standard_blog_second-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_second-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_second-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_second-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_second-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_second-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_second-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_second-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_second-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_second-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_second-theme .group-editible h4{text-align:left}.standard_blog_second-theme .group-editible h4 strong{font-weight:bold}.standard_blog_second-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_second-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_second-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_second-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_second-theme .choos-boollets-points{background:none;border:none}.standard_blog_second-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_second-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_second-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_second-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_second-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_second-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_second-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_second-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_second-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_second-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_second-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_second-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_second-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_second-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_second-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_second-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_second-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_second-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_second-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_second-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_second-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_second-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_second-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_second-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_second-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_second-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_second-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_second-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_second-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_second-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_second-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_second-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_second-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_second-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_second-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_second-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_second-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_second-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_second-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_second-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_second-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_second-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_second-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_second-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_second-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_second-theme .blogHeader{padding-top:20px}.standard_blog_second-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_second-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_second-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_second-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_second-theme .blogHeader{padding-top:0px}.standard_blog_second-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_second-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_second-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_second-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_second-theme .blogTextaria{margin-top:0px}.standard_blog_second-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_second-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_second-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_second-theme .choosearea-section svg{height:400px}.standard_blog_second-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_second-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_second-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_second-theme .comparebtn a,.standard_blog_second-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_second-theme .choosearea-section svg{height:auto}.standard_blog_second-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_second-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_third-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_third-theme .blogHeader::before{display:none}.standard_blog_third-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_third-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_third-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_third-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_third-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_third-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_third-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_third-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_third-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_third-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_third-theme .group-editible h4{text-align:left}.standard_blog_third-theme .group-editible h4 strong{font-weight:bold}.standard_blog_third-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_third-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_third-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_third-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_third-theme .choos-boollets-points{background:none;border:none}.standard_blog_third-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_third-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_third-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_third-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_third-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_third-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_third-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_third-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_third-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_third-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_third-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_third-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_third-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_third-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_third-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_third-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_third-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_third-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_third-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_third-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_third-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_third-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_third-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_third-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_third-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_third-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_third-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_third-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_third-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_third-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_third-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_third-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_third-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_third-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_third-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_third-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_third-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_third-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_third-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_third-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_third-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_third-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_third-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_third-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_third-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_third-theme .blogHeader{padding-top:20px}.standard_blog_third-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_third-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_third-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_third-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_third-theme .blogHeader{padding-top:0px}.standard_blog_third-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_third-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_third-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_third-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_third-theme .blogTextaria{margin-top:0px}.standard_blog_third-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_third-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_third-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_third-theme .choosearea-section svg{height:400px}.standard_blog_third-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_third-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_third-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_third-theme .comparebtn a,.standard_blog_third-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_third-theme .choosearea-section svg{height:auto}.standard_blog_third-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_third-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_sixth-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_sixth-theme .blogHeader::before{display:none}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_sixth-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_sixth-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_sixth-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_sixth-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px;width:700px;max-width:100%}.standard_blog_sixth-theme .group-editible h4{text-align:left}.standard_blog_sixth-theme .group-editible h4 strong{font-weight:bold}.standard_blog_sixth-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_sixth-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_sixth-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_sixth-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_sixth-theme .choos-boollets-points{background:none;border:none}.standard_blog_sixth-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_sixth-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_sixth-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_sixth-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_sixth-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_sixth-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_sixth-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_sixth-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_sixth-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_sixth-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_sixth-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_sixth-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_sixth-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_sixth-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_sixth-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_sixth-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_sixth-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_sixth-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_sixth-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_sixth-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_sixth-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_sixth-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_sixth-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_sixth-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_sixth-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_sixth-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_sixth-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_sixth-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_sixth-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_sixth-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_sixth-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_sixth-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_sixth-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_sixth-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}.standard_blog_sixth-theme svg.goldGreenMap g#AU-WA>path#AU-WA-2{fill:#b29700}.standard_blog_sixth-theme svg.goldGreenMap g#AU-WA:hover path#AU-WA-2{fill:#f3eed6}.standard_blog_sixth-theme svg.goldGreenMap g#AU-NT>path#AU-NT-2{fill:#d4af37}.standard_blog_sixth-theme svg.goldGreenMap g#AU-NT:hover path#AU-NT-2{fill:#faf5e4}.standard_blog_sixth-theme svg.goldGreenMap g#AU-SA>path#AU-SA-2{fill:#e1c158}.standard_blog_sixth-theme svg.goldGreenMap g#AU-SA:hover path#AU-SA-2{fill:#faf5e4}.standard_blog_sixth-theme svg.goldGreenMap g#AU-QLD>path#AU-QLD-2{fill:#7daa6a}.standard_blog_sixth-theme svg.goldGreenMap g#AU-QLD:hover path#AU-QLD-2{fill:#eaf1e7}.standard_blog_sixth-theme svg.goldGreenMap g#AU-NSW>path#AU-NSW-2{fill:#619a46}.standard_blog_sixth-theme svg.goldGreenMap g#AU-NSW:hover path#AU-NSW-2{fill:#e5efe1}.standard_blog_sixth-theme svg.goldGreenMap g#AU-VIC>path#AU-VIC-2{fill:#438029}.standard_blog_sixth-theme svg.goldGreenMap g#AU-VIC:hover path#AU-VIC-2{fill:#e0ebdc}.standard_blog_sixth-theme svg.goldGreenMap g#AU-TAS>path#AU-TAS-2{fill:#e1c158}.standard_blog_sixth-theme svg.goldGreenMap g#AU-TAS:hover path#AU-TAS-2{fill:#faf5e4}@media(min-width: 2000px){.standard_blog_sixth-theme .container{max-width:2150px}.standard_blog_sixth-theme .navbar-dark .navbar-brand img{min-height:100px}.standard_blog_sixth-theme a.header-button.nav-link{font-size:22px;padding:15px 50px}.standard_blog_sixth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{height:125px}.standard_blog_sixth-theme svg:not(:root){height:70% !important;width:70% !important;margin:auto}.standard_blog_sixth-theme .choosearea-section{text-align:center}.standard_blog_sixth-theme .comparebtn a,.standard_blog_sixth-theme .comparebtn span{font-size:24px;padding:15px 50px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{min-height:712px;border-radius:10px;padding:70px 70px 100px 70px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:4.2rem;line-height:normal}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText ul{bottom:40px;left:40px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText ul li p{font-size:1.2rem}.standard_blog_sixth-theme .blogHeader .container .blogImg .post_featured_image{height:712px}.standard_blog_sixth-theme .advertisement-images{width:100%}.standard_blog_sixth-theme .stick_scroll{width:507.7px;transition:none}.standard_blog_sixth-theme .mid-content .mi-section-content{font-size:1.7rem}.standard_blog_sixth-theme .mid-content .mi-section-content .averagetext p span{font-size:16px !important;line-height:normal}.standard_blog_sixth-theme .group-editible{width:1000px}.standard_blog_sixth-theme .group-editible h4{font-size:2.5rem}.standard_blog_sixth-theme .group-editible ul li a{padding:28px 25px;margin:10px 0px;font-size:1.6rem;border-radius:10px}.standard_blog_sixth-theme .choos-boollets-points>div>span{font-size:1.7rem !important}}@media(max-width: 1440px){.standard_blog_sixth-theme .blogHeader{padding-top:40px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{min-height:420px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:38px;line-height:48px}.standard_blog_sixth-theme .blogHeader .container .blogImg{top:-20px}.standard_blog_sixth-theme .blogHeader .container .blogImg .post_featured_image{height:420px}.standard_blog_sixth-theme .blogTextaria{margin-top:30px}}@media(max-width: 1300px){.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{min-height:382px;padding:20px 20px 60px 20px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:32px;line-height:normal}.standard_blog_sixth-theme .blogHeader .container .blogImg .post_featured_image{height:382px}.standard_blog_sixth-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_sixth-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_sixth-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_sixth-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_sixth-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_sixth-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_sixth-theme .blogHeader{padding-top:20px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_sixth-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_sixth-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_sixth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_sixth-theme .blogHeader{padding-top:0px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_sixth-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_sixth-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_sixth-theme .blogTextaria{margin-top:0px}.standard_blog_sixth-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_sixth-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_sixth-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_sixth-theme .choosearea-section svg{height:400px}.standard_blog_sixth-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_sixth-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_sixth-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_sixth-theme .comparebtn a,.standard_blog_sixth-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_sixth-theme .choosearea-section svg{height:auto}.standard_blog_sixth-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_sixth-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_fourth-theme .blogHeader{padding-bottom:20px}.standard_blog_fourth-theme .blogHeader::before{display:none}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_fourth-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_fourth-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_fourth-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_fourth-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_fourth-theme .group-editible h4{text-align:left}.standard_blog_fourth-theme .group-editible h4 strong{font-weight:bold}.standard_blog_fourth-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_fourth-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_fourth-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_fourth-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_fourth-theme .choos-boollets-points{background:none;border:none}.standard_blog_fourth-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_fourth-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_fourth-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#e8e8ee;transition:.5s}.standard_blog_fourth-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#e8e8ee;transition:.5s}.standard_blog_fourth-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#e7e7eb;transition:.5s}.standard_blog_fourth-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#ebebf3;transition:.5s}.standard_blog_fourth-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#feedec;transition:.5s}.standard_blog_fourth-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#e7e7eb;transition:.5s}.standard_blog_fourth-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e5e5f1;transition:.5s}.standard_blog_fourth-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_fourth-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_fourth-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_fourth-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_fourth-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_fourth-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_fourth-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_fourth-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_fourth-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_fourth-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_fourth-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_fourth-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_fourth-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_fourth-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_fourth-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_fourth-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_fourth-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_fourth-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_fourth-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_fourth-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_fourth-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_fourth-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_fourth-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_fourth-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_fourth-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_fourth-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_fourth-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_fourth-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_fourth-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_fourth-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_fourth-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_fourth-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_fourth-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_fourth-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_fourth-theme .blogHeader{background-position:left -150px}.standard_blog_fourth-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_fourth-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_fourth-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_fourth-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_fourth-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_fourth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_fourth-theme .blogHeader{padding-top:0px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_fourth-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_fourth-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_fourth-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_fourth-theme .blogTextaria{margin-top:0px}.standard_blog_fourth-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_fourth-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_fourth-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_fourth-theme .choosearea-section svg{height:400px}.standard_blog_fourth-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_fourth-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_fourth-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_fourth-theme .comparebtn a,.standard_blog_fourth-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_fourth-theme .choosearea-section svg{height:auto}.standard_blog_fourth-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_fourth-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_fifth-theme .blogHeader{padding-bottom:20px}.standard_blog_fifth-theme .blogHeader::before{display:none}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_fifth-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_fifth-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_fifth-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_fifth-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_fifth-theme .group-editible h4{text-align:left}.standard_blog_fifth-theme .group-editible h4 strong{font-weight:bold}.standard_blog_fifth-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_fifth-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_fifth-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_fifth-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_fifth-theme .choos-boollets-points{background:none;border:none}.standard_blog_fifth-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_fifth-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_fifth-theme svg g#AU-NT:hover>path#AU-NT-2{fill:#e8e8ee;transition:.5s}.standard_blog_fifth-theme svg g#AU-WA:hover>path#AU-WA-2{fill:#e8e8ee;transition:.5s}.standard_blog_fifth-theme svg g#AU-SA:hover>path#AU-SA-2{fill:#e7e7eb;transition:.5s}.standard_blog_fifth-theme svg g#AU-QLD:hover>path#AU-QLD-2{fill:#ebebf3;transition:.5s}.standard_blog_fifth-theme svg g#AU-NSW:hover>path#AU-NSW-2{fill:#feedec;transition:.5s}.standard_blog_fifth-theme svg g#AU-VIC:hover>path#AU-VIC-2{fill:#e7e7eb;transition:.5s}.standard_blog_fifth-theme svg g#AU-TAS:hover>path#AU-TAS-2{fill:#e5e5f1;transition:.5s}.standard_blog_fifth-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_fifth-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_fifth-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_fifth-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_fifth-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_fifth-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_fifth-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_fifth-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_fifth-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_fifth-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_fifth-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_fifth-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_fifth-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_fifth-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_fifth-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_fifth-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_fifth-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_fifth-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_fifth-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_fifth-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_fifth-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_fifth-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_fifth-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_fifth-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_fifth-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_fifth-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_fifth-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_fifth-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_fifth-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_fifth-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_fifth-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_fifth-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_fifth-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_fifth-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_fifth-theme .blogHeader{background-position:left -150px}.standard_blog_fifth-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_fifth-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_fifth-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_fifth-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_fifth-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_fifth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_fifth-theme .blogHeader{padding-top:0px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_fifth-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_fifth-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_fifth-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_fifth-theme .blogTextaria{margin-top:0px}.standard_blog_fifth-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_fifth-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_fifth-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_fifth-theme .choosearea-section svg{height:400px}.standard_blog_fifth-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_fifth-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_fifth-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_fifth-theme .comparebtn a,.standard_blog_fifth-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_fifth-theme .choosearea-section svg{height:auto}.standard_blog_fifth-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_fifth-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_seventh-theme .header,.standard_blog_seventh-theme .foter-bottom{background:#1d2c35}.standard_blog_seventh-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{background:#1d2c35}.standard_blog_seventh-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_seventh-theme .blogHeader::before{display:none}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_seventh-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_seventh-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_seventh-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_seventh-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_seventh-theme .group-editible h4{text-align:left}.standard_blog_seventh-theme .group-editible h4 strong{font-weight:bold}.standard_blog_seventh-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_seventh-theme .group-editible ul li a:hover{background:#ffc316;color:#000 !important}.standard_blog_seventh-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_seventh-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_seventh-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_seventh-theme .choos-boollets-points{background:none;border:none}.standard_blog_seventh-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_seventh-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_seventh-theme svg g#AU-WA>path#AU-WA-2{fill:#153f82}.standard_blog_seventh-theme svg g#AU-WA:hover path#AU-WA-2{fill:#bec6d2}.standard_blog_seventh-theme svg g#AU-NT>path#AU-NT-2{fill:#174793}.standard_blog_seventh-theme svg g#AU-NT:hover path#AU-NT-2{fill:#bfc8d5}.standard_blog_seventh-theme svg g#AU-SA>path#AU-SA-2{fill:#386cb9}.standard_blog_seventh-theme svg g#AU-SA:hover path#AU-SA-2{fill:#c5cedc}.standard_blog_seventh-theme svg g#AU-QLD>path#AU-QLD-2{fill:#729ed9}.standard_blog_seventh-theme svg g#AU-QLD:hover path#AU-QLD-2{fill:#cfd8e2}.standard_blog_seventh-theme svg g#AU-NSW>path#AU-NSW-2{fill:#ffdf01}.standard_blog_seventh-theme svg g#AU-NSW:hover path#AU-NSW-2{fill:#e9e3bb}.standard_blog_seventh-theme svg g#AU-VIC>path#AU-VIC-2{fill:#fcc100}.standard_blog_seventh-theme svg g#AU-VIC:hover path#AU-VIC-2{fill:#e9e3bb}.standard_blog_seventh-theme svg g#AU-TAS>path#AU-TAS-2{fill:#f1a300}.standard_blog_seventh-theme svg g#AU-TAS:hover path#AU-TAS-2{fill:#e9e3bb}.standard_blog_seventh-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_seventh-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_seventh-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_seventh-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_seventh-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_seventh-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_seventh-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_seventh-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_seventh-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_seventh-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_seventh-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_seventh-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_seventh-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_seventh-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_seventh-theme .blogNewDesign .blogHeader{background-image:none;padding:0px;min-height:450px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container{position:initial}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText{min-height:auto;background:rgba(0,0,0,0);box-shadow:none;border-radius:0px;padding:90px 0 110px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText h1{font-size:49px;font-weight:bold;line-height:59px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText ul{padding:0px 0px;position:relative}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogImg{right:0px;top:0px;height:450px;width:59.717949%;border-radius:0px;border:none}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogImg:before{position:absolute;left:0;top:0;bottom:0;content:"";background:linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.58) 56.52%, #fff 100%);width:28%;z-index:0}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogImg .post_featured_image{height:100%}.standard_blog_seventh-theme .blogNewDesign .advertisement-images{position:relative;top:-100px;z-index:1;padding-top:0px}.standard_blog_seventh-theme .blogNewDesign .advertisement-images.stick_scroll{position:fixed;top:100px}.standard_blog_seventh-theme .blogNewDesign .advertisement-images li a{box-shadow:0px 0px 10px rgba(0,0,0,.09);border-radius:5px;overflow:hidden;width:100%;display:inline-block}.standard_blog_seventh-theme .blogNewDesign .advertisement-images li a img{margin-bottom:0px}.standard_blog_seventh-theme .blogNewDesign .advertisement-images li+li{margin-top:15px}.standard_blog_seventh-theme .blogNewDesign .blogTextaria{margin-top:0px}.standard_blog_seventh-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_seventh-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_seventh-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_seventh-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_seventh-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_seventh-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_seventh-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_seventh-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_seventh-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_seventh-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_seventh-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_seventh-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_seventh-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_seventh-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_seventh-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_seventh-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_seventh-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_seventh-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{min-height:442px}.standard_blog_seventh-theme .blogNewDesign .blogHeader{margin-bottom:15px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText h1{font-size:40px;font-weight:bold;line-height:48px}}@media(max-width: 1199px){.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_seventh-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_seventh-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}.standard_blog_seventh-theme .blogNewDesign .blogHeader{min-height:380px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText{width:46%;padding:70px 0 80px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogImg{height:380px}}@media(max-width: 1024px){.standard_blog_seventh-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_seventh-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_seventh-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}.standard_blog_seventh-theme .blogNewDesign .blogHeader{min-height:300px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText{width:50%;padding:50px 0 60px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText h1{font-size:32px;line-height:40px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogImg{height:300px}}@media(max-width: 767px){.standard_blog_seventh-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_seventh-theme .blogHeader{padding-top:20px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_seventh-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_seventh-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_seventh-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_seventh-theme .blogHeader{padding-top:0px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_seventh-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_seventh-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_seventh-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_seventh-theme .blogTextaria{margin-top:0px}.standard_blog_seventh-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_seventh-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_seventh-theme .group-editible{margin-top:0px;margin-bottom:20px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText{width:100%;padding:50px 63px 60px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText h1{text-align:center}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText ul{text-align:center}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogImg{height:360px;width:100%;position:absolute}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogImg:before{position:absolute;left:0;top:-130px;bottom:0px;content:"";width:100%;z-index:0;height:100%;background:linear-gradient(180deg, #fff 0.08%, rgba(255, 255, 255, 0.99) 63.1%, rgba(255, 255, 255, 0) 100%)}.standard_blog_seventh-theme .blogNewDesign .container .mid-content{position:relative;z-index:1;background:#fff;padding:15px;border-radius:5px}}@media(max-width: 540px){.standard_blog_seventh-theme .choosearea-section svg{height:400px}.standard_blog_seventh-theme .group-editible h4{margin-top:20px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText{width:100%;padding:50px 15px 60px}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText h1{text-align:center}.standard_blog_seventh-theme .blogNewDesign .blogHeader .container .blogHeaderText ul{text-align:center}}@media(max-width: 413px){.standard_blog_seventh-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_seventh-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_seventh-theme .comparebtn a,.standard_blog_seventh-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_seventh-theme .choosearea-section svg{height:auto}.standard_blog_seventh-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_seventh-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_eighth-theme .foter-bottom{font-size:12px}.standard_blog_eighth-theme .foter-bottom ul li a{font-size:12px}.standard_blog_eighth-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_eighth-theme .blogHeader::before{display:none}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_eighth-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_eighth-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_eighth-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#000;letter-spacing:.5px}.standard_blog_eighth-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_eighth-theme .group-editible h4{text-align:left}.standard_blog_eighth-theme .group-editible h4 strong{font-weight:bold}.standard_blog_eighth-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_eighth-theme .group-editible ul li a:hover{background:#e81f1f;color:#fff !important}.standard_blog_eighth-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_eighth-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_eighth-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_eighth-theme .choos-boollets-points{background:none;border:none}.standard_blog_eighth-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_eighth-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_eighth-theme svg g#AU-WA>path#AU-WA-2{fill:#000}.standard_blog_eighth-theme svg g#AU-WA:hover path#AU-WA-2{fill:#c8c8c8}.standard_blog_eighth-theme svg g#AU-NT>path#AU-NT-2{fill:#3d0000}.standard_blog_eighth-theme svg g#AU-NT:hover path#AU-NT-2{fill:#d5c8c8}.standard_blog_eighth-theme svg g#AU-SA>path#AU-SA-2{fill:#6a0000}.standard_blog_eighth-theme svg g#AU-SA:hover path#AU-SA-2{fill:#dec8c8}.standard_blog_eighth-theme svg g#AU-QLD>path#AU-QLD-2{fill:#910000}.standard_blog_eighth-theme svg g#AU-QLD:hover path#AU-QLD-2{fill:#e7c8c8}.standard_blog_eighth-theme svg g#AU-NSW>path#AU-NSW-2{fill:#b60000}.standard_blog_eighth-theme svg g#AU-NSW:hover path#AU-NSW-2{fill:#efc8c8}.standard_blog_eighth-theme svg g#AU-VIC>path#AU-VIC-2{fill:#da0000}.standard_blog_eighth-theme svg g#AU-VIC:hover path#AU-VIC-2{fill:#f7c8c8}.standard_blog_eighth-theme svg g#AU-TAS>path#AU-TAS-2{fill:red}.standard_blog_eighth-theme svg g#AU-TAS:hover path#AU-TAS-2{fill:#ffc8c8}.standard_blog_eighth-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_eighth-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_eighth-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_eighth-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_eighth-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_eighth-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_eighth-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_eighth-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_eighth-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_eighth-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_eighth-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_eighth-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_eighth-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_eighth-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_eighth-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_eighth-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_eighth-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_eighth-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_eighth-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_eighth-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_eighth-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_eighth-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_eighth-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_eighth-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_eighth-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_eighth-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_eighth-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_eighth-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_eighth-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_eighth-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_eighth-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_eighth-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_eighth-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_eighth-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_eighth-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_eighth-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_eighth-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_eighth-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_eighth-theme .blogHeader{padding-top:20px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_eighth-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_eighth-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_eighth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_eighth-theme .blogHeader{padding-top:0px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_eighth-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_eighth-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_eighth-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_eighth-theme .blogTextaria{margin-top:0px}.standard_blog_eighth-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_eighth-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_eighth-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_eighth-theme .choosearea-section svg{height:400px}.standard_blog_eighth-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_eighth-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_eighth-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_eighth-theme .comparebtn a,.standard_blog_eighth-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_eighth-theme .choosearea-section svg{height:auto}.standard_blog_eighth-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_eighth-theme .navbar-dark .navbar-brand img{max-width:200px}}.standard_blog_ninth-theme .blogHeader{background-image:url(/static/media/dot-bg.584907382a8f8ccc34d452db797b7f46.png);background-repeat:repeat-x;background-size:auto;padding-top:100px;padding-bottom:20px}.standard_blog_ninth-theme .blogHeader::before{display:none}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border-radius:5px;text-align:left;max-width:100%;padding:38.5px 34px 60px 32.5px;position:relative;width:38.17094%;z-index:2;min-height:520px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{color:#000;text-align:left;line-height:58px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText ul{text-align:left;position:absolute;bottom:0px;left:0px;padding:0px 30px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText ul li p{margin:0px;padding:0px;border:none;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText ul li p span{color:#5b87ff}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText ul li p+p{margin-left:15px;padding-left:15px;border-left:1px solid #ccc}.standard_blog_ninth-theme .blogHeader .container .blogImg{width:72.265%;right:15px;position:absolute;top:-50px;z-index:1;border-radius:5px;overflow:hidden;border:1px solid #eee}.standard_blog_ninth-theme .blogHeader .container .blogImg .post_featured_image{height:520px;background-repeat:no-repeat;background-size:cover;background-position:center center}.standard_blog_ninth-theme .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;color:#484848;letter-spacing:.5px}.standard_blog_ninth-theme .group-editible{position:relative;background:#fff;box-shadow:0 0 24px 0 rgba(0,0,0,.09);border:none;margin-top:50px;margin-bottom:50px}.standard_blog_ninth-theme .group-editible h4{text-align:left}.standard_blog_ninth-theme .group-editible h4 strong{font-weight:bold}.standard_blog_ninth-theme .group-editible ul li a{border:1px solid #d5d5d5;font-weight:500}.standard_blog_ninth-theme .group-editible ul li a:hover{background:#fbde07;color:#000 !important}.standard_blog_ninth-theme .group-editible::before{content:"";width:223px;height:223px;left:-140px;top:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_ninth-theme .group-editible::after{content:"";width:223px;height:223px;right:-140px;bottom:-40px;position:absolute;z-index:-1;background-image:url(/static/media/dotted-bg.bf7db7b4d6358cfb9dbb0084a0e4a034.png);background-repeat:no-repeat}.standard_blog_ninth-theme .mid-content .mi-section-content h2 strong{font-weight:600}.standard_blog_ninth-theme .choos-boollets-points{background:none;border:none}.standard_blog_ninth-theme .mid-content .mi-section-content .averagetext p{font-size:14px;line-height:18px}.standard_blog_ninth-theme .mid-content .mi-section-content .big-text{margin-bottom:15px}.standard_blog_ninth-theme svg g#AU-WA>path#AU-WA-2{fill:#1e2d35}.standard_blog_ninth-theme svg g#AU-WA:hover path#AU-WA-2{fill:#dfe1e2}.standard_blog_ninth-theme svg g#AU-NT>path#AU-NT-2{fill:#313c31}.standard_blog_ninth-theme svg g#AU-NT:hover path#AU-NT-2{fill:#e2e3e2}.standard_blog_ninth-theme svg g#AU-SA>path#AU-SA-2{fill:#797522}.standard_blog_ninth-theme svg g#AU-SA:hover path#AU-SA-2{fill:#ecebdf}.standard_blog_ninth-theme svg g#AU-QLD>path#AU-QLD-2{fill:#c8b510}.standard_blog_ninth-theme svg g#AU-QLD:hover path#AU-QLD-2{fill:#f7f5dd}.standard_blog_ninth-theme svg g#AU-NSW>path#AU-NSW-2{fill:#fcde05}.standard_blog_ninth-theme svg g#AU-NSW:hover path#AU-NSW-2{fill:#fffbdb}.standard_blog_ninth-theme svg g#AU-VIC>path#AU-VIC-2{fill:#f2ce05}.standard_blog_ninth-theme svg g#AU-VIC:hover path#AU-VIC-2{fill:#fdf8db}.standard_blog_ninth-theme svg g#AU-TAS>path#AU-TAS-2{fill:#e3ba04}.standard_blog_ninth-theme svg g#AU-TAS:hover path#AU-TAS-2{fill:#fbf5db}.standard_blog_ninth-theme svg.greenGoldMap g#AU-WA>path#AU-WA-2{fill:#438029}.standard_blog_ninth-theme svg.greenGoldMap g#AU-WA:hover path#AU-WA-2{fill:#ecf2e9}.standard_blog_ninth-theme svg.greenGoldMap g#AU-NT>path#AU-NT-2{fill:#619a46}.standard_blog_ninth-theme svg.greenGoldMap g#AU-NT:hover path#AU-NT-2{fill:#eff5ec}.standard_blog_ninth-theme svg.greenGoldMap g#AU-SA>path#AU-SA-2{fill:#7daa6a}.standard_blog_ninth-theme svg.greenGoldMap g#AU-SA:hover path#AU-SA-2{fill:#f1f6ef}.standard_blog_ninth-theme svg.greenGoldMap g#AU-QLD>path#AU-QLD-2{fill:#e1c158}.standard_blog_ninth-theme svg.greenGoldMap g#AU-QLD:hover path#AU-QLD-2{fill:#fcf9ee}.standard_blog_ninth-theme svg.greenGoldMap g#AU-NSW>path#AU-NSW-2{fill:#d4af37}.standard_blog_ninth-theme svg.greenGoldMap g#AU-NSW:hover path#AU-NSW-2{fill:#fbf7ea}.standard_blog_ninth-theme svg.greenGoldMap g#AU-VIC>path#AU-VIC-2{fill:#b29700}.standard_blog_ninth-theme svg.greenGoldMap g#AU-VIC:hover path#AU-VIC-2{fill:#f7f4e5}.standard_blog_ninth-theme svg.greenGoldMap g#AU-TAS>path#AU-TAS-2{fill:#96810c}.standard_blog_ninth-theme svg.greenGoldMap g#AU-TAS:hover path#AU-TAS-2{fill:#f4f2e6}.standard_blog_ninth-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.standard_blog_ninth-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.standard_blog_ninth-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.standard_blog_ninth-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.standard_blog_ninth-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.standard_blog_ninth-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.standard_blog_ninth-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.standard_blog_ninth-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.standard_blog_ninth-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.standard_blog_ninth-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.standard_blog_ninth-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.standard_blog_ninth-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.standard_blog_ninth-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.standard_blog_ninth-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.standard_blog_ninth-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.standard_blog_ninth-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.standard_blog_ninth-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.standard_blog_ninth-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}@media(max-width: 1300px){.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{min-height:442px}}@media(max-width: 1199px){.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{min-height:382px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:34px}.standard_blog_ninth-theme .group-editible::before{width:100px;height:100px;left:-68px;top:-20px}.standard_blog_ninth-theme .group-editible::after{width:100px;height:100px;right:-68px;bottom:-30px}}@media(max-width: 1024px){.standard_blog_ninth-theme .blogHeader{padding-top:80px;background-position:left -150px}.standard_blog_ninth-theme .blogHeader .container .blogImg{top:-30px}.standard_blog_ninth-theme .blogHeader .container .blogImg .post_featured_image{height:400px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{min-height:400px}}@media(max-width: 992px){.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{padding:20px 24px 60px 20px}}@media(max-width: 767px){.standard_blog_ninth-theme .headerContainer{display:flex;flex-direction:column-reverse}.standard_blog_ninth-theme .blogHeader{padding-top:20px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{min-height:100%;max-width:calc(100% - 20px);margin:-20px auto 0;padding:28px 17px 26px;width:100%}.standard_blog_ninth-theme .blogHeader .container .blogImg{right:0;position:relative;top:0;margin-top:0px;width:100%}.standard_blog_ninth-theme .blogHeader .container .blogImg .post_featured_image{height:232px}.standard_blog_ninth-theme nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{padding-bottom:5px}.standard_blog_ninth-theme .blogHeader{padding-top:0px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText{padding:18px 15px 36px}.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:30px;line-height:normal}.standard_blog_ninth-theme .blogHeader .container .headerContainer{margin:0px -15px}.standard_blog_ninth-theme .blogHeader .container .blogImg{border-radius:0px}.standard_blog_ninth-theme .blogTextaria{margin-top:0px}.standard_blog_ninth-theme .mid-content .mi-section-content p{font-size:16px;line-height:24px}.standard_blog_ninth-theme .mid-content .mi-section-content h2{font-size:1.5em}.standard_blog_ninth-theme .group-editible{margin-top:0px;margin-bottom:20px}}@media(max-width: 540px){.standard_blog_ninth-theme .choosearea-section svg{height:400px}.standard_blog_ninth-theme .group-editible h4{margin-top:20px}}@media(max-width: 413px){.standard_blog_ninth-theme .blogHeader .container .blogHeaderText h1{font-size:26px}.standard_blog_ninth-theme .blogHeader .container .blogImg .post_featured_image{height:172px}.standard_blog_ninth-theme .comparebtn a,.standard_blog_ninth-theme .comparebtn span{font-size:14px;padding:13px 20px}.standard_blog_ninth-theme .choosearea-section svg{height:auto}.standard_blog_ninth-theme .choos-boollets-points{padding:0px;margin:0px}}@media(max-width: 360px){.standard_blog_ninth-theme .navbar-dark .navbar-brand img{max-width:200px}}body .group-editible .logoLIsting.cardImage{margin:-40px}body .group-editible .logoLIsting.cardImage li{flex:0 0 33.3333%;max-width:33.3333%}body .group-editible .logoLIsting.cardImage li a{padding:0px}@media(max-width: 480px){body .group-editible .logoLIsting.cardImage{margin:-25px}}@media(max-width: 374px){.header .img-responsive{max-width:170px}}@media(max-width: 480px){table td,.table th{padding:.5rem !important}}.BlogLayout nav.header .row{width:100%;padding-left:15px}.BlogLayout .header-section .fixed-top ul .nav-item a{text-transform:none;letter-spacing:1px;position:relative}.BlogLayout .header-section .fixed-top ul .nav-item.active a:after{width:23px;height:5px;left:50%;transform:translate(-50%, 0%);bottom:-12px;content:"";position:absolute;border-radius:5px}.BlogLayout .header-section .fixed-top ul .nav-item:hover a:after{width:23px;height:5px;left:50%;transform:translate(-50%, 0%);bottom:-12px;content:"";position:absolute;border-radius:5px}.BlogLayout .header-section a.header-button.nav-link{border-radius:4px;color:#fff;text-transform:inherit;font-size:14px;padding:10px 30px;letter-spacing:1px;font-weight:500}.BlogLayout .header-section nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0;box-shadow:0 0 10px 0 rgba(0,0,0,.2);z-index:99;position:fixed;width:100%;transition:.5s}.BlogLayout .home-section-top{margin-bottom:70px}.BlogLayout .home-section-top .group-editible{position:relative;background:#fff;border:none;padding:50px;width:600px;border-radius:5px;margin:0 auto;margin-top:50px;margin-bottom:80px}.BlogLayout .home-section-top .group-editible::before{width:100px;height:200px;position:absolute;z-index:-1;left:-50px;top:-50px;opacity:.5}.BlogLayout .home-section-top .group-editible::after{width:200px;height:100px;position:absolute;z-index:-1;right:-50px;bottom:-50px;opacity:.5}.BlogLayout .home-section-top .group-editible h4{font-size:30px;letter-spacing:1px}.BlogLayout .home-section-top .group-editible h4 strong{font-weight:500}.BlogLayout .home-section-top .group-editible ul{padding:0;list-style:none;margin-top:35px;text-align:left;margin-bottom:0}.BlogLayout .home-section-top .group-editible ul li{display:inline-block;width:100%}.BlogLayout .home-section-top .group-editible ul li a{background:#fff;color:#717171;text-transform:capitalize;padding:15px 25px;display:inline-block;margin:4px 0;width:100%;font-size:18px;text-decoration:none;border-radius:5px;border:1px solid #d5d5d5;font-weight:500}.BlogLayout .home-section-top .group-editible ul li a:hover{color:#fff !important;transition:height 1s ease}.BlogLayout .blogHeader .container{max-width:1620px}.BlogLayout .blogHeader .container .blogHeaderText{width:1040px;max-width:100%;margin:auto;text-align:center;margin-top:40px}.BlogLayout .blogHeader .container .blogHeaderText h1{font-size:50px;letter-spacing:1.5px;font-weight:700;margin-bottom:20px}.BlogLayout .blogHeader .container .blogHeaderText ul{margin:0px;padding:0px}.BlogLayout .blogHeader .container .blogHeaderText ul li{display:inline-block;margin:0px 15px;color:#000;font-size:12px;line-height:16px;text-transform:uppercase}.BlogLayout .blogHeader .container .blogHeaderText ul li p{margin-bottom:0px}.BlogLayout .blogHeader .container .blogImg{width:100%;display:inline-block;margin-bottom:30px;height:650px}.BlogLayout .blogHeader .container .blogImg .post_featured_image{width:100%;height:100%;overflow:hidden}.BlogLayout .blogHeader .container .blogImg .post_featured_image img{width:100%}.BlogLayout .mi-section-content .big-text{float:left;font-size:70px;font-weight:700;margin:0px 10px 0px 0px;color:#000;line-height:70px}.BlogLayout .mi-section-content h2{margin-top:40px;font-weight:600}.BlogLayout .mi-section-content h2 strong{font-weight:600}.BlogLayout .mi-section-content .svgMap{display:inline-block;text-align:center;width:100%}.BlogLayout .mi-section-content .svgMap .svg-holder{display:inline-block;position:relative;background:#fff;border:none;padding:50px;width:720px;max-width:100%;border-radius:5px;margin:0 auto;margin-top:50px;margin-bottom:20px}.BlogLayout .mi-section-content .svgMap .svg-holder::before{width:100px;height:200px;position:absolute;z-index:-1;right:-50px;bottom:-50px;opacity:.5}.BlogLayout .mi-section-content .svgMap .svg-holder::after{width:200px;height:100px;position:absolute;z-index:-1;left:-50px;top:-50px;opacity:.5}.BlogLayout .mi-section-content .comparebtn{text-align:center;margin-top:40px}.BlogLayout .mi-section-content .comparebtn a,.BlogLayout .mi-section-content .comparebtn span{background:no-repeat;font-size:16px;padding:13px 40px;border-radius:4px;display:inline-block;margin-bottom:20px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500}.BlogLayout .mi-section-content .comparebtn a:hover,.BlogLayout .mi-section-content .comparebtn span:hover{color:#fff}.BlogLayout .mi-section-content .averagetext{margin-top:20px}.BlogLayout .mi-section-content .averagetext p{font-size:14px;line-height:18px;font-weight:300;color:#484848;letter-spacing:.5px}.BlogLayout .mi-section-content .averagetext p strong{font-weight:600;color:#000}.BlogLayout .footer{padding:30px 0px;position:relative;color:#fff}.BlogLayout .footer::after{position:absolute;left:0px;bottom:100%;background-size:cover;content:"";width:100%;height:86px}.BlogLayout .footer .custome-links ul{float:right}.BlogLayout .footer .custome-links ul li{list-style:none;float:left;margin-left:25px}.BlogLayout .advertisement-images{list-style:none;padding:25px 0 0;width:255px;max-width:100%;z-index:1}.BlogLayout .advertisement-images.stick_scroll{position:fixed;padding-top:0;top:90px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px}.BlogLayout .advertisement-images img{max-width:100%}@media(max-width: 1440px){.BlogLayout .footer{font-size:12px}.BlogLayout .footer::after{height:66px}}@media(max-width: 1200px){.BlogLayout .advertisement-images.stick_scroll{width:22.5%}.BlogLayout .footer::after{height:40px}.BlogLayout .home-section-top .group-editible{max-width:100%}}@media(max-width: 992px){.BlogLayout .navbar-dark .navbar-toggler{position:absolute;right:15px;top:10px}.BlogLayout .blogHeader .container .blogHeaderText h1{font-size:40px}.BlogLayout .blogHeader .container .blogImg{height:auto}.BlogLayout .advertisement-images.stick_scroll{width:22%}.BlogLayout .mi-section-content .svgMap .svg-holder svg{width:100%;height:auto}}@media(max-width: 767px){.BlogLayout .advertisement-images{display:none}}@media(max-width: 560px){.BlogLayout .blogHeader .container .blogHeaderText h1{font-size:32px}.BlogLayout .mi-section-content h2{font-size:24px}.BlogLayout .mi-section-content .svgMap .svg-holder{padding:10px}.BlogLayout .home-section-top .group-editible{padding:15px}.BlogLayout .home-section-top .group-editible h4{font-size:20px;margin-top:10px}.BlogLayout .home-section-top .group-editible ul{margin-top:15px}}.blog_default-theme .header-section{background:#212837}.blog_default-theme .header-section .fixed-top{background:#212837}.blog_default-theme .header-section .fixed-top ul .nav-item.active a{color:#1fc560}.blog_default-theme .header-section .fixed-top ul .nav-item.active a:after{background:#1fc560}.blog_default-theme .header-section .fixed-top ul .nav-item:hover a{color:#1fc560}.blog_default-theme .header-section .fixed-top ul .nav-item:hover a:after{background:#1fc560}.blog_default-theme .header-section a.header-button.nav-link{background:#1fc560;border:2px solid #1fc560}.blog_default-theme .header-section nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0;background:#212837}.blog_default-theme .home-section-top .group-editible{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme .home-section-top .group-editible::before{background-image:radial-gradient(#1FC560 20%, transparent 20%),radial-gradient(#1FC560 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme .home-section-top .group-editible::after{background-image:radial-gradient(#1FC560 20%, transparent 20%),radial-gradient(#1FC560 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme .home-section-top .group-editible ul li a:hover{background:#1fc560;border-color:#1fc560}.blog_default-theme .mi-section-content{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme .mi-section-content p{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme .mi-section-content h2{font-size:36px;letter-spacing:1px;font-weight:700}.blog_default-theme .mi-section-content .svgMap .svg-holder{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme .mi-section-content .svgMap .svg-holder::before{background-image:radial-gradient(#1FC560 20%, transparent 20%),radial-gradient(#1FC560 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme .mi-section-content .svgMap .svg-holder::after{background-image:radial-gradient(#1FC560 20%, transparent 20%),radial-gradient(#1FC560 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme .mi-section-content .comparebtn a,.blog_default-theme .mi-section-content .comparebtn span{color:#1fc560;border:2px solid #1fc560}.blog_default-theme .mi-section-content .comparebtn a:hover,.blog_default-theme .mi-section-content .comparebtn span:hover{background:#1fc560}.blog_default-theme .footer{background:#212837}.blog_default-theme-v2 .header-section{background:#212837}.blog_default-theme-v2 .header-section .fixed-top{background:#212837}.blog_default-theme-v2 .header-section .fixed-top ul .nav-item.active a{color:#7773fa}.blog_default-theme-v2 .header-section .fixed-top ul .nav-item.active a:after{background:#7773fa}.blog_default-theme-v2 .header-section .fixed-top ul .nav-item:hover a{color:#7773fa}.blog_default-theme-v2 .header-section .fixed-top ul .nav-item:hover a:after{background:#7773fa}.blog_default-theme-v2 .header-section a.header-button.nav-link{background:#7773fa;border:2px solid #7773fa}.blog_default-theme-v2 .header-section nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0;background:#212837}.blog_default-theme-v2 .home-section-top .group-editible{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v2 .home-section-top .group-editible::before{background-image:radial-gradient(#7773fa 20%, transparent 20%),radial-gradient(#7773fa 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v2 .home-section-top .group-editible::after{background-image:radial-gradient(#7773fa 20%, transparent 20%),radial-gradient(#7773fa 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v2 .home-section-top .group-editible ul li a:hover{background:#7773fa;border-color:#7773fa}.blog_default-theme-v2 .mi-section-content{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v2 .mi-section-content p{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v2 .mi-section-content h2{font-size:36px;letter-spacing:1px;font-weight:700}.blog_default-theme-v2 .mi-section-content .svgMap .svg-holder{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v2 .mi-section-content .svgMap .svg-holder::before{background-image:radial-gradient(#7773fa 20%, transparent 20%),radial-gradient(#7773fa 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v2 .mi-section-content .svgMap .svg-holder::after{background-image:radial-gradient(#7773fa 20%, transparent 20%),radial-gradient(#7773fa 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v2 .mi-section-content .comparebtn a,.blog_default-theme-v2 .mi-section-content .comparebtn span{color:#7773fa;border:2px solid #7773fa}.blog_default-theme-v2 .mi-section-content .comparebtn a:hover,.blog_default-theme-v2 .mi-section-content .comparebtn span:hover{background:#7773fa}.blog_default-theme-v2 .footer{background:#212837}.blog_default-theme-v3 .header-section{background:#212837}.blog_default-theme-v3 .header-section .fixed-top{background:#212837}.blog_default-theme-v3 .header-section .fixed-top ul .nav-item.active a{color:#ff4e44}.blog_default-theme-v3 .header-section .fixed-top ul .nav-item.active a:after{background:#ff4e44}.blog_default-theme-v3 .header-section .fixed-top ul .nav-item:hover a{color:#ff4e44}.blog_default-theme-v3 .header-section .fixed-top ul .nav-item:hover a:after{background:#ff4e44}.blog_default-theme-v3 .header-section a.header-button.nav-link{background:#ff4e44;border:2px solid #ff4e44}.blog_default-theme-v3 .header-section nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0;background:#212837}.blog_default-theme-v3 .home-section-top .group-editible{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v3 .home-section-top .group-editible::before{background-image:radial-gradient(#ff4e44 20%, transparent 20%),radial-gradient(#ff4e44 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v3 .home-section-top .group-editible::after{background-image:radial-gradient(#ff4e44 20%, transparent 20%),radial-gradient(#ff4e44 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v3 .home-section-top .group-editible ul li a:hover{background:#ff4e44;border-color:#ff4e44}.blog_default-theme-v3 .mi-section-content{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v3 .mi-section-content p{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v3 .mi-section-content h2{font-size:36px;letter-spacing:1px;font-weight:700}.blog_default-theme-v3 .mi-section-content .svgMap .svg-holder{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v3 .mi-section-content .svgMap .svg-holder::before{background-image:radial-gradient(#ff4e44 20%, transparent 20%),radial-gradient(#ff4e44 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v3 .mi-section-content .svgMap .svg-holder::after{background-image:radial-gradient(#ff4e44 20%, transparent 20%),radial-gradient(#ff4e44 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v3 .mi-section-content .comparebtn a,.blog_default-theme-v3 .mi-section-content .comparebtn span{color:#ff4e44;border:2px solid #ff4e44}.blog_default-theme-v3 .mi-section-content .comparebtn a:hover,.blog_default-theme-v3 .mi-section-content .comparebtn span:hover{background:#ff4e44}.blog_default-theme-v3 .footer{background:#212837}.blog_default-theme-v4 .header-section{background:#212837}.blog_default-theme-v4 .header-section .fixed-top{background:#212837}.blog_default-theme-v4 .header-section .fixed-top ul .nav-item.active a{color:#f47621}.blog_default-theme-v4 .header-section .fixed-top ul .nav-item.active a:after{background:#f47621}.blog_default-theme-v4 .header-section .fixed-top ul .nav-item:hover a{color:#f47621}.blog_default-theme-v4 .header-section .fixed-top ul .nav-item:hover a:after{background:#f47621}.blog_default-theme-v4 .header-section a.header-button.nav-link{background:#f47621;border:2px solid #f47621}.blog_default-theme-v4 .header-section nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0;background:#212837}.blog_default-theme-v4 .home-section-top .group-editible{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v4 .home-section-top .group-editible::before{background-image:radial-gradient(#f47621 20%, transparent 20%),radial-gradient(#f47621 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v4 .home-section-top .group-editible::after{background-image:radial-gradient(#f47621 20%, transparent 20%),radial-gradient(#f47621 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v4 .home-section-top .group-editible ul li a:hover{background:#f47621;border-color:#f47621}.blog_default-theme-v4 .mi-section-content{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v4 .mi-section-content p{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v4 .mi-section-content h2{font-size:36px;letter-spacing:1px;font-weight:700}.blog_default-theme-v4 .mi-section-content .svgMap .svg-holder{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v4 .mi-section-content .svgMap .svg-holder::before{background-image:radial-gradient(#f47621 20%, transparent 20%),radial-gradient(#f47621 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v4 .mi-section-content .svgMap .svg-holder::after{background-image:radial-gradient(#f47621 20%, transparent 20%),radial-gradient(#f47621 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v4 .mi-section-content .comparebtn a,.blog_default-theme-v4 .mi-section-content .comparebtn span{color:#f47621;border:2px solid #f47621}.blog_default-theme-v4 .mi-section-content .comparebtn a:hover,.blog_default-theme-v4 .mi-section-content .comparebtn span:hover{background:#f47621}.blog_default-theme-v4 .footer{background:#212837}.blog_default-theme-v5 .header-section{background:#212837}.blog_default-theme-v5 .header-section .fixed-top{background:#212837}.blog_default-theme-v5 .header-section .fixed-top ul .nav-item.active a{color:#13ac8f}.blog_default-theme-v5 .header-section .fixed-top ul .nav-item.active a:after{background:#13ac8f}.blog_default-theme-v5 .header-section .fixed-top ul .nav-item:hover a{color:#13ac8f}.blog_default-theme-v5 .header-section .fixed-top ul .nav-item:hover a:after{background:#13ac8f}.blog_default-theme-v5 .header-section a.header-button.nav-link{background:#13ac8f;border:2px solid #13ac8f}.blog_default-theme-v5 .header-section nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0;background:#212837}.blog_default-theme-v5 .home-section-top .group-editible{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v5 .home-section-top .group-editible::before{background-image:radial-gradient(#13ac8f 20%, transparent 20%),radial-gradient(#13ac8f 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v5 .home-section-top .group-editible::after{background-image:radial-gradient(#13ac8f 20%, transparent 20%),radial-gradient(#13ac8f 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v5 .home-section-top .group-editible ul li a:hover{background:#13ac8f;border-color:#13ac8f}.blog_default-theme-v5 .mi-section-content{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v5 .mi-section-content p{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v5 .mi-section-content h2{font-size:36px;letter-spacing:1px;font-weight:700}.blog_default-theme-v5 .mi-section-content .svgMap .svg-holder{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v5 .mi-section-content .svgMap .svg-holder::before{background-image:radial-gradient(#13ac8f 20%, transparent 20%),radial-gradient(#13ac8f 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v5 .mi-section-content .svgMap .svg-holder::after{background-image:radial-gradient(#13ac8f 20%, transparent 20%),radial-gradient(#13ac8f 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v5 .mi-section-content .comparebtn a,.blog_default-theme-v5 .mi-section-content .comparebtn span{color:#13ac8f;border:2px solid #13ac8f}.blog_default-theme-v5 .mi-section-content .comparebtn a:hover,.blog_default-theme-v5 .mi-section-content .comparebtn span:hover{background:#13ac8f}.blog_default-theme-v5 .footer{background:#212837}.blog_default-theme-v6 .header-section{background:#212837}.blog_default-theme-v6 .header-section .fixed-top{background:#212837}.blog_default-theme-v6 .header-section .fixed-top ul .nav-item.active a{color:#4094a9}.blog_default-theme-v6 .header-section .fixed-top ul .nav-item.active a:after{background:#4094a9}.blog_default-theme-v6 .header-section .fixed-top ul .nav-item:hover a{color:#4094a9}.blog_default-theme-v6 .header-section .fixed-top ul .nav-item:hover a:after{background:#4094a9}.blog_default-theme-v6 .header-section a.header-button.nav-link{background:#4094a9;border:2px solid #4094a9}.blog_default-theme-v6 .header-section nav.header.navbar.navbar-expand-lg.navbar-dark.bg-ligth.active{top:0;background:#212837}.blog_default-theme-v6 .home-section-top .group-editible{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v6 .home-section-top .group-editible::before{background-image:radial-gradient(#4094a9 20%, transparent 20%),radial-gradient(#4094a9 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v6 .home-section-top .group-editible::after{background-image:radial-gradient(#4094a9 20%, transparent 20%),radial-gradient(#4094a9 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v6 .home-section-top .group-editible ul li a:hover{background:#4094a9;border-color:#4094a9}.blog_default-theme-v6 .mi-section-content{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v6 .mi-section-content p{font-size:16px;letter-spacing:.8px;line-height:30px}.blog_default-theme-v6 .mi-section-content h2{font-size:36px;letter-spacing:1px;font-weight:700}.blog_default-theme-v6 .mi-section-content .svgMap .svg-holder{box-shadow:0px 0px 15px rgba(92,135,228,.2)}.blog_default-theme-v6 .mi-section-content .svgMap .svg-holder::before{background-image:radial-gradient(#4094a9 20%, transparent 20%),radial-gradient(#4094a9 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v6 .mi-section-content .svgMap .svg-holder::after{background-image:radial-gradient(#4094a9 20%, transparent 20%),radial-gradient(#4094a9 20%, transparent 20%);background-color:rgba(0,0,0,0);background-position:0px 1px,0px 1px;background-size:14px 14px;content:""}.blog_default-theme-v6 .mi-section-content .comparebtn a,.blog_default-theme-v6 .mi-section-content .comparebtn span{color:#4094a9;border:2px solid #4094a9}.blog_default-theme-v6 .mi-section-content .comparebtn a:hover,.blog_default-theme-v6 .mi-section-content .comparebtn span:hover{background:#4094a9}.blog_default-theme-v6 .footer{background:#212837}
.errro-not-found{width:100%;height:100%;color:#fff;display:flex;justify-content:center;font-size:75px;font-weight:500;background-position:center bottom;background-repeat:no-repeat;background-attachment:fixed;background-size:cover;background-color:#464646}
@font-face {
  font-family: "acquerly-icons";
  src: url(/static/fonts/acquerly-icons.c81243e1104a27bb8c4f4e7ad2c0dabd.eot);
  src: url(/static/fonts/acquerly-icons.c81243e1104a27bb8c4f4e7ad2c0dabd.eot#iefix)
      format("embedded-opentype"),
    url(/static/fonts/acquerly-icons.39db704de619543e3a0addaa0e2a6ed9.woff2) format("woff2"),
    url(/static/fonts/acquerly-icons.8262faa67f3ec072dc4a6631ff7db940.woff) format("woff"),
    url(/static/fonts/acquerly-icons.e0df21d30627bcd5d490a0077c464eba.ttf) format("truetype"),
    url(/static/media/acquerly-icons.4a75a5918501ea5d31e2218a3f0ee947.svg#acquerly-icons) format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'acquerly-icons';
    src: url('../font/acquerly-icons.svg?42688144#acquerly-icons') format('svg');
  }
}
*/

/* .demo-icon {
    font-family: "acquerly-icons";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    opacity: .8;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    font-size: 120%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3);
} */

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "acquerly-icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-2people:before {
  content: "\e800";
}
/* '' */
.icon-4people:before {
  content: "\e801";
}
/* '' */
.icon-5people:before {
  content: "\e802";
}
/* '' */
.icon-ahm:before {
  content: "\e803";
}
/* '' */
.icon-arrow-down:before {
  content: "\e804";
}
/* '' */
.icon-arrow-left:before {
  content: "\e805";
}
/* '' */
.icon-arrow-right:before {
  content: "\e806";
}
/* '' */
.icon-arrow-up:before {
  content: "\e807";
}
/* '' */
.icon-au-act:before {
  content: "\e808";
}
/* '' */
.icon-au-nsw:before {
  content: "\e809";
}
/* '' */
.icon-au-nt:before {
  content: "\e80a";
}
/* '' */
.icon-au-qld:before {
  content: "\e80b";
}
/* '' */
.icon-au-sa:before {
  content: "\e80c";
}
/* '' */
.icon-au-tas:before {
  content: "\e80d";
}
/* '' */
.icon-au-vic:before {
  content: "\e80e";
}
/* '' */
.icon-au-wa:before {
  content: "\e80f";
}
/* '' */
.icon-belong:before {
  content: "\e810";
}
/* '' */
.icon-bupa:before {
  content: "\e811";
}
/* '' */
.icon-couple:before {
  content: "\e812";
}
/* '' */
.icon-date:before {
  content: "\e813";
}
/* '' */
.icon-electricity:before {
  content: "\e814";
}
/* '' */
.icon-email:before {
  content: "\e815";
}
/* '' */
.icon-entertainment:before {
  content: "\e816";
}
/* '' */
.icon-family:before {
  content: "\e817";
}
/* '' */
.icon-female:before {
  content: "\e818";
}
/* '' */
.icon-gas-electricity:before {
  content: "\e819";
}
/* '' */
.icon-gas:before {
  content: "\e81a";
}
/* '' */
.icon-hcf:before {
  content: "\e81b";
}
/* '' */
.icon-hif:before {
  content: "\e81c";
}
/* '' */
.icon-high:before {
  content: "\e81d";
}
/* '' */
.icon-location:before {
  content: "\e81e";
}
/* '' */
.icon-long-arrow-left:before {
  content: "\e81f";
}
/* '' */
.icon-long-arrow-right:before {
  content: "\e820";
}
/* '' */
.icon-low:before {
  content: "\e821";
}
/* '' */
.icon-male:before {
  content: "\e822";
}
/* '' */
.icon-mate-communicate:before {
  content: "\e823";
}
/* '' */
.icon-medibank:before {
  content: "\e824";
}
/* '' */
.icon-medium:before {
  content: "\e825";
}
/* '' */
.icon-mobile:before {
  content: "\e826";
}
/* '' */
.icon-mobile-broadband:before {
  content: "\e827";
}
/* '' */
.icon-mobile-video:before {
  content: "\e828";
}
/* '' */
.icon-money1:before {
  content: "\e829";
}
/* '' */
.icon-money2:before {
  content: "\e82a";
}
/* '' */
.icon-money3:before {
  content: "\e82b";
}
/* '' */
.icon-money4:before {
  content: "\e82c";
}
/* '' */
.icon-money5:before {
  content: "\e82d";
}
/* '' */
.icon-more-data:before {
  content: "\e82e";
}
/* '' */
.icon-nib:before {
  content: "\e82f";
}
/* '' */
.icon-no:before {
  content: "\e830";
}
/* '' */
.icon-no-insurance:before {
  content: "\e831";
}
/* '' */
.icon-no-pervious-internet:before {
  content: "\e832";
}
/* '' */
.icon-nothanks:before {
  content: "\e833";
}
/* '' */
.icon-not-sure:before {
  content: "\e834";
}
/* '' */
.icon-optus:before {
  content: "\e835";
}
/* '' */
.icon-other:before {
  content: "\e836";
}
/* '' */
.icon-other-health-insurance:before {
  content: "\e837";
}
/* '' */
.icon-own:before {
  content: "\e838";
}
/* '' */
.icon-own-internet:before {
  content: "\e839";
}
/* '' */
.icon-plus:before {
  content: "\e83a";
}
/* '' */
.icon-price:before {
  content: "\e83b";
}
/* '' */
.icon-quality-reliability:before {
  content: "\e83c";
}
/* '' */
.icon-rent:before {
  content: "\e83d";
}
/* '' */
.icon-rent-internet:before {
  content: "\e83e";
}
/* '' */
.icon-search:before {
  content: "\e83f";
}
/* '' */
.icon-shared:before {
  content: "\e840";
}
/* '' */
.icon-single:before {
  content: "\e841";
}
/* '' */
.icon-speed:before {
  content: "\e842";
}
/* '' */
.icon-telstra:before {
  content: "\e843";
}
/* '' */
.icon-tgp:before {
  content: "\e844";
}
/* '' */
.icon-unsure:before {
  content: "\e845";
}
/* '' */
.icon-unsure-data:before {
  content: "\e846";
}
/* '' */
.icon-user:before {
  content: "\e847";
}
/* '' */
.icon-virgin:before {
  content: "\e848";
}
/* '' */
.icon-vodafone:before {
  content: "\e849";
}
/* '' */
.icon-yes:before {
  content: "\e84a";
}
/* '' */

.input-box__field{margin:0;font-family:inherit;font-weight:500;color:#000;font-size:13px !important;line-height:inherit;padding:5px;width:-webkit-fill-available !important;box-sizing:border-box !important;border-radius:5px !important;border:1px solid #ced4da;margin-bottom:5px !important;height:60px !important;min-width:100%}.input-box__field:focus{outline:none !important}.input-box__field--error{border:1px solid #db0020 !important}.input-box__field--survey{font-size:18px !important;font-weight:500}.input-box__field::-webkit-input-placeholder{font-size:15px !important;font-weight:500}.input-box__field::-moz-placeholder{font-size:15px !important;font-weight:500}.input-box__field:-ms-input-placeholder{font-size:15px !important;font-weight:500}.input-box__field::placeholder{font-size:15px !important;font-weight:500}.mat-tooltip.tooltip{background-color:#00008b;font-size:12px}.search-autolife{position:absolute;top:13px;right:10px;border:none;background:#a022f5;color:#fff;padding:7px;border-radius:5px;text-transform:uppercase;font-size:14px;font-weight:600;letter-spacing:1px}.search-autolife:focus{outline:none}.vehicle-detail{display:flex;flex-wrap:wrap;border:1px solid #fff;border-radius:5px;margin:10px 0px;background:rgba(160,34,245,.6784313725)}.vehicle-detail li{list-style:none;flex:0 0 50%;max-width:50%;color:#fff;text-align:left;padding:5px;border-bottom:1px solid #fff;word-wrap:break-word}.vehicle-detail li strong{display:inline-block;width:100%}.vehicle-detail li:nth-child(2n+2){border-left:1px solid #fff}.vehicle-detail li:nth-last-child(1){border-bottom:none}.vehicle-detail li:nth-last-child(2){border-bottom:none}.circular-loader{position:absolute;top:6px;right:0}.circular-loader svg{width:50px;height:50px}
.error-container{width:100%}.error-container__text{color:#ef566d;padding-bottom:7px;font-size:14px;font-weight:normal;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:normal;position:relative;margin:0 5px 0 5px}.error-container__text_image{height:14px;padding-top:1px;margin-right:6px;margin-bottom:4px}span.error-container__text.dateErrror{margin-left:-33px}
.select-box{display:flex;flex-direction:column;width:100%;margin:6px 0 6px 0}.select-box__label{color:themed("black_color")}.select-box__field{border:1px solid #ced4da;border-radius:5px;padding:10px 35px 10px 10px;min-height:50px;font-size:13px;font-weight:500;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:url(/static/media/down-arrow.4f01fa2aad6b8dc0bcf9bbc6f6e94055.svg) no-repeat 98.5% 9px #fff !important;background-size:10px 30px !important;color:#7c7d7d}.select-box__field:focus{background-color:themed("white_color");border:1px solid themed("input_field__focus_border");outline:0}.select-box__field--error{border:1px solid themed("error_color")}.customDropdown-default-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-default-theme_span{background-color:#b6e4db !important;color:#108c74 !important;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-default-theme_span:hover{border:2px solid #fff !important}.customDropdown-default-theme_span_selected{background-color:#19ad91 !important;color:#fff !important}.customDropdown-default-theme_span_selected:hover{color:#fff !important}.customDropdown-default-theme_span_label{padding:4px;font-weight:500;order:2}.customDropdown-default-theme_span_icon{background:#abdcd3;width:100%;align-items:center;display:flex;justify-content:center;color:#158e77 !important;padding:1px}.customDropdown-default-theme_span_icon_selected{background-color:#15987f !important;color:#fff !important}.customDropdown-default-theme_span.effect2{position:relative;transition:.1s}.customDropdown-default-theme_span.effect2:before,.customDropdown-default-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-default-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-default-theme img.ddlIconImage{height:30px}.customDropdown-default-theme span.icon-span-main.active{color:#fff !important}.customDropdown-default-theme span.icon-span-main{color:#15987f !important}.customDropdown-default-theme span.icon-span-main:hover{color:#fff}.customDropdown-first-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-first-theme_span{background-color:#becde8;color:#091069;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-first-theme_span .icon-span-main{margin-top:5px}.customDropdown-first-theme_span:hover{border:2px solid #fff !important}.customDropdown-first-theme_span_selected{background-color:#1b283f;color:#fff}.customDropdown-first-theme_span_selected:hover{color:#fff}.customDropdown-first-theme_span_selected:hover span{color:#fff !important}.customDropdown-first-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:0px}.customDropdown-first-theme_span_icon{background:#8aa2cc;width:100%;align-items:center;display:flex;justify-content:center;color:#22324e;padding:1px}.customDropdown-first-theme_span_icon_selected{background-color:#1b283f;color:#fff}.customDropdown-first-theme_span.effect2{position:relative;transition:.1s}.customDropdown-first-theme_span.effect2:before,.customDropdown-first-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-first-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-first-theme img.ddlIconImage{height:30px}.customDropdown-first-theme span.icon-span-main.active{color:#fff}.customDropdown-first-theme span.icon-span-main{color:#1b283f}.customDropdown-first-theme span.icon-span-main:hover{color:#fff}.customDropdown-second-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-second-theme_span{background-color:#e4e3ff;color:#5753c5;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-second-theme_span:hover{border:2px solid #fff !important}.customDropdown-second-theme_span_selected{background-color:#7773fa;color:#fff}.customDropdown-second-theme_span_selected:hover{color:#fff}.customDropdown-second-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:5px}.customDropdown-second-theme_span_icon{background:#cccbf9;width:100%;align-items:center;display:flex;justify-content:center;color:#7471da;padding:1px}.customDropdown-second-theme_span_icon_selected{background-color:#7773fa;color:#fff}.customDropdown-second-theme_span.effect2{position:relative;transition:.1s}.customDropdown-second-theme_span.effect2:before,.customDropdown-second-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-second-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-second-theme img.ddlIconImage{height:30px}.customDropdown-second-theme span.icon-span-main.active{color:#fff}.customDropdown-second-theme span.icon-span-main{color:#7773fa}.customDropdown-second-theme span.icon-span-main:hover{color:#fff}.customDropdown-third-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-third-theme_span{background-color:#d2e8ec;color:#095669;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-third-theme_span:hover{border:2px solid #fff !important}.customDropdown-third-theme_span_selected{background-color:#4094a9;color:#fff}.customDropdown-third-theme_span_selected:hover{color:#fff}.customDropdown-third-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:5px}.customDropdown-third-theme_span_icon{background:#bbdbe2;width:100%;align-items:center;display:flex;justify-content:center;color:#327282}.customDropdown-third-theme_span_icon_selected{background-color:#357b8c;color:#fff}.customDropdown-third-theme_span.effect2{position:relative;transition:.1s}.customDropdown-third-theme_span.effect2:before,.customDropdown-third-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-third-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-third-theme img.ddlIconImage{height:30px}.customDropdown-third-theme span.icon-span-main.active{color:#fff}.customDropdown-third-theme span.icon-span-main{color:#357b8c}.customDropdown-third-theme span.icon-span-main:hover{color:#fff}.customDropdown-fourth-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-fourth-theme_span{background-color:#edd;color:#eb3c33;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-fourth-theme_span:hover{border:2px solid #fff !important}.customDropdown-fourth-theme_span_selected{background-color:#ff4e44;color:#fff}.customDropdown-fourth-theme_span_selected:hover{color:#fff}.customDropdown-fourth-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:5px}.customDropdown-fourth-theme_span_icon{background:#bbdbe2;width:100%;align-items:center;display:flex;justify-content:center;color:#ff4e44}.customDropdown-fourth-theme_span_icon_selected{background-color:#ff4e44;color:#fff}.customDropdown-fourth-theme_span.effect2{position:relative;transition:.1s}.customDropdown-fourth-theme_span.effect2:before,.customDropdown-fourth-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-fourth-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-fourth-theme img.ddlIconImage{height:30px}.customDropdown-fourth-theme span.icon-span-main.active{color:#fff}.customDropdown-fourth-theme span.icon-span-main{color:#ff4e44}.customDropdown-fourth-theme span.icon-span-main:hover{color:#fff}.customDropdown-fifth-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-fifth-theme_span{background-color:#edd;color:#f47621;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-fifth-theme_span:hover{border:2px solid #fff !important}.customDropdown-fifth-theme_span_selected{background-color:#ff771d;color:#fff}.customDropdown-fifth-theme_span_selected:hover{color:#fff}.customDropdown-fifth-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:5px}.customDropdown-fifth-theme_span_icon{background:#bbdbe2;width:100%;align-items:center;display:flex;justify-content:center;color:#f47621}.customDropdown-fifth-theme_span_icon_selected{background-color:#f47621;color:#fff}.customDropdown-fifth-theme_span.effect2{position:relative;transition:.1s}.customDropdown-fifth-theme_span.effect2:before,.customDropdown-fifth-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-fifth-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-fifth-theme img.ddlIconImage{height:30px}.customDropdown-fifth-theme span.icon-span-main.active{color:#fff}.customDropdown-fifth-theme span.icon-span-main{color:#f47621}.customDropdown-fifth-theme span.icon-span-main:hover{color:#fff}.customDropdown-sixth-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-sixth-theme_span{background-color:#ead1ff;color:#5c0f8b;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column;border:1px solid #dbc2ff}.customDropdown-sixth-theme_span:hover{border:2px solid #fff !important}.customDropdown-sixth-theme_span_selected{background-color:#5c0f8b;color:#fff}.customDropdown-sixth-theme_span_selected:hover{color:#fff}.customDropdown-sixth-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:5px}.customDropdown-sixth-theme_span_icon{background:#bbdbe2;width:100%;align-items:center;display:flex;justify-content:center;color:#5c0f8b}.customDropdown-sixth-theme_span_icon_selected{background-color:#5c0f8b;color:#fff}.customDropdown-sixth-theme_span.effect2{position:relative;transition:.1s}.customDropdown-sixth-theme_span.effect2:before,.customDropdown-sixth-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-sixth-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-sixth-theme img.ddlIconImage{height:30px}.customDropdown-sixth-theme span.icon-span-main.active{color:#fff}.customDropdown-sixth-theme span.icon-span-main{color:#5c0f8b}.customDropdown-sixth-theme span.icon-span-main:hover{color:#fff}.customDropdown-seventh-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-seventh-theme_span{background-color:#1b283f;color:#fff;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column;border:1px solid #dbc2ff}.customDropdown-seventh-theme_span:hover{background-color:#fbc417;color:#1b283f;border:2px solid #fbc417 !important}.customDropdown-seventh-theme_span_selected{background-color:#fbc417;color:#1b283f}.customDropdown-seventh-theme_span_selected:hover{color:#1b283f}.customDropdown-seventh-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:5px}.customDropdown-seventh-theme_span_icon{background:#1b283f;width:100%;align-items:center;display:flex;justify-content:center;color:#fff}.customDropdown-seventh-theme_span_icon_selected{background-color:#fbc417;color:#1b283f}.customDropdown-seventh-theme_span.effect2{position:relative;transition:.1s}.customDropdown-seventh-theme_span.effect2:before,.customDropdown-seventh-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-seventh-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-seventh-theme img.ddlIconImage{height:30px}.customDropdown-seventh-theme span.icon-span-main{color:#fff}.customDropdown-seventh-theme span.icon-span-main:hover{color:#1b283f}.customDropdown-eighth-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-eighth-theme_span{background-color:#fff;color:#000;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-eighth-theme_span:hover{background-color:#cd232e;color:#fff;border:2px solid #fff !important}.customDropdown-eighth-theme_span_selected{background-color:#cd232e;color:#fff}.customDropdown-eighth-theme_span_selected:hover{color:#fff}.customDropdown-eighth-theme_span_label{padding:4px;font-weight:500;order:2}.customDropdown-eighth-theme_span_icon{background:#cac8c8;width:100%;align-items:center;display:flex;justify-content:center;color:#000;padding:1px}.customDropdown-eighth-theme_span_icon_selected{background-color:#cd232e;color:#fff}.customDropdown-eighth-theme_span.effect2{position:relative;transition:.1s}.customDropdown-eighth-theme_span.effect2:before,.customDropdown-eighth-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-eighth-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-eighth-theme img.ddlIconImage{height:30px}.customDropdown-eighth-theme span.icon-span-main.active{color:#fff}.customDropdown-eighth-theme span.icon-span-main{color:#000}.customDropdown-eighth-theme span.icon-span-main:hover{color:#fff}.customDropdown-ninth-theme{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.customDropdown-ninth-theme_span{background-color:#00467f;color:#fff;min-height:124px;width:124px;border-radius:4px;justify-content:normal;align-items:center;display:flex;margin:10px 10px 0 10px;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column}.customDropdown-ninth-theme_span:hover{background-color:#e97d00;color:#00467f}.customDropdown-ninth-theme_span_selected{background-color:#e97d00;color:#00467f !important}.customDropdown-ninth-theme_span_selected:hover{color:#00467f}.customDropdown-ninth-theme_span_label{padding:4px;font-weight:500;order:2;font-size:16px;font-weight:500;top:5px}.customDropdown-ninth-theme_span_icon{width:100%;align-items:center;display:flex;justify-content:center;color:#fff}.customDropdown-ninth-theme_span_icon_selected{background-color:#e97d00;color:#00467f !important}.customDropdown-ninth-theme_span_icon:hover{color:#00467f !important}.customDropdown-ninth-theme_span.effect2{position:relative;transition:.1s}.customDropdown-ninth-theme_span.effect2:before,.customDropdown-ninth-theme_span.effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:50%;top:80%;max-width:300px;background:#777;-webkit-box-shadow:0 15px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 15px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg)}.customDropdown-ninth-theme_span.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto}.customDropdown-ninth-theme img.ddlIconImage{height:30px}.customDropdown-ninth-theme span.icon-span-main.active{color:#00467f}.customDropdown-ninth-theme span.icon-span-main{color:#fff}.customDropdown-ninth-theme span.icon-span-main:hover{color:#00467f !important}
.date-box__field{margin:0;font-family:inherit;font-size:13px;font-weight:500;line-height:inherit;padding:5px;color:#7c7d7d;width:-webkit-fill-available;box-sizing:unset;border-top-right-radius:5px;border-bottom-right-radius:5px;border:1px solid #ced4da;border-left:none;margin-bottom:5px;height:45px}.date-box__field:focus{background:themed("input_focus");outline:none}.date-box__field:hover{outline:none !important}.date-box__field--error{border:1px solid #db0020 !important}.date-box__field--survey{font-size:16px !important;font-weight:500}.date-box__field::-webkit-input-placeholder{font-size:15px !important;font-weight:500}.date-box__field::-moz-placeholder{font-size:15px !important;font-weight:500}.date-box__field:-ms-input-placeholder{font-size:15px !important;font-weight:500}.date-box__field::placeholder{font-size:15px !important;font-weight:500}.react-datepicker-wrapper{display:flex !important}.date-box__field{width:100%}.react-datepicker-wrapper{height:57px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .input_date .date-box__field{text-align:left !important;background:#fff !important}
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  margin-left: -8px;
  position: absolute;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  border-top: none;
  border-bottom-color: #f0f0f0;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  bottom: 0;
  margin-bottom: -8px;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  border-bottom: none;
  border-top-color: #fff;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  bottom: -1px;
  border-top-color: #aeaeae;
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time {
  border-radius: 0.3rem;
}

.react-datepicker--time-only .react-datepicker__time-box {
  border-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}

.react-datepicker-popper[data-placement^="bottom"] {
  margin-top: 10px;
}

.react-datepicker-popper[data-placement="bottom-end"] .react-datepicker__triangle, .react-datepicker-popper[data-placement="top-end"] .react-datepicker__triangle {
  left: auto;
  right: 50px;
}

.react-datepicker-popper[data-placement^="top"] {
  margin-bottom: 10px;
}

.react-datepicker-popper[data-placement^="right"] {
  margin-left: 8px;
}

.react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}

.react-datepicker-popper[data-placement^="left"] {
  margin-right: 8px;
}

.react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  padding-top: 8px;
  position: relative;
}

.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 2px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  background: none;
  line-height: 1.7rem;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  width: 0;
  padding: 0;
  border: 0.45rem solid transparent;
  z-index: 1;
  height: 10px;
  width: 10px;
  text-indent: -999em;
  overflow: hidden;
}

.react-datepicker__navigation--previous {
  left: 10px;
  border-right-color: #ccc;
}

.react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__navigation--previous--disabled, .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--next {
  right: 10px;
  border-left-color: #ccc;
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 80px;
}

.react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__navigation--next--disabled, .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__navigation--years-previous {
  top: 4px;
  border-top-color: #ccc;
}

.react-datepicker__navigation--years-previous:hover {
  border-top-color: #b3b3b3;
}

.react-datepicker__navigation--years-upcoming {
  top: -4px;
  border-bottom-color: #ccc;
}

.react-datepicker__navigation--years-upcoming:hover {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year-container {
  margin: 0.4rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.react-datepicker__year-container-text {
  display: inline-block;
  cursor: pointer;
  flex: 1 0 30%;
  width: 12px;
  padding: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}

.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}

.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: 85px;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"] {
  -moz-appearance: textfield;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}

.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -72px;
  top: 0;
}

.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + (1.7rem / 2));
  overflow-y: scroll;
  padding-right: 0px;
  padding-left: 0px;
  width: 100%;
  box-sizing: content-box;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day-names,
.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__month--selected, .react-datepicker__month--in-selecting-range, .react-datepicker__month--in-range,
.react-datepicker__quarter--selected,
.react-datepicker__quarter--in-selecting-range,
.react-datepicker__quarter--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__month--selected:hover, .react-datepicker__month--in-selecting-range:hover, .react-datepicker__month--in-range:hover,
.react-datepicker__quarter--selected:hover,
.react-datepicker__quarter--in-selecting-range:hover,
.react-datepicker__quarter--in-range:hover {
  background-color: #1d5d90;
}

.react-datepicker__month--disabled,
.react-datepicker__quarter--disabled {
  color: #ccc;
  pointer-events: none;
}

.react-datepicker__month--disabled:hover,
.react-datepicker__quarter--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text {
  cursor: pointer;
}

.react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today {
  font-weight: bold;
}

.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}

.react-datepicker__day--highlighted:hover,
.react-datepicker__month-text--highlighted:hover,
.react-datepicker__quarter-text--highlighted:hover {
  background-color: #32be3f;
}

.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1 {
  color: magenta;
}

.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2 {
  color: green;
}

.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
.react-datepicker__month-text--selected:hover,
.react-datepicker__month-text--in-selecting-range:hover,
.react-datepicker__month-text--in-range:hover,
.react-datepicker__quarter-text--selected:hover,
.react-datepicker__quarter-text--in-selecting-range:hover,
.react-datepicker__quarter-text--in-range:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff;
}

.react-datepicker__day--keyboard-selected:hover,
.react-datepicker__month-text--keyboard-selected:hover,
.react-datepicker__quarter-text--keyboard-selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--in-selecting-range ,
.react-datepicker__month-text--in-selecting-range ,
.react-datepicker__quarter-text--in-selecting-range {
  background-color: rgba(33, 107, 165, 0.5);
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range , .react-datepicker__month--selecting-range
.react-datepicker__month-text--in-range , .react-datepicker__month--selecting-range
.react-datepicker__quarter-text--in-range {
  background-color: #f0f0f0;
  color: #000;
}

.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled {
  cursor: default;
  color: #ccc;
}

.react-datepicker__day--disabled:hover,
.react-datepicker__month-text--disabled:hover,
.react-datepicker__quarter-text--disabled:hover {
  background-color: transparent;
}

.react-datepicker__month-text.react-datepicker__month--selected:hover, .react-datepicker__month-text.react-datepicker__month--in-range:hover, .react-datepicker__month-text.react-datepicker__quarter--selected:hover, .react-datepicker__month-text.react-datepicker__quarter--in-range:hover,
.react-datepicker__quarter-text.react-datepicker__month--selected:hover,
.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,
.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,
.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover {
  background-color: #216ba5;
}

.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover {
  background-color: #f0f0f0;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
}

.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}

.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-top-color: #ccc;
  float: right;
  margin-left: 20px;
  top: 8px;
  position: relative;
  border-width: 0.45rem;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}

.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0px 6px 0px 0px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "\00d7";
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}

.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}

@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}

.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__portal .react-datepicker__navigation {
  border: 0.81rem solid transparent;
}

.react-datepicker__portal .react-datepicker__navigation--previous {
  border-right-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--previous--disabled, .react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__portal .react-datepicker__navigation--next {
  border-left-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--next--disabled, .react-datepicker__portal .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}

.file-uploads__field{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;padding:5px;background-color:#fff;width:97%;box-sizing:border-box;border-radius:5px;border:1px solid #ced4da;margin-bottom:5px;height:35px}.file-uploads__field:focus{background:themed("input_focus");border:1px solid #007fa3;outline:0}.file-uploads__field--error{border:1px solid #db0020}
.textarea-box__field{margin:0;font-family:inherit;font-size:13px;font-weight:500;line-height:inherit;padding:5px;width:-webkit-fill-available;box-sizing:border-box;border-radius:2px !important;border:1px solid #ced4da;margin-bottom:5px !important}.textarea-box__field:focus{background:themed("input_focus");border:1px solid #007fa3;outline:none !important}.textarea-box__field--error{border:1px solid #db0020 !important}.textarea-box__field--survey{font-size:18px;font-weight:500}.textarea-box__field::-webkit-input-placeholder{font-size:15px !important;font-weight:500}.textarea-box__field::-moz-placeholder{font-size:15px !important;font-weight:500}.textarea-box__field:-ms-input-placeholder{font-size:15px !important;font-weight:500}.textarea-box__field::placeholder{font-size:15px !important;font-weight:500}#w3mission{min-height:40px}textarea.textarea-box__field--survey{width:100%;box-sizing:border-box}
.input-box__field{margin:0;font-family:inherit;font-size:13px;font-weight:500;line-height:inherit;padding:5px;width:97%;box-sizing:unset;border-radius:5px !important;border:1px solid #ced4da;margin-bottom:2px !important;height:35px}.input-box__field:focus{background:themed("input_focus");border:1px solid #007fa3;outline:0}.input-box__field--error{border:1px solid #db0020 !important}.input-box__field--survey{font-size:18px !important;font-weight:500}.input-box__field::-webkit-input-placeholder{font-size:15px !important;font-weight:500}.input-box__field::-moz-placeholder{font-size:15px !important;font-weight:500}.input-box__field:-ms-input-placeholder{font-size:15px !important;font-weight:500}.input-box__field::placeholder{font-size:15px !important;font-weight:500}
.react-autosuggest__container{position:relative}.react-autosuggest__input{width:100%;height:55px;padding:10px 10px 10px 5px;font-weight:300;font-size:16px;border:none;font-size:18px !important;font-weight:500}.react-autosuggest__input::-webkit-input-placeholder{color:#7a7a7a;font-size:16px;font-weight:400}.react-autosuggest__input::-moz-placeholder{color:#7a7a7a;font-size:16px;font-weight:400}.react-autosuggest__input:-ms-input-placeholder{color:#7a7a7a;font-size:16px;font-weight:400}.react-autosuggest__input:-moz-placeholder{color:#7a7a7a;font-size:16px;font-weight:400}.react-autosuggest__input--focused{outline:none}.react-autosuggest__input--open{border-bottom-left-radius:0;border-bottom-right-radius:0}.react-autosuggest__suggestions-container{display:none}.react-autosuggest__suggestions-container--open{display:block;position:absolute;top:51px;width:300px;border:1px solid #aaa;background-color:#fff;font-family:Helvetica,sans-serif;font-weight:300;font-size:16px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;z-index:2}.react-autosuggest__suggestions-list{margin:0;padding:0;list-style-type:none}.react-autosuggest__suggestion{cursor:pointer;padding:10px 20px}.react-autosuggest__suggestion--highlighted{background-color:#ddd}.inputContainer{position:relative;border-radius:4px;display:flex;justify-content:center;align-items:center}.icon{position:absolute;top:5px;left:10px;width:24px;height:24px}
.base-card{width:100%;overflow:auto;height:100%;position:fixed;left:0px;top:0px;background:rgba(0,0,0,.7);z-index:1131;display:flex;align-items:center;justify-content:center;padding-top:40px;padding-bottom:40px;text-align:center}.base-card .ProgressLoader{background:#fff;width:600px;padding:50px;border-radius:7px}.base-card .ProgressLoader h2{margin-bottom:40px}.base-card .ProgressLoader .progressGroup{display:flex;text-align:left;padding:5px 0px}.base-card .ProgressLoader .progressGroup label{max-width:50%;flex:0 0 50%;margin-bottom:0px}.base-card .ProgressLoader .progressGroup .progressGroupBar{max-width:50%;flex:0 0 50%;padding-right:30px;position:relative}.base-card .ProgressLoader .progressGroup .progressGroupBar .MuiLinearProgress-root{height:7px;border-radius:5px;margin-top:10px}.base-card .ProgressLoader .progressGroup .progressGroupBar .MuiLinearProgress-root .MuiLinearProgress-colorPrimary{background-color:rgba(19,172,143,.3)}.base-card .ProgressLoader .progressGroup .progressGroupBar .MuiLinearProgress-root .MuiLinearProgress-barColorPrimary{background-color:#13ac8f}.base-card .ProgressLoader .progressGroup .progressGroupBar .StatusIcons{position:absolute;right:0px;top:0px;width:20px;height:20px}.base-card .ProgressLoader .progressGroup .progressGroupBar .StatusIcons img{max-width:100%}.base-card .ProgressLoader .progressGroup .progressGroupBar .StatusIcons .card-Input{border:2px solid #c5c5c5 !important;color:#000;padding-left:10px !important;margin:0;font-family:inherit;font-size:13px;font-weight:500;line-height:inherit;border-radius:5px !important;margin-bottom:2px !important;height:35px;overflow:visible;min-width:100%;box-sizing:border-box !important}.base-card .ProgressLoader .progressBtnBar{display:inline-block;width:100%;text-align:center;margin-top:30px}.base-card .ProgressLoader .progressBtnBar span{background:#13ac8f;color:#fff;padding:15px 40px;display:inline-block;font-weight:500;border-radius:5px;text-decoration:none;min-width:175px}.OtpPopup{width:420px;background:#fff;max-width:100%;border-radius:7px;overflow:hidden}.OtpPopup .otpHeader{position:relative;display:inline-block;width:100%;padding:15px 35px;text-align:center;background-color:#f47621}.OtpPopup .otpHeader:before{position:absolute;left:0px;bottom:0px;height:50px;width:100%;content:"";background-color:#fff}.OtpPopup .otpHeader .clossIcon{position:absolute;right:20px;top:0px;font-size:24px}.OtpPopup .otpHeader .clossIcon:hover{cursor:pointer}.OtpPopup .otpHeader h2{font-size:18px;margin-bottom:0px;color:#fff;font-weight:600;letter-spacing:.6px}.OtpPopup .otpHeader .phoneIcon{height:130px;position:relative;z-index:1;margin-top:20px}.OtpPopup .otpBody{padding:0px 35px 15px 35px;display:inline-block;width:100%;text-align:center}.OtpPopup .otpBody p{font-size:16px;color:#717171;line-height:normal}.OtpPopup .otpBody label{width:100%;font-size:14px;color:#8b8b8b;margin-top:10px}.OtpPopup .otpBody input{font-size:24px;height:50px;font-weight:600;text-align:center;width:45px;max-width:100%;margin:10px}.OtpPopup .otpBody .error-container{text-align:center}.OtpPopup .otpBtnBar{width:100%;padding:10px 25px 35px 25px;text-align:center}.OtpPopup .otpBtnBar .otpBtn{width:50px;background:#f47621;color:#fff;padding:0px 5px;border-radius:5px;font-size:18px;font-weight:500;margin-bottom:10px;height:50px;display:inline-flex;justify-content:center;align-items:center;border-radius:50px;border:none;box-shadow:0px 5px 5px #ffa061;transition:.2s}.OtpPopup .otpBtnBar .otpBtn:hover{background-color:#ca5608;box-shadow:0px 5px 10px #ffa061}.OtpPopup .otpBtnBar .otpBtn img{width:20px}.OtpPopup .otpBtnBar .otpTimer{margin-top:10px}.OtpPopup .otpBtnBar .otpTimer div span{font-family:inherit !important;color:#8a8a8a}.OtpPopup .otpBtnBar .otpTimer button{background:rgba(0,0,0,0) !important;color:#f47621 !important;text-decoration:underline;border:none;text-decoration:none}.OtpPopup .otpBtnBar .otpTimer button span{color:#1381ff !important}.OtpPopup .otpBtnBar .otpTimer button:hover{text-decoration:none}.base-card.progressLoading{display:flex;height:100%;justify-content:center;align-items:center;width:100%}@media(max-width: 767px){.base-card{padding:15px;padding-top:100px}.base-card .ProgressLoader{padding:15px}}@media(max-width: 480px){.base-card{display:inline-block}}
.banner-div-section .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.banner-div-section .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.banner-div-section .slider-home .carousel-item .slider-content{width:60%;float:left;text-align:left;padding-top:140px}.banner-div-section .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:58px;line-height:normal}.banner-div-section .slider-home .carousel-item .slider-content .homebtn{text-decoration:none;color:#030d40;background:#fff;border:1px solid #fff;text-transform:uppercase;font-weight:500;padding:10px 40px;margin:25px 0px;font-size:1.2rem}.banner-div-section .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}@media(max-width: 1200px){.banner-div-section .slider-home .carousel-item .slider-content h2{font-size:40px}.banner-div-section .slider-home .carousel-item .slider-content{padding-top:14%}.banner-div-section .slider-home .carousel-item .silder-image-new{bottom:-83px}.banner-div-section .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}}@media(max-width: 1199px){.banner-div-section .slider-home .homeForm{padding-top:120px;padding-bottom:20px}}@media(max-width: 992px){.banner-div-section .slider-home .carousel-item .slider-content h2{font-size:30px}.banner-div-section .slider-home .carousel-item{min-height:360px}.banner-div-section .slider-home .homeForm .homeFormInside{width:100%;padding:15px;padding-bottom:40px}}@media(max-width: 767px){.banner-div-section .slider-home .carousel-item .carousel-caption{display:block !important}.banner-div-section .slider-home .carousel-item .slider-content{width:100%;float:none;text-align:center;padding-top:20%}.banner-div-section .slider-home .carousel-item .silder-image-new{display:none}.banner-div-section .slider-home .carousel-item{min-height:auto}.banner-div-section .slider-home .carousel-item .slider-content{display:inline-block !important}.banner-div-section .slider-home .carousel-item .slider-content .lead li{text-align:left}.banner-div-section .slider-home .homeForm{display:inline-block}}@media(max-width: 480px){.banner-div-section .slider-home .carousel-item .slider-content h2{font-size:20px}.banner-div-section .slider-home .carousel-item .slider-content .lead{font-size:16px}.banner-div-section .slider-home .carousel-item .slider-content{padding-top:26%}}
.MuiDialog-paperWidthSm{width:600px}body{font-size:1rem !important;font-weight:400 !important;line-height:1.5 !important;color:#212529 !important;text-align:left !important;background-color:#fff !important}.loader-div{height:100%;text-align:center;margin:auto;padding:15%}.footer-content .img-fluid{max-height:40px}.header-main-div .navbar-light .navbar-nav .nav-link{color:#fff}.yearTagsContainer{padding:18px;background:#fff;box-shadow:0px 0px 10px #ddd;margin:15px 0px;border-radius:5px}.yearTagsContainer .birthHeading{font-size:20px;margin-bottom:30px;text-align:center}.yearTagsContainer ul{display:flex;margin:0px -7px;flex-wrap:wrap;justify-content:center}.yearTagsContainer ul li{padding:10px 7px;list-style:none}.yearTagsContainer ul li span{background:#fff;box-shadow:0px 0px 5px #ddd;padding:5px 12px;border-radius:5px;border:1px solid #fff;cursor:pointer;overflow:hidden}.yearTagsContainer ul li span:hover{background-color:#1b283f;color:#fff}.trustedBrands{display:inline-block;width:100%;padding:70px 0px 50px 0px}.trustedBrands ul{display:flex;justify-content:center;margin:0px -15px;flex-wrap:wrap}.trustedBrands ul li{list-style:none;padding:0px 15px;flex:0 0 15%;max-width:15%}.trustedBrands ul li img{max-width:100%;max-height:100px}.thankYouText{background:#fff;color:#000;padding:25px;border-radius:5px;text-align:left}.thankYouText h4{font-size:30px;font-weight:400;letter-spacing:1px;text-align:center;margin-top:10px;margin-bottom:20px;display:inline-block;width:100%}.thankYouText ol{padding-left:0px;margin-bottom:0px}.thankYouText ol li{font-size:16px;padding:15px 10px 15px 50px;letter-spacing:.5px;list-style:none;color:#404040;position:relative;border-bottom:1px solid #ccc;min-height:70px}.thankYouText ol li span{width:30px;height:30px;position:absolute;left:0px;top:15px;text-align:center;line-height:30px;background:#333;color:#fff;border-radius:50%;font-weight:bold}.thankYouText ol li:last-child{border:none}.notQualifySection{min-height:calc(100vh - 96px);padding-top:80px;background-image:none !important;background-color:#eee;padding-bottom:40px}.notQualifySection .container{height:100%;max-width:750px !important;width:100%}.notQualifySection .container .row{height:100%}.notQualifySection .container .row .col-sm-12{height:100%;display:table}.notQualifySection .container .row .col-sm-12 .descript-notQualify{display:table-cell;vertical-align:middle;text-align:center;color:#000}.notQualifySection .container .row .col-sm-12 .descript-notQualify .pageImg{margin-bottom:25px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .pageImg img{max-width:250px}.notQualifySection .container .row .col-sm-12 .descript-notQualify h1{letter-spacing:1px;font-size:50px;line-height:50px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .subText{font-size:26px;line-height:30px;width:600px;max-width:100%;margin:auto;margin-bottom:30px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer{display:inline-block;margin:auto;width:600px;max-width:100%;border:1px solid #d9d9d9;padding:40px;border-radius:5px;background:#f4f4f4;text-align:left}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer h3{color:#000}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer p{font-size:18px;color:#2b2b2b;line-height:22px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer p.desclaimerText{font-size:12px;color:#3b3b3b;margin:auto;margin-top:20px;display:inline-block}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer ul{margin:0;padding:0}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer ul li{display:inline-block;width:100%;border:1px solid #ccc;padding:15px;margin-bottom:10px;border-radius:5px;position:relative;padding-right:130px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer ul li .offer_button{position:absolute;right:15px;top:15px;text-transform:uppercase;letter-spacing:1px;color:#fff;font-size:12px;background:#cd232e;padding:10px 10px;border-radius:5px;text-decoration:none}@media(max-width: 767px){.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer{width:auto;padding:15px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer ul li{padding-right:15px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer ul li span{display:inline-block;width:100%}.notQualifySection .container .row .col-sm-12 .descript-notQualify .partnerOffer ul li .offer_button{position:relative;right:0px;top:0px;margin-top:15px;display:inline-block}.notQualifySection .container .row .col-sm-12 .descript-notQualify h1{font-size:36px;line-height:40px}.notQualifySection .container .row .col-sm-12 .descript-notQualify .subText{width:auto;font-size:20px;line-height:24px}}.layout_first-demo-default-theme .notQualifySection .button-home a{background:none;color:#13ac8f;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #13ac8f;border-radius:3px;font-weight:500}.layout_first-demo-default-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-default-theme .notQualifySection .button-home a svg path{fill:#13ac8f}.layout_first-demo-default-theme .notQualifySection .button-home a:hover{background:#13ac8f;color:#fff}.layout_first-demo-default-theme .notQualifySection .button-home a:hover svg path{fill:#fff}.layout_first-demo-default-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-default-theme .section-one-main{background:#f9f9f9}.layout_first-demo-default-theme .section-third-main{background:#f9f9f9}.layout_first-demo-default-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-default-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-default-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-default-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-default-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-default-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-default-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#13ac8f;border:2px solid #13ac8f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-default-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#13ac8f;border:2px solid #13ac8f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-default-theme .container{max-width:1420px}.layout_first-demo-default-theme .header-section{background:#13ac8f}.layout_first-demo-default-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#13ac8f !important}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-default-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-default-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-default-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-default-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#fff;color:#13ac8f}.layout_first-demo-default-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-default-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-default-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-default-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-default-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-default-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-default-theme .width80{width:80%;margin:0 auto}.layout_first-demo-default-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-default-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-default-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-default-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-default-theme ul.contact_lists li{display:flex}.layout_first-demo-default-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-default-theme .text_block{display:flex}.layout_first-demo-default-theme span.number_1{margin-right:10px}.layout_first-demo-default-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-default-theme .heading-section h2{font-weight:400;font-size:36px;line-height:36px;margin-bottom:.3rem}.layout_first-demo-default-theme .heading-section p{width:65%;margin:0px auto}.layout_first-demo-default-theme .heading-section{padding-bottom:50px}.layout_first-demo-default-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-default-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-default-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-default-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-default-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-default-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-default-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center}.layout_first-demo-default-theme .image-block{margin-bottom:15px}.layout_first-demo-default-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-default-theme .center-item{text-align:center}.layout_first-demo-default-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-default-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-default-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-default-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-default-theme .sectionone.first.bgblue{background-color:#13ac8f;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#fff;padding:130px 0%;position:relative}.layout_first-demo-default-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #13ac8f 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#13ac8f;background:#fff}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec{text-align:left}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-default-theme .sectionone.first.bg-light{background:#13ac8f !important;padding:80px 0%}.layout_first-demo-default-theme .sectionone.first.bg-light .heading-section{text-align:center;width:790px;max-width:100%;color:#fff;padding-bottom:0px}.layout_first-demo-default-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-default-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-default-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-default-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-default-theme .footer-content{background:#333;color:#ddd;padding:20px 0%}.layout_first-demo-default-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-default-theme .footer-content .custome-links{margin-top:10px;display:inline-block;width:100%}.layout_first-demo-default-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-default-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-default-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-default-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-default-theme .footer-content .img-fluid{display:block}.layout_first-demo-default-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-default-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-default-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-default-theme .header-section.pageScroll .fixed-top{background:#13ac8f !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-default-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-default-theme .block_wrapper h2{text-align:center;font-weight:500;background:#13ac8f;padding:15px 0;color:#fff}.layout_first-demo-default-theme div#fragment-1{padding:0px 20px}.layout_first-demo-default-theme .header-section.headerInside .fixed-top{background-color:#13ac8f !important}.layout_first-demo-default-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-default-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-default-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-default-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-default-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#13ac8f;padding:30px 0px 20px 0}.layout_first-demo-default-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-default-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-default-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-default-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#13ac8f}.layout_first-demo-default-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-default-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-default-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-default-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-default-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-default-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-default-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-default-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-default-theme .innerpageheader h4{font-size:35px}.layout_first-demo-default-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #13ac8f;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-default-theme .bottom-button-new a.mover:hover{background:#13ac8f;color:#fff}.layout_first-demo-default-theme .bottom-button-new{display:inline-block}.layout_first-demo-default-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-default-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-default-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-default-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-default-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-default-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-default-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-default-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-default-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-default-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-default-theme ul.listing-1 li i{background:#13ac8f;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-default-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-default-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-default-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-default-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-default-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-default-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-default-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-default-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-default-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#13ac8f}.layout_first-demo-default-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-default-theme span.mendatory{color:#b71515}.layout_first-demo-default-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-default-theme .lead li{list-style:none;position:relative;padding-left:45px;margin:5px 0px}.layout_first-demo-default-theme .lead li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#fff}.layout_first-demo-default-theme .pageTitle{background:#13ac8f;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-default-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-default-theme .innerPageContent{padding:50px 0px}.layout_first-demo-default-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-default-theme .form-heading{margin-bottom:40px}.layout_first-demo-default-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-default-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-default-theme .form-control{font-weight:300}.layout_first-demo-default-theme .form-control::placeholder{color:#ccc}.layout_first-demo-default-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-default-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-default-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-default-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-default-theme .section-third-main .container{max-width:1240px}.layout_first-demo-default-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-default-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-default-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-default-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-default-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-default-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#13ac8f}.layout_first-demo-default-theme .contactFields{margin-top:50px}.layout_first-demo-default-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-default-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-default-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-default-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-default-theme .contactFields ul li a:hover,.layout_first-demo-default-theme .contactFields ul li a:hover span{color:#13ac8f;text-decoration:none}.layout_first-demo-default-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;box-shadow:15px 15px 0px #eee}.layout_first-demo-default-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-default-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-default-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-default-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-default-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-default-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-default-theme .button-home a{background:#13ac8f;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-default-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-default-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-default-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-default-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block}.layout_first-demo-default-theme a.homebtn.section-4:hover{background:#fff;color:#13ac8f}.layout_first-demo-default-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-default-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-default-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-default-theme .newSurveyForm::before{position:absolute;height:250px;background:#13ac8f;top:0px;left:0px;width:100%;content:""}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#13ac8f}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #13ac8f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#13ac8f;letter-spacing:1px;border-radius:2px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#13ac8f;border-color:#13ac8f}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#13ac8f;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-default-theme .newSurveyForm button.btn.btn-submit{border:2px solid #13ac8f;color:#13ac8f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-default-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-default-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px;border-color:#13ac8f}.layout_first-demo-default-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #13ac8f 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-default-theme .carousel-item{height:100vh}.layout_first-demo-default-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-default-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-default-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-default-theme .newSurveyForm{text-align:center}.layout_first-demo-default-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#3c3c3c;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#fff}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#fff}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#eaeaea;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#eaeaea;font-style:italic}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-default-theme .footer_content{color:#333232}.layout_first-demo-default-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-default-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #13ac8f;color:#fff;background:#13ac8f;margin-bottom:10px;border-radius:2px}.layout_first-demo-default-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #13ac8f;color:#13ac8f;background:#fff}.layout_first-demo-default-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-default-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-default-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-default-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #13ac8f;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-default-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-default-theme .tab{width:100%;color:#13ac8f;overflow:hidden;border-bottom:1px solid;border-color:#13ac8f}.layout_first-demo-default-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-default-theme .tab-label:hover{background:#13ac8f;color:#fff;transition:.5s}.layout_first-demo-default-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-default-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-default-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#13ac8f;cursor:pointer}.layout_first-demo-default-theme .tab-close:hover{background:#13ac8f}.layout_first-demo-default-theme .tab:last-child{border:none}.layout_first-demo-default-theme .tab input[type=checkbox]{display:none}.layout_first-demo-default-theme input:checked+.tab-label{background:#13ac8f;color:#fff}.layout_first-demo-default-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-default-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-default-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#13ac8f}.layout_first-demo-default-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-default-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-default-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#13ac8f;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#13ac8f;text-align:center}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #13ac8f;color:#13ac8f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #13ac8f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#13ac8f;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-default-theme .input-box__field--error,.layout_first-demo-default-theme .input-box__field--errord{border-color:#13ac8f !important;box-shadow:none}.layout_first-demo-default-theme .date-box__field{padding:5px 5px}.layout_first-demo-default-theme .input-box__field--survey{border-width:2px}.layout_first-demo-default-theme .input-box__field--survey:hover,.layout_first-demo-default-theme .input-box__field--survey:focus{border:solid 2px #13ac8f}.layout_first-demo-default-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-default-theme .textarea-box__field--survey:hover,.layout_first-demo-default-theme .textarea-box__field--survey:focus{border:solid 2px #13ac8f}@media(max-width: 1425px){.layout_first-demo-default-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-default-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-default-theme .container{max-width:1140px}.layout_first-demo-default-theme .container-lg{max-width:1140px}.layout_first-demo-default-theme .container-md{max-width:1140px}.layout_first-demo-default-theme .container-sm{max-width:1140px}.layout_first-demo-default-theme .container-xl{max-width:1140px}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem}.layout_first-demo-default-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-default-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-default-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-default-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-default-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-default-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-default-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-default-theme li.nav-item{margin-left:30px !important}.layout_first-demo-default-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-default-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-default-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-default-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-default-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-default-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-default-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-default-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-default-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-default-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-default-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#13ac8f !important}.layout_first-demo-default-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-default-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#13ac8f !important}.layout_first-demo-default-theme .block-multiples{padding:0px 15px}.layout_first-demo-default-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-default-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-default-theme .navbar-collapse{background-color:#13ac8f}.layout_first-demo-default-theme .lead{margin:15px 0px}.layout_first-demo-default-theme body{font-size:14px}.layout_first-demo-default-theme .heading-section h2{font-size:30px}.layout_first-demo-default-theme .single-block p{text-align:justify}.layout_first-demo-default-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-default-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-default-theme .innerPageContent{padding:40px 0px}.layout_first-demo-default-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-default-theme .footer-content{padding:20px 0px}.layout_first-demo-default-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-default-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-default-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-default-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-default-theme .heading-section h2{font-size:26px}.layout_first-demo-default-theme .heading-section p{width:100%}.layout_first-demo-default-theme .heading-section{padding-bottom:0px}.layout_first-demo-default-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-default-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-default-theme .block_wrapper h2{text-align:center;font-weight:500;background:#13ac8f;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-default-theme div#fragment-1{padding:0}.layout_first-demo-default-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-default-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-default-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-default-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-default-theme .block-multiples .row{display:flex}.layout_first-demo-default-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-default-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-default-theme .block-multiples{padding:0px 30px}.layout_first-demo-default-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-default-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-default-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-default-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-default-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-default-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-default-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-default-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-default-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-default-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-default-theme .descrioption-news{text-align:left}.layout_first-demo-default-theme .heading-section p{width:100% !important}.layout_first-demo-default-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-default-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-default-theme .pageTitle{background:#13ac8f;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-default-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-default-theme .form-heading{margin-bottom:0}.layout_first-demo-default-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-default-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-default-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-default-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-default-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-default-theme .heading-section h2{font-size:20px}.layout_first-demo-default-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-default-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-default-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-default-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-default-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-default-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-default-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-default-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-default-theme .carousel-item{height:auto}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-default-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-default-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-default-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-default-theme .descript-thankyou p{width:100%}.layout_first-demo-default-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-default-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}}@media(max-width: 992px){.layout_first-demo-default-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-default-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-default-theme img{max-width:100%}.layout_first-demo-default-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-default-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-default-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-default-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-default-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-default-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-default-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-default-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-default-theme .heading-section h2{font-size:28px}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-default-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-default-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-default-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-default-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-default-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-default-theme .contactFields{margin-top:30px}.layout_first-demo-default-theme .block-multiples{padding:0px 15px}.layout_first-demo-default-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-default-theme .contactFields ul li{font-size:14px}.layout_first-demo-default-theme .contactFields h5{font-size:18px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-default-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-default-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-default-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-default-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-default-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-default-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-default-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-default-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-default-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-default-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-default-theme .descript-thankyou p span{font-size:16px !important}}.layout_first-demo-first-theme .notQualifySection .button-home a{background:none;color:#1b283f;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #1b283f;border-radius:3px;font-weight:500}.layout_first-demo-first-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-first-theme .notQualifySection .button-home a svg path{fill:#1b283f}.layout_first-demo-first-theme .notQualifySection .button-home a:hover{background:#1b283f;color:#fff}.layout_first-demo-first-theme .notQualifySection .button-home a:hover svg path{fill:#fff}.layout_first-demo-first-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-first-theme .section-one-main{background:#f9f9f9}.layout_first-demo-first-theme .section-third-main{background:#f9f9f9}.layout_first-demo-first-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-first-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-first-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-first-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-first-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-first-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-first-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#1b283f;border:2px solid #1b283f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-first-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#1b283f;border:2px solid #1b283f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-first-theme .container{max-width:1420px}.layout_first-demo-first-theme .header-section{background:#1b283f}.layout_first-demo-first-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#1b283f !important}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-first-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-first-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-first-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-first-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#fff;color:#1b283f}.layout_first-demo-first-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-first-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-first-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-first-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-first-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-first-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-first-theme .width80{width:80%;margin:0 auto}.layout_first-demo-first-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-first-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-first-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-first-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-first-theme ul.contact_lists li{display:flex}.layout_first-demo-first-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-first-theme .text_block{display:flex}.layout_first-demo-first-theme span.number_1{margin-right:10px}.layout_first-demo-first-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-first-theme .heading-section h2{font-weight:400;font-size:36px;line-height:36px;margin-bottom:.3rem}.layout_first-demo-first-theme .heading-section p{width:65%;margin:0px auto}.layout_first-demo-first-theme .heading-section{padding-bottom:50px}.layout_first-demo-first-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-first-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-first-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-first-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-first-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-first-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-first-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center}.layout_first-demo-first-theme .image-block{margin-bottom:15px}.layout_first-demo-first-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-first-theme .center-item{text-align:center}.layout_first-demo-first-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-first-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-first-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-first-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-first-theme .sectionone.first.bgblue{background-color:#1b283f;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#fff;padding:130px 0%;position:relative}.layout_first-demo-first-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #1b283f 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#1b283f;background:#fff}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec{text-align:left}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-first-theme .sectionone.first.bg-light{background:#1b283f !important;padding:80px 0%}.layout_first-demo-first-theme .sectionone.first.bg-light .heading-section{text-align:center;width:790px;max-width:100%;color:#fff;padding-bottom:0px}.layout_first-demo-first-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-first-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-first-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-first-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-first-theme .footer-content{background:#333;color:#ddd;padding:20px 0%}.layout_first-demo-first-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-first-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-first-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-first-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-first-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-first-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-first-theme .footer-content .img-fluid{display:block}.layout_first-demo-first-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-first-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-first-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-first-theme .header-section.pageScroll .fixed-top{background:#1b283f !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-first-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-first-theme .block_wrapper h2{text-align:center;font-weight:500;background:#1b283f;padding:15px 0;color:#fff}.layout_first-demo-first-theme div#fragment-1{padding:0px 20px}.layout_first-demo-first-theme .header-section.headerInside .fixed-top{background-color:#1b283f !important}.layout_first-demo-first-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-first-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-first-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-first-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-first-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#1b283f;padding:30px 0px 20px 0}.layout_first-demo-first-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-first-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-first-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-first-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#1b283f}.layout_first-demo-first-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-first-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-first-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-first-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-first-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-first-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-first-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-first-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-first-theme .innerpageheader h4{font-size:35px}.layout_first-demo-first-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #1b283f;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-first-theme .bottom-button-new a.mover:hover{background:#1b283f;color:#fff}.layout_first-demo-first-theme .bottom-button-new{display:inline-block}.layout_first-demo-first-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-first-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-first-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-first-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-first-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-first-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-first-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-first-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-first-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-first-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-first-theme ul.listing-1 li i{background:#1b283f;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-first-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-first-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-first-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-first-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-first-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-first-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-first-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-first-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-first-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#1b283f}.layout_first-demo-first-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-first-theme span.mendatory{color:#b71515}.layout_first-demo-first-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-first-theme .lead li{list-style:none;position:relative;padding-left:45px;margin:5px 0px}.layout_first-demo-first-theme .lead li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#fff}.layout_first-demo-first-theme .pageTitle{background:#1b283f;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-first-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-first-theme .innerPageContent{padding:50px 0px}.layout_first-demo-first-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-first-theme .form-heading{margin-bottom:40px}.layout_first-demo-first-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-first-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-first-theme .form-control{font-weight:300}.layout_first-demo-first-theme .form-control::placeholder{color:#ccc}.layout_first-demo-first-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-first-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-first-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-first-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-first-theme .section-third-main .container{max-width:1240px}.layout_first-demo-first-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-first-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-first-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-first-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-first-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-first-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#1b283f}.layout_first-demo-first-theme .contactFields{margin-top:50px}.layout_first-demo-first-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-first-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-first-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-first-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-first-theme .contactFields ul li a:hover,.layout_first-demo-first-theme .contactFields ul li a:hover span{color:#1b283f;text-decoration:none}.layout_first-demo-first-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;box-shadow:15px 15px 0px #eee}.layout_first-demo-first-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-first-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-first-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-first-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-first-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-first-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-first-theme .button-home a{background:#1b283f;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-first-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-first-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-first-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-first-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block}.layout_first-demo-first-theme a.homebtn.section-4:hover{background:#fff;color:#1b283f}.layout_first-demo-first-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-first-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-first-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-first-theme .newSurveyForm::before{position:absolute;height:250px;background:#1b283f;top:0px;left:0px;width:100%;content:""}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#1b283f}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #1b283f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#1b283f;letter-spacing:1px;border-radius:2px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#1b283f;border-color:#1b283f}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#1b283f;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-first-theme .newSurveyForm button.btn.btn-submit{border:2px solid #1b283f;color:#1b283f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-first-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-first-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-first-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #1b283f 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-first-theme .carousel-item{height:100vh}.layout_first-demo-first-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-first-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-first-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-first-theme .newSurveyForm{text-align:center}.layout_first-demo-first-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#3c3c3c;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#fff}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#fff}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#eaeaea;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#eaeaea;font-style:italic}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-first-theme .footer_content{color:#333232}.layout_first-demo-first-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-first-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #1b283f;color:#fff;background:#1b283f;margin-bottom:10px;border-radius:2px}.layout_first-demo-first-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #1b283f;color:#1b283f;background:#fff}.layout_first-demo-first-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-first-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-first-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-first-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #1b283f;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-first-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-first-theme .tab{width:100%;color:#1b283f;overflow:hidden;border-bottom:1px solid;border-color:#1b283f}.layout_first-demo-first-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-first-theme .tab-label:hover{background:#1b283f;color:#fff;transition:.5s}.layout_first-demo-first-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-first-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-first-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#1b283f;cursor:pointer}.layout_first-demo-first-theme .tab-close:hover{background:#1b283f}.layout_first-demo-first-theme .tab:last-child{border:none}.layout_first-demo-first-theme .tab input[type=checkbox]{display:none}.layout_first-demo-first-theme input:checked+.tab-label{background:#1b283f;color:#fff}.layout_first-demo-first-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-first-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-first-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#1b283f}.layout_first-demo-first-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-first-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-first-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#1b283f;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#1b283f;text-align:center}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #1b283f;color:#1b283f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #1b283f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#1b283f;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-first-theme .input-box__field--error,.layout_first-demo-first-theme .input-box__field--errord{border-color:#1b283f !important;box-shadow:none}.layout_first-demo-first-theme .date-box__field{padding:5px 5px}.layout_first-demo-first-theme .input-box__field--survey{border-width:2px}.layout_first-demo-first-theme .input-box__field--survey:hover,.layout_first-demo-first-theme .input-box__field--survey:focus{border:solid 2px #1b283f}.layout_first-demo-first-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-first-theme .textarea-box__field--survey:hover,.layout_first-demo-first-theme .textarea-box__field--survey:focus{border:solid 2px #1b283f}@media(max-width: 1425px){.layout_first-demo-first-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-first-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-first-theme .container{max-width:1140px}.layout_first-demo-first-theme .container-lg{max-width:1140px}.layout_first-demo-first-theme .container-md{max-width:1140px}.layout_first-demo-first-theme .container-sm{max-width:1140px}.layout_first-demo-first-theme .container-xl{max-width:1140px}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem}.layout_first-demo-first-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-first-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-first-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-first-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-first-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-first-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-first-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-first-theme li.nav-item{margin-left:30px !important}.layout_first-demo-first-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-first-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-first-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-first-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-first-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-first-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-first-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-first-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-first-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-first-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-first-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#1b283f !important}.layout_first-demo-first-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-first-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#1b283f !important}.layout_first-demo-first-theme .block-multiples{padding:0px 15px}.layout_first-demo-first-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-first-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-first-theme .navbar-collapse{background-color:#1b283f}.layout_first-demo-first-theme .lead{margin:15px 0px}.layout_first-demo-first-theme body{font-size:14px}.layout_first-demo-first-theme .heading-section h2{font-size:30px}.layout_first-demo-first-theme .single-block p{text-align:justify}.layout_first-demo-first-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-first-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-first-theme .innerPageContent{padding:40px 0px}.layout_first-demo-first-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-first-theme .footer-content{padding:20px 0px}.layout_first-demo-first-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-first-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-first-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-first-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-first-theme .heading-section h2{font-size:26px}.layout_first-demo-first-theme .heading-section p{width:100%}.layout_first-demo-first-theme .heading-section{padding-bottom:0px}.layout_first-demo-first-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-first-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-first-theme .block_wrapper h2{text-align:center;font-weight:500;background:#1b283f;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-first-theme div#fragment-1{padding:0}.layout_first-demo-first-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-first-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-first-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-first-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-first-theme .block-multiples .row{display:flex}.layout_first-demo-first-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-first-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-first-theme .block-multiples{padding:0px 30px}.layout_first-demo-first-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-first-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-first-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-first-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-first-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-first-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-first-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-first-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-first-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-first-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-first-theme .descrioption-news{text-align:left}.layout_first-demo-first-theme .heading-section p{width:100% !important}.layout_first-demo-first-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-first-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-first-theme .pageTitle{background:#1b283f;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-first-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-first-theme .form-heading{margin-bottom:0}.layout_first-demo-first-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-first-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-first-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-first-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-first-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-first-theme .heading-section h2{font-size:20px}.layout_first-demo-first-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-first-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-first-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-first-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-first-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-first-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-first-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-first-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-first-theme .carousel-item{height:auto}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-first-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-first-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-first-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-first-theme .descript-thankyou p{width:100%}.layout_first-demo-first-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-first-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}}@media(max-width: 992px){.layout_first-demo-first-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-first-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-first-theme img{max-width:100%}.layout_first-demo-first-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-first-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-first-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-first-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-first-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-first-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-first-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-first-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-first-theme .heading-section h2{font-size:28px}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-first-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-first-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-first-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-first-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-first-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-first-theme .contactFields{margin-top:30px}.layout_first-demo-first-theme .block-multiples{padding:0px 15px}.layout_first-demo-first-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-first-theme .contactFields ul li{font-size:14px}.layout_first-demo-first-theme .contactFields h5{font-size:18px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-first-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-first-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-first-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-first-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-first-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-first-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-first-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-first-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-first-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-first-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-first-theme .descript-thankyou p span{font-size:16px !important}}.layout_first-demo-second-theme .notQualifySection .button-home a{background:none;color:#7773fa;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #7773fa;border-radius:3px;font-weight:500}.layout_first-demo-second-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-second-theme .notQualifySection .button-home a svg path{fill:#7773fa}.layout_first-demo-second-theme .notQualifySection .button-home a:hover{background:#7773fa;color:#fff}.layout_first-demo-second-theme .notQualifySection .button-home a:hover svg path{fill:#fff}.layout_first-demo-second-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-second-theme .section-one-main{background:#f9f9f9}.layout_first-demo-second-theme .section-third-main{background:#f9f9f9}.layout_first-demo-second-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-second-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-second-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-second-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-second-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-second-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-second-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#7773fa;border:2px solid #7773fa;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-second-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#7773fa;border:2px solid #7773fa;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-second-theme .container{max-width:1420px}.layout_first-demo-second-theme .header-section{background:#7773fa}.layout_first-demo-second-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#7773fa !important}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-second-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-second-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-second-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-second-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#fff;color:#7773fa}.layout_first-demo-second-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-second-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-second-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-second-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-second-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-second-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-second-theme .width80{width:80%;margin:0 auto}.layout_first-demo-second-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-second-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-second-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-second-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-second-theme ul.contact_lists li{display:flex}.layout_first-demo-second-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-second-theme .text_block{display:flex}.layout_first-demo-second-theme span.number_1{margin-right:10px}.layout_first-demo-second-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-second-theme .heading-section h2{font-weight:400;font-size:36px;line-height:36px;margin-bottom:.3rem}.layout_first-demo-second-theme .heading-section p{width:65%;margin:0px auto}.layout_first-demo-second-theme .heading-section{padding-bottom:50px}.layout_first-demo-second-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-second-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-second-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-second-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-second-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-second-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-second-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center}.layout_first-demo-second-theme .image-block{margin-bottom:15px}.layout_first-demo-second-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-second-theme .center-item{text-align:center}.layout_first-demo-second-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-second-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-second-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-second-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-second-theme .sectionone.first.bgblue{background-color:#7773fa;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#fff;padding:130px 0%;position:relative}.layout_first-demo-second-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #7773fa 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#7773fa;background:#fff}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec{text-align:left}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-second-theme .sectionone.first.bg-light{background:#7773fa !important;padding:80px 0%}.layout_first-demo-second-theme .sectionone.first.bg-light .heading-section{text-align:center;width:790px;max-width:100%;color:#fff;padding-bottom:0px}.layout_first-demo-second-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-second-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-second-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-second-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-second-theme .footer-content{background:#333;color:#fff;padding:20px 0%}.layout_first-demo-second-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-second-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-second-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-second-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-second-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-second-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-second-theme .footer-content .img-fluid{display:block}.layout_first-demo-second-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-second-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-second-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-second-theme .header-section.pageScroll .fixed-top{background:#7773fa !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-second-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-second-theme .block_wrapper h2{text-align:center;font-weight:500;background:#7773fa;padding:15px 0;color:#fff}.layout_first-demo-second-theme div#fragment-1{padding:0px 20px}.layout_first-demo-second-theme .header-section.headerInside .fixed-top{background-color:#7773fa !important}.layout_first-demo-second-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-second-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-second-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-second-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-second-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#7773fa;padding:30px 0px 20px 0}.layout_first-demo-second-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-second-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-second-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-second-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#7773fa}.layout_first-demo-second-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-second-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-second-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-second-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-second-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-second-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-second-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-second-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-second-theme .innerpageheader h4{font-size:35px}.layout_first-demo-second-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #7773fa;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-second-theme .bottom-button-new a.mover:hover{background:#7773fa;color:#fff}.layout_first-demo-second-theme .bottom-button-new{display:inline-block}.layout_first-demo-second-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-second-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-second-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-second-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-second-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-second-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-second-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-second-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-second-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-second-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-second-theme ul.listing-1 li i{background:#7773fa;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-second-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-second-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-second-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-second-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-second-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-second-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-second-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-second-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-second-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#7773fa}.layout_first-demo-second-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-second-theme span.mendatory{color:#b71515}.layout_first-demo-second-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-second-theme .lead li{list-style:none;position:relative;padding-left:45px;margin:5px 0px}.layout_first-demo-second-theme .lead li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#fff}.layout_first-demo-second-theme .pageTitle{background:#7773fa;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-second-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-second-theme .innerPageContent{padding:50px 0px}.layout_first-demo-second-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-second-theme .form-heading{margin-bottom:40px}.layout_first-demo-second-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-second-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-second-theme .form-control{font-weight:300}.layout_first-demo-second-theme .form-control::placeholder{color:#ccc}.layout_first-demo-second-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-second-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-second-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-second-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-second-theme .section-third-main .container{max-width:1240px}.layout_first-demo-second-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-second-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-second-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-second-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-second-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-second-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#7773fa}.layout_first-demo-second-theme .contactFields{margin-top:50px}.layout_first-demo-second-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-second-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-second-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-second-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-second-theme .contactFields ul li a:hover,.layout_first-demo-second-theme .contactFields ul li a:hover span{color:#7773fa;text-decoration:none}.layout_first-demo-second-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;box-shadow:15px 15px 0px #eee}.layout_first-demo-second-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-second-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-second-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-second-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-second-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-second-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-second-theme .button-home a{background:#7773fa;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-second-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-second-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-second-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-second-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block}.layout_first-demo-second-theme a.homebtn.section-4:hover{background:#fff;color:#7773fa}.layout_first-demo-second-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-second-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-second-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-second-theme .newSurveyForm::before{position:absolute;height:250px;background:#7773fa;top:0px;left:0px;width:100%;content:""}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#7773fa}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #7773fa;color:#fff;padding:12px 30px;text-transform:uppercase;background:#7773fa;letter-spacing:1px;border-radius:2px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#7773fa;border-color:#7773fa}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#7773fa;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-second-theme .newSurveyForm button.btn.btn-submit{border:2px solid #7773fa;color:#7773fa;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-second-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-second-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-second-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #7773fa 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-second-theme .carousel-item{height:100vh}.layout_first-demo-second-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-second-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-second-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-second-theme .newSurveyForm{text-align:center}.layout_first-demo-second-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#3c3c3c;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#fff}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#fff}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#eaeaea;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#eaeaea;font-style:italic}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-second-theme .footer_content{color:#333232}.layout_first-demo-second-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-second-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #7773fa;color:#fff;background:#7773fa;margin-bottom:10px;border-radius:2px}.layout_first-demo-second-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #7773fa;color:#7773fa;background:#fff}.layout_first-demo-second-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-second-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-second-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-second-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #7773fa;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-second-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-second-theme .tab{width:100%;color:#7773fa;overflow:hidden;border-bottom:1px solid;border-color:#7773fa}.layout_first-demo-second-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-second-theme .tab-label:hover{background:#7773fa;color:#fff;transition:.5s}.layout_first-demo-second-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-second-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-second-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#7773fa;cursor:pointer}.layout_first-demo-second-theme .tab-close:hover{background:#7773fa}.layout_first-demo-second-theme .tab:last-child{border:none}.layout_first-demo-second-theme .tab input[type=checkbox]{display:none}.layout_first-demo-second-theme input:checked+.tab-label{background:#7773fa;color:#fff}.layout_first-demo-second-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-second-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-second-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#7773fa}.layout_first-demo-second-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-second-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-second-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#7773fa;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#7773fa;text-align:center}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #7773fa;color:#7773fa;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #7773fa;color:#fff;padding:12px 30px;text-transform:uppercase;background:#7773fa;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-second-theme .input-box__field--error,.layout_first-demo-second-theme .input-box__field--errord{border-color:#7773fa !important;box-shadow:none}.layout_first-demo-second-theme .date-box__field{padding:5px 5px}.layout_first-demo-second-theme .input-box__field--survey{border-width:2px}.layout_first-demo-second-theme .input-box__field--survey:hover,.layout_first-demo-second-theme .input-box__field--survey:focus{border:solid 2px #7773fa}.layout_first-demo-second-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-second-theme .textarea-box__field--survey:hover,.layout_first-demo-second-theme .textarea-box__field--survey:focus{border:solid 2px #7773fa}@media(max-width: 1425px){.layout_first-demo-second-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-second-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-second-theme .container{max-width:1140px}.layout_first-demo-second-theme .container-lg{max-width:1140px}.layout_first-demo-second-theme .container-md{max-width:1140px}.layout_first-demo-second-theme .container-sm{max-width:1140px}.layout_first-demo-second-theme .container-xl{max-width:1140px}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem}.layout_first-demo-second-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-second-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-second-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-second-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-second-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-second-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-second-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-second-theme li.nav-item{margin-left:30px !important}.layout_first-demo-second-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-second-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-second-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-second-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-second-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-second-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-second-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-second-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-second-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-second-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-second-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#7773fa !important}.layout_first-demo-second-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-second-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#7773fa !important}.layout_first-demo-second-theme .block-multiples{padding:0px 15px}.layout_first-demo-second-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-second-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-second-theme .navbar-collapse{background-color:#7773fa}.layout_first-demo-second-theme .lead{margin:15px 0px}.layout_first-demo-second-theme body{font-size:14px}.layout_first-demo-second-theme .heading-section h2{font-size:30px}.layout_first-demo-second-theme .single-block p{text-align:justify}.layout_first-demo-second-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-second-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-second-theme .innerPageContent{padding:40px 0px}.layout_first-demo-second-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-second-theme .footer-content{padding:20px 0px}.layout_first-demo-second-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-second-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-second-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-second-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-second-theme .heading-section h2{font-size:26px}.layout_first-demo-second-theme .heading-section p{width:100%}.layout_first-demo-second-theme .heading-section{padding-bottom:0px}.layout_first-demo-second-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-second-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-second-theme .block_wrapper h2{text-align:center;font-weight:500;background:#7773fa;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-second-theme div#fragment-1{padding:0}.layout_first-demo-second-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-second-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-second-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-second-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-second-theme .block-multiples .row{display:flex}.layout_first-demo-second-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-second-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-second-theme .block-multiples{padding:0px 30px}.layout_first-demo-second-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-second-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-second-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-second-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-second-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-second-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-second-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-second-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-second-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-second-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-second-theme .descrioption-news{text-align:left}.layout_first-demo-second-theme .heading-section p{width:100% !important}.layout_first-demo-second-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-second-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-second-theme .pageTitle{background:#7773fa;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-second-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-second-theme .form-heading{margin-bottom:0}.layout_first-demo-second-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-second-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-second-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-second-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-second-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-second-theme .heading-section h2{font-size:20px}.layout_first-demo-second-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-second-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-second-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-second-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-second-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-second-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-second-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-second-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-second-theme .carousel-item{height:auto}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-second-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-second-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-second-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-second-theme .descript-thankyou p{width:100%}.layout_first-demo-second-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-second-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}}@media(max-width: 992px){.layout_first-demo-second-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-second-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-second-theme img{max-width:100%}.layout_first-demo-second-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-second-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-second-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-second-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-second-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-second-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-second-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-second-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-second-theme .heading-section h2{font-size:28px}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-second-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-second-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-second-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-second-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-second-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-second-theme .contactFields{margin-top:30px}.layout_first-demo-second-theme .block-multiples{padding:0px 15px}.layout_first-demo-second-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-second-theme .contactFields ul li{font-size:14px}.layout_first-demo-second-theme .contactFields h5{font-size:18px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-second-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-second-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-second-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-second-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-second-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-second-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-second-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-second-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-second-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-second-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-second-theme .descript-thankyou p span{font-size:16px !important}}.layout_first-demo-third-theme .notQualifySection .button-home a{background:none;color:#4094a9;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #4094a9;border-radius:3px;font-weight:500}.layout_first-demo-third-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-third-theme .notQualifySection .button-home a svg path{fill:#4094a9}.layout_first-demo-third-theme .notQualifySection .button-home a:hover{background:#4094a9;color:#fff}.layout_first-demo-third-theme .notQualifySection .button-home a:hover svg path{fill:#fff}.layout_first-demo-third-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-third-theme .section-one-main{background:#f9f9f9}.layout_first-demo-third-theme .section-third-main{background:#f9f9f9}.layout_first-demo-third-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-third-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-third-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-third-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-third-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-third-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-third-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#4094a9;border:2px solid #4094a9;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-third-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#4094a9;border:2px solid #4094a9;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-third-theme .container{max-width:1420px}.layout_first-demo-third-theme .header-section{background:#4094a9}.layout_first-demo-third-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#4094a9 !important}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-third-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-third-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-third-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-third-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#fff;color:#4094a9}.layout_first-demo-third-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-third-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-third-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-third-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-third-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-third-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-third-theme .width80{width:80%;margin:0 auto}.layout_first-demo-third-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-third-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-third-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-third-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-third-theme ul.contact_lists li{display:flex}.layout_first-demo-third-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-third-theme .text_block{display:flex}.layout_first-demo-third-theme span.number_1{margin-right:10px}.layout_first-demo-third-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-third-theme .heading-section h2{font-weight:400;font-size:36px;line-height:36px;margin-bottom:.3rem}.layout_first-demo-third-theme .heading-section p{width:65%;margin:0px auto}.layout_first-demo-third-theme .heading-section{padding-bottom:50px}.layout_first-demo-third-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-third-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-third-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-third-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-third-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-third-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-third-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center}.layout_first-demo-third-theme .image-block{margin-bottom:15px}.layout_first-demo-third-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-third-theme .center-item{text-align:center}.layout_first-demo-third-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-third-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-third-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-third-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-third-theme .sectionone.first.bgblue{background-color:#4094a9;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#fff;padding:130px 0%;position:relative}.layout_first-demo-third-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #4094a9 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#4094a9;background:#fff}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec{text-align:left}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-third-theme .sectionone.first.bg-light{background:#4094a9 !important;padding:80px 0%}.layout_first-demo-third-theme .sectionone.first.bg-light .heading-section{text-align:center;width:790px;max-width:100%;color:#fff;padding-bottom:0px}.layout_first-demo-third-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-third-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-third-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-third-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-third-theme .footer-content{background:#333;color:#ddd;padding:20px 0%}.layout_first-demo-third-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-third-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-third-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-third-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-third-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-third-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-third-theme .footer-content .img-fluid{display:block}.layout_first-demo-third-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-third-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-third-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-third-theme .header-section.pageScroll .fixed-top{background:#4094a9 !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-third-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-third-theme .block_wrapper h2{text-align:center;font-weight:500;background:#4094a9;padding:15px 0;color:#fff}.layout_first-demo-third-theme div#fragment-1{padding:0px 20px}.layout_first-demo-third-theme .header-section.headerInside .fixed-top{background-color:#4094a9 !important}.layout_first-demo-third-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-third-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-third-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-third-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-third-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#4094a9;padding:30px 0px 20px 0}.layout_first-demo-third-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-third-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-third-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-third-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#4094a9}.layout_first-demo-third-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-third-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-third-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-third-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-third-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-third-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-third-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-third-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-third-theme .innerpageheader h4{font-size:35px}.layout_first-demo-third-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #4094a9;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-third-theme .bottom-button-new a.mover:hover{background:#4094a9;color:#fff}.layout_first-demo-third-theme .bottom-button-new{display:inline-block}.layout_first-demo-third-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-third-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-third-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-third-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-third-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-third-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-third-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-third-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-third-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-third-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-third-theme ul.listing-1 li i{background:#4094a9;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-third-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-third-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-third-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-third-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-third-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-third-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-third-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-third-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-third-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#4094a9}.layout_first-demo-third-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-third-theme span.mendatory{color:#b71515}.layout_first-demo-third-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-third-theme .lead li{list-style:none;position:relative;padding-left:45px;margin:5px 0px}.layout_first-demo-third-theme .lead li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#fff}.layout_first-demo-third-theme .pageTitle{background:#4094a9;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-third-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-third-theme .innerPageContent{padding:50px 0px}.layout_first-demo-third-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-third-theme .form-heading{margin-bottom:40px}.layout_first-demo-third-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-third-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-third-theme .form-control{font-weight:300}.layout_first-demo-third-theme .form-control::placeholder{color:#ccc}.layout_first-demo-third-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-third-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-third-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-third-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-third-theme .section-third-main .container{max-width:1240px}.layout_first-demo-third-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-third-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-third-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-third-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-third-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-third-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#4094a9}.layout_first-demo-third-theme .contactFields{margin-top:50px}.layout_first-demo-third-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-third-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-third-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-third-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-third-theme .contactFields ul li a:hover,.layout_first-demo-third-theme .contactFields ul li a:hover span{color:#4094a9;text-decoration:none}.layout_first-demo-third-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;box-shadow:15px 15px 0px #eee}.layout_first-demo-third-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-third-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-third-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-third-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-third-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-third-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-third-theme .button-home a{background:#4094a9;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-third-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-third-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-third-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-third-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block}.layout_first-demo-third-theme a.homebtn.section-4:hover{background:#fff;color:#4094a9}.layout_first-demo-third-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-third-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-third-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-third-theme .newSurveyForm::before{position:absolute;height:250px;background:#4094a9;top:0px;left:0px;width:100%;content:""}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#4094a9}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #4094a9;color:#fff;padding:12px 30px;text-transform:uppercase;background:#4094a9;letter-spacing:1px;border-radius:2px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#4094a9;border-color:#4094a9}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#4094a9;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-third-theme .newSurveyForm button.btn.btn-submit{border:2px solid #4094a9;color:#4094a9;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-third-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-third-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-third-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #4094a9 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-third-theme .carousel-item{height:100vh}.layout_first-demo-third-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-third-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-third-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-third-theme .newSurveyForm{text-align:center}.layout_first-demo-third-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#3c3c3c;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#fff}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#fff}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#eaeaea;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#eaeaea;font-style:italic}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-third-theme .footer_content{color:#333232}.layout_first-demo-third-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-third-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #4094a9;color:#fff;background:#4094a9;margin-bottom:10px;border-radius:2px}.layout_first-demo-third-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #4094a9;color:#4094a9;background:#fff}.layout_first-demo-third-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-third-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-third-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-third-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #4094a9;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-third-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-third-theme .tab{width:100%;color:#4094a9;overflow:hidden;border-bottom:1px solid;border-color:#4094a9}.layout_first-demo-third-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-third-theme .tab-label:hover{background:#4094a9;color:#fff;transition:.5s}.layout_first-demo-third-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-third-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-third-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#4094a9;cursor:pointer}.layout_first-demo-third-theme .tab-close:hover{background:#4094a9}.layout_first-demo-third-theme .tab:last-child{border:none}.layout_first-demo-third-theme .tab input[type=checkbox]{display:none}.layout_first-demo-third-theme input:checked+.tab-label{background:#4094a9;color:#fff}.layout_first-demo-third-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-third-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-third-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#4094a9}.layout_first-demo-third-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-third-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-third-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#4094a9;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#4094a9;text-align:center}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #4094a9;color:#4094a9;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #4094a9;color:#fff;padding:12px 30px;text-transform:uppercase;background:#4094a9;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-third-theme .input-box__field--error,.layout_first-demo-third-theme .input-box__field--errord{border-color:#4094a9 !important;box-shadow:none}.layout_first-demo-third-theme .date-box__field{padding:5px 5px}.layout_first-demo-third-theme .input-box__field--survey{border-width:2px}.layout_first-demo-third-theme .input-box__field--survey:hover,.layout_first-demo-third-theme .input-box__field--survey:focus{border:solid 2px #4094a9}.layout_first-demo-third-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-third-theme .textarea-box__field--survey:hover,.layout_first-demo-third-theme .textarea-box__field--survey:focus{border:solid 2px #4094a9}@media(max-width: 1425px){.layout_first-demo-third-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-third-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-third-theme .container{max-width:1140px}.layout_first-demo-third-theme .container-lg{max-width:1140px}.layout_first-demo-third-theme .container-md{max-width:1140px}.layout_first-demo-third-theme .container-sm{max-width:1140px}.layout_first-demo-third-theme .container-xl{max-width:1140px}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem}.layout_first-demo-third-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-third-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-third-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-third-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-third-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-third-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-third-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-third-theme li.nav-item{margin-left:30px !important}.layout_first-demo-third-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-third-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-third-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-third-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-third-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-third-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-third-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-third-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-third-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-third-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-third-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#4094a9 !important}.layout_first-demo-third-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-third-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#4094a9 !important}.layout_first-demo-third-theme .block-multiples{padding:0px 15px}.layout_first-demo-third-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-third-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-third-theme .navbar-collapse{background-color:#4094a9}.layout_first-demo-third-theme .lead{margin:15px 0px}.layout_first-demo-third-theme body{font-size:14px}.layout_first-demo-third-theme .heading-section h2{font-size:30px}.layout_first-demo-third-theme .single-block p{text-align:justify}.layout_first-demo-third-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-third-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-third-theme .innerPageContent{padding:40px 0px}.layout_first-demo-third-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-third-theme .footer-content{padding:20px 0px}.layout_first-demo-third-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-third-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-third-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-third-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-third-theme .heading-section h2{font-size:26px}.layout_first-demo-third-theme .heading-section p{width:100%}.layout_first-demo-third-theme .heading-section{padding-bottom:0px}.layout_first-demo-third-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-third-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-third-theme .block_wrapper h2{text-align:center;font-weight:500;background:#4094a9;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-third-theme div#fragment-1{padding:0}.layout_first-demo-third-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-third-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-third-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-third-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-third-theme .block-multiples .row{display:flex}.layout_first-demo-third-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-third-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-third-theme .block-multiples{padding:0px 30px}.layout_first-demo-third-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-third-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-third-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-third-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-third-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-third-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-third-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-third-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-third-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-third-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-third-theme .descrioption-news{text-align:left}.layout_first-demo-third-theme .heading-section p{width:100% !important}.layout_first-demo-third-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-third-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-third-theme .pageTitle{background:#4094a9;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-third-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-third-theme .form-heading{margin-bottom:0}.layout_first-demo-third-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-third-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-third-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-third-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-third-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-third-theme .heading-section h2{font-size:20px}.layout_first-demo-third-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-third-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-third-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-third-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-third-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-third-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-third-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-third-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-third-theme .carousel-item{height:auto}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-third-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-third-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-third-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-third-theme .descript-thankyou p{width:100%}.layout_first-demo-third-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-third-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}}@media(max-width: 992px){.layout_first-demo-third-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-third-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-third-theme img{max-width:100%}.layout_first-demo-third-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-third-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-third-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-third-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-third-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-third-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-third-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-third-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-third-theme .heading-section h2{font-size:28px}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-third-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-third-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-third-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-third-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-third-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-third-theme .contactFields{margin-top:30px}.layout_first-demo-third-theme .block-multiples{padding:0px 15px}.layout_first-demo-third-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-third-theme .contactFields ul li{font-size:14px}.layout_first-demo-third-theme .contactFields h5{font-size:18px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-third-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-third-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-third-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-third-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-third-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-third-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-third-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-third-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-third-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-third-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-third-theme .descript-thankyou p span{font-size:16px !important}}.layout_first-demo-fourth-theme .notQualifySection .button-home a{background:none;color:#f05249;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #f05249;border-radius:3px;font-weight:500}.layout_first-demo-fourth-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-fourth-theme .notQualifySection .button-home a svg path{fill:#f05249}.layout_first-demo-fourth-theme .notQualifySection .button-home a:hover{background:#f05249;color:#fff}.layout_first-demo-fourth-theme .notQualifySection .button-home a:hover svg path{fill:#fff}.layout_first-demo-fourth-theme{@import"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"}.layout_first-demo-fourth-theme body{font-family:"Poppins",sans-serif}.layout_first-demo-fourth-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-fourth-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-fourth-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-fourth-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-fourth-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-fourth-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-fourth-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-fourth-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#f05249;border:2px solid #f05249;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-fourth-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#f05249;border:2px solid #f05249;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-fourth-theme .container{max-width:1420px}.layout_first-demo-fourth-theme .header-section{background:#12122d}.layout_first-demo-fourth-theme .header-section .fixed-top{background:#12122d !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#f05249 !important}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-fourth-theme .header-section .banner-div-section{margin-top:75px}.layout_first-demo-fourth-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-fourth-theme .carousel-item{background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-fourth-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-fourth-theme .slider-home .carousel-item{padding:80px 0px}.layout_first-demo-fourth-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{width:700px;float:left;text-align:left;padding-top:0px;max-width:100%;font-family:"Poppins",sans-serif}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-weight:400;font-size:20px;line-height:normal;color:#fff !important;border:2px solid #000;width:auto;clear:both;display:inline-block;padding:5px 30px;color:#000 !important}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:44px;font-weight:400;border:none;padding:0px;color:#f05249 !important;line-height:1.2;margin-bottom:15px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:20px;font-weight:400;color:#12122d}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #f05249;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#f05249;display:inline-block;background-position:center;transition:#000 .8s}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#f05249;color:#fff}.layout_first-demo-fourth-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-fourth-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-fourth-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-fourth-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-fourth-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-fourth-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-fourth-theme .width80{width:80%;margin:0 auto}.layout_first-demo-fourth-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-fourth-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-fourth-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-fourth-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-fourth-theme ul.contact_lists li{display:flex}.layout_first-demo-fourth-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-fourth-theme .text_block{display:flex}.layout_first-demo-fourth-theme span.number_1{margin-right:10px}.layout_first-demo-fourth-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-fourth-theme .heading-section{color:#fff;padding:80px 0px 150px 0px}.layout_first-demo-fourth-theme .heading-section h2{font-weight:400;font-size:36px;line-height:36px;margin-bottom:2rem;color:#f05249}.layout_first-demo-fourth-theme .heading-section p{width:65%;margin:0px auto}.layout_first-demo-fourth-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-fourth-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-fourth-theme .block-multiples .single-block h4{font-size:18px;font-weight:500;margin-top:30px}.layout_first-demo-fourth-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px;text-align:justify;text-align-last:center;-moz-text-align-last:center;-ms-text-align-last:center}.layout_first-demo-fourth-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-fourth-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-fourth-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite{padding:0px 0px 0px 0px;text-align:center}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container{width:100%;max-width:100%;margin:0px;padding:0px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row{margin:0px;padding:0px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .col-sm-12{background:#12122d;margin:0px;padding:0px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .col-sm-12 .heading-section{max-width:1400px;width:100%;margin:auto}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{background:#f05249;padding-bottom:80px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12 .row{max-width:1400px;width:100%;margin:auto;margin-top:-70px}.layout_first-demo-fourth-theme .image-block{margin-bottom:15px}.layout_first-demo-fourth-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-fourth-theme .center-item{text-align:center}.layout_first-demo-fourth-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-fourth-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-fourth-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-fourth-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-fourth-theme .sectionone.first.bgblue{background-color:#f05249;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#fff;padding:130px 0%;position:relative}.layout_first-demo-fourth-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #f05249 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#f05249;background:#fff}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec{text-align:left}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .container{max-width:1420px;margin:auto}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-fourth-theme .sectionone.first.bg-light{background:#f05249 !important;padding:80px 0%}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section{text-align:center;width:790px;max-width:100%;color:#fff;padding-bottom:0px}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-fourth-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-fourth-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-fourth-theme .footer-content{background:#12122d;color:#ddd;padding:20px 0%}.layout_first-demo-fourth-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-fourth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-fourth-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-fourth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-fourth-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-fourth-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-fourth-theme .footer-content .img-fluid{display:block}.layout_first-demo-fourth-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-fourth-theme .copyright{background:#080815;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-fourth-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-fourth-theme .header-section.pageScroll .fixed-top{background:#12122d !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-fourth-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-fourth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#f05249;padding:15px 0;color:#fff}.layout_first-demo-fourth-theme div#fragment-1{padding:0px 20px}.layout_first-demo-fourth-theme .header-section.headerInside .fixed-top{background-color:#12122d !important}.layout_first-demo-fourth-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-fourth-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-fourth-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-fourth-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-fourth-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#f05249;padding:30px 0px 20px 0}.layout_first-demo-fourth-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-fourth-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-fourth-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-fourth-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#f05249}.layout_first-demo-fourth-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-fourth-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-fourth-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-fourth-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-fourth-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-fourth-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-fourth-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-fourth-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-fourth-theme .innerpageheader h4{font-size:35px}.layout_first-demo-fourth-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #f05249;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-fourth-theme .bottom-button-new a.mover:hover{background:#f05249;color:#fff}.layout_first-demo-fourth-theme .bottom-button-new{display:inline-block}.layout_first-demo-fourth-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-fourth-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-fourth-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-fourth-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-fourth-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-fourth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-fourth-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-fourth-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-fourth-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-fourth-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-fourth-theme ul.listing-1 li i{background:#f05249;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-fourth-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-fourth-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-fourth-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-fourth-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-fourth-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-fourth-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-fourth-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-fourth-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-fourth-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#f05249}.layout_first-demo-fourth-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-fourth-theme span.mendatory{color:#b71515}.layout_first-demo-fourth-theme .lead{margin:1em 0px;font-size:1.2em}.layout_first-demo-fourth-theme .lead li{list-style:none;position:relative;padding-left:45px;margin:5px 0px}.layout_first-demo-fourth-theme .lead li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#fff}.layout_first-demo-fourth-theme .pageTitle{background:#f05249;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-fourth-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-fourth-theme .innerPageContent{padding:50px 0px}.layout_first-demo-fourth-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-fourth-theme .form-heading{margin-bottom:40px}.layout_first-demo-fourth-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-fourth-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-fourth-theme .form-control{font-weight:300}.layout_first-demo-fourth-theme .form-control::placeholder{color:#ccc}.layout_first-demo-fourth-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-fourth-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-fourth-theme .single-block{background:#fff;border-radius:0px;padding:15px;height:100%;transition:.5s}.layout_first-demo-fourth-theme .single-block:hover{box-shadow:0px 0px 20px rgba(0,0,0,.1);transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-fourth-theme .section-third-main .container{max-width:1240px}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#f05249}.layout_first-demo-fourth-theme .contactFields{margin-top:50px}.layout_first-demo-fourth-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-fourth-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-fourth-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-fourth-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-fourth-theme .contactFields ul li a:hover,.layout_first-demo-fourth-theme .contactFields ul li a:hover span{color:#f05249;text-decoration:none}.layout_first-demo-fourth-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;box-shadow:none}.layout_first-demo-fourth-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-fourth-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-fourth-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-fourth-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-fourth-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-fourth-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-fourth-theme .button-home a{background:#f05249;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-fourth-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-fourth-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-fourth-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-fourth-theme a.homebtn.section-4{color:#f05249;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #f05249;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block}.layout_first-demo-fourth-theme a.homebtn.section-4:hover{background:#12122d;color:#fff;border-color:#12122d}.layout_first-demo-fourth-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-fourth-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-fourth-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-fourth-theme .newSurveyForm::before{position:absolute;height:250px;background:#f05249;top:0px;left:0px;width:100%;content:""}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#f05249}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #f05249;color:#fff;padding:12px 30px;text-transform:uppercase;background:#f05249;letter-spacing:1px;border-radius:2px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#f05249;border-color:#f05249}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#f05249;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-fourth-theme .newSurveyForm button.btn.btn-submit{border:2px solid #f05249;color:#f05249;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-fourth-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-fourth-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-fourth-theme .carousel-item{background-repeat:no-repeat;background-color:#f05249}.layout_first-demo-fourth-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-fourth-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-fourth-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-fourth-theme .newSurveyForm{text-align:center}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#12122d;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#fff}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#fff}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#eaeaea;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#eaeaea;font-style:italic}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-fourth-theme .footer_content{color:#333232}.layout_first-demo-fourth-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-fourth-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #f05249;color:#fff;background:#f05249;margin-bottom:10px;border-radius:2px}.layout_first-demo-fourth-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #f05249;color:#f05249;background:#fff}.layout_first-demo-fourth-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-fourth-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-fourth-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-fourth-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #f05249;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-fourth-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left;margin-top:30px}.layout_first-demo-fourth-theme .tab{width:100%;color:#12122d;overflow:hidden;border-bottom:1px solid;border-color:#ddd}.layout_first-demo-fourth-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-fourth-theme .tab-label:hover{background:#f05249;color:#fff;transition:.5s}.layout_first-demo-fourth-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-fourth-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s;opacity:0}.layout_first-demo-fourth-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#f05249;cursor:pointer}.layout_first-demo-fourth-theme .tab-close:hover{background:#f05249}.layout_first-demo-fourth-theme .tab:last-child{border:none}.layout_first-demo-fourth-theme .tab input[type=checkbox]{display:none}.layout_first-demo-fourth-theme input:checked+.tab-label{background:#f05249;color:#fff}.layout_first-demo-fourth-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-fourth-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #ddd;border-bottom:none;opacity:1}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue{background-image:none !important;background-color:#fff;padding:40px 0px 0px 0px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow{align-items:flex-end}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .secondSecImg{max-width:80%}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section{padding-bottom:60px;width:550px;max-width:100%}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section h2{font-size:30px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue:before{display:none}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .heading-section{padding:0px;color:#12122d}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .heading-section h2{color:#12122d;margin-bottom:0px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .heading-section p{width:960px;max-width:100%;margin-bottom:30px;font-size:18px;font-weight:300}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .heading-section .homebtn{border-color:#f05249;color:#f05249;display:inline-block;margin-top:0px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .heading-section .homebtn:hover{background-color:#12122d;color:#fff;border-color:#12122d}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec{background-color:#f05249;padding-bottom:0px;padding-top:40px}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .row{align-items:end}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section h2{color:#fff}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p{color:#fff}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p div{color:#fff !important;font-size:18px !important;text-align:justify}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-2{text-align:center}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-2 .heading-section img{width:500px}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-1 .heading-section{padding-bottom:50px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light{background:#f8f8ff !important;padding:60px 0px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light .heading-section{padding-top:0px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light .heading-section h2{margin-bottom:10px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light .heading-section p{color:#12122d;width:100%;font-size:18px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq{padding-bottom:0px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip{display:inline-block;background:#f05249;width:100%;padding:40px 0px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip h2{color:#12122d;font-size:38px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip p{color:#12122d;font-size:20px;margin-bottom:30px;line-height:1.3}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip a.homebtn.section-4{border-color:#12122d;color:#12122d}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip a.homebtn.section-4:hover{color:#12122d;border-color:#fff;background-color:#fff}.layout_first-demo-fourth-theme .banner-div-section:after{content:"";position:absolute;width:71px;height:134px;background-repeat:no-repeat;left:50%;bottom:-67px;z-index:1;transform:translate(-35px, 0px);background-image:url(/static/media/icon-down-arrow.89b45509322dc9ccee5676bfc0fed43c.png)}.layout_first-demo-fourth-theme .banner-div-section{position:relative}.layout_first-demo-fourth-theme .carousel-indicators{display:none}.layout_first-demo-fourth-theme .heading-section{padding:100px 0px 150px 0px}.layout_first-demo-fourth-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#f05249}.layout_first-demo-fourth-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-fourth-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#f05249;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#f05249;text-align:center}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #f05249;color:#f05249;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #f05249;color:#fff;padding:12px 30px;text-transform:uppercase;background:#f05249;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-fourth-theme .input-box__field--error,.layout_first-demo-fourth-theme .input-box__field--errord{border-color:#f05249 !important;box-shadow:none}.layout_first-demo-fourth-theme .date-box__field{padding:5px 5px}.layout_first-demo-fourth-theme .input-box__field--survey{border-width:2px}.layout_first-demo-fourth-theme .input-box__field--survey:hover,.layout_first-demo-fourth-theme .input-box__field--survey:focus{border:solid 2px #f05249}.layout_first-demo-fourth-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-fourth-theme .textarea-box__field--survey:hover,.layout_first-demo-fourth-theme .textarea-box__field--survey:focus{border:solid 2px #f05249}.layout_first-demo-fourth-theme .formlogo{position:absolute;bottom:42px;font-size:12px;text-align:center;color:#868686;right:0;width:100%;font-weight:600}.layout_first-demo-fourth-theme .formlogo img{max-width:160px}@media(max-width: 1425px){.layout_first-demo-fourth-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-fourth-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-fourth-theme .container{max-width:1140px}.layout_first-demo-fourth-theme .container-lg{max-width:1140px}.layout_first-demo-fourth-theme .container-md{max-width:1140px}.layout_first-demo-fourth-theme .container-sm{max-width:1140px}.layout_first-demo-fourth-theme .container-xl{max-width:1140px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem}.layout_first-demo-fourth-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-fourth-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-fourth-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-fourth-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-fourth-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-fourth-theme li.nav-item{margin-left:30px !important}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-fourth-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-fourth-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-fourth-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-fourth-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-fourth-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-fourth-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-fourth-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-fourth-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-fourth-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-fourth-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#f05249 !important}.layout_first-demo-fourth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-fourth-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#12122d !important}.layout_first-demo-fourth-theme .block-multiples{padding:0px 15px}.layout_first-demo-fourth-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-fourth-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-fourth-theme .navbar-collapse{background-color:#f05249}.layout_first-demo-fourth-theme .lead{margin:15px 0px}.layout_first-demo-fourth-theme body{font-size:14px}.layout_first-demo-fourth-theme .heading-section h2{font-size:30px}.layout_first-demo-fourth-theme .single-block p{text-align:justify}.layout_first-demo-fourth-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-fourth-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-fourth-theme .innerPageContent{padding:40px 0px}.layout_first-demo-fourth-theme .footer-content .custome-links{margin-top:10px;display:inline-block;width:100%}.layout_first-demo-fourth-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-fourth-theme .footer-content{padding:20px 0px}.layout_first-demo-fourth-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-fourth-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-fourth-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-fourth-theme .heading-section h2{font-size:26px}.layout_first-demo-fourth-theme .heading-section p{width:100%}.layout_first-demo-fourth-theme .heading-section{padding-bottom:0px}.layout_first-demo-fourth-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-fourth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-fourth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#f05249;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-fourth-theme div#fragment-1{padding:0}.layout_first-demo-fourth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-fourth-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{width:100%;height:auto;float:none;text-align:center;padding-top:20%}.layout_first-demo-fourth-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-fourth-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-fourth-theme .block-multiples .row{display:block}.layout_first-demo-fourth-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-fourth-theme .block-multiples{padding:0px 30px}.layout_first-demo-fourth-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-fourth-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-fourth-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-fourth-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-fourth-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-fourth-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-fourth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-fourth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-fourth-theme .descrioption-news{text-align:left}.layout_first-demo-fourth-theme .heading-section p{width:100% !important}.layout_first-demo-fourth-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-fourth-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-fourth-theme .pageTitle{background:#f05249;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-fourth-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-fourth-theme .form-heading{margin-bottom:0}.layout_first-demo-fourth-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-fourth-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-fourth-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-fourth-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-fourth-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-fourth-theme .heading-section h2{font-size:20px}.layout_first-demo-fourth-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-fourth-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-fourth-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-fourth-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-fourth-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-fourth-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-fourth-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-fourth-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1425px){.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-size:14px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12 .row{max-width:1140px}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .container{max-width:1140px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .secondSecImg{max-width:100%}.layout_first-demo-fourth-theme .slider-home .carousel-item{padding:60px 0px 10px 0px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .homebtn{padding:12px 40px;margin:15px 0px;font-size:1.2rem}.layout_first-demo-fourth-theme .banner-div-section::after{width:51px;height:97px;background-size:100%;bottom:-47px;transform:translate(-25.5px, 0px)}.layout_first-demo-fourth-theme .trustedBrands{padding:60px 0px 20px 0px}.layout_first-demo-fourth-theme .heading-section{padding:50px 0px 150px 0px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue{padding:20px 0px 0px 0px}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section h2{margin-bottom:20px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light{padding-top:40px}}@media(max-width: 1200px){.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{padding-top:0px}.layout_first-demo-fourth-theme .trustedBrands ul li{flex:0 0 20%;max-width:20%;text-align:center}.layout_first-demo-fourth-theme .heading-section p{width:90%}.layout_first-demo-fourth-theme .heading-section{padding:50px 0px 130px 0px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding-bottom:40px}}@media(max-width: 1024px){.layout_first-demo-fourth-theme .carousel-item{height:auto}.layout_first-demo-fourth-theme .slider-home .carousel-item{padding:20px 0px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{padding:2em 0em 0em 0em;width:600px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-size:20px;padding:5px 5px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:34px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:18px}.layout_first-demo-fourth-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-fourth-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-fourth-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-fourth-theme .descript-thankyou p{width:100%}.layout_first-demo-fourth-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-fourth-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}.layout_first-demo-fourth-theme .banner-div-section::after{width:50px;height:95px;bottom:-47.5px;transform:translate(-25px, 0px);background-size:100%}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue{padding:30px 0px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding-bottom:30px}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section h2{font-size:34px;margin-bottom:20px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light{padding:30px 0px}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section h2{font-size:26px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .heading-section p{margin-bottom:10px;font-size:16px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue{padding:30px 0px 0px 0px}}@media(max-width: 992px){.layout_first-demo-fourth-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-fourth-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-fourth-theme img{max-width:100%}.layout_first-demo-fourth-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-fourth-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-fourth-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-fourth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-fourth-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-fourth-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 100px 20px}.layout_first-demo-fourth-theme .formlogo img{max-width:100px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12 .row{margin-top:0px}.layout_first-demo-fourth-theme .heading-section{padding:40px 15px}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding:15px 0px}.layout_first-demo-fourth-theme .block-multiples .col-sm-3{margin:15px 0px}.layout_first-demo-fourth-theme .banner-div-section::after{width:30px;height:58px;bottom:-29px;transform:translate(-15px, 0px)}.layout_first-demo-fourth-theme .heading-section p{width:100%}.layout_first-demo-fourth-theme .heading-section h2{margin-bottom:1rem}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding:15px 15px}.layout_first-demo-fourth-theme .block-multiples .single-block p{text-align:center}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .heading-section p{margin-bottom:0px}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-1 .heading-section{padding-bottom:10px;text-align:center}.layout_first-demo-fourth-theme .footer-content .custome-links{margin-top:10px}.layout_first-demo-fourth-theme .navbar-collapse{margin:0px -15px;border-top:1px solid rgba(255,255,255,.4);background-color:#12122d}.layout_first-demo-fourth-theme .header-section .fixed-top{padding:.5rem 1rem 0px 0px !important}.layout_first-demo-fourth-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem 0px 0px !important}.layout_first-demo-fourth-theme .header-section .banner-div-section{margin-top:68px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{width:510px}.layout_first-demo-fourth-theme .trustedBrands{padding:40px 0px 20px 0px}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p div{text-align-last:center;-moz-text-align-last:center;-ms-text-align-last:center}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section{flex:0 0 100%;margin-left:0px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip p{font-size:22px}.layout_first-demo-fourth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{padding-bottom:0px}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec{padding-top:20px}.layout_first-demo-fourth-theme .secondSecRow .order-md-2{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;-ms-flex-order:1;order:1}.layout_first-demo-fourth-theme .secondSecRow .order-md-1{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;-ms-flex-order:1;order:1}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .secondSecImg{width:450px}.layout_first-demo-fourth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section{margin:auto;padding-bottom:30px}}@media(max-width: 767px){.layout_first-demo-fourth-theme .block-multiples .row{display:flex}}@media(max-width: 640px){.layout_first-demo-fourth-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-fourth-theme .slider-home .carousel-item{padding:40px 0px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{padding:0em}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:34px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:18px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content h2{font-size:16px}.layout_first-demo-fourth-theme .heading-section h2{font-size:28px}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-fourth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-fourth-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-fourth-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-fourth-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-fourth-theme .contactFields{margin-top:30px}.layout_first-demo-fourth-theme .block-multiples{padding:0px 15px}.layout_first-demo-fourth-theme .contactFields ul li{font-size:14px}.layout_first-demo-fourth-theme .contactFields h5{font-size:18px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 100px 15px}.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-fourth-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-fourth-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-fourth-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-fourth-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-fourth-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-fourth-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 100px 15px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-fourth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-fourth-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light{padding:20px 0px}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-1 .heading-section{padding-bottom:0px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content{text-align:center}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p{text-align:center}.layout_first-demo-fourth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding:15px 0px}.layout_first-demo-fourth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-2 .heading-section img{top:0px}.layout_first-demo-fourth-theme img.img-fluid-logo{height:40px !important;max-width:200px}.layout_first-demo-fourth-theme .header-section .banner-div-section{margin-top:66px}.layout_first-demo-fourth-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:inline-block !important}.layout_first-demo-fourth-theme .trustedBrands ul li{flex:0 0 33.3333%;max-width:33.3333%}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section h2{font-size:26px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip h2{font-size:26px}.layout_first-demo-fourth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip p{font-size:18px}.layout_first-demo-fourth-theme .sectionone.first.bg-light .heading-section{padding:0px 15px}.layout_first-demo-fourth-theme .footer-content .col-sm-9{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-fourth-theme .header-section .fixed-top,.layout_first-demo-fourth-theme .header-section.pageScroll .fixed-top{padding:0px 1rem !important}.layout_first-demo-fourth-theme .header-section .fixed-top .navbar-brand{min-height:60px;line-height:60px}.layout_first-demo-fourth-theme .navbar-brand img.img-fluid-logo{height:33px !important;max-width:none}.layout_first-demo-fourth-theme .footer-content .custome-links{width:auto}}@media(max-width: 375px){.layout_first-demo-fourth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-fourth-theme .descript-thankyou p span{font-size:16px !important}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:30px}.layout_first-demo-fourth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:16px}.layout_first-demo-fourth-theme .slider-home .carousel-item{padding:40px 0px 20px 0px}.layout_first-demo-fourth-theme .section-third-main .container .order-md-1 .heading-section h2{font-size:30px}.layout_first-demo-fourth-theme .tab-label{font-size:18px}}.layout_first-demo-fifth-theme .notQualifySection .button-home a{background:none;color:#f47621;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #f47621;border-radius:3px;font-weight:500}.layout_first-demo-fifth-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-fifth-theme .notQualifySection .button-home a svg path{fill:#f47621}.layout_first-demo-fifth-theme .notQualifySection .button-home a:hover{background:#f47621;color:#fff}.layout_first-demo-fifth-theme .notQualifySection .button-home a:hover svg path{fill:#fff}.layout_first-demo-fifth-theme{@import"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"}.layout_first-demo-fifth-theme body{font-family:"Poppins",sans-serif}.layout_first-demo-fifth-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-fifth-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-fifth-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-fifth-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-fifth-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-fifth-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-fifth-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-fifth-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#f47621;border:2px solid #f47621;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-fifth-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#f47621;border:2px solid #f47621;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-fifth-theme .container{max-width:1420px}.layout_first-demo-fifth-theme .header-section{background:#262f36}.layout_first-demo-fifth-theme .header-section .fixed-top{background:#262f36 !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#f47621 !important}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-fifth-theme .header-section .banner-div-section{margin-top:75px}.layout_first-demo-fifth-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-fifth-theme .carousel-item{background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-fifth-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-fifth-theme .slider-home .carousel-item{padding:80px 0px}.layout_first-demo-fifth-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{width:700px;float:left;text-align:left;padding-top:0px;max-width:100%;font-family:"Poppins",sans-serif}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-weight:400;font-size:20px;line-height:normal;color:#fff !important;border:2px solid #000;width:auto;clear:both;display:inline-block;padding:5px 30px;color:#000 !important}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:44px;font-weight:400;border:none;padding:0px;color:#f47621 !important;line-height:1.2;margin-bottom:15px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:20px;font-weight:400;color:#262f36}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #f47621;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#f47621;display:inline-block;background-position:center;transition:#000 .8s}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#f47621;color:#fff}.layout_first-demo-fifth-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-fifth-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-fifth-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-fifth-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-fifth-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-fifth-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-fifth-theme .width80{width:80%;margin:0 auto}.layout_first-demo-fifth-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-fifth-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-fifth-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-fifth-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-fifth-theme ul.contact_lists li{display:flex}.layout_first-demo-fifth-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-fifth-theme .text_block{display:flex}.layout_first-demo-fifth-theme span.number_1{margin-right:10px}.layout_first-demo-fifth-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-fifth-theme .heading-section{color:#fff;padding:80px 0px 150px 0px}.layout_first-demo-fifth-theme .heading-section h2{font-weight:400;font-size:36px;line-height:36px;margin-bottom:2rem;color:#f47621}.layout_first-demo-fifth-theme .heading-section p{width:65%;margin:0px auto}.layout_first-demo-fifth-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-fifth-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-fifth-theme .block-multiples .single-block h4{font-size:18px;font-weight:500;margin-top:30px}.layout_first-demo-fifth-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px;text-align:justify;text-align-last:center;-moz-text-align-last:center;-ms-text-align-last:center}.layout_first-demo-fifth-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-fifth-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-fifth-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite{padding:0px 0px 0px 0px;text-align:center}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container{width:100%;max-width:100%;margin:0px;padding:0px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row{margin:0px;padding:0px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .col-sm-12{background:#262f36;margin:0px;padding:0px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .col-sm-12 .heading-section{max-width:1400px;width:100%;margin:auto}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{background:#f47621;padding-bottom:80px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12 .row{max-width:1400px;width:100%;margin:auto;margin-top:-70px}.layout_first-demo-fifth-theme .image-block{margin-bottom:15px}.layout_first-demo-fifth-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-fifth-theme .center-item{text-align:center}.layout_first-demo-fifth-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-fifth-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-fifth-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-fifth-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-fifth-theme .sectionone.first.bgblue{background-color:#f47621;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#fff;padding:130px 0%;position:relative}.layout_first-demo-fifth-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #f47621 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#f47621;background:#fff}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec{text-align:left}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .container{max-width:1420px;margin:auto}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-fifth-theme .sectionone.first.bg-light{background:#f47621 !important;padding:80px 0%}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section{text-align:center;width:790px;max-width:100%;color:#fff;padding-bottom:0px}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-fifth-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-fifth-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-fifth-theme .footer-content{background:#262f36;color:#ddd;padding:20px 0%}.layout_first-demo-fifth-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-fifth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-fifth-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-fifth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-fifth-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-fifth-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-fifth-theme .footer-content .img-fluid{display:block}.layout_first-demo-fifth-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-fifth-theme .copyright{background:#080815;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-fifth-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-fifth-theme .header-section.pageScroll .fixed-top{background:#262f36 !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-fifth-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-fifth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#f47621;padding:15px 0;color:#fff}.layout_first-demo-fifth-theme div#fragment-1{padding:0px 20px}.layout_first-demo-fifth-theme .header-section.headerInside .fixed-top{background-color:#262f36 !important}.layout_first-demo-fifth-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-fifth-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-fifth-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-fifth-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-fifth-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#f47621;padding:30px 0px 20px 0}.layout_first-demo-fifth-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-fifth-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-fifth-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-fifth-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#f47621}.layout_first-demo-fifth-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-fifth-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-fifth-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-fifth-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-fifth-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-fifth-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-fifth-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-fifth-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-fifth-theme .innerpageheader h4{font-size:35px}.layout_first-demo-fifth-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #f47621;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-fifth-theme .bottom-button-new a.mover:hover{background:#f47621;color:#fff}.layout_first-demo-fifth-theme .bottom-button-new{display:inline-block}.layout_first-demo-fifth-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-fifth-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-fifth-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-fifth-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-fifth-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-fifth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-fifth-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-fifth-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-fifth-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-fifth-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-fifth-theme ul.listing-1 li i{background:#f47621;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-fifth-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-fifth-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-fifth-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-fifth-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-fifth-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-fifth-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-fifth-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-fifth-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-fifth-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#f47621}.layout_first-demo-fifth-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-fifth-theme span.mendatory{color:#b71515}.layout_first-demo-fifth-theme .lead{margin:1em 0px;font-size:1.2em}.layout_first-demo-fifth-theme .lead li{list-style:none;position:relative;padding-left:45px;margin:5px 0px}.layout_first-demo-fifth-theme .lead li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#fff}.layout_first-demo-fifth-theme .pageTitle{background:#f47621;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-fifth-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-fifth-theme .innerPageContent{padding:50px 0px}.layout_first-demo-fifth-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-fifth-theme .form-heading{margin-bottom:40px}.layout_first-demo-fifth-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-fifth-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-fifth-theme .form-control{font-weight:300}.layout_first-demo-fifth-theme .form-control::placeholder{color:#ccc}.layout_first-demo-fifth-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-fifth-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-fifth-theme .single-block{background:#fff;border-radius:0px;padding:15px;height:100%;transition:.5s}.layout_first-demo-fifth-theme .single-block:hover{box-shadow:0px 0px 20px rgba(0,0,0,.1);transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-fifth-theme .section-third-main .container{max-width:1240px}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#f47621}.layout_first-demo-fifth-theme .contactFields{margin-top:50px}.layout_first-demo-fifth-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-fifth-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-fifth-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-fifth-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-fifth-theme .contactFields ul li a:hover,.layout_first-demo-fifth-theme .contactFields ul li a:hover span{color:#f47621;text-decoration:none}.layout_first-demo-fifth-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;box-shadow:none}.layout_first-demo-fifth-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-fifth-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-fifth-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-fifth-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-fifth-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-fifth-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-fifth-theme .button-home a{background:#f47621;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-fifth-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-fifth-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-fifth-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-fifth-theme a.homebtn.section-4{color:#f47621;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #f47621;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block}.layout_first-demo-fifth-theme a.homebtn.section-4:hover{background:#262f36;color:#fff;border-color:#262f36}.layout_first-demo-fifth-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-fifth-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-fifth-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-fifth-theme .newSurveyForm::before{position:absolute;height:250px;background:#f47621;top:0px;left:0px;width:100%;content:""}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#f47621}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #f47621;color:#fff;padding:12px 30px;text-transform:uppercase;background:#f47621;letter-spacing:1px;border-radius:2px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#f47621;border-color:#f47621}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#f47621;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-fifth-theme .newSurveyForm button.btn.btn-submit{border:2px solid #f47621;color:#f47621;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-fifth-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-fifth-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-fifth-theme .carousel-item{background-repeat:no-repeat;background-color:#f47621}.layout_first-demo-fifth-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-fifth-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-fifth-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-fifth-theme .newSurveyForm{text-align:center}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#262f36;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#fff}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#fff}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#eaeaea;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#eaeaea;font-style:italic}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-fifth-theme .footer_content{color:#333232}.layout_first-demo-fifth-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-fifth-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #f47621;color:#fff;background:#f47621;margin-bottom:10px;border-radius:2px}.layout_first-demo-fifth-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #f47621;color:#f47621;background:#fff}.layout_first-demo-fifth-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-fifth-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-fifth-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-fifth-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #f47621;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-fifth-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left;margin-top:30px}.layout_first-demo-fifth-theme .tab{width:100%;color:#262f36;overflow:hidden;border-bottom:1px solid;border-color:#ddd}.layout_first-demo-fifth-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-fifth-theme .tab-label:hover{background:#f47621;color:#fff;transition:.5s}.layout_first-demo-fifth-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-fifth-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s;opacity:0}.layout_first-demo-fifth-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#f47621;cursor:pointer}.layout_first-demo-fifth-theme .tab-close:hover{background:#f47621}.layout_first-demo-fifth-theme .tab:last-child{border:none}.layout_first-demo-fifth-theme .tab input[type=checkbox]{display:none}.layout_first-demo-fifth-theme input:checked+.tab-label{background:#f47621;color:#fff}.layout_first-demo-fifth-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-fifth-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #ddd;border-bottom:none;opacity:1}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue{background-image:none !important;background-color:#fff;padding:40px 0px 0px 0px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow{align-items:flex-end}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .secondSecImg{max-width:80%}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section{padding-bottom:60px;width:550px;max-width:100%}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section h2{font-size:30px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue:before{display:none}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .heading-section{padding:0px;color:#262f36}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .heading-section h2{color:#262f36;margin-bottom:0px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .heading-section p{width:960px;max-width:100%;margin-bottom:30px;font-size:18px;font-weight:300}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .heading-section .homebtn{border-color:#f47621;color:#f47621;display:inline-block;margin-top:0px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .heading-section .homebtn:hover{background-color:#262f36;color:#fff;border-color:#262f36}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec{background-color:#f47621;padding-bottom:0px;padding-top:40px}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .row{align-items:end}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section h2{color:#fff}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p{color:#fff}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p div{color:#fff !important;font-size:18px !important;text-align:justify}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-2{text-align:center}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-2 .heading-section img{width:500px}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-1 .heading-section{padding-bottom:50px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light{background:#f8f8ff !important;padding:60px 0px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light .heading-section{padding-top:0px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light .heading-section h2{margin-bottom:10px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light .heading-section p{color:#262f36;width:100%;font-size:18px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq{padding-bottom:0px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip{display:inline-block;background:#f47621;width:100%;padding:40px 0px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip h2{color:#262f36;font-size:38px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip p{color:#262f36;font-size:20px;margin-bottom:30px;line-height:1.3}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip a.homebtn.section-4{border-color:#262f36;color:#262f36}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip a.homebtn.section-4:hover{color:#262f36;border-color:#fff;background-color:#fff}.layout_first-demo-fifth-theme .banner-div-section:after{content:"";position:absolute;width:71px;height:134px;background-repeat:no-repeat;left:50%;bottom:-67px;z-index:1;transform:translate(-35px, 0px);background-image:url(/static/media/icon-down-arrow.89b45509322dc9ccee5676bfc0fed43c.png)}.layout_first-demo-fifth-theme .banner-div-section{position:relative}.layout_first-demo-fifth-theme .carousel-indicators{display:none}.layout_first-demo-fifth-theme .heading-section{padding:100px 0px 150px 0px}.layout_first-demo-fifth-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#f47621}.layout_first-demo-fifth-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-fifth-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#f47621;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#f47621;text-align:center}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #f47621;color:#f47621;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #f47621;color:#fff;padding:12px 30px;text-transform:uppercase;background:#f47621;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-fifth-theme .input-box__field--error,.layout_first-demo-fifth-theme .input-box__field--errord{border-color:#f47621 !important;box-shadow:none}.layout_first-demo-fifth-theme .date-box__field{padding:5px 5px}.layout_first-demo-fifth-theme .input-box__field--survey{border-width:2px}.layout_first-demo-fifth-theme .input-box__field--survey:hover,.layout_first-demo-fifth-theme .input-box__field--survey:focus{border:solid 2px #f47621}.layout_first-demo-fifth-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-fifth-theme .textarea-box__field--survey:hover,.layout_first-demo-fifth-theme .textarea-box__field--survey:focus{border:solid 2px #f47621}.layout_first-demo-fifth-theme .formlogo{position:absolute;bottom:42px;font-size:12px;text-align:center;color:#868686;right:0;width:100%;font-weight:600}.layout_first-demo-fifth-theme .formlogo img{max-width:160px}@media(max-width: 1425px){.layout_first-demo-fifth-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-fifth-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-fifth-theme .container{max-width:1140px}.layout_first-demo-fifth-theme .container-lg{max-width:1140px}.layout_first-demo-fifth-theme .container-md{max-width:1140px}.layout_first-demo-fifth-theme .container-sm{max-width:1140px}.layout_first-demo-fifth-theme .container-xl{max-width:1140px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem}.layout_first-demo-fifth-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-fifth-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-fifth-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-fifth-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-fifth-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-fifth-theme li.nav-item{margin-left:30px !important}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-fifth-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-fifth-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-fifth-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-fifth-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-fifth-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-fifth-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-fifth-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-fifth-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-fifth-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-fifth-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#f47621 !important}.layout_first-demo-fifth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-fifth-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#262f36 !important}.layout_first-demo-fifth-theme .block-multiples{padding:0px 15px}.layout_first-demo-fifth-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-fifth-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-fifth-theme .navbar-collapse{background-color:#f47621}.layout_first-demo-fifth-theme .lead{margin:15px 0px}.layout_first-demo-fifth-theme body{font-size:14px}.layout_first-demo-fifth-theme .heading-section h2{font-size:30px}.layout_first-demo-fifth-theme .single-block p{text-align:justify}.layout_first-demo-fifth-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-fifth-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-fifth-theme .innerPageContent{padding:40px 0px}.layout_first-demo-fifth-theme .footer-content .custome-links{margin-top:10px;display:inline-block;width:100%}.layout_first-demo-fifth-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-fifth-theme .footer-content{padding:20px 0px}.layout_first-demo-fifth-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-fifth-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-fifth-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-fifth-theme .heading-section h2{font-size:26px}.layout_first-demo-fifth-theme .heading-section p{width:100%}.layout_first-demo-fifth-theme .heading-section{padding-bottom:0px}.layout_first-demo-fifth-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-fifth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-fifth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#f47621;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-fifth-theme div#fragment-1{padding:0}.layout_first-demo-fifth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-fifth-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{width:100%;height:auto;float:none;text-align:center;padding-top:20%}.layout_first-demo-fifth-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-fifth-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-fifth-theme .block-multiples .row{display:block}.layout_first-demo-fifth-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-fifth-theme .block-multiples{padding:0px 30px}.layout_first-demo-fifth-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-fifth-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-fifth-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-fifth-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-fifth-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-fifth-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-fifth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-fifth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-fifth-theme .descrioption-news{text-align:left}.layout_first-demo-fifth-theme .heading-section p{width:100% !important}.layout_first-demo-fifth-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-fifth-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-fifth-theme .pageTitle{background:#f47621;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-fifth-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-fifth-theme .form-heading{margin-bottom:0}.layout_first-demo-fifth-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-fifth-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-fifth-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-fifth-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-fifth-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-fifth-theme .heading-section h2{font-size:20px}.layout_first-demo-fifth-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-fifth-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-fifth-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-fifth-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-fifth-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-fifth-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-fifth-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-fifth-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1425px){.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-size:14px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12 .row{max-width:1140px}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .container{max-width:1140px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .secondSecImg{max-width:100%}.layout_first-demo-fifth-theme .slider-home .carousel-item{padding:60px 0px 10px 0px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .homebtn{padding:12px 40px;margin:15px 0px;font-size:1.2rem}.layout_first-demo-fifth-theme .banner-div-section::after{width:51px;height:97px;background-size:100%;bottom:-47px;transform:translate(-25.5px, 0px)}.layout_first-demo-fifth-theme .trustedBrands{padding:60px 0px 20px 0px}.layout_first-demo-fifth-theme .heading-section{padding:50px 0px 150px 0px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue{padding:20px 0px 0px 0px}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section h2{margin-bottom:20px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light{padding-top:40px}}@media(max-width: 1200px){.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{padding-top:0px}.layout_first-demo-fifth-theme .trustedBrands ul li{flex:0 0 20%;max-width:20%;text-align:center}.layout_first-demo-fifth-theme .heading-section p{width:90%}.layout_first-demo-fifth-theme .heading-section{padding:50px 0px 130px 0px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding-bottom:40px}}@media(max-width: 1024px){.layout_first-demo-fifth-theme .carousel-item{height:auto}.layout_first-demo-fifth-theme .slider-home .carousel-item{padding:20px 0px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{padding:2em 0em 0em 0em;width:600px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-size:20px;padding:5px 5px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:34px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:18px}.layout_first-demo-fifth-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-fifth-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-fifth-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-fifth-theme .descript-thankyou p{width:100%}.layout_first-demo-fifth-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-fifth-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}.layout_first-demo-fifth-theme .banner-div-section::after{width:50px;height:95px;bottom:-47.5px;transform:translate(-25px, 0px);background-size:100%}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue{padding:30px 0px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding-bottom:30px}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section h2{font-size:34px;margin-bottom:20px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light{padding:30px 0px}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section h2{font-size:26px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .heading-section p{margin-bottom:10px;font-size:16px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue{padding:30px 0px 0px 0px}}@media(max-width: 992px){.layout_first-demo-fifth-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-fifth-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-fifth-theme img{max-width:100%}.layout_first-demo-fifth-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-fifth-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-fifth-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-fifth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-fifth-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-fifth-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 100px 20px}.layout_first-demo-fifth-theme .formlogo img{max-width:100px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12 .row{margin-top:0px}.layout_first-demo-fifth-theme .heading-section{padding:40px 15px}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding:15px 0px}.layout_first-demo-fifth-theme .block-multiples .col-sm-3{margin:15px 0px}.layout_first-demo-fifth-theme .banner-div-section::after{width:30px;height:58px;bottom:-29px;transform:translate(-15px, 0px)}.layout_first-demo-fifth-theme .heading-section p{width:100%}.layout_first-demo-fifth-theme .heading-section h2{margin-bottom:1rem}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding:15px 15px}.layout_first-demo-fifth-theme .block-multiples .single-block p{text-align:center}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .heading-section p{margin-bottom:0px}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-1 .heading-section{padding-bottom:10px;text-align:center}.layout_first-demo-fifth-theme .footer-content .custome-links{margin-top:10px}.layout_first-demo-fifth-theme .navbar-collapse{margin:0px -15px;border-top:1px solid rgba(255,255,255,.4);background-color:#262f36}.layout_first-demo-fifth-theme .header-section .fixed-top{padding:.5rem 1rem 0px 0px !important}.layout_first-demo-fifth-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem 0px 0px !important}.layout_first-demo-fifth-theme .header-section .banner-div-section{margin-top:68px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{width:510px}.layout_first-demo-fifth-theme .trustedBrands{padding:40px 0px 20px 0px}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p div{text-align-last:center;-moz-text-align-last:center;-ms-text-align-last:center}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section{flex:0 0 100%;margin-left:0px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip p{font-size:22px}.layout_first-demo-fifth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{padding-bottom:0px}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec{padding-top:20px}.layout_first-demo-fifth-theme .secondSecRow .order-md-2{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;-ms-flex-order:1;order:1}.layout_first-demo-fifth-theme .secondSecRow .order-md-1{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;-ms-flex-order:1;order:1}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .secondSecImg{width:450px}.layout_first-demo-fifth-theme .section-second-main .sectionone.first.bgblue .secondSecRow .order-md-2 .heading-section{margin:auto;padding-bottom:30px}}@media(max-width: 767px){.layout_first-demo-fifth-theme .block-multiples .row{display:flex}}@media(max-width: 640px){.layout_first-demo-fifth-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-fifth-theme .slider-home .carousel-item{padding:40px 0px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{padding:0em}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:34px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:18px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content h2{font-size:16px}.layout_first-demo-fifth-theme .heading-section h2{font-size:28px}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-fifth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-fifth-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-fifth-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-fifth-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-fifth-theme .contactFields{margin-top:30px}.layout_first-demo-fifth-theme .block-multiples{padding:0px 15px}.layout_first-demo-fifth-theme .contactFields ul li{font-size:14px}.layout_first-demo-fifth-theme .contactFields h5{font-size:18px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 100px 15px}.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-fifth-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-fifth-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-fifth-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-fifth-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-fifth-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-fifth-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 100px 15px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-fifth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-fifth-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light{padding:20px 0px}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-1 .heading-section{padding-bottom:0px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content{text-align:center}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .heading-section p{text-align:center}.layout_first-demo-fifth-theme .section-one-main .sectionone.first.bgwhite .container>.row .block-multiples.col-sm-12{padding:15px 0px}.layout_first-demo-fifth-theme .section-third-main .sectionone.first.bgwhite.third-sec .order-md-2 .heading-section img{top:0px}.layout_first-demo-fifth-theme img.img-fluid-logo{height:40px !important;max-width:200px}.layout_first-demo-fifth-theme .header-section .banner-div-section{margin-top:66px}.layout_first-demo-fifth-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:inline-block !important}.layout_first-demo-fifth-theme .trustedBrands ul li{flex:0 0 33.3333%;max-width:33.3333%}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section h2{font-size:26px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip h2{font-size:26px}.layout_first-demo-fifth-theme .section-fourth-main .sectionone.first.bg-light.hideFaq .bottomStip p{font-size:18px}.layout_first-demo-fifth-theme .sectionone.first.bg-light .heading-section{padding:0px 15px}.layout_first-demo-fifth-theme .footer-content .col-sm-9{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-fifth-theme .header-section .fixed-top,.layout_first-demo-fifth-theme .header-section.pageScroll .fixed-top{padding:0px 1rem !important}.layout_first-demo-fifth-theme .header-section .fixed-top .navbar-brand{min-height:60px;line-height:60px}.layout_first-demo-fifth-theme .navbar-brand img.img-fluid-logo{height:33px !important;max-width:none}.layout_first-demo-fifth-theme .footer-content .custome-links{width:auto}}@media(max-width: 375px){.layout_first-demo-fifth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-fifth-theme .descript-thankyou p span{font-size:16px !important}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h2{font-size:30px}.layout_first-demo-fifth-theme .slider-home .carousel-item .slider-content .lead h3{font-size:16px}.layout_first-demo-fifth-theme .slider-home .carousel-item{padding:40px 0px 20px 0px}.layout_first-demo-fifth-theme .section-third-main .container .order-md-1 .heading-section h2{font-size:30px}.layout_first-demo-fifth-theme .tab-label{font-size:18px}}.layout_first-demo-sixth-theme .notQualifySection .button-home a{background:none;color:#5c0f8b;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #5c0f8b;border-radius:3px;font-weight:500}.layout_first-demo-sixth-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-sixth-theme .notQualifySection .button-home a svg path{fill:#5c0f8b}.layout_first-demo-sixth-theme .notQualifySection .button-home a:hover{background:#5c0f8b;color:#fff}.layout_first-demo-sixth-theme .notQualifySection .button-home a:hover svg path{fill:#fff}.layout_first-demo-sixth-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-sixth-theme .section-one-main{background:#f9f9f9}.layout_first-demo-sixth-theme .section-third-main{background:#f9f9f9}.layout_first-demo-sixth-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-sixth-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-sixth-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-sixth-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-sixth-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-sixth-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-sixth-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#5c0f8b;border:2px solid #5c0f8b;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-sixth-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#5c0f8b;border:2px solid #5c0f8b;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-sixth-theme .container{max-width:1420px}.layout_first-demo-sixth-theme .header-section{background:#5c0f8b}.layout_first-demo-sixth-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#5c0f8b !important}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-sixth-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-sixth-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-sixth-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-sixth-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#fff;color:#5c0f8b}.layout_first-demo-sixth-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-sixth-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-sixth-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-sixth-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-sixth-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-sixth-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-sixth-theme .width80{width:80%;margin:0 auto}.layout_first-demo-sixth-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-sixth-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-sixth-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-sixth-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-sixth-theme ul.contact_lists li{display:flex}.layout_first-demo-sixth-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-sixth-theme .text_block{display:flex}.layout_first-demo-sixth-theme span.number_1{margin-right:10px}.layout_first-demo-sixth-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-sixth-theme .heading-section h2{font-weight:400;font-size:36px;line-height:36px;margin-bottom:.3rem}.layout_first-demo-sixth-theme .heading-section p{width:65%;margin:0px auto}.layout_first-demo-sixth-theme .heading-section{padding-bottom:50px}.layout_first-demo-sixth-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-sixth-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-sixth-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-sixth-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-sixth-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-sixth-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-sixth-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center}.layout_first-demo-sixth-theme .image-block{margin-bottom:15px}.layout_first-demo-sixth-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-sixth-theme .center-item{text-align:center}.layout_first-demo-sixth-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-sixth-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-sixth-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-sixth-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-sixth-theme .sectionone.first.bgblue{background-color:#5c0f8b;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#fff;padding:130px 0%;position:relative}.layout_first-demo-sixth-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #5c0f8b 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#5c0f8b;background:#fff}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec{text-align:left}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-sixth-theme .sectionone.first.bg-light{background:#5c0f8b !important;padding:80px 0%}.layout_first-demo-sixth-theme .sectionone.first.bg-light .heading-section{text-align:center;width:790px;max-width:100%;color:#fff;padding-bottom:0px}.layout_first-demo-sixth-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-sixth-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-sixth-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-sixth-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-sixth-theme .footer-content{background:#333;color:#ddd;padding:20px 0%}.layout_first-demo-sixth-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-sixth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-sixth-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-sixth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-sixth-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-sixth-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-sixth-theme .footer-content .img-fluid{display:block}.layout_first-demo-sixth-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-sixth-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-sixth-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-sixth-theme .header-section.pageScroll .fixed-top{background:#5c0f8b !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-sixth-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-sixth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#5c0f8b;padding:15px 0;color:#fff}.layout_first-demo-sixth-theme div#fragment-1{padding:0px 20px}.layout_first-demo-sixth-theme .header-section.headerInside .fixed-top{background-color:#5c0f8b !important}.layout_first-demo-sixth-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-sixth-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-sixth-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-sixth-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-sixth-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#5c0f8b;padding:30px 0px 20px 0}.layout_first-demo-sixth-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-sixth-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-sixth-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-sixth-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#5c0f8b}.layout_first-demo-sixth-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-sixth-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-sixth-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-sixth-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-sixth-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-sixth-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-sixth-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-sixth-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-sixth-theme .innerpageheader h4{font-size:35px}.layout_first-demo-sixth-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #5c0f8b;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-sixth-theme .bottom-button-new a.mover:hover{background:#5c0f8b;color:#fff}.layout_first-demo-sixth-theme .bottom-button-new{display:inline-block}.layout_first-demo-sixth-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-sixth-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-sixth-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-sixth-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-sixth-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-sixth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-sixth-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-sixth-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-sixth-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-sixth-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-sixth-theme ul.listing-1 li i{background:#5c0f8b;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-sixth-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-sixth-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-sixth-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-sixth-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-sixth-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-sixth-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-sixth-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-sixth-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-sixth-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#5c0f8b}.layout_first-demo-sixth-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-sixth-theme span.mendatory{color:#b71515}.layout_first-demo-sixth-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-sixth-theme .lead li{list-style:none;position:relative;padding-left:45px;margin:5px 0px}.layout_first-demo-sixth-theme .lead li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#fff}.layout_first-demo-sixth-theme .pageTitle{background:#5c0f8b;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-sixth-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-sixth-theme .innerPageContent{padding:50px 0px}.layout_first-demo-sixth-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-sixth-theme .form-heading{margin-bottom:40px}.layout_first-demo-sixth-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-sixth-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-sixth-theme .form-control{font-weight:300}.layout_first-demo-sixth-theme .form-control::placeholder{color:#ccc}.layout_first-demo-sixth-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-sixth-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-sixth-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-sixth-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-sixth-theme .section-third-main .container{max-width:1240px}.layout_first-demo-sixth-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-sixth-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-sixth-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-sixth-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-sixth-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-sixth-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:3px;width:30px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#5c0f8b}.layout_first-demo-sixth-theme .contactFields{margin-top:50px}.layout_first-demo-sixth-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-sixth-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-sixth-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-sixth-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-sixth-theme .contactFields ul li a:hover,.layout_first-demo-sixth-theme .contactFields ul li a:hover span{color:#5c0f8b;text-decoration:none}.layout_first-demo-sixth-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;box-shadow:15px 15px 0px #eee}.layout_first-demo-sixth-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-sixth-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-sixth-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-sixth-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-sixth-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-sixth-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-sixth-theme .button-home a{background:#5c0f8b;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-sixth-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-sixth-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-sixth-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-sixth-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block}.layout_first-demo-sixth-theme a.homebtn.section-4:hover{background:#fff;color:#5c0f8b}.layout_first-demo-sixth-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-sixth-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-sixth-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-sixth-theme .newSurveyForm::before{position:absolute;height:250px;background:#5c0f8b;top:0px;left:0px;width:100%;content:""}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;margin:auto;padding:50px;position:relative;z-index:1;border-radius:0px;padding-bottom:90px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#5c0f8b}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading h2{background-image:linear-gradient(to right, #e10a0a 0, #5c0f8b 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0)}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{color:#fff;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px;border:none;position:relative;background:#5c0f8b}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn::after{background-image:url(/static/media/arrow-btn.72b3b36e91d4e48c04bfeb5bbacda288.png);background-repeat:no-repeat;content:"";right:20px;width:12px;height:12px;position:absolute;transition-duration:250ms;height:12px;transform:translate(0, -50%);content:"";top:50%}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#e10a0a}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover::after{right:10px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#5c0f8b;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-sixth-theme .newSurveyForm button.btn.btn-submit{border:2px solid #5c0f8b;color:#5c0f8b;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-sixth-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-sixth-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-sixth-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #5c0f8b 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-sixth-theme .carousel-item{height:100vh}.layout_first-demo-sixth-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-sixth-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-sixth-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-sixth-theme .newSurveyForm{text-align:center}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#3c3c3c;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#fff}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#fff}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#eaeaea;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#eaeaea;font-style:italic}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-sixth-theme .footer_content{color:#333232}.layout_first-demo-sixth-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-sixth-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #5c0f8b;color:#fff;background:#5c0f8b;margin-bottom:10px;border-radius:2px}.layout_first-demo-sixth-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #5c0f8b;color:#5c0f8b;background:#fff}.layout_first-demo-sixth-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-sixth-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-sixth-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-sixth-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #5c0f8b;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-sixth-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-sixth-theme .tab{width:100%;color:#5c0f8b;overflow:hidden;border-bottom:1px solid;border-color:#5c0f8b}.layout_first-demo-sixth-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-sixth-theme .tab-label:hover{background:#5c0f8b;color:#fff;transition:.5s}.layout_first-demo-sixth-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-sixth-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-sixth-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#5c0f8b;cursor:pointer}.layout_first-demo-sixth-theme .tab-close:hover{background:#5c0f8b}.layout_first-demo-sixth-theme .tab:last-child{border:none}.layout_first-demo-sixth-theme .tab input[type=checkbox]{display:none}.layout_first-demo-sixth-theme input:checked+.tab-label{background:#5c0f8b;color:#fff}.layout_first-demo-sixth-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-sixth-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-sixth-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#5c0f8b}.layout_first-demo-sixth-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-sixth-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#5c0f8b;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#5c0f8b;text-align:center}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #5c0f8b;color:#5c0f8b;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #5c0f8b;color:#fff;padding:12px 30px;text-transform:uppercase;background:#5c0f8b;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-sixth-theme .input-box__field--error,.layout_first-demo-sixth-theme .input-box__field--errord{border-color:#5c0f8b !important;box-shadow:none}.layout_first-demo-sixth-theme .date-box__field{padding:5px 5px}.layout_first-demo-sixth-theme .input-box__field--survey{border-width:2px}.layout_first-demo-sixth-theme .input-box__field--survey:hover,.layout_first-demo-sixth-theme .input-box__field--survey:focus{border:solid 2px #5c0f8b}.layout_first-demo-sixth-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-sixth-theme .textarea-box__field--survey:hover,.layout_first-demo-sixth-theme .textarea-box__field--survey:focus{border:solid 2px #5c0f8b}@media(max-width: 1425px){.layout_first-demo-sixth-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-sixth-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-sixth-theme .container{max-width:1140px}.layout_first-demo-sixth-theme .container-lg{max-width:1140px}.layout_first-demo-sixth-theme .container-md{max-width:1140px}.layout_first-demo-sixth-theme .container-sm{max-width:1140px}.layout_first-demo-sixth-theme .container-xl{max-width:1140px}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem}.layout_first-demo-sixth-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-sixth-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-sixth-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-sixth-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-sixth-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-sixth-theme li.nav-item{margin-left:30px !important}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-sixth-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-sixth-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-sixth-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-sixth-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-sixth-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-sixth-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-sixth-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-sixth-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-sixth-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-sixth-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#5c0f8b !important}.layout_first-demo-sixth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-sixth-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#5c0f8b !important}.layout_first-demo-sixth-theme .block-multiples{padding:0px 15px}.layout_first-demo-sixth-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-sixth-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-sixth-theme .navbar-collapse{background-color:#5c0f8b}.layout_first-demo-sixth-theme .lead{margin:15px 0px}.layout_first-demo-sixth-theme body{font-size:14px}.layout_first-demo-sixth-theme .heading-section h2{font-size:30px}.layout_first-demo-sixth-theme .single-block p{text-align:justify}.layout_first-demo-sixth-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-sixth-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-sixth-theme .innerPageContent{padding:40px 0px}.layout_first-demo-sixth-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-sixth-theme .footer-content{padding:20px 0px}.layout_first-demo-sixth-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-sixth-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-sixth-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-sixth-theme .heading-section h2{font-size:26px}.layout_first-demo-sixth-theme .heading-section p{width:100%}.layout_first-demo-sixth-theme .heading-section{padding-bottom:0px}.layout_first-demo-sixth-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-sixth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-sixth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#5c0f8b;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-sixth-theme div#fragment-1{padding:0}.layout_first-demo-sixth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-sixth-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-sixth-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-sixth-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-sixth-theme .block-multiples .row{display:flex}.layout_first-demo-sixth-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-sixth-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-sixth-theme .block-multiples{padding:0px 30px}.layout_first-demo-sixth-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-sixth-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-sixth-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-sixth-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-sixth-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-sixth-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-sixth-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-sixth-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-sixth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-sixth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-sixth-theme .descrioption-news{text-align:left}.layout_first-demo-sixth-theme .heading-section p{width:100% !important}.layout_first-demo-sixth-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-sixth-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-sixth-theme .pageTitle{background:#5c0f8b;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-sixth-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-sixth-theme .form-heading{margin-bottom:0}.layout_first-demo-sixth-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-sixth-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-sixth-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-sixth-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-sixth-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-sixth-theme .heading-section h2{font-size:20px}.layout_first-demo-sixth-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-sixth-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-sixth-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-sixth-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-sixth-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-sixth-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-sixth-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-sixth-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-sixth-theme .carousel-item{height:auto}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-sixth-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-sixth-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-sixth-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-sixth-theme .descript-thankyou p{width:100%}.layout_first-demo-sixth-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-sixth-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}}@media(max-width: 992px){.layout_first-demo-sixth-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-sixth-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-sixth-theme img{max-width:100%}.layout_first-demo-sixth-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-sixth-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-sixth-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-sixth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-sixth-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-sixth-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-sixth-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-sixth-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-sixth-theme .heading-section h2{font-size:28px}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-sixth-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-sixth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-sixth-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-sixth-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-sixth-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-sixth-theme .contactFields{margin-top:30px}.layout_first-demo-sixth-theme .block-multiples{padding:0px 15px}.layout_first-demo-sixth-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-sixth-theme .contactFields ul li{font-size:14px}.layout_first-demo-sixth-theme .contactFields h5{font-size:18px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-sixth-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-sixth-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-sixth-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-sixth-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-sixth-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-sixth-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-sixth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-sixth-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-sixth-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-sixth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-sixth-theme .descript-thankyou p span{font-size:16px !important}}.layout_first-demo-seventh-theme .notQualifySection .button-home a{background:none;color:#1b283f;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #1b283f;border-radius:3px;font-weight:500}.layout_first-demo-seventh-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-seventh-theme .notQualifySection .button-home a svg path{fill:#1b283f}.layout_first-demo-seventh-theme .notQualifySection .button-home a:hover{background:#1b283f;color:#f2fafd}.layout_first-demo-seventh-theme .notQualifySection .button-home a:hover svg path{fill:#f2fafd}.layout_first-demo-seventh-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-seventh-theme .section-one-main{background:#f9f9f9}.layout_first-demo-seventh-theme .section-third-main{background:#f9f9f9}.layout_first-demo-seventh-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-seventh-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-seventh-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-seventh-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-seventh-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-seventh-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-seventh-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#1b283f;border:2px solid #1b283f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-seventh-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#1b283f;border:2px solid #1b283f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-seventh-theme .container{max-width:1420px}.layout_first-demo-seventh-theme .header-section{background:#1b283f}.layout_first-demo-seventh-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px;border-radius:5px}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#1b283f !important}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px;border-radius:5px}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-seventh-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-seventh-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-seventh-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-seventh-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s;border-radius:5px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#1b283f;color:#fff;border-color:#1b283f}.layout_first-demo-seventh-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-seventh-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-seventh-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-seventh-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-seventh-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-seventh-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-seventh-theme .width80{width:80%;margin:0 auto}.layout_first-demo-seventh-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-seventh-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-seventh-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-seventh-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-seventh-theme ul.contact_lists li{display:flex}.layout_first-demo-seventh-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-seventh-theme .text_block{display:flex}.layout_first-demo-seventh-theme span.number_1{margin-right:10px}.layout_first-demo-seventh-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-seventh-theme .heading-section h2{font-weight:600;font-size:42px;line-height:normal;margin-bottom:.3rem}.layout_first-demo-seventh-theme .heading-section p{width:65%;margin:0px auto;font-size:18px}.layout_first-demo-seventh-theme .heading-section{padding-bottom:50px}.layout_first-demo-seventh-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-seventh-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-seventh-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-seventh-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-seventh-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-seventh-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-seventh-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center;background:#f2fafd}.layout_first-demo-seventh-theme .image-block{margin-bottom:15px}.layout_first-demo-seventh-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-seventh-theme .center-item{text-align:center}.layout_first-demo-seventh-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-seventh-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-seventh-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-seventh-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-seventh-theme .sectionone.first.bgblue{background-color:#1b283f;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#111;padding:130px 0%;position:relative}.layout_first-demo-seventh-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #ffc417 0%, #ffc417 100%) 0% 0% no-repeat padding-box;opacity:.9}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section .homebtn{color:#111;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #111;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px;border-radius:5px}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#fff;background:#1b283f}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec{text-align:left;background:#f2fafd}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .container{background:#cae7f7;padding:80px;max-width:1420px}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-seventh-theme .sectionone.first.bg-light{background:#ffc417 !important;padding:80px 0%}.layout_first-demo-seventh-theme .sectionone.first.bg-light .heading-section{text-align:center;width:950px;max-width:100%;color:#111;padding-bottom:0px}.layout_first-demo-seventh-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-seventh-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-seventh-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-seventh-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-seventh-theme .footer-content{background:#1b283f;color:#ddd;padding:20px 0%}.layout_first-demo-seventh-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-seventh-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-seventh-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-seventh-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-seventh-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-seventh-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-seventh-theme .footer-content .img-fluid{display:block}.layout_first-demo-seventh-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-seventh-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-seventh-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-seventh-theme .header-section.pageScroll .fixed-top{background:#1b283f !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-seventh-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-seventh-theme .block_wrapper h2{text-align:center;font-weight:500;background:#1b283f;padding:15px 0;color:#fff}.layout_first-demo-seventh-theme div#fragment-1{padding:0px 20px}.layout_first-demo-seventh-theme .header-section.headerInside .fixed-top{background-color:#1b283f !important}.layout_first-demo-seventh-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-seventh-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-seventh-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-seventh-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-seventh-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#1b283f;padding:30px 0px 20px 0}.layout_first-demo-seventh-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-seventh-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-seventh-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-seventh-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#1b283f}.layout_first-demo-seventh-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-seventh-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-seventh-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-seventh-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-seventh-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-seventh-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-seventh-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-seventh-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-seventh-theme .innerpageheader h4{font-size:35px}.layout_first-demo-seventh-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #1b283f;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-seventh-theme .bottom-button-new a.mover:hover{background:#1b283f;color:#fff}.layout_first-demo-seventh-theme .bottom-button-new{display:inline-block}.layout_first-demo-seventh-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-seventh-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-seventh-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-seventh-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-seventh-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-seventh-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-seventh-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-seventh-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-seventh-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-seventh-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-seventh-theme ul.listing-1 li i{background:#1b283f;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-seventh-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-seventh-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-seventh-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-seventh-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-seventh-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-seventh-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-seventh-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-seventh-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-seventh-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#1b283f}.layout_first-demo-seventh-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-seventh-theme span.mendatory{color:#b71515}.layout_first-demo-seventh-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-seventh-theme .lead li{list-style:none;position:relative;padding-left:40px;margin:15px 0px}.layout_first-demo-seventh-theme .lead li::before{content:"";height:20px;width:20px;left:0px;top:3px;position:absolute;display:inline-block;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg);background-repeat:no-repeat;background-size:cover}.layout_first-demo-seventh-theme .pageTitle{background:#1b283f;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-seventh-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-seventh-theme .innerPageContent{padding:50px 0px}.layout_first-demo-seventh-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-seventh-theme .form-heading{margin-bottom:40px}.layout_first-demo-seventh-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-seventh-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-seventh-theme .form-control{font-weight:300}.layout_first-demo-seventh-theme .form-control::placeholder{color:#ccc}.layout_first-demo-seventh-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-seventh-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-seventh-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-seventh-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-seventh-theme .section-third-main .container{max-width:1240px}.layout_first-demo-seventh-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-seventh-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-seventh-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-seventh-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-seventh-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-seventh-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:20px;width:20px;left:0px;top:3px;position:absolute;display:inline-block;background-image:url(/static/media/yes-black.284bb1165c15fddb27a83f81718eab59.svg);background-repeat:no-repeat;background-size:cover}.layout_first-demo-seventh-theme .contactFields{margin-top:50px}.layout_first-demo-seventh-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-seventh-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-seventh-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-seventh-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-seventh-theme .contactFields ul li a:hover,.layout_first-demo-seventh-theme .contactFields ul li a:hover span{color:#1b283f;text-decoration:none}.layout_first-demo-seventh-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;margin-top:-120px}.layout_first-demo-seventh-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-seventh-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-seventh-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-seventh-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-seventh-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-seventh-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-seventh-theme .button-home a{background:#1b283f;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-seventh-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-seventh-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-seventh-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-seventh-theme a.homebtn.section-4{color:#111;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #111;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block;border-radius:5px}.layout_first-demo-seventh-theme a.homebtn.section-4:hover{background:#1b283f;color:#fff}.layout_first-demo-seventh-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-seventh-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-seventh-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-seventh-theme .newSurveyForm::before{position:absolute;height:250px;background:#1b283f;top:0px;left:0px;width:100%;content:""}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#1b283f}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #1b283f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#1b283f;letter-spacing:1px;border-radius:2px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#1b283f;border-color:#1b283f}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#1b283f;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#ffc417;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #ffc417;border-radius:5px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#ffc417;height:8px;border-radius:2px;float:left}.layout_first-demo-seventh-theme .newSurveyForm button.btn.btn-submit{border:2px solid #1b283f;color:#1b283f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-seventh-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-seventh-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-seventh-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #1b283f 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-seventh-theme .carousel-item{height:100vh}.layout_first-demo-seventh-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-seventh-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-seventh-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-seventh-theme .newSurveyForm{text-align:center}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#cae7f7;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#111}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#111}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#111;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#111;font-style:italic}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-seventh-theme .footer_content{color:#333232}.layout_first-demo-seventh-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-seventh-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #1b283f;color:#fff;background:#1b283f;margin-bottom:10px;border-radius:2px}.layout_first-demo-seventh-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #1b283f;color:#1b283f;background:#fff}.layout_first-demo-seventh-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-seventh-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-seventh-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-seventh-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #1b283f;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-seventh-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-seventh-theme .tab{width:100%;color:#1b283f;overflow:hidden;border-bottom:1px solid;border-color:#1b283f}.layout_first-demo-seventh-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-seventh-theme .tab-label:hover{background:#1b283f;color:#fff;transition:.5s}.layout_first-demo-seventh-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-seventh-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-seventh-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#1b283f;cursor:pointer}.layout_first-demo-seventh-theme .tab-close:hover{background:#1b283f}.layout_first-demo-seventh-theme .tab:last-child{border:none}.layout_first-demo-seventh-theme .tab input[type=checkbox]{display:none}.layout_first-demo-seventh-theme input:checked+.tab-label{background:#1b283f;color:#fff}.layout_first-demo-seventh-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-seventh-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-seventh-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#1b283f}.layout_first-demo-seventh-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-seventh-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#1b283f;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#1b283f;text-align:center}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #1b283f;color:#1b283f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #1b283f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#1b283f;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-seventh-theme .input-box__field--error,.layout_first-demo-seventh-theme .input-box__field--errord{border-color:#1b283f !important;box-shadow:none}.layout_first-demo-seventh-theme .date-box__field{padding:5px 5px}.layout_first-demo-seventh-theme .input-box__field--survey{border-width:2px}.layout_first-demo-seventh-theme .input-box__field--survey:hover,.layout_first-demo-seventh-theme .input-box__field--survey:focus{border:solid 2px #1b283f}.layout_first-demo-seventh-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-seventh-theme .textarea-box__field--survey:hover,.layout_first-demo-seventh-theme .textarea-box__field--survey:focus{border:solid 2px #1b283f}@media(max-width: 1425px){.layout_first-demo-seventh-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-seventh-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-seventh-theme .container{max-width:1140px}.layout_first-demo-seventh-theme .container-lg{max-width:1140px}.layout_first-demo-seventh-theme .container-md{max-width:1140px}.layout_first-demo-seventh-theme .container-sm{max-width:1140px}.layout_first-demo-seventh-theme .container-xl{max-width:1140px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem;border-radius:5px}.layout_first-demo-seventh-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-seventh-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-seventh-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-seventh-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-seventh-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-seventh-theme li.nav-item{margin-left:30px !important}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-seventh-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-seventh-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-seventh-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-seventh-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-seventh-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-seventh-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-seventh-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-seventh-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-seventh-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-seventh-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#1b283f !important}.layout_first-demo-seventh-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-seventh-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#1b283f !important}.layout_first-demo-seventh-theme .block-multiples{padding:0px 15px}.layout_first-demo-seventh-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-seventh-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-seventh-theme .navbar-collapse{background-color:#1b283f}.layout_first-demo-seventh-theme .lead{margin:15px 0px}.layout_first-demo-seventh-theme body{font-size:14px}.layout_first-demo-seventh-theme .heading-section h2{font-size:30px}.layout_first-demo-seventh-theme .single-block p{text-align:justify}.layout_first-demo-seventh-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-seventh-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-seventh-theme .innerPageContent{padding:40px 0px}.layout_first-demo-seventh-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-seventh-theme .footer-content{padding:20px 0px}.layout_first-demo-seventh-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-seventh-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-seventh-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-seventh-theme .heading-section h2{font-size:26px}.layout_first-demo-seventh-theme .heading-section p{width:100%}.layout_first-demo-seventh-theme .heading-section{padding-bottom:0px}.layout_first-demo-seventh-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-seventh-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-seventh-theme .block_wrapper h2{text-align:center;font-weight:500;background:#1b283f;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-seventh-theme div#fragment-1{padding:0}.layout_first-demo-seventh-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-seventh-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-seventh-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-seventh-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-seventh-theme .block-multiples .row{display:flex}.layout_first-demo-seventh-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-seventh-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-seventh-theme .block-multiples{padding:0px 30px}.layout_first-demo-seventh-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-seventh-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-seventh-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-seventh-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-seventh-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-seventh-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-seventh-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-seventh-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-seventh-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-seventh-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-seventh-theme .descrioption-news{text-align:left}.layout_first-demo-seventh-theme .heading-section p{width:100% !important}.layout_first-demo-seventh-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-seventh-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-seventh-theme .pageTitle{background:#1b283f;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-seventh-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-seventh-theme .form-heading{margin-bottom:0}.layout_first-demo-seventh-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-seventh-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-seventh-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-seventh-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-seventh-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-seventh-theme .heading-section h2{font-size:20px}.layout_first-demo-seventh-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-seventh-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-seventh-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-seventh-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-seventh-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-seventh-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-seventh-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-seventh-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-seventh-theme .carousel-item{height:auto}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-seventh-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-seventh-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-seventh-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-seventh-theme .descript-thankyou p{width:100%}.layout_first-demo-seventh-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-seventh-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:left}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section img{margin-top:0px}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .container{padding:15px;max-width:990px}}@media(max-width: 992px){.layout_first-demo-seventh-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-seventh-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-seventh-theme img{max-width:100%}.layout_first-demo-seventh-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-seventh-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-seventh-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-seventh-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-seventh-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-seventh-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-seventh-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-seventh-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-seventh-theme .heading-section h2{font-size:28px}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-seventh-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-seventh-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-seventh-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-seventh-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-seventh-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-seventh-theme .contactFields{margin-top:30px}.layout_first-demo-seventh-theme .block-multiples{padding:0px 15px}.layout_first-demo-seventh-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-seventh-theme .contactFields ul li{font-size:14px}.layout_first-demo-seventh-theme .contactFields h5{font-size:18px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-seventh-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-seventh-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-seventh-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-seventh-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-seventh-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-seventh-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-seventh-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-seventh-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-seventh-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-seventh-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-seventh-theme .descript-thankyou p span{font-size:16px !important}}.layout_first-demo-eighth-theme .notQualifySection .button-home a{background:none;color:#cd232e;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #cd232e;border-radius:3px;font-weight:500}.layout_first-demo-eighth-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-eighth-theme .notQualifySection .button-home a svg path{fill:#cd232e}.layout_first-demo-eighth-theme .notQualifySection .button-home a:hover{background:#cd232e;color:#fff3f3}.layout_first-demo-eighth-theme .notQualifySection .button-home a:hover svg path{fill:#fff3f3}.layout_first-demo-eighth-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-eighth-theme .section-one-main{background:#f9f9f9}.layout_first-demo-eighth-theme .section-third-main{background:#f9f9f9}.layout_first-demo-eighth-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-eighth-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-eighth-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-eighth-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-eighth-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-eighth-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-eighth-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#cd232e;border:2px solid #cd232e;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-eighth-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#cd232e;border:2px solid #cd232e;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-eighth-theme .container{max-width:1420px}.layout_first-demo-eighth-theme .header-section{background:#cd232e}.layout_first-demo-eighth-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px;border-radius:5px}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#cd232e !important}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px;border-radius:5px}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-eighth-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-eighth-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-eighth-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-eighth-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s;border-radius:5px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#cd232e;color:#fff;border-color:#cd232e}.layout_first-demo-eighth-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-eighth-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-eighth-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-eighth-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-eighth-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-eighth-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-eighth-theme .width80{width:80%;margin:0 auto}.layout_first-demo-eighth-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-eighth-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-eighth-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-eighth-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-eighth-theme ul.contact_lists li{display:flex}.layout_first-demo-eighth-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-eighth-theme .text_block{display:flex}.layout_first-demo-eighth-theme span.number_1{margin-right:10px}.layout_first-demo-eighth-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-eighth-theme .heading-section h2{font-weight:600;font-size:42px;line-height:normal;margin-bottom:.3rem}.layout_first-demo-eighth-theme .heading-section p{width:65%;margin:0px auto;font-size:18px}.layout_first-demo-eighth-theme .heading-section{padding-bottom:50px}.layout_first-demo-eighth-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-eighth-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-eighth-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-eighth-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-eighth-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-eighth-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-eighth-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center;background:#fff3f3}.layout_first-demo-eighth-theme .image-block{margin-bottom:15px}.layout_first-demo-eighth-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-eighth-theme .center-item{text-align:center}.layout_first-demo-eighth-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-eighth-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-eighth-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-eighth-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-eighth-theme .sectionone.first.bgblue{background-color:#cd232e;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#111;padding:130px 0%;position:relative}.layout_first-demo-eighth-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #2c2e31 0%, #2c2e31 100%) 0% 0% no-repeat padding-box;opacity:.9}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section h2{color:#fff}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px;color:#fff}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section .homebtn{color:#fff;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px;border-radius:5px}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#fff;background:#cd232e;border-color:#cd232e}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec{text-align:left;background:#fff3f3}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .container{background:#ffd4d4;padding:80px;max-width:1420px}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-eighth-theme .sectionone.first.bg-light{background:#2c2e31 !important;padding:80px 0%}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section{text-align:center;width:950px;max-width:100%;color:#111;padding-bottom:0px}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section h2{line-height:normal;color:#fff}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px;color:#fff}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section .homebtn{border-color:#fff;color:#fff}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section .homebtn:hover{border-color:#cd232e}.layout_first-demo-eighth-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-eighth-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-eighth-theme .footer-content{background:#1c1c1c;color:#ddd;padding:20px 0%}.layout_first-demo-eighth-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-eighth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-eighth-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-eighth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-eighth-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-eighth-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-eighth-theme .footer-content .img-fluid{display:block}.layout_first-demo-eighth-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-eighth-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-eighth-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-eighth-theme .header-section.pageScroll .fixed-top{background:#cd232e !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-eighth-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-eighth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#cd232e;padding:15px 0;color:#fff}.layout_first-demo-eighth-theme div#fragment-1{padding:0px 20px}.layout_first-demo-eighth-theme .header-section.headerInside .fixed-top{background-color:#cd232e !important}.layout_first-demo-eighth-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-eighth-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-eighth-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-eighth-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-eighth-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#cd232e;padding:30px 0px 20px 0}.layout_first-demo-eighth-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-eighth-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-eighth-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-eighth-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#cd232e}.layout_first-demo-eighth-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-eighth-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-eighth-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-eighth-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-eighth-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-eighth-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-eighth-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-eighth-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-eighth-theme .innerpageheader h4{font-size:35px}.layout_first-demo-eighth-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #cd232e;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-eighth-theme .bottom-button-new a.mover:hover{background:#cd232e;color:#fff}.layout_first-demo-eighth-theme .bottom-button-new{display:inline-block}.layout_first-demo-eighth-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-eighth-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-eighth-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-eighth-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-eighth-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-eighth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-eighth-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-eighth-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-eighth-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-eighth-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-eighth-theme ul.listing-1 li i{background:#cd232e;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-eighth-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-eighth-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-eighth-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-eighth-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-eighth-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-eighth-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-eighth-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-eighth-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-eighth-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#cd232e}.layout_first-demo-eighth-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-eighth-theme span.mendatory{color:#b71515}.layout_first-demo-eighth-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-eighth-theme .lead li{list-style:none;position:relative;padding-left:40px;margin:15px 0px}.layout_first-demo-eighth-theme .lead li::before{content:"";height:20px;width:20px;left:0px;top:3px;position:absolute;display:inline-block;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg);background-repeat:no-repeat;background-size:cover}.layout_first-demo-eighth-theme .pageTitle{background:#cd232e;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-eighth-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-eighth-theme .innerPageContent{padding:50px 0px}.layout_first-demo-eighth-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-eighth-theme .form-heading{margin-bottom:40px}.layout_first-demo-eighth-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-eighth-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-eighth-theme .form-control{font-weight:300}.layout_first-demo-eighth-theme .form-control::placeholder{color:#ccc}.layout_first-demo-eighth-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-eighth-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-eighth-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-eighth-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-eighth-theme .section-third-main .container{max-width:1240px}.layout_first-demo-eighth-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-eighth-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-eighth-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-eighth-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-eighth-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-eighth-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:20px;width:20px;left:0px;top:3px;position:absolute;display:inline-block;background-image:url(/static/media/yes-black.284bb1165c15fddb27a83f81718eab59.svg);background-repeat:no-repeat;background-size:cover}.layout_first-demo-eighth-theme .contactFields{margin-top:50px}.layout_first-demo-eighth-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-eighth-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-eighth-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-eighth-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-eighth-theme .contactFields ul li a:hover,.layout_first-demo-eighth-theme .contactFields ul li a:hover span{color:#cd232e;text-decoration:none}.layout_first-demo-eighth-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;margin-top:-120px}.layout_first-demo-eighth-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-eighth-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-eighth-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-eighth-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-eighth-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-eighth-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-eighth-theme .button-home a{background:#cd232e;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-eighth-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-eighth-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-eighth-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-eighth-theme a.homebtn.section-4{color:#111;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #111;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block;border-radius:5px}.layout_first-demo-eighth-theme a.homebtn.section-4:hover{background:#cd232e;color:#fff}.layout_first-demo-eighth-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-eighth-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-eighth-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-eighth-theme .newSurveyForm::before{position:absolute;height:250px;background:#cd232e;top:0px;left:0px;width:100%;content:""}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#cd232e}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #cd232e;color:#fff;padding:12px 30px;text-transform:uppercase;background:#cd232e;letter-spacing:1px;border-radius:2px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#cd232e;border-color:#cd232e}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#cd232e;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#2c2e31;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #2c2e31;border-radius:5px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#2c2e31;height:8px;border-radius:2px;float:left}.layout_first-demo-eighth-theme .newSurveyForm button.btn.btn-submit{border:2px solid #cd232e;color:#cd232e;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-eighth-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-eighth-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-eighth-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #cd232e 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-eighth-theme .carousel-item{height:100vh}.layout_first-demo-eighth-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-eighth-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-eighth-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-eighth-theme .newSurveyForm{text-align:center}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#ffd5d5;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#111}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#111}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#111;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#111;font-style:italic}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-eighth-theme .footer_content{color:#333232}.layout_first-demo-eighth-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-eighth-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #cd232e;color:#fff;background:#cd232e;margin-bottom:10px;border-radius:2px}.layout_first-demo-eighth-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #cd232e;color:#cd232e;background:#fff}.layout_first-demo-eighth-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-eighth-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-eighth-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-eighth-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #cd232e;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-eighth-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-eighth-theme .tab{width:100%;color:#cd232e;overflow:hidden;border-bottom:1px solid;border-color:#cd232e}.layout_first-demo-eighth-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-eighth-theme .tab-label:hover{background:#cd232e;color:#fff;transition:.5s}.layout_first-demo-eighth-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-eighth-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-eighth-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#cd232e;cursor:pointer}.layout_first-demo-eighth-theme .tab-close:hover{background:#cd232e}.layout_first-demo-eighth-theme .tab:last-child{border:none}.layout_first-demo-eighth-theme .tab input[type=checkbox]{display:none}.layout_first-demo-eighth-theme input:checked+.tab-label{background:#cd232e;color:#fff}.layout_first-demo-eighth-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-eighth-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-eighth-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#cd232e}.layout_first-demo-eighth-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-eighth-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#cd232e;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#cd232e;text-align:center}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #cd232e;color:#cd232e;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #cd232e;color:#fff;padding:12px 30px;text-transform:uppercase;background:#cd232e;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-eighth-theme .input-box__field--error,.layout_first-demo-eighth-theme .input-box__field--errord{border-color:#cd232e !important;box-shadow:none}.layout_first-demo-eighth-theme .date-box__field{padding:5px 5px}.layout_first-demo-eighth-theme .input-box__field--survey{border-width:2px}.layout_first-demo-eighth-theme .input-box__field--survey:hover,.layout_first-demo-eighth-theme .input-box__field--survey:focus{border:solid 2px #cd232e}.layout_first-demo-eighth-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-eighth-theme .textarea-box__field--survey:hover,.layout_first-demo-eighth-theme .textarea-box__field--survey:focus{border:solid 2px #cd232e}@media(max-width: 1425px){.layout_first-demo-eighth-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-eighth-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-eighth-theme .container{max-width:1140px}.layout_first-demo-eighth-theme .container-lg{max-width:1140px}.layout_first-demo-eighth-theme .container-md{max-width:1140px}.layout_first-demo-eighth-theme .container-sm{max-width:1140px}.layout_first-demo-eighth-theme .container-xl{max-width:1140px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem;border-radius:5px}.layout_first-demo-eighth-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-eighth-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-eighth-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-eighth-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-eighth-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-eighth-theme li.nav-item{margin-left:30px !important}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-eighth-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-eighth-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-eighth-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-eighth-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-eighth-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-eighth-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-eighth-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-eighth-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-eighth-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-eighth-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#cd232e !important}.layout_first-demo-eighth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-eighth-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#cd232e !important}.layout_first-demo-eighth-theme .block-multiples{padding:0px 15px}.layout_first-demo-eighth-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-eighth-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-eighth-theme .navbar-collapse{background-color:#cd232e}.layout_first-demo-eighth-theme .lead{margin:15px 0px}.layout_first-demo-eighth-theme body{font-size:14px}.layout_first-demo-eighth-theme .heading-section h2{font-size:30px}.layout_first-demo-eighth-theme .single-block p{text-align:justify}.layout_first-demo-eighth-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-eighth-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-eighth-theme .innerPageContent{padding:40px 0px}.layout_first-demo-eighth-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-eighth-theme .footer-content{padding:20px 0px}.layout_first-demo-eighth-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-eighth-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-eighth-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-eighth-theme .heading-section h2{font-size:26px}.layout_first-demo-eighth-theme .heading-section p{width:100%}.layout_first-demo-eighth-theme .heading-section{padding-bottom:0px}.layout_first-demo-eighth-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-eighth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-eighth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#cd232e;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-eighth-theme div#fragment-1{padding:0}.layout_first-demo-eighth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-eighth-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-eighth-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-eighth-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-eighth-theme .block-multiples .row{display:flex}.layout_first-demo-eighth-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-eighth-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-eighth-theme .block-multiples{padding:0px 30px}.layout_first-demo-eighth-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-eighth-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-eighth-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-eighth-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-eighth-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-eighth-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-eighth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-eighth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-eighth-theme .descrioption-news{text-align:left}.layout_first-demo-eighth-theme .heading-section p{width:100% !important}.layout_first-demo-eighth-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-eighth-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-eighth-theme .pageTitle{background:#cd232e;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-eighth-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-eighth-theme .form-heading{margin-bottom:0}.layout_first-demo-eighth-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-eighth-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-eighth-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-eighth-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-eighth-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-eighth-theme .heading-section h2{font-size:20px}.layout_first-demo-eighth-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-eighth-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-eighth-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-eighth-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-eighth-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-eighth-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-eighth-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-eighth-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-eighth-theme .carousel-item{height:auto}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-eighth-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-eighth-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-eighth-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-eighth-theme .descript-thankyou p{width:100%}.layout_first-demo-eighth-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-eighth-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:left}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section img{margin-top:0px}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .container{padding:15px;max-width:990px}}@media(max-width: 992px){.layout_first-demo-eighth-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-eighth-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-eighth-theme img{max-width:100%}.layout_first-demo-eighth-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-eighth-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-eighth-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-eighth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-eighth-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-eighth-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-eighth-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-eighth-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-eighth-theme .heading-section h2{font-size:28px}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-eighth-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-eighth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-eighth-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-eighth-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-eighth-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-eighth-theme .contactFields{margin-top:30px}.layout_first-demo-eighth-theme .block-multiples{padding:0px 15px}.layout_first-demo-eighth-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-eighth-theme .contactFields ul li{font-size:14px}.layout_first-demo-eighth-theme .contactFields h5{font-size:18px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-eighth-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-eighth-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-eighth-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-eighth-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-eighth-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-eighth-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-eighth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-eighth-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-eighth-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-eighth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-eighth-theme .descript-thankyou p span{font-size:16px !important}}.layout_first-demo-ninth-theme .notQualifySection .button-home a{background:none;color:#00467f;text-transform:none;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:none;letter-spacing:2px;border:2px solid #00467f;border-radius:3px;font-weight:500}.layout_first-demo-ninth-theme .notQualifySection .button-home a svg{width:16px;margin-left:10px}.layout_first-demo-ninth-theme .notQualifySection .button-home a svg path{fill:#00467f}.layout_first-demo-ninth-theme .notQualifySection .button-home a:hover{background:#00467f;color:#f2fafd}.layout_first-demo-ninth-theme .notQualifySection .button-home a:hover svg path{fill:#f2fafd}.layout_first-demo-ninth-theme .form-heading-css{padding:10px 38px 20px 20px;font-size:18px}.layout_first-demo-ninth-theme .section-one-main{background:#f9f9f9}.layout_first-demo-ninth-theme .section-third-main{background:#f9f9f9}.layout_first-demo-ninth-theme .contactDynamicForm{margin-right:0px}.layout_first-demo-ninth-theme .contactDynamicForm .dynamic-form{margin:0px;padding:0px;background:none;border:none}.layout_first-demo-ninth-theme .contactDynamicForm .dynamic-form .input-box__field{background:#fafafa;border:1px solid #e1e1e1}.layout_first-demo-ninth-theme .contactDynamicForm .dynamic-form .input-box__field::placeholder{color:#7e7e7e}.layout_first-demo-ninth-theme .contactDynamicForm .dynamic-form .space-between{justify-content:left !important}.layout_first-demo-ninth-theme .contactDynamicForm .dynamic-form input[type=button],.layout_first-demo-ninth-theme .contactDynamicForm .dynamic-form input[type=submit]{color:#00467f;border:2px solid #00467f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-ninth-theme .contactDynamicForm .dynamic-form button.MuiButtonBase-root.MuiButton-root.jss90.MuiButton-contained.jss86.jss88{color:#00467f;border:2px solid #00467f;background:rgba(0,0,0,0);float:left;height:55px;margin-top:40px;margin-left:0px;margin-right:0px}.layout_first-demo-ninth-theme .container{max-width:1420px}.layout_first-demo-ninth-theme .header-section{background:#00467f}.layout_first-demo-ninth-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important;transition:.5s;padding:1.5rem 1rem}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0px;font-size:14px;cursor:pointer}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item{margin-left:40px;padding-top:8px}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item:hover .nav-link:hover{color:#acacac}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item.lastbtn a{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px;border-radius:5px}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item.lastbtn a:hover{background:#fff !important;color:#00467f !important}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:-4px;border-radius:5px}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-ninth-theme .padding-left-none{padding-left:0 !important}.layout_first-demo-ninth-theme .carousel-item{min-height:500px;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.layout_first-demo-ninth-theme .slider-home{background-position:center right;background-repeat:no-repeat;background-size:cover}.layout_first-demo-ninth-theme .slider-home .carousel-item .carousel-caption{position:relative;right:0;left:0}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{width:600px;float:left;text-align:left;padding-top:0px;max-width:100%}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content h2{font-weight:600;font-size:50px;line-height:normal}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content .homebtn{background:rgba(0,0,0,0);border:2px solid #fff;text-transform:uppercase;font-weight:600;padding:15px 64px;margin:20px 0px 0px 0px;font-size:1.1rem;letter-spacing:1.26px;color:#fff;display:inline-block;background-position:center;transition:#000 .8s;border-radius:5px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content .homebtn:hover{background:#00467f;color:#fff;border-color:#00467f}.layout_first-demo-ninth-theme .slider-home .carousel-item .silder-image-new{float:right;width:44%;position:relative;right:0;bottom:-20px}.layout_first-demo-ninth-theme .address-block-1 h4{font-size:25px;margin-bottom:10px}.layout_first-demo-ninth-theme .address-block-1{margin:0 10px 50px 0}.layout_first-demo-ninth-theme .contact_info img{margin:0 10px 0 0;width:21px;width:18px;margin:4px 25px 0 0;height:17px}.layout_first-demo-ninth-theme .contact_info{display:flex;margin:0 0 10px 0;display:flex}.layout_first-demo-ninth-theme section.contact-block-inner{background:#f1f1ff;padding:2% 10%}.layout_first-demo-ninth-theme .width80{width:80%;margin:0 auto}.layout_first-demo-ninth-theme .width80 .form-heading{margin-bottom:40px;text-align:center}.layout_first-demo-ninth-theme .navbar-light .navbar-nav .nav-link:focus{color:#fff;box-shadow:none;outline:none}.layout_first-demo-ninth-theme .navbar-light .navbar-nav .nav-link:hover{color:#fff;box-shadow:none;outline:none}.layout_first-demo-ninth-theme .contactWrapperinner{background:#e8e8e8;padding:30px;margin-bottom:0%;margin:0 auto}.layout_first-demo-ninth-theme ul.contact_lists li{display:flex}.layout_first-demo-ninth-theme ul.contact_lists{list-style:none;margin:0;padding:0}.layout_first-demo-ninth-theme .text_block{display:flex}.layout_first-demo-ninth-theme span.number_1{margin-right:10px}.layout_first-demo-ninth-theme strong.sub_title{margin:20px 0 10px;display:block}.layout_first-demo-ninth-theme .heading-section h2{font-weight:600;font-size:42px;line-height:normal;margin-bottom:.3rem}.layout_first-demo-ninth-theme .heading-section p{width:65%;margin:0px auto;font-size:18px}.layout_first-demo-ninth-theme .heading-section{padding-bottom:50px}.layout_first-demo-ninth-theme .block-multiples .single-block .img-fluid{width:104px}.layout_first-demo-ninth-theme .block-multiples .single-block .img-fluid.gifImg{display:none}.layout_first-demo-ninth-theme .block-multiples .single-block h4{font-size:22px;font-weight:400;margin-top:30px}.layout_first-demo-ninth-theme .block-multiples .single-block p{font-weight:300;color:#505050;font-size:16px}.layout_first-demo-ninth-theme .block-multiples .single-block:hover .gifImg{display:inline-block}.layout_first-demo-ninth-theme .block-multiples .single-block:hover .jpgImg{display:none}.layout_first-demo-ninth-theme .sectionone.first.bgwhite{padding:80px 0px 80px 0px;text-align:center;background:#f2fafd}.layout_first-demo-ninth-theme .image-block{margin-bottom:15px}.layout_first-demo-ninth-theme .help-block.with-errors .list-unstyled{color:#c53e3e}.layout_first-demo-ninth-theme .center-item{text-align:center}.layout_first-demo-ninth-theme .btn-custome-1{background:#06124e;opacity:9 !important;color:#fff}.layout_first-demo-ninth-theme .btn-custome-1:hover{background:#262e54;color:#fff}.layout_first-demo-ninth-theme .contactWrapper1{padding:0px;margin-bottom:10px;margin-bottom:0%}.layout_first-demo-ninth-theme .contactWrapper1 label{font-size:14px;font-weight:400;margin-bottom:6px;color:#7a7a7a !important}.layout_first-demo-ninth-theme .sectionone.first.bgblue{background-color:#00467f;background-position:left top;background-attachment:fixed;background-size:cover;text-align:center;color:#111;padding:130px 0%;position:relative}.layout_first-demo-ninth-theme .sectionone.first.bgblue::before{width:100%;height:100%;content:"";position:absolute;left:0px;top:0px;background:rgba(0,0,0,0) linear-gradient(284deg, #ffc417 0%, #ffc417 100%) 0% 0% no-repeat padding-box;opacity:.9}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section p{padding-bottom:20px;width:730px;max-width:100%;padding-top:15px;margin-bottom:60px}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section{padding-bottom:0px}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section .homebtn{color:#111;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #111;text-transform:uppercase;font-weight:500;padding:15px 60px;margin:40px 0px 0px 0px;font-size:18px;letter-spacing:1.26px;border-radius:5px}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section .homebtn:hover{color:#fff;background:#00467f}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec{text-align:left;background:#f2fafd}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .container{background:#cae7f7;padding:80px;max-width:1420px}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section p br{padding-bottom:10px;display:block;margin:6px 0px}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section{padding:0px}.layout_first-demo-ninth-theme .sectionone.first.bg-light{background:#ffc417 !important;padding:80px 0%}.layout_first-demo-ninth-theme .sectionone.first.bg-light .heading-section{text-align:center;width:950px;max-width:100%;color:#111;padding-bottom:0px}.layout_first-demo-ninth-theme .sectionone.first.bg-light .heading-section h2{line-height:normal}.layout_first-demo-ninth-theme .sectionone.first.bg-light .heading-section p{margin-top:15px;margin-bottom:50px}.layout_first-demo-ninth-theme .descrioption-news p{margin-bottom:0px}.layout_first-demo-ninth-theme .descrioption-news p br{display:block;margin:6px 0px}.layout_first-demo-ninth-theme .footer-content{background:#00467f;color:#ddd;padding:20px 0%}.layout_first-demo-ninth-theme .footer-content b{color:#585858;font-weight:400;font-size:12px}.layout_first-demo-ninth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-ninth-theme .footer-content .custome-links ul{padding:0px;margin:0px;list-style:none;float:right}.layout_first-demo-ninth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:20px}.layout_first-demo-ninth-theme .footer-content .custome-links ul li a{color:#ddd;text-decoration:none;text-transform:uppercase;font-size:14px}.layout_first-demo-ninth-theme .footer-content .logo-blocks .img-fluid{display:block}.layout_first-demo-ninth-theme .footer-content .img-fluid{display:block}.layout_first-demo-ninth-theme .logo-blocks p{margin-bottom:0px}.layout_first-demo-ninth-theme .copyright{background:#222;color:#9e9e9e;text-align:center;padding:1% 0%}.layout_first-demo-ninth-theme .copyright p{margin:0px;font-size:14px;padding:10px 0px}.layout_first-demo-ninth-theme .header-section.pageScroll .fixed-top{background:#00467f !important;transition:.5s;padding:.5rem 1rem}.layout_first-demo-ninth-theme .slider-section-2 h4{font-size:35px}.layout_first-demo-ninth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#00467f;padding:15px 0;color:#fff}.layout_first-demo-ninth-theme div#fragment-1{padding:0px 20px}.layout_first-demo-ninth-theme .header-section.headerInside .fixed-top{background-color:#00467f !important}.layout_first-demo-ninth-theme .form-survey-section{padding:10px 0px 20px 0px;display:table;background:#eee;width:100%;height:calc(100vh - 292px)}.layout_first-demo-ninth-theme .form-survey-section .container{display:table-cell;vertical-align:middle}.layout_first-demo-ninth-theme .form-survey-section .lasttab .bottom-button-new.pre{float:none}.layout_first-demo-ninth-theme .form-servey-custome{box-shadow:0px 0px 7px 1px #dbdbdb;padding:0px;max-width:600px;margin:0px auto;min-height:230px;overflow-y:auto;background:#fff;padding-bottom:20px;border-radius:10px;position:relative}.layout_first-demo-ninth-theme .form-servey-custome h2{text-align:center;font-size:18px;background-color:rgba(0,0,0,0);color:#00467f;padding:30px 0px 20px 0}.layout_first-demo-ninth-theme .form-servey-custome #myTab{opacity:0}.layout_first-demo-ninth-theme .form-servey-custome #myTab .nav-item{font-size:0px}.layout_first-demo-ninth-theme .form-servey-custome #tabs .ui-tabs-nav{opacity:0;font-size:0px;display:none}.layout_first-demo-ninth-theme .form-servey-custome h3{font-size:26px;padding-bottom:10px;display:flex;font-weight:400;color:#00467f}.layout_first-demo-ninth-theme .form-servey-custome h3 span{background:#f55665;color:#fff;width:30px;min-width:30px;display:inline-block;text-align:center;height:30px;border-radius:50%;padding-top:5px;margin-right:20px;font-size:18px}.layout_first-demo-ninth-theme .form-servey-custome .ui-widget-content .custom-control.custom-radio{padding:8px 25px;font-size:20px;margin:0px 20px}.layout_first-demo-ninth-theme .form-servey-custome .ui-widget-content{border:none;padding:0px 20px;min-height:250px;margin-top:30px}.layout_first-demo-ninth-theme .form-servey-custome .yourpost-code{font-weight:500;font-size:17px;text-align:left;padding-top:18px}.layout_first-demo-ninth-theme .form-servey-custome .infor{padding-top:10px;display:inline-block}.layout_first-demo-ninth-theme .form-servey-custome .progress{margin-top:30px;border-radius:20px;height:15px;font-size:10px}.layout_first-demo-ninth-theme .form-servey-custome .progress .progress-bar{background:#0ab90a}.layout_first-demo-ninth-theme .innerpageheader{text-align:center;color:#fff;text-align:center;color:#fff;padding:40px 0}.layout_first-demo-ninth-theme .innerpageheader h4{font-size:35px}.layout_first-demo-ninth-theme .bottom-button-new a.mover{position:relative;font-size:16px;font-weight:normal;border:1px solid #00467f;padding:7px 30px;margin-top:30px;display:inline-block;border-radius:0px;background:rgba(0,0,0,0);color:#222}.layout_first-demo-ninth-theme .bottom-button-new a.mover:hover{background:#00467f;color:#fff}.layout_first-demo-ninth-theme .bottom-button-new{display:inline-block}.layout_first-demo-ninth-theme .bottom-button-new.pre{float:left;position:absolute;left:20px;bottom:20px}.layout_first-demo-ninth-theme .bottom-button-new.next{float:right;position:absolute;right:20px;bottom:20px}.layout_first-demo-ninth-theme .yourpost-code.goodluck.This p{border:1px solid #ec2f2f;color:#ec2f2f}.layout_first-demo-ninth-theme .yourpost-code.goodluck{text-align:center;padding:0px;margin-bottom:20px}.layout_first-demo-ninth-theme .yourpost-code.goodluck p{margin:0px;padding:6px 30px;border:1px solid #0fc10f;display:inline-block;color:#008600}.layout_first-demo-ninth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:30px;left:10%;right:10%}.layout_first-demo-ninth-theme .progress{display:flex;height:25px;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:100px}.layout_first-demo-ninth-theme .radioWrapper{display:flex;align-items:center;max-width:100%;margin:0 auto;text-align:center;justify-content:center;text-transform:capitalize;font-weight:600}.layout_first-demo-ninth-theme .radioWrapper label{font-weight:500;color:#717171}.layout_first-demo-ninth-theme ul.listing-1 li{padding:5px;color:#000}.layout_first-demo-ninth-theme ul.listing-1 li i{background:#00467f;padding:4px 9px;border-radius:100px;height:25px;width:25px;text-align:center;color:#fff;margin-right:10px}.layout_first-demo-ninth-theme ul.listing-1{margin:0;padding:0;list-style:none;padding-left:25px}.layout_first-demo-ninth-theme .body-content1{text-align:left;font-weight:400;font-size:16px;line-height:1.6em}.layout_first-demo-ninth-theme .body-content1 h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-ninth-theme .body-content1 .contentAboutLeft{float:left;width:40%}.layout_first-demo-ninth-theme .body-content1 .contentAboutLeft .text-red{color:#625f5f;font-size:16px;font-weight:400;line-height:1.2em !important}.layout_first-demo-ninth-theme .body-content1 .contentAbout{float:right;width:60%;color:#625f5f}.layout_first-demo-ninth-theme .body-content1 .contentAbout ul{margin:0px 0px 50px 0px;padding:0px}.layout_first-demo-ninth-theme .body-content1 .contentAbout ul li{list-style:none;position:relative;padding-left:25px;margin:10px 0px}.layout_first-demo-ninth-theme .body-content1 .contentAbout ul li::before{content:"";height:3px;width:10px;left:0px;top:13px;position:absolute;display:inline-block;background-color:#00467f}.layout_first-demo-ninth-theme span.text-red{font-size:18px;color:#030d4a;font-weight:300}.layout_first-demo-ninth-theme span.mendatory{color:#b71515}.layout_first-demo-ninth-theme .lead{margin:3em 0px;font-size:1.2em}.layout_first-demo-ninth-theme .lead li{list-style:none;position:relative;padding-left:40px;margin:15px 0px}.layout_first-demo-ninth-theme .lead li::before{content:"";height:20px;width:20px;left:0px;top:3px;position:absolute;display:inline-block;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg);background-repeat:no-repeat;background-size:cover}.layout_first-demo-ninth-theme .pageTitle{background:#00467f;padding-top:140px;padding-bottom:40px;color:#fff;text-align:center}.layout_first-demo-ninth-theme .surveyPagetitle{padding-top:65px;padding-bottom:32px}.layout_first-demo-ninth-theme .innerPageContent{padding:50px 0px}.layout_first-demo-ninth-theme .innerPageContent .image-block{margin-bottom:30px}.layout_first-demo-ninth-theme .form-heading{margin-bottom:40px}.layout_first-demo-ninth-theme .form-heading h2{color:#000f2b;font-size:28px;font-weight:400;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-ninth-theme .form-heading .messages{color:#7a7a7a;font-size:16px}.layout_first-demo-ninth-theme .form-control{font-weight:300}.layout_first-demo-ninth-theme .form-control::placeholder{color:#ccc}.layout_first-demo-ninth-theme .btn-send{border-radius:0px;padding:10px 30px;text-transform:uppercase;letter-spacing:2px;margin-top:30px}.layout_first-demo-ninth-theme .aboutImg{margin-right:15px;margin-bottom:15px;max-width:100%;margin-top:3em}.layout_first-demo-ninth-theme .single-block{background:#fffefe;border-radius:5px;padding:15px;height:100%;transition:.5s;margin-bottom:15px}.layout_first-demo-ninth-theme .single-block:hover{box-shadow:0px 0px 20px #dbdff0;transition:.5s;transform:translate(0px, -1em)}.layout_first-demo-ninth-theme .section-third-main .container{max-width:1240px}.layout_first-demo-ninth-theme .section-third-main .container .order-md-1 .heading-section{width:100%}.layout_first-demo-ninth-theme .section-third-main .container .order-md-1 .heading-section h2{line-height:normal;margin-bottom:40px}.layout_first-demo-ninth-theme .section-third-main .container .order-md-1 .heading-section p{color:#2a2a2a}.layout_first-demo-ninth-theme .section-third-main .container .order-md-1 .heading-section ul{margin:0px;padding:0px}.layout_first-demo-ninth-theme .section-third-main .container .order-md-1 .heading-section ul li{list-style:none;position:relative;padding-left:45px;margin:15px 0px}.layout_first-demo-ninth-theme .section-third-main .container .order-md-1 .heading-section ul li::before{content:"";height:20px;width:20px;left:0px;top:3px;position:absolute;display:inline-block;background-image:url(/static/media/yes-black.284bb1165c15fddb27a83f81718eab59.svg);background-repeat:no-repeat;background-size:cover}.layout_first-demo-ninth-theme .contactFields{margin-top:50px}.layout_first-demo-ninth-theme .contactFields h5{color:#000f2b;font-size:22px;line-height:1.5em;letter-spacing:2.5px}.layout_first-demo-ninth-theme .contactFields ul{margin:0px;padding:0px}.layout_first-demo-ninth-theme .contactFields ul li{list-style:none;width:100%;position:relative;margin-bottom:10px}.layout_first-demo-ninth-theme .contactFields ul li a{color:#7a7a7a;font-weight:400}.layout_first-demo-ninth-theme .contactFields ul li a:hover,.layout_first-demo-ninth-theme .contactFields ul li a:hover span{color:#00467f;text-decoration:none}.layout_first-demo-ninth-theme .contactFields ul li span{color:#7a7a7a;font-weight:400}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section img{position:relative;margin-top:-120px}.layout_first-demo-ninth-theme .bg-blue{height:100px;background:#06124e}.layout_first-demo-ninth-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout_first-demo-ninth-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout_first-demo-ninth-theme .descript-thankyou h1{font-weight:400;font-size:66px}.layout_first-demo-ninth-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout_first-demo-ninth-theme .descript-thankyou p h3{font-weight:300}.layout_first-demo-ninth-theme .button-home a{background:#00467f;color:#fff;text-transform:capitalize;font-weight:400;padding:15px 40px;display:inline-block;margin-top:40px;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.layout_first-demo-ninth-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout_first-demo-ninth-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout_first-demo-ninth-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout_first-demo-ninth-theme a.homebtn.section-4{color:#111;text-decoration:none;background:rgba(0,0,0,0);border:2px solid #111;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:0px 0px 0px 0px;font-size:18px;display:inline-block;border-radius:5px}.layout_first-demo-ninth-theme a.homebtn.section-4:hover{background:#00467f;color:#fff}.layout_first-demo-ninth-theme .sectionContentfourth{display:flex;flex-wrap:wrap}.layout_first-demo-ninth-theme .sectionContentfourth+.heading-section{margin-top:40px}.layout_first-demo-ninth-theme .newSurveyForm{display:inline-block;width:100%;padding-top:150px;position:relative;padding-bottom:80px;min-height:calc(100vh - 185px);padding-left:15px;padding-right:15px}.layout_first-demo-ninth-theme .newSurveyForm::before{position:absolute;height:250px;background:#00467f;top:0px;left:0px;width:100%;content:""}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:50px;position:relative;z-index:1;border-radius:5px;padding-bottom:90px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#00467f}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .form-control{height:60px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .formLabel{color:#888}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps{display:inline-block;width:100%}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{flex-wrap:wrap;display:flex;flex-direction:inherit}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:0px;width:100%;float:left}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn{margin-bottom:15px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input{display:none}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:50%;top:4px;position:relative}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.radioBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn{margin-bottom:15px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group{width:50%;float:left;margin-bottom:0px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input{display:none}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:after{border:2px solid #fff;border-top:none;border-left:none;width:7px;height:12px;position:absolute;top:15px;left:14px;content:" ";-moz-box-sizing:border-box;box-sizing:border-box;transition:all .1s linear;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group input:checked+label:before{background:#000}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label{width:100%;float:left;position:relative;color:#888;padding:5px 8px 7px 8px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label::before{background:#fff;border:1px solid #999;min-width:20px;width:20px;height:20px;margin:3px 10px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s linear;transition:all .1s linear;content:"";display:inline-block;border-radius:0%;top:4px;position:relative}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps.checkboxBtn .form-group label:hover{background:rgba(0,0,0,.1)}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::before{display:none}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiInput-underline::after{display:none}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyContent .questionSteps .MuiSelect-select:focus::after{display:none !important}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{display:inline-block;width:100%;padding-top:0px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .backBtn:hover{background:#ccc;color:#fff}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn{border:2px solid #00467f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#00467f;letter-spacing:1px;border-radius:2px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter .nextBtn:hover{background:#00467f;border-color:#00467f}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .progressBar{background:#00467f;position:absolute;bottom:0px;height:40px;left:-1px;width:100%;border-radius:0px 0px 5px 5px;overflow:hidden;text-align:center}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .progressBarText{color:#ffc417;font-size:15px;display:block;background-repeat:no-repeat;background-position:center center;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #ffc417;border-radius:5px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar span{background-color:#ffc417;height:8px;border-radius:2px;float:left}.layout_first-demo-ninth-theme .newSurveyForm button.btn.btn-submit{border:2px solid #00467f;color:#00467f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-ninth-theme .newSurveyForm input.input-box__field.input-box__field--survey.false{height:35px}.layout_first-demo-ninth-theme .newSurveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout_first-demo-ninth-theme .carousel-item::before{content:"";height:100%;position:absolute;left:0px;top:0px;width:100%;background:rgba(0,0,0,0) linear-gradient(61deg, #00467f 0%, rgba(19, 111, 172, 0) 80%) 0% 0% no-repeat padding-box}.layout_first-demo-ninth-theme .carousel-item{height:100vh}.layout_first-demo-ninth-theme .slider-home .carousel-item .carousel-caption{padding-top:0px;padding-bottom:0px;height:100%;display:table}.layout_first-demo-ninth-theme .slider-home .carousel-item .carousel-caption.d-md-block{display:table !important}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{padding-top:0px;display:table-cell;vertical-align:middle;float:none !important}.layout_first-demo-ninth-theme .descrioption-news blockquote{background:rgba(0,0,0,.1);padding:15px;border-radius:10px;min-height:270px;margin-bottom:30px}.layout_first-demo-ninth-theme .newSurveyForm{text-align:center}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText{width:1110px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;padding:0px;position:relative;z-index:1;border-radius:10px;display:flex;flex-wrap:wrap;text-align:left;flex-direction:row-reverse}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields{float:left;max-width:44%;padding:50px;background:#cae7f7;border-radius:10px 0px 0px 10px;flex:0 0 44%;color:#111}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:28px;color:#111}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields ul{margin:0px 0px 20px 0px;padding:0px 0px 0px 20px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields ul li{list-style:disc;margin:15px 0px;color:#111;background-repeat:no-repeat;background-size:20px 20px;background-position:left 2px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers{margin-top:3.5rem}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote{margin-top:20px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails{display:inline-block;width:100%;margin-bottom:15px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg{width:70px;height:70px;border-radius:50%;overflow:hidden;border:1px solid #eee;float:left}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerImg img{width:100%}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote .customerdetails .customerName{margin-left:90px;margin-top:17px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields .ourCustomers blockquote p{color:#111;font-style:italic}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{float:left;max-width:56%;box-shadow:none;border-left:1px solid #eee;margin:0px;flex:0 0 56%}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 0px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .space-between .makeStyles-root-2{display:inline-block}.layout_first-demo-ninth-theme .footer_content{color:#333232}.layout_first-demo-ninth-theme .text-left{min-height:calc(100vh - 185px);justify-content:center;display:flex}.layout_first-demo-ninth-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #00467f;color:#fff;background:#00467f;margin-bottom:10px;border-radius:2px}.layout_first-demo-ninth-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #00467f;color:#00467f;background:#fff}.layout_first-demo-ninth-theme .dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 20px 20px 20px;justify-content:left;width:100%;background:#fff;border:solid 1px #c2c2c2;border-radius:4px}.layout_first-demo-ninth-theme .date-box__field{width:-webkit-fill-available}.layout_first-demo-ninth-theme .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout_first-demo-ninth-theme .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #00467f;border-left:none;font-size:16px !important;font-weight:500}.layout_first-demo-ninth-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2);margin-bottom:50px;text-align:left}.layout_first-demo-ninth-theme .tab{width:100%;color:#00467f;overflow:hidden;border-bottom:1px solid;border-color:#00467f}.layout_first-demo-ninth-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#fff;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout_first-demo-ninth-theme .tab-label:hover{background:#00467f;color:#fff;transition:.5s}.layout_first-demo-ninth-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s;font-size:26px;margin-top:-6px;margin-left:5px}.layout_first-demo-ninth-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout_first-demo-ninth-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#00467f;cursor:pointer}.layout_first-demo-ninth-theme .tab-close:hover{background:#00467f}.layout_first-demo-ninth-theme .tab:last-child{border:none}.layout_first-demo-ninth-theme .tab input[type=checkbox]{display:none}.layout_first-demo-ninth-theme input:checked+.tab-label{background:#00467f;color:#fff}.layout_first-demo-ninth-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout_first-demo-ninth-theme input:checked~.tab-content{max-height:100vh;padding:1em;border:solid 1px #0e7e69}.layout_first-demo-ninth-theme .arrowIconForm{width:60px;height:60px;background:#fff;content:"";right:415px;top:50%;border-radius:50%;position:absolute;z-index:12;transform:translate(0px, -30px);text-align:center;line-height:60px;font-size:30px;color:#00467f}.layout_first-demo-ninth-theme .arrowIconForm i{animation:pulse 1.5s infinite;position:relative;left:0}@keyframes pulse{0%{left:5px}50%{left:-5px}100%{left:5px}}.layout_first-demo-ninth-theme .bannerNewForm .carousel-item{width:calc(100% - 450px)}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside{min-height:100vh;position:absolute;right:0px;top:0px;width:450px;max-width:100%;display:inline-block;background:#fff;z-index:11;padding-top:70px;height:100%;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm{float:left;height:100%;overflow:auto;width:100%}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside{padding:15px 25px 25px 25px;max-width:100%;width:100%;border-radius:10px;margin:0px auto;color:#000;float:left;padding-bottom:50px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn{padding:0px;font-size:14px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .previousBtn img{width:7px;margin-right:5px;float:left;margin-top:4px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar{background:#00467f;position:absolute;bottom:0;height:40px;left:-1px;width:100%;overflow:hidden;text-align:center;z-index:1}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyHeading{display:inline-block;width:100%;margin-top:20px;margin-bottom:30px;color:#00467f;text-align:center}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent{margin-top:0px;display:inline-block;width:100%}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .customDropdown-default-theme_span{margin:8px 4px 0 4px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormLabel-root{text-align:left;font-size:16px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root{padding:0px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root label.MuiFormLabel-root{font-size:16px;padding:0px 5px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .MuiFormControl-root .MuiFormControlLabel-root{margin-left:0px;margin-right:0px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .input-box .input-box__field{height:58px;box-sizing:border-box;width:100%}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box label.MuiFormLabel-root{font-size:16px;padding:0px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent .textarea-box textarea.textarea-box__field--survey{min-height:80px !important}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyContent button.btn.btn-submit{border:2px solid #00467f;color:#00467f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter{display:inline-block;width:100%;margin-top:50px;margin-bottom:10px;padding:0px 5px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .nextBtn{border:2px solid #00467f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#00467f;letter-spacing:1px;border-radius:2px;float:right}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:2px}.layout_first-demo-ninth-theme .input-box__field--error,.layout_first-demo-ninth-theme .input-box__field--errord{border-color:#00467f !important;box-shadow:none}.layout_first-demo-ninth-theme .date-box__field{padding:5px 5px}.layout_first-demo-ninth-theme .input-box__field--survey{border-width:2px}.layout_first-demo-ninth-theme .input-box__field--survey:hover,.layout_first-demo-ninth-theme .input-box__field--survey:focus{border:solid 2px #00467f}.layout_first-demo-ninth-theme .textarea-box__field--survey{border-width:2px}.layout_first-demo-ninth-theme .textarea-box__field--survey:hover,.layout_first-demo-ninth-theme .textarea-box__field--survey:focus{border:solid 2px #00467f}@media(max-width: 1425px){.layout_first-demo-ninth-theme .header-section .fixed-top{padding:.5rem 0rem}.layout_first-demo-ninth-theme .header-section.pageScroll .fixed-top{padding:.5rem 0rem}.layout_first-demo-ninth-theme .container{max-width:1140px}.layout_first-demo-ninth-theme .container-lg{max-width:1140px}.layout_first-demo-ninth-theme .container-md{max-width:1140px}.layout_first-demo-ninth-theme .container-sm{max-width:1140px}.layout_first-demo-ninth-theme .container-xl{max-width:1140px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content h2{font-size:38px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content .homebtn{padding:7px 30px;margin:15px 0px;font-size:1rem;border-radius:5px}.layout_first-demo-ninth-theme .lead{font-size:1rem;margin:20px 0px}.layout_first-demo-ninth-theme .bannerNewForm .carousel-item{width:calc(100% - 400px)}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside{width:400px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .customDropdown-default-theme_span{min-height:114px;width:114px}.layout_first-demo-ninth-theme .bannerNewForm .arrowIconForm{right:370px}}@media(max-width: 1200px){.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content h2{font-size:40px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{padding-top:14%}.layout_first-demo-ninth-theme .slider-home .carousel-item .silder-image-new{bottom:-83px}.layout_first-demo-ninth-theme .slider-section-2{text-align:center;color:#fff;padding:60px 0 30px}.layout_first-demo-ninth-theme li.nav-item{margin-left:30px !important}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside{height:100%;min-height:auto}.layout_first-demo-ninth-theme .bannerNewForm .slider-home .homeformOutside .homeForm{padding-top:0px;padding-bottom:0px}.layout_first-demo-ninth-theme .bannerNewForm .arrowIconForm{display:none}}@media(max-width: 992px){.layout_first-demo-ninth-theme .width80{width:100%;margin:0 auto;padding:30px 0}.layout_first-demo-ninth-theme .contactWrapperinner{background:#e8e8e8;padding:0;margin-bottom:0%;width:100%;margin:0 auto}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content h2{font-size:30px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{width:56%;padding-top:90px}.layout_first-demo-ninth-theme .slider-home .carousel-item{min-height:360px;background-position:center center}.layout_first-demo-ninth-theme .slider-home .carousel-item .silder-image-new{bottom:-50px}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .col-sm-6.order-md-2{order:1}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:center}.layout_first-demo-ninth-theme .navbar-nav .nav-item.active a{color:#fff;font-weight:600}.layout_first-demo-ninth-theme .navbar-nav .nav-item a{color:#fff !important}.layout_first-demo-ninth-theme .header-section .fixed-top .navbar-toggler{background:#fff}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item{margin-left:0px;padding-top:8px}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item a{padding:10px 0px}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item.lastbtn{position:relative;top:0px;margin-bottom:20px}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item.lastbtn .nav-link{background:rgba(0,0,0,0);padding:10px 0px;border:none;color:#fff !important}.layout_first-demo-ninth-theme .header-section .fixed-top{padding:.5rem 1rem;background-color:#00467f !important}.layout_first-demo-ninth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:84vh;padding-bottom:0;height:calc(100vh - 214px)}.layout_first-demo-ninth-theme .header-section.pageScroll .fixed-top{padding:.5rem 1rem;background-color:#00467f !important}.layout_first-demo-ninth-theme .block-multiples{padding:0px 15px}.layout_first-demo-ninth-theme .block-multiples .single-block h4{font-size:18px;font-weight:400}.layout_first-demo-ninth-theme .sectionone.first.bgwhite{padding:40px 0px}.layout_first-demo-ninth-theme .navbar-collapse{background-color:#00467f}.layout_first-demo-ninth-theme .lead{margin:15px 0px}.layout_first-demo-ninth-theme body{font-size:14px}.layout_first-demo-ninth-theme .heading-section h2{font-size:30px}.layout_first-demo-ninth-theme .single-block p{text-align:justify}.layout_first-demo-ninth-theme .sectionone.first.bgblue{padding:40px 0px}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section .homebtn{font-size:16px}.layout_first-demo-ninth-theme .sectionone.first.bg-light{padding:40px 0px}.layout_first-demo-ninth-theme .innerPageContent{padding:40px 0px}.layout_first-demo-ninth-theme .footer-content .custome-links ul li{padding:0px 10px 0px 0px}.layout_first-demo-ninth-theme .footer-content{padding:20px 0px}.layout_first-demo-ninth-theme .bannerNewForm .carousel-item{width:calc(100% - 320px)}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside{width:320px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside .homeForm .homeFormInside .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-ninth-theme .bannerNewForm .slider-home .carousel-item{min-height:450px}}@media(max-width: 767px){.layout_first-demo-ninth-theme .contactDynamicForm{margin-right:-40px}.layout_first-demo-ninth-theme .heading-section h2{font-size:26px}.layout_first-demo-ninth-theme .heading-section p{width:100%}.layout_first-demo-ninth-theme .heading-section{padding-bottom:0px}.layout_first-demo-ninth-theme .slider-section-2{text-align:center;color:#fff;padding:80px 0 10px}.layout_first-demo-ninth-theme .form-survey-section{padding:10% 0% 3% 0%;display:table;background:#eee;width:100%;height:calc(100vh - 171px);padding-bottom:0}.layout_first-demo-ninth-theme .block_wrapper h2{text-align:center;font-weight:500;background:#00467f;padding:15px 0;color:#fff;font-size:25px}.layout_first-demo-ninth-theme div#fragment-1{padding:0}.layout_first-demo-ninth-theme .progressnew{display:inline-block;width:auto;max-width:320px;margin:0 auto;position:absolute;bottom:80px;left:20px;right:20px}.layout_first-demo-ninth-theme .slider-home .carousel-item .carousel-caption{display:block !important}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{width:100%;min-height:344px;float:none;text-align:center;padding-top:20%}.layout_first-demo-ninth-theme .slider-home .carousel-item .silder-image-new{display:none}.layout_first-demo-ninth-theme .slider-home .carousel-item{min-height:auto;background-position:center center}.layout_first-demo-ninth-theme .block-multiples .row{display:flex}.layout_first-demo-ninth-theme .block-multiples .row .col-sm-3{margin-bottom:15px}.layout_first-demo-ninth-theme .block-multiples .row .col-sm-4{max-width:100%;max-width:100%;box-shadow:0px 0px 11px 1px #eee;padding:20px;margin:17px 0px;margin-bottom:20px}.layout_first-demo-ninth-theme .block-multiples{padding:0px 30px}.layout_first-demo-ninth-theme .sectionone.first.bg-light .row{display:block;text-align:center}.layout_first-demo-ninth-theme .sectionone.first.bg-light .col-sm-6{max-width:100%}.layout_first-demo-ninth-theme .sectionone.first.bg-light .heading-section{text-align:center;padding:0px 15px 20px}.layout_first-demo-ninth-theme .sectionone.first.bg-light .heading-section h2{text-align:center}.layout_first-demo-ninth-theme .footer-content .row{display:block;text-align:center}.layout_first-demo-ninth-theme .footer-content .row .img-fluid{margin:0px auto}.layout_first-demo-ninth-theme .footer-content .row .col-sm-4{max-width:100%}.layout_first-demo-ninth-theme .footer-content .row .col-sm-8{max-width:100%}.layout_first-demo-ninth-theme .footer-content .custome-links{text-align:center;margin-top:10px;display:inline-block;width:100%}.layout_first-demo-ninth-theme .footer-content .custome-links ul li{display:inline-block;padding-left:0px}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section p{width:100%;text-align:left}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section h2{text-align:center}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec img{position:relative;top:-40px}.layout_first-demo-ninth-theme .descrioption-news{text-align:left}.layout_first-demo-ninth-theme .heading-section p{width:100% !important}.layout_first-demo-ninth-theme section.contact-block-inner{background:#f1f1ff;padding:0% 4%}.layout_first-demo-ninth-theme .width80 .form-heading{margin-bottom:0px;text-align:center;margin-left:-5px}.layout_first-demo-ninth-theme .pageTitle{background:#00467f;padding-top:100px;padding-bottom:20px;color:#fff;text-align:center}.layout_first-demo-ninth-theme .dynamic-form{display:flex;flex-direction:column;margin:0;padding:0;justify-content:left;width:100%}.layout_first-demo-ninth-theme .form-heading{margin-bottom:0}.layout_first-demo-ninth-theme .contactWrapper1{padding-left:15px;padding-left:15px;margin-bottom:7%}.layout_first-demo-ninth-theme .dynamic-form{width:95%;padding:10px}.layout_first-demo-ninth-theme .makeStyles-mainDialogBox-40{width:auto !important}.layout_first-demo-ninth-theme .makeStyles-formLabelrootInline-107{font-size:20px !important;font-weight:500 !important}.layout_first-demo-ninth-theme .makeStyles-main-262{margin-top:0;min-height:auto;margin-bottom:0}.layout_first-demo-ninth-theme .heading-section h2{font-size:20px}.layout_first-demo-ninth-theme .bannerNewForm .carousel-item{width:100%}.layout_first-demo-ninth-theme .bannerNewForm .slider-home .carousel-item .slider-content{height:auto;min-height:344px}.layout_first-demo-ninth-theme .bannerNewForm .homeformOutside{position:relative;width:100%;padding-top:0px;float:left;clear:both}.layout_first-demo-ninth-theme .bannerNewForm .carousel-indicators{display:none}}@media(min-width: 576px){.layout_first-demo-ninth-theme .col-sm-3{max-width:100%}}@media(max-width: 480px){.layout_first-demo-ninth-theme .contactDynamicForm{margin-right:-35px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content h2{font-size:20px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content .lead{font-size:16px}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{padding-top:26%}.layout_first-demo-ninth-theme .slider-home .carousel-item{background-position:center center}}@media(min-width: 992px)and (max-width: 1050px){.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item a{font-size:12px !important}}@media(min-width: 1051px)and (max-width: 1080px){.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item{margin-left:15px !important}}@media(min-width: 1081px)and (max-width: 1425px){.layout_first-demo-ninth-theme .header-section .fixed-top ul .nav-item{margin-left:20px !important}}@media(max-width: 1024px){.layout_first-demo-ninth-theme .carousel-item{height:auto}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{padding:8em 0em 3em 0em}.layout_first-demo-ninth-theme .sectionone.first.bgwhite{padding:40px 0px 20px 0px}.layout_first-demo-ninth-theme .block-multiples .single-block h4{font-size:20px}.layout_first-demo-ninth-theme .descript-thankyou h1{font-size:44px}.layout_first-demo-ninth-theme .descript-thankyou p{width:100%}.layout_first-demo-ninth-theme .descript-thankyou p span{font-size:26px !important}.layout_first-demo-ninth-theme .descript-thankyou{height:calc(100vh - 162px);padding:10rem 0%}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .row{display:block}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{max-width:100%;padding:15px 15px;text-align:left}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section img{margin-top:0px}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .container{padding:15px;max-width:990px}}@media(max-width: 992px){.layout_first-demo-ninth-theme .block-multiples .col-sm-3{max-width:50%;flex:0 0 50%}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .row .col-sm-6{text-align:left}.layout_first-demo-ninth-theme .order-md-2 .heading-section{text-align:center}.layout_first-demo-ninth-theme img{max-width:100%}.layout_first-demo-ninth-theme .body-content1 .contentAboutLeft{width:100%}.layout_first-demo-ninth-theme .body-content1 .contentAbout{width:100%}.layout_first-demo-ninth-theme .body-content1 .contentAbout>div{margin-left:0px !important}.layout_first-demo-ninth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.layout_first-demo-ninth-theme .innerPageContent .col-md-4{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.layout_first-demo-ninth-theme .descript-thankyou{padding:35% 0%}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields{padding:20px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields h2{font-size:24px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{padding:20px 20px 60px 20px}}@media(max-width: 640px){.layout_first-demo-ninth-theme .block-multiples .col-sm-3{max-width:100%;flex:0 0 100%}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{text-align:left}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content{padding:9em 0em 2em 0em}.layout_first-demo-ninth-theme .slider-home .carousel-item .slider-content h2{font-size:27px}.layout_first-demo-ninth-theme .heading-section h2{font-size:28px}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section p{margin-bottom:40px}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section{padding-bottom:20px}.layout_first-demo-ninth-theme .sectionone.first.bg-light .heading-section p{margin-bottom:30px}.layout_first-demo-ninth-theme .innerPageContent .col-md-6.offset-md-1{margin-left:0px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-ninth-theme .innerPageContent .col-md-4{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout_first-demo-ninth-theme .contactDynamicForm{margin-right:0px;margin-top:20px}.layout_first-demo-ninth-theme .footer-content .custome-links{display:inline-block}.layout_first-demo-ninth-theme .contactFields{margin-top:30px}.layout_first-demo-ninth-theme .block-multiples{padding:0px 15px}.layout_first-demo-ninth-theme .sectionone.first.bgwhite.third-sec .heading-section img{box-shadow:5px 5px 0px #eee}.layout_first-demo-ninth-theme .contactFields ul li{font-size:14px}.layout_first-demo-ninth-theme .contactFields h5{font-size:18px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer{padding:25px 15px 65px 15px}.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .newSurveyFooter{padding-top:0px}.layout_first-demo-ninth-theme .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout_first-demo-ninth-theme .descript-thankyou{padding:35% 0%;height:auto}.layout_first-demo-ninth-theme .descript-thankyou h1{font-size:34px}.layout_first-demo-ninth-theme .descript-thankyou p span{font-size:18px !important}.layout_first-demo-ninth-theme .sectionone.first.bgblue .heading-section .homebtn{padding:13px 25px}.layout_first-demo-ninth-theme .newSurveyForm{padding-bottom:20px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText{background:rgba(0,0,0,0);box-shadow:none}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .surveyTextFields{max-width:100%;flex:0 0 100%;margin-top:20px;box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:5px;padding:15px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer{max-width:100%;flex:0 0 100%;box-shadow:0 8px 24px rgba(0,0,0,.2);padding:15px 15px 60px 15px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .newSurveyContent .questionSteps .MuiFormGroup-root{margin-left:0px}.layout_first-demo-ninth-theme .newSurveyForm .surveyPageText .newSurveyPageContainer .progressBar{border-radius:0px 0px 5px 5px}.layout_first-demo-ninth-theme .surveyPagelayout .surveyPagelayout-left{background-image:none !important}.layout_first-demo-ninth-theme .footer-content .custome-links{display:inline-block;width:auto}}@media(max-width: 375px){.layout_first-demo-ninth-theme .newSurveyForm .newSurveyPageContainer .progressBar .progressBarContainer .bar{width:120px}.layout_first-demo-ninth-theme .descript-thankyou p span{font-size:16px !important}}
.beta_layout-theme .betaBanner{position:relative;padding:100px 0px 60px 0px}.beta_layout-theme .betaBanner:before{background-repeat:no-repeat;position:absolute;left:0px;top:0px;width:100%;height:100%;content:""}.beta_layout-theme .betaBanner:after{background-repeat:no-repeat;position:absolute;left:0px;top:0px;width:100%;height:100%;content:"";background-position:right bottom}.beta_layout-theme .betaBanner .bannerBox{position:relative;z-index:11}.beta_layout-theme .betaBanner .bannerBox .bannerImg{display:inline-block;width:100%}.beta_layout-theme .betaBanner .bannerBox .bannerImg img{max-width:100%}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul{display:inline-block;position:absolute;left:0;top:0;width:100%;height:100%}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li{list-style:none}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li img{margin-right:10px}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li:first-child{position:absolute;animation:upDown 1.5s infinite;bottom:150px;left:15px}@keyframes upDown{0%{left:15px}50%{left:-15px}100%{left:15px}}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li:nth-child(2){position:absolute;animation:upDownSecond 1.5s infinite;bottom:50px;right:35px}@keyframes upDownSecond{0%{bottom:50px}50%{bottom:60px}100%{bottom:50px}}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li span{border-radius:5px;display:inline-block;padding:15px 15px;font-size:16px}.beta_layout-first-theme .betaBanner{background:linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(242, 253, 254) 100%)}.beta_layout-first-theme .betaBanner:before{background-image:url(/static/media/wave.8973f3e0b01d069ce085fce69740f053.svg)}.beta_layout-first-theme .betaBanner:after{background-image:url(/static/media/bg-mask-new.36b47b32d8bcc79a26c5d438acb418b3.svg)}.beta_layout-first-theme .betaBanner .bannerBox .bannerImg ul li span{background:#fff;box-shadow:0px 5px 10px rgba(0,0,0,.2)}.beta_layout-eighth-theme .betaBanner{background:linear-gradient(0deg, rgb(255, 255, 255) 0%, #fef2f2 100%)}.beta_layout-eighth-theme .betaBanner:before{background-image:url(/static/media/wave-new.5bc74a3d06dc75f004971f58bc662e73.svg)}.beta_layout-eighth-theme .betaBanner:after{background-image:url(/static/media/bg-mask-new2.2d4253d3562b27d2f6f997b9cad1a202.svg)}.beta_layout-eighth-theme .betaBanner .bannerBox .bannerImg ul li span{background:#fff;box-shadow:0px 5px 10px rgba(0,0,0,.2)}@media(max-width: 1365px){.beta_layout-theme .betaBanner{padding:80px 0px 40px 0px}}@media(max-width: 1024px){.beta_layout-theme .betaBanner:after{display:none}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li span{padding:10px 15px;font-size:14px}}@media(max-width: 992px){.beta_layout-theme .betaBanner:before{background-size:60% auto}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li span{padding:5px 10px}.beta_layout-theme .betaBanner .bannerBox .bannerImg ul li img{width:16px}}@media(max-width: 767px){.beta_layout-theme .betaBanner .bannerBox .bannerImg{display:none}}
.dynamic-form{display:flex;flex-direction:column;margin:15px 15px;padding:20px 0px 20px 0px;justify-content:left;width:100%}.dynamic-form .MuiTypography-body1{font-size:12px;font-weight:500;color:#49494a}.dynamic-form .space-between{margin:10px 0 10px 0;text-align:left;width:100%}.dynamic-form option{font-weight:500}
@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body{overflow-x:hidden}.seventh_layout_global .container{max-width:1480px;width:100%}.seventh_layout_global .header-section{z-index:11}.seventh_layout_global .header-section .fixed-top ul .nav-item a.nav-link{text-transform:uppercase;letter-spacing:1.5px;font-size:14px;padding-right:1.5rem;padding-left:1.5rem;font-weight:500}.seventh_layout_global .seventhThemeBody{display:inline-block;width:100%}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection{min-height:593px;float:left;width:100%;padding:95px 0px 100px 0px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm{border-radius:5px;display:flex}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeFormImg{max-width:550px;flex:0 0 550px;display:flex;align-items:flex-end}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeFormImg img{max-width:100%;vertical-align:bottom}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm{width:100%;padding:40px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .homeSurveyFormInside{display:table;height:100%;width:100%}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .homeSurveyFormInside .mainFormSurvey{display:table-cell;vertical-align:middle;text-align:center}.seventh_layout_global .seventhThemeBody .otherImportantInfo{float:left;width:100%;margin-top:-80px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo{border-radius:5px;padding:25px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul{display:flex;flex-wrap:wrap;margin-bottom:0px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li{flex:0 0 17.5%;max-width:17.5%;list-style:none;text-align:center;padding:0px 20px;transition:.5s;cursor:pointer}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li:hover{transform:translate(0px, -10px)}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li:last-child{flex:0 0 30%;max-width:30%;text-align:left;border-right:none !important;padding:0px 50px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li h4{font-size:16px;font-weight:600;margin-top:5px;margin-bottom:5px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li p{font-size:14px;margin-bottom:0px;font-weight:500}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li span{font-size:14px;font-weight:500;margin-top:10px;display:inline-block}.seventh_layout_global .seventhThemeBody .seventhHowItWorks{display:inline-block;width:100%;padding:50px 0px}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList{margin-top:30px;transition:.5s;border-radius:5px}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList:hover{transform:translate(0, -15px)}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList h4{font-size:20px;font-weight:600;margin-top:5px}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList p{font-size:16px;letter-spacing:.5px;margin-bottom:0px;margin-top:20px}.seventh_layout_global .seventhThemeBody .sectionHeadSeventh{text-align:center;width:100%;display:inline-block;margin-bottom:40px}.seventh_layout_global .seventhThemeBody .sectionHeadSeventh h2{font-size:34px;margin-bottom:0px}.seventh_layout_global .seventhThemeBody .sectionHeadSeventh p{font-size:18px;margin-bottom:0px}.seventh_layout_global .seventhThemeBody .ourCustomersSection{display:inline-block;padding:0px 60px;width:100%}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside{display:inline-block;width:100%;padding:50px 0px;border-radius:5px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock{display:inline-block;width:100%;border-radius:5px;padding:35px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing{display:flex;margin:0px -35px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote{padding:0px 35px;flex:0 0 33.3333%;max-width:33.3333%}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote:last-child{border-right:none}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote p{font-size:16px;letter-spacing:.5px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails{float:left;width:100%}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerImg{width:40px;height:40px;float:left;border-radius:50%;text-align:center;line-height:40px;font-size:28px;font-weight:600}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerName{margin-left:55px;font-weight:500}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerName .rating{display:inline-block;width:100%}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerName .rating img{max-width:100px;float:left}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .googleReview{float:right;max-width:100px;margin-top:15px}.seventh_layout_global .seventhThemeBody .benefitSection{padding:50px 0px;display:inline-block;width:100%}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside{position:relative}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock{min-height:550px;padding-right:60px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText{display:table;height:100%;width:100%}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter{display:table-cell;vertical-align:middle}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter h2{font-size:34px;margin-bottom:30px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter ul li{background-repeat:no-repeat;background-size:29px 29px;padding-left:45px;list-style:none;margin:15px 0px;min-height:30px;float:left;font-size:16px;letter-spacing:.5px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitSectionImg{position:absolute;right:0px;top:0px;overflow:hidden;padding-right:0px;height:100%}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitSectionImg img{height:100%}.seventh_layout_global .seventhThemeBody .takeActionSection{display:inline-block;width:100%;padding:0px 0px 50px 0px}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction{border-radius:5px;padding:40px 60px;display:flex;align-items:center;min-width:100%}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction h2{letter-spacing:.5px;font-weight:600;margin-bottom:0px;width:100%}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn{flex:0 0 400px;max-width:400px}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a{font-size:16px;text-transform:uppercase;letter-spacing:1px;float:right;padding:18px 40px;border-radius:5px;font-weight:600;margin-top:8px}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a:hover{text-decoration:none}.seventh_layout_global .section-footer{display:inline-block;width:100%;padding:40px 0px;text-align:center}.seventh_layout_global .section-footer p{font-size:14px;margin-bottom:0px}.seventh_layout_global .section-footer .footer-content{float:left;width:100%}.seventh_layout_global .section-footer .custome-links{display:inline-block;width:100%}.seventh_layout_global .section-footer .custome-links ul{float:left;width:100%}.seventh_layout_global .section-footer .custome-links ul li{list-style:none;display:inline-block;font-size:14px;padding:0px 10px;margin-top:5px}.seventh_layout_global .section-footer .custome-links ul li:last-child{border-right:none}.seventh_layout_global .btn:link,.seventh_layout_global .btn:visited,.seventh_layout_global .form_button{text-transform:uppercase;text-decoration:none;padding:15px 40px;display:inline-block;border-radius:100px;transition:all .2s;position:relative;box-shadow:none}.seventh_layout_global .btn:hover,.seventh_layout_global .form_button:hover{transform:translateY(-3px);outline:none}.seventh_layout_global .btn:active,.seventh_layout_global .form_button:active{transform:translateY(-1px);outline:none}.seventh_layout_global .btn::after,.seventh_layout_global .form_button::after{content:"";display:inline-block;height:100%;width:100%;border-radius:100px;position:absolute;top:0;left:0;z-index:-1;transition:all .4s;outline:none}.seventh_layout_global .btn-white::after{outline:none;box-shadow:none}.seventh_layout_global .btn:hover::after,.seventh_layout_global .form_button:hover::after{transform:scaleX(1.4) scaleY(1.6);opacity:0;outline:none}.seventh_layout_global .btn-animated{animation:moveInBottom 5s ease-out;animation-fill-mode:backwards;outline:none}@keyframes moveInBottom{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0px)}}.seventh_layout_global .newThemeBgBlue{display:none}.seventh_layout_global .newThemeinnerPage{padding-top:120px;min-height:calc(100vh - 54px);box-shadow:none;padding-bottom:50px;margin:auto;width:1280px;max-width:100%}.seventh_layout_global .newThemeinnerPage .pageTitleInner{text-align:center;margin:auto}.seventh_layout_global .newThemeinnerPage .pageTitleInner h1{font-size:16px;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:0px}.seventh_layout_global .newThemeinnerPage .pageTitleInner h2{font-size:40px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew{display:flex;flex-wrap:wrap;min-height:500px;margin:30px auto 30px auto;position:relative;max-width:1280px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent{flex:0 0 70%;max-width:70%;padding:60px 150px 60px 60px;align-self:center}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent h2{font-size:3rem;margin-bottom:20px}.seventh_layout_global .newThemeinnerPage .aboutPageImg{width:400px;height:400px;position:absolute;right:0px;top:50px}.seventh_layout_global .newThemeinnerPage .contentAreaInner h3{font-size:28px}.seventh_layout_global .newThemeinnerPage .contentAreaInner ul{margin:0px -1%;padding:0px;display:flex;flex-wrap:wrap}.seventh_layout_global .newThemeinnerPage .contentAreaInner ul li{list-style:none;margin:5px 1%;padding-left:30px;background-repeat:no-repeat;background-size:16px 16px;background-position:left 5px;flex:0 0 48%;max-width:48%}.seventh_layout_global .newThemeinnerPage .contentAreaInner p{margin-top:40px}.seventh_layout_global .newThemeContactUs{padding-top:80px;min-height:calc(100vh - 37px);box-shadow:none;padding-bottom:50px;margin:auto;width:1280px;max-width:100%}.seventh_layout_global .newThemeContactUs .contactTitleText{align-self:center}.seventh_layout_global .newThemeContactUs .contactTitleText h1{margin:0 auto 30px;font-size:52px;line-height:1.1em;font-weight:700;text-align:left}.seventh_layout_global .newThemeContactUs .contactTitleText h1 span{display:inline-block;width:100%;font-weight:700}.seventh_layout_global .newThemeContactUs .contactTitleText p{margin:0 auto 0 0;font-size:18px;line-height:1.2em;font-weight:500;text-align:left}.seventh_layout_global .newThemeContactUs .contactTitleText .mailToText{transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);transform-style:preserve-3d;width:80%;padding:30px 20px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-top:20px;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border-radius:16px;transition:.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);text-decoration:none}.seventh_layout_global .newThemeContactUs .contactTitleText .mailToText:hover{border-width:2px;-webkit-transform:translate(0, -4px);-ms-transform:translate(0, -4px);transform:translate(0, -4px)}.seventh_layout_global .newThemeContactUs .contactTitleText .mailToText .contactIcon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:50px;height:50px;margin-right:20px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border-radius:12px}.seventh_layout_global .newThemeContactUs .contactTitleText .mailToText .profile-details{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.seventh_layout_global .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact{display:inline-block;margin-bottom:0;font-size:20px;line-height:22px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme h2{margin-bottom:10px;font-size:30px;line-height:1.2em;font-weight:600;text-align:left}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls{border-radius:30px;padding:40px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form{margin:0px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root{display:flex !important;margin-top:15px;margin-bottom:8px;font-weight:500;font-size:14px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box .MuiFormLabel-root{font-size:14px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea{border-width:1px;width:100%;border-radius:5px;min-height:100px !important}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button{border-radius:5px;-webkit-transform:translate(0, -4px);-ms-transform:translate(0, -4px);transform:translate(0, -4px);font-weight:600;letter-spacing:2px;margin-top:30px;height:60px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button:hover{-webkit-transform:translate(0, -4px);-ms-transform:translate(0, -4px);transform:translate(0, -4px)}.seventh_layout_global .privacyAreaInner{margin-top:50px}.seventh_layout_global .privacyAreaInner h4{margin-top:40px}.seventh_layout_global .privacyAreaInner ul{padding-left:20px;display:inline-block;width:100%}.seventh_layout_global .privacyAreaInner ul li{list-style:disclosure-closed;padding-left:10px;margin:5px 0px;float:left;width:100%}.seventh_layout_global .privacyAreaInner p{display:flex}.seventh_layout_global .privacyAreaInner p strong{font-weight:500;margin-right:15px}.seventh_layout_global .thankyou-section{width:100%;min-height:100vh;display:flex;flex-wrap:wrap;padding-top:80px;background-size:cover}.seventh_layout_global .thankyou-section .tankkyou-container{align-self:center;max-width:800px;text-align:center}.seventh_layout_global .thankyou-section .button-home a{border-radius:5px;display:inline-block;padding:15px 40px;transition:.5s;text-decoration:none;font-weight:600;text-transform:uppercase;letter-spacing:1.3px;margin-top:50px}@media(max-width: 1680px){.seventh_layout_global .container{max-width:1280px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitSectionImg{height:100%}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitSectionImg img{height:100%;width:auto}.seventh_layout_global .newThemeContactUs .contactTitleText{align-self:auto}}@media(max-width: 1365px){.seventh_layout_global .container{max-width:1140px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeFormImg{max-width:500px;flex:0 0 500px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeFormImg img{max-width:100%}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li{padding:0px 10px}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList p{font-size:14px}}@media(max-width: 1200px){.seventh_layout_global .container{max-width:960px;width:100%}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeFormImg img{max-width:100%;height:auto}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm{padding:30px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .titleSurveyHeading h1{font-size:52px;line-height:1.1em;font-weight:700}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .titleSurveyHeading p{font-size:18px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeFormImg{max-width:400px;flex:0 0 400px}.seventh_layout_global .seventhThemeBody .ourCustomersSection{padding:0px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote p{font-size:14px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock{min-height:440px;padding-right:15px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter h2{font-size:30px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter ul li{font-size:14px;background-size:20px 20px;padding-left:30px;margin:5px 0px}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction{padding:20px}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction h2{font-size:26px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls{padding:30px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between{margin:5px 0px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea{min-height:80px !important}.seventh_layout_global .newThemeContactUs .contactFormNewTheme h2{margin-bottom:0px}}@media(max-width: 992px){.seventh_layout_global .container{max-width:720px;width:100%}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection{min-height:auto}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeFormImg{display:none}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo{padding:10px 5px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li{padding:0px 5px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li h4{font-size:14px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li p{font-size:12px;line-height:normal}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li img{max-width:36px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li:last-child{padding:0px 5px}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList{flex:0 0 50%;max-width:50%;margin-top:15px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing{flex-wrap:wrap;margin:0px -15px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote{flex:0 0 100%;max-width:100%;border-bottom:1px solid #ddd;border-right:none !important;padding:15px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote:first-child{padding-top:0px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote:last-child{border-bottom:none;padding-bottom:0px}.seventh_layout_global .seventhThemeBody .benefitSection{padding-top:0px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock{flex:0 0 100%;max-width:100%}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitSectionImg{position:relative;flex:0 0 100%;max-width:100%;height:auto;padding-right:15px}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitSectionImg img{width:100%;height:auto}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn{flex:0 0 200px;max-width:200px}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a{font-size:14px;padding:15px}.seventh_layout_global .newSurveyFooter{text-align:center}.seventh_layout_global .newSurveyFooter .nextBtn{float:none !important;display:inline-block !important}.seventh_layout_global .newThemeinnerPage{padding-top:70px}.seventh_layout_global .newThemeinnerPage .pageTitleInner h2{font-size:34px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew{min-height:400px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent{padding:15px 110px 15px 15px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent h2{font-size:1.7rem}.seventh_layout_global .newThemeinnerPage .aboutPageImg{width:300px;height:300px}.seventh_layout_global .newThemeContactUs .contactTitleText{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.seventh_layout_global .newThemeContactUs .contactTitleText h1{text-align:center}.seventh_layout_global .newThemeContactUs .contactTitleText p{text-align:center}.seventh_layout_global .newThemeContactUs .contactTitleText .mailToText{margin:15px auto auto auto;width:420px;max-width:80%}.seventh_layout_global .newThemeContactUs .contactFormNewTheme{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;margin-top:20px}}@media(max-width: 767px){.seventh_layout_global .container{max-width:540px;width:100%}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .homeSurveyFormInside{display:inline-block;width:100%}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .homeSurveyFormInside .mainFormSurvey{display:inline-block;width:100%}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li{flex:0 0 25%;max-width:25%;border-right:none;border-left:1px solid #ddd}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li:last-child{display:none}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li:first-child{border-left:none}.seventh_layout_global .seventhThemeBody .sectionHeadSeventh h2{font-size:30px}.seventh_layout_global .seventhThemeBody .sectionHeadSeventh p{font-size:16px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew{min-height:auto}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent{flex:0 0 100%;max-width:100%;padding:15px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew .aboutPageImg{display:none}.seventh_layout_global .newThemeinnerPage .contentAreaInner ul li{flex:0 0 100%;max-width:100%}.seventh_layout_global .section-footer{padding:15px 0px}.seventh_layout_global .section-footer .custome-links ul{margin-bottom:0px}.seventh_layout_global .newThemeContactUs{padding-top:60px}.seventh_layout_global .newThemeContactUs .contactTitleText h1{font-size:40px}.seventh_layout_global .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact{font-size:16px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme h2{text-align:center}.seventh_layout_global .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between{justify-content:left !important}}@media(max-width: 560px){.seventh_layout_global .container{max-width:100%}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction{display:inline-block;text-align:center}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn{display:inline-block;width:100%;flex:0 0 100%;max-width:100%;margin-top:15px}.seventh_layout_global .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a{float:none;display:inline-block}.seventh_layout_global .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText{padding:30px 0px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside{padding:20px 0px}.seventh_layout_global .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock{padding:15px}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList{flex:0 0 100%;max-width:100%;text-align:center;margin-bottom:20px}.seventh_layout_global .seventhThemeBody .seventhHowItWorks .howWorksList:last-child{margin-bottom:0px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li{flex:0 0 50%;max-width:50%;margin-bottom:10px}.seventh_layout_global .seventhThemeBody .otherImportantInfo .otherInfo ul li:nth-child(3){border-left:none}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm{padding:30px 15px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .titleSurveyHeading h1{font-size:30px}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .homeSurveyFormInside{display:inline-block;width:100%}.seventh_layout_global .seventhThemeBody .seventhTheme_FirstSection .homepageForm .homeSurveyForm .homeSurveyFormInside .mainFormSurvey{display:inline-block;width:100%}.seventh_layout_global .section-footer p{font-size:12px}.seventh_layout_global .section-footer .custome-links ul li{font-size:12px}.seventh_layout_global .section-footer{padding:15px 0px}.seventh_layout_global .newThemeinnerPage .pageTitleInner h2{font-size:28px}.seventh_layout_global .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent h2{font-size:1.4rem}.seventh_layout_global .newThemeinnerPage .contentAreaInner ul li{margin:5px 0px}.seventh_layout_global .newThemeContactUs .contactTitleText h1{font-size:30px}.seventh_layout_global .newThemeContactUs .contactFormNewTheme h2{font-size:26px}}.seventh_layout_global .layout_seventh-default-theme .header-section .fixed-top{background:#44cb86}.seventh_layout_global .layout_seventh-default-theme .header-section .fixed-top ul .nav-item a.nav-link{color:#fff}.seventh_layout_global .layout_seventh-default-theme .header-section.pageScroll .fixed-top{background:#44cb86}.seventh_layout_global .layout_seventh-default-theme .header-section .navbar-toggler{background:#fff}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .seventhTheme_FirstSection{background:#fafafb}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .seventhTheme_FirstSection .homepageForm{background-color:#fff;background-image:linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg);box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .otherImportantInfo .otherInfo{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li{border-right:1px solid #cfc6c9}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li:last-child p{color:#212121}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li h4{color:#212121}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li p{color:#9a9a9a}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li span{color:#9a9a9a}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .seventhHowItWorks .howWorksList h4{color:#1d1d1d}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .seventhHowItWorks .howWorksList p{color:#535353}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .sectionHeadSeventh h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .sectionHeadSeventh p{color:#505050}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside{background:#fafafb}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote{border-right:1px solid #ddd7d9}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote p{color:#535353}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerImg{background:#ddd;color:#fff}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .benefitSection .benefirSectionInside{background:#f9f9f9}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter ul li{background-image:url(/static/media/checkMark-green.bde1ed6dba7e5960981b099a62ce1f3d.svg)}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .takeActionSection .takeAction{background:#44cb86}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .takeActionSection .takeAction h2{color:#fff}.seventh_layout_global .layout_seventh-default-theme .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a{background:#fff;color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .layout_seventh-default-theme .section-footer p{color:#a8a8a8}.seventh_layout_global .layout_seventh-default-theme .section-footer .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .layout_seventh-default-theme .section-footer .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .layout_seventh-default-theme .section-footer .custome-links ul li a:hover{color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .section-footer .custome-links ul li:last-child{border-right:none}.seventh_layout_global .layout_seventh-default-theme .btn:hover,.seventh_layout_global .layout_seventh-default-theme .form_button:hover{box-shadow:0 10px 20px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-default-theme .btn:active,.seventh_layout_global .layout_seventh-default-theme .form_button:active{box-shadow:0 5px 10px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-default-theme .btn-white{background-color:#fff;color:#777}.seventh_layout_global .layout_seventh-default-theme .btn-white::after{background-color:#fff}.seventh_layout_global .layout_seventh-default-theme .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent{background:#ebf0f3}.seventh_layout_global .layout_seventh-default-theme .newThemeinnerPage .aboutPageImg{background:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newThemeinnerPage .contentAreaInner ul li{background-image:url(/static/media/yes-green.86abf7dea2a69926a3f3a88ff2e7820b.svg)}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs{background:#fefeff}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactTitleText h1{color:#0a0535}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactTitleText p{color:#4a5a83}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactTitleText .mailToText{border:2px solid rgba(0,0,0,0);border-radius:16px;background-color:#fff;box-shadow:6px 6px 16px 4px rgba(0,0,0,.02)}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactTitleText .mailToText:hover{border-color:#44cb86;box-shadow:11px 11px 16px 4px rgba(0,0,0,.04)}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactTitleText .mailToText .contactIcon{background-color:#f2f0ff}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact{color:#4a5a83}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact strong{color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme h2{color:#263047}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls{border:2px solid #f2f0ff;background-color:#fff}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root{color:#313131 !important}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root .mendatory{color:red}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:hover,.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:focus{border-color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:focus{border-color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button{background-color:#44cb86;border-color:rgba(0,0,0,0);box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);color:#fff}.seventh_layout_global .layout_seventh-default-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button:hover{background-color:#44cb86;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);border-color:rgba(0,0,0,0);color:#fff}.seventh_layout_global .layout_seventh-default-theme .thankyou-section .button-home a{background:#44cb86;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .layout_seventh-first-theme .header-section .fixed-top{background:#1b283f}.seventh_layout_global .layout_seventh-first-theme .header-section .fixed-top ul .nav-item a.nav-link{color:#fff}.seventh_layout_global .layout_seventh-first-theme .header-section.pageScroll .fixed-top{background:#1b283f}.seventh_layout_global .layout_seventh-first-theme .header-section .navbar-toggler{background:#fff}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .seventhTheme_FirstSection{background:#fafafb}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .seventhTheme_FirstSection .homepageForm{background-color:#fff;background-image:linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg);box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .otherImportantInfo .otherInfo{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li{border-right:1px solid #cfc6c9}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li:last-child p{color:#212121}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li h4{color:#212121}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li p{color:#9a9a9a}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li span{color:#9a9a9a}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .seventhHowItWorks .howWorksList h4{color:#1d1d1d}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .seventhHowItWorks .howWorksList p{color:#535353}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .sectionHeadSeventh h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .sectionHeadSeventh p{color:#505050}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside{background:#fafafb}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote{border-right:1px solid #ddd7d9}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote p{color:#535353}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerImg{background:#ddd;color:#fff}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .benefitSection .benefirSectionInside{background:#f9f9f9}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter ul li{background-image:url(/static/media/checkMark-green.bde1ed6dba7e5960981b099a62ce1f3d.svg)}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .takeActionSection .takeAction{background:#1b283f}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .takeActionSection .takeAction h2{color:#fff}.seventh_layout_global .layout_seventh-first-theme .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a{background:#fff;color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .layout_seventh-first-theme .section-footer p{color:#a8a8a8}.seventh_layout_global .layout_seventh-first-theme .section-footer .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .layout_seventh-first-theme .section-footer .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .layout_seventh-first-theme .section-footer .custome-links ul li a:hover{color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .section-footer .custome-links ul li:last-child{border-right:none}.seventh_layout_global .layout_seventh-first-theme .btn:hover,.seventh_layout_global .layout_seventh-first-theme .form_button:hover{box-shadow:0 10px 20px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-first-theme .btn:active,.seventh_layout_global .layout_seventh-first-theme .form_button:active{box-shadow:0 5px 10px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-first-theme .btn-white{background-color:#fff;color:#777}.seventh_layout_global .layout_seventh-first-theme .btn-white::after{background-color:#fff}.seventh_layout_global .layout_seventh-first-theme .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent{background:#ebf0f3}.seventh_layout_global .layout_seventh-first-theme .newThemeinnerPage .aboutPageImg{background:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newThemeinnerPage .contentAreaInner ul li{background-image:url(/static/media/yes-green.86abf7dea2a69926a3f3a88ff2e7820b.svg)}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs{background:#fefeff}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactTitleText h1{color:#0a0535}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactTitleText p{color:#4a5a83}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactTitleText .mailToText{border:2px solid rgba(0,0,0,0);border-radius:16px;background-color:#fff;box-shadow:6px 6px 16px 4px rgba(0,0,0,.02)}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactTitleText .mailToText:hover{border-color:#1b283f;box-shadow:11px 11px 16px 4px rgba(0,0,0,.04)}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactTitleText .mailToText .contactIcon{background-color:#f2f0ff}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact{color:#4a5a83}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact strong{color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme h2{color:#263047}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls{border:2px solid #f2f0ff;background-color:#fff}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root{color:#313131 !important}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root .mendatory{color:red}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:hover,.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:focus{border-color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:focus{border-color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button{background-color:#1b283f;border-color:rgba(0,0,0,0);box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);color:#fff}.seventh_layout_global .layout_seventh-first-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button:hover{background-color:#1b283f;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);border-color:rgba(0,0,0,0);color:#fff}.seventh_layout_global .layout_seventh-first-theme .thankyou-section .button-home a{background:#1b283f;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .layout_seventh-second-theme .header-section .fixed-top{background:#7773fa}.seventh_layout_global .layout_seventh-second-theme .header-section .fixed-top ul .nav-item a.nav-link{color:#fff}.seventh_layout_global .layout_seventh-second-theme .header-section.pageScroll .fixed-top{background:#7773fa}.seventh_layout_global .layout_seventh-second-theme .header-section .navbar-toggler{background:#fff}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .seventhTheme_FirstSection{background:#fafafb}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .seventhTheme_FirstSection .homepageForm{background-color:#fff;background-image:linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg);box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .otherImportantInfo .otherInfo{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li{border-right:1px solid #cfc6c9}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li:last-child p{color:#212121}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li h4{color:#212121}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li p{color:#9a9a9a}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li span{color:#9a9a9a}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .seventhHowItWorks .howWorksList h4{color:#1d1d1d}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .seventhHowItWorks .howWorksList p{color:#535353}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .sectionHeadSeventh h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .sectionHeadSeventh p{color:#505050}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside{background:#fafafb}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote{border-right:1px solid #ddd7d9}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote p{color:#535353}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerImg{background:#ddd;color:#fff}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .benefitSection .benefirSectionInside{background:#f9f9f9}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter ul li{background-image:url(/static/media/checkMark-green.bde1ed6dba7e5960981b099a62ce1f3d.svg)}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .takeActionSection .takeAction{background:#7773fa}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .takeActionSection .takeAction h2{color:#fff}.seventh_layout_global .layout_seventh-second-theme .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a{background:#fff;color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .layout_seventh-second-theme .section-footer p{color:#a8a8a8}.seventh_layout_global .layout_seventh-second-theme .section-footer .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .layout_seventh-second-theme .section-footer .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .layout_seventh-second-theme .section-footer .custome-links ul li a:hover{color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .section-footer .custome-links ul li:last-child{border-right:none}.seventh_layout_global .layout_seventh-second-theme .btn:hover,.seventh_layout_global .layout_seventh-second-theme .form_button:hover{box-shadow:0 10px 20px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-second-theme .btn:active,.seventh_layout_global .layout_seventh-second-theme .form_button:active{box-shadow:0 5px 10px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-second-theme .btn-white{background-color:#fff;color:#777}.seventh_layout_global .layout_seventh-second-theme .btn-white::after{background-color:#fff}.seventh_layout_global .layout_seventh-second-theme .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent{background:#ebf0f3}.seventh_layout_global .layout_seventh-second-theme .newThemeinnerPage .aboutPageImg{background:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newThemeinnerPage .contentAreaInner ul li{background-image:url(/static/media/yes-green.86abf7dea2a69926a3f3a88ff2e7820b.svg)}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs{background:#fefeff}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactTitleText h1{color:#0a0535}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactTitleText p{color:#4a5a83}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactTitleText .mailToText{border:2px solid rgba(0,0,0,0);border-radius:16px;background-color:#fff;box-shadow:6px 6px 16px 4px rgba(0,0,0,.02)}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactTitleText .mailToText:hover{border-color:#7773fa;box-shadow:11px 11px 16px 4px rgba(0,0,0,.04)}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactTitleText .mailToText .contactIcon{background-color:#f2f0ff}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact{color:#4a5a83}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact strong{color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme h2{color:#263047}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls{border:2px solid #f2f0ff;background-color:#fff}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root{color:#313131 !important}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root .mendatory{color:red}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:hover,.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:focus{border-color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:focus{border-color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button{background-color:#7773fa;border-color:rgba(0,0,0,0);box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);color:#fff}.seventh_layout_global .layout_seventh-second-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button:hover{background-color:#7773fa;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);border-color:rgba(0,0,0,0);color:#fff}.seventh_layout_global .layout_seventh-second-theme .thankyou-section .button-home a{background:#7773fa;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .layout_seventh-third-theme .header-section .fixed-top{background:#4094a9}.seventh_layout_global .layout_seventh-third-theme .header-section .fixed-top ul .nav-item a.nav-link{color:#fff}.seventh_layout_global .layout_seventh-third-theme .header-section.pageScroll .fixed-top{background:#4094a9}.seventh_layout_global .layout_seventh-third-theme .header-section .navbar-toggler{background:#fff}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .seventhTheme_FirstSection{background:#fafafb}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .seventhTheme_FirstSection .homepageForm{background-color:#fff;background-image:linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg);box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .otherImportantInfo .otherInfo{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li{border-right:1px solid #cfc6c9}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li:last-child p{color:#212121}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li h4{color:#212121}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li p{color:#9a9a9a}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .otherImportantInfo .otherInfo ul li span{color:#9a9a9a}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .seventhHowItWorks .howWorksList h4{color:#1d1d1d}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .seventhHowItWorks .howWorksList p{color:#535353}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .sectionHeadSeventh h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .sectionHeadSeventh p{color:#505050}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside{background:#fafafb}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock{background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,.08)}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote{border-right:1px solid #ddd7d9}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote p{color:#535353}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .ourCustomersSection .ourCustomersSectionInside .testimonialsBlock .testimonialsListing blockquote .customerdetails .customerImg{background:#ddd;color:#fff}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .benefitSection .benefirSectionInside{background:#f9f9f9}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter h2{color:#1e1e1e}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .benefitSection .benefirSectionInside .benefitTextBlock .benefirText .benefitTextCenter ul li{background-image:url(/static/media/checkMark-green.bde1ed6dba7e5960981b099a62ce1f3d.svg)}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .takeActionSection .takeAction{background:#4094a9}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .takeActionSection .takeAction h2{color:#fff}.seventh_layout_global .layout_seventh-third-theme .seventhThemeBody .takeActionSection .takeAction .checkEligibilityBtn a{background:#fff;color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .layout_seventh-third-theme .section-footer p{color:#a8a8a8}.seventh_layout_global .layout_seventh-third-theme .section-footer .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .layout_seventh-third-theme .section-footer .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .layout_seventh-third-theme .section-footer .custome-links ul li a:hover{color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .section-footer .custome-links ul li:last-child{border-right:none}.seventh_layout_global .layout_seventh-third-theme .btn:hover,.seventh_layout_global .layout_seventh-third-theme .form_button:hover{box-shadow:0 10px 20px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-third-theme .btn:active,.seventh_layout_global .layout_seventh-third-theme .form_button:active{box-shadow:0 5px 10px rgba(0,0,0,.2)}.seventh_layout_global .layout_seventh-third-theme .btn-white{background-color:#fff;color:#777}.seventh_layout_global .layout_seventh-third-theme .btn-white::after{background-color:#fff}.seventh_layout_global .layout_seventh-third-theme .newThemeinnerPage .aboutPageContentNew .aboutPageLeftContent{background:#ebf0f3}.seventh_layout_global .layout_seventh-third-theme .newThemeinnerPage .aboutPageImg{background:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newThemeinnerPage .contentAreaInner ul li{background-image:url(/static/media/yes-green.86abf7dea2a69926a3f3a88ff2e7820b.svg)}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs{background:#fefeff}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactTitleText h1{color:#0a0535}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactTitleText p{color:#4a5a83}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactTitleText .mailToText{border:2px solid rgba(0,0,0,0);border-radius:16px;background-color:#fff;box-shadow:6px 6px 16px 4px rgba(0,0,0,.02)}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactTitleText .mailToText:hover{border-color:#4094a9;box-shadow:11px 11px 16px 4px rgba(0,0,0,.04)}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactTitleText .mailToText .contactIcon{background-color:#f2f0ff}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact{color:#4a5a83}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactTitleText .mailToText .profile-details .profileContact strong{color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme h2{color:#263047}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls{border:2px solid #f2f0ff;background-color:#fff}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root{color:#313131 !important}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .MuiFormLabel-root .mendatory{color:red}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:hover,.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .input-box__field:focus{border-color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea{background:#fafafb;border-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .textarea-box textarea:focus{border-color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button{background-color:#4094a9;border-color:rgba(0,0,0,0);box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);color:#fff}.seventh_layout_global .layout_seventh-third-theme .newThemeContactUs .contactFormNewTheme .controls .dynamic-form .space-between .form_button:hover{background-color:#4094a9;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45);border-color:rgba(0,0,0,0);color:#fff}.seventh_layout_global .layout_seventh-third-theme .thankyou-section .button-home a{background:#4094a9;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}
.seventh_layout_global .newLayoutSurvey .questionSteps{display:inline-block;width:100%}.seventh_layout_global .newLayoutSurvey .questionSteps .textarea-box{padding-top:0px !important}.seventh_layout_global .newLayoutSurvey .questionSteps .textarea-box textarea{width:100%;border-width:2px;border-radius:5px !important;min-height:90px !important}.seventh_layout_global .newLayoutSurvey .questionSteps .topNavigationSurvey{margin-top:15px;display:inline-block;width:100%}.seventh_layout_global .newLayoutSurvey .questionSteps .topNavigationSurvey .progressBarText{font-size:14px;font-weight:500}.seventh_layout_global .newLayoutSurvey .questionSteps .topNavigationSurvey .progressBarText span{font-weight:500}.seventh_layout_global .newLayoutSurvey .questionSteps .topNavigationSurvey .bar{display:none}.seventh_layout_global .newLayoutSurvey .questionSteps .MuiFormLabel-root{font-size:20px;font-weight:600;display:flex;padding:0px 0px 10px 0;line-height:1;letter-spacing:.00938em;text-align:center;justify-content:center;margin-bottom:1rem}.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root{flex-direction:row;margin:0 -1%}.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:48%;flex:0 0 48%;margin:1%;border-radius:5px;text-align:left;padding:12px;transition:.3s;padding-right:40px}.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:hover{transform:scale(1.03);transition:.3s}.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:hover::after{display:block}.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:after{width:22px;height:22px;position:absolute;right:10px;top:19px;border-radius:50%;content:"";background-size:16px;background-repeat:no-repeat;background-position:3px 3px;display:none}.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain{display:flex;flex-direction:row;justify-content:center;align-items:normal;width:100%;flex-wrap:wrap}.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList{width:30.3333%;border-radius:5px;background:rgba(0,0,0,0);margin:1.5%;min-height:80px;position:relative;transition:.1s;justify-content:normal;align-items:center;display:flex;cursor:pointer;flex-flow:wrap;font-size:14px;flex-direction:column-reverse}.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected::after,.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover::after{display:block}.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList center{font-weight:500;font-size:16px;padding:0 0 17px;margin-top:0px !important}.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:after{width:22px;height:22px;position:absolute;right:10px;top:10px;border-radius:50%;content:"";background-size:16px;background-repeat:no-repeat;background-position:3px 3px;display:none}.seventh_layout_global .newLayoutSurvey .questionSteps .dynamic-form{width:480px;display:inline-block;max-width:100%;margin:0px 15px;padding:0px 0px 0px 0px}.seventh_layout_global .newLayoutSurvey .questionSteps .dynamic-form .space-between{margin:0px 0 20px 0}.seventh_layout_global .newLayoutSurvey .questionSteps .dynamic-form .space-between .MuiFormLabel-root{display:none !important}.seventh_layout_global .newLayoutSurvey .questionSteps .dynamic-form .space-between input{border-width:2px}.seventh_layout_global .newLayoutSurvey .questionSteps .dynamic-form .surveyFormBtnFull .form_button{width:100%;display:inline-block;padding:15px 20px;border-radius:5px;font-weight:500;text-transform:uppercase;letter-spacing:1px}.seventh_layout_global .newLayoutSurvey .questionSteps .select-box{width:480px;max-width:100%}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root{flex-direction:row;margin:0 -1%}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:48%;flex:0 0 48%;margin:1%;border-radius:5px;text-align:left;padding:12px;transition:.3s;padding-right:40px}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:hover,.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root.checkbox-selected{transform:scale(1.03);transition:.3s}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:hover::after,.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root.checkbox-selected::after{display:block}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:after{width:22px;height:22px;position:absolute;right:10px;top:19px;border-radius:50%;content:"";background-size:16px;background-repeat:no-repeat;background-position:3px 3px;display:none}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root .icon-span{margin-right:10px}.seventh_layout_global .newLayoutSurvey .newSurveyFooter{display:inline-block;width:100%;max-width:100%;margin-top:20px;text-align:center}.seventh_layout_global .newLayoutSurvey .newSurveyFooter .nextBtn{padding:15px 20px;border-radius:5px;display:inline-block;text-transform:uppercase;letter-spacing:1px;font-weight:500;min-width:170px;float:none !important;display:inline-block !important}@media(max-width: 1200px){.seventh_layout_global .newLayoutSurvey .questionSteps .dynamic-form{margin:0px}.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root{padding:10px;padding-right:30px}.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root .MuiFormControlLabel-label{font-size:14px}.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList center{font-size:14px}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root{padding:10px;padding-right:30px}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root .MuiFormControlLabel-label{font-size:14px}}@media(max-width: 560px){.seventh_layout_global .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:100%;flex:0 0 100%;margin:5px 0px}.seventh_layout_global .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList{width:46%;margin:2%}.seventh_layout_global .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root{max-width:98%;flex:0 0 98%;margin:1%}}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .textarea-box textarea:focus{border-color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .topNavigationSurvey .progressBarText{color:#b5b5b5}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .MuiFormLabel-root{color:#000 !important}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:hover{color:#44cb86 !important;border:2px solid #44cb86;background-color:#fff}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#44cb86;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList{border:2px solid #ddd !important;background:rgba(0,0,0,0) !important}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected,.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover{border-color:#44cb86 !important;background:#fff !important;box-shadow:0 0 5px #ccc}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected .dropdownLIstLabel center,.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover .dropdownLIstLabel center{color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList center{color:#717171}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:after{background-color:#44cb86;content:"";background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input.input-box__field--errord{border-color:red}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:hover,.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:focus{border-color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .dynamic-form .surveyFormBtnFull .form_button{background-color:#44cb86;border:none;color:#fff}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0) !important}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:hover,.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root.checkbox-selected{color:#44cb86 !important;border:2px solid #44cb86;background-color:#fff !important}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#44cb86;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .newSurveyFooter .nextBtn{border:2px solid #44cb86;background:rgba(0,0,0,0);color:#44cb86}.seventh_layout_global .layout_seventh-default-theme .newLayoutSurvey .newSurveyFooter .nextBtn:hover{background:#44cb86;color:#fff}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .textarea-box textarea:focus{border-color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .topNavigationSurvey .progressBarText{color:#b5b5b5}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .MuiFormLabel-root{color:#000 !important}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:hover{color:#1b283f !important;border:2px solid #1b283f;background-color:#fff}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#1b283f;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList{border:2px solid #ddd !important;background:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected,.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover{border-color:#1b283f !important;background:#fff !important;box-shadow:0 0 5px #ccc}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected .dropdownLIstLabel center,.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover .dropdownLIstLabel center{color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList center{color:#717171}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:after{background-color:#1b283f;content:"";background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input.input-box__field--errord{border-color:red}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:hover,.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:focus{border-color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .dynamic-form .surveyFormBtnFull .form_button{background-color:#1b283f;border:none;color:#fff}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0) !important}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:hover,.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root.checkbox-selected{color:#1b283f !important;border:2px solid #1b283f;background-color:#fff !important}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#1b283f;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .newSurveyFooter .nextBtn{border:2px solid #1b283f;background:rgba(0,0,0,0);color:#1b283f}.seventh_layout_global .layout_seventh-first-theme .newLayoutSurvey .newSurveyFooter .nextBtn:hover{background:#1b283f;color:#fff}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .textarea-box textarea:focus{border-color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .topNavigationSurvey .progressBarText{color:#b5b5b5}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .MuiFormLabel-root{color:#000 !important}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:hover{color:#7773fa !important;border:2px solid #7773fa;background-color:#fff}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#7773fa;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList{border:2px solid #ddd !important;background:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected,.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover{border-color:#7773fa !important;background:#fff !important;box-shadow:0 0 5px #ccc}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected .dropdownLIstLabel center,.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover .dropdownLIstLabel center{color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList center{color:#717171}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:after{background-color:#7773fa;content:"";background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input.input-box__field--errord{border-color:red}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:hover,.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:focus{border-color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .dynamic-form .surveyFormBtnFull .form_button{background-color:#7773fa;border:none;color:#fff}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0) !important}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:hover,.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root.checkbox-selected{color:#7773fa !important;border:2px solid #7773fa;background-color:#fff !important}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#7773fa;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .newSurveyFooter .nextBtn{border:2px solid #7773fa;background:rgba(0,0,0,0);color:#7773fa}.seventh_layout_global .layout_seventh-second-theme .newLayoutSurvey .newSurveyFooter .nextBtn:hover{background:#7773fa;color:#fff}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .textarea-box textarea:hover,.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .textarea-box textarea:focus{border-color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .topNavigationSurvey .progressBarText{color:#b5b5b5}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .MuiFormLabel-root{color:#000 !important}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:hover{color:#4094a9 !important;border:2px solid #4094a9;background-color:#fff}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .radioBtnsGroup .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#4094a9;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList{border:2px solid #ddd !important;background:rgba(0,0,0,0)}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected,.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover{border-color:#4094a9 !important;background:#fff !important;box-shadow:0 0 5px #ccc}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList.dropdownMainListSelected .dropdownLIstLabel center,.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:hover .dropdownLIstLabel center{color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList center{color:#717171}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dropdownMain .dropdownMainList:after{background-color:#4094a9;content:"";background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input.input-box__field--errord{border-color:red}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:hover,.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dynamic-form .space-between input:focus{border-color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .dynamic-form .surveyFormBtnFull .form_button{background-color:#4094a9;border:none;color:#fff}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root{color:#717171 !important;border:2px solid #c5c5c5;background-color:rgba(0,0,0,0) !important}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:hover,.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root.checkbox-selected{color:#4094a9 !important;border:2px solid #4094a9;background-color:#fff !important}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .questionSteps .chkbox_survey .MuiFormGroup-root label.MuiFormControlLabel-root:after{background-color:#4094a9;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .newSurveyFooter .nextBtn{border:2px solid #4094a9;background:rgba(0,0,0,0);color:#4094a9}.seventh_layout_global .layout_seventh-third-theme .newLayoutSurvey .newSurveyFooter .nextBtn:hover{background:#4094a9;color:#fff}
.MuiDialog-paperWidthSm{width:600px}body{font-size:1rem !important;font-weight:400 !important;line-height:1.5 !important;color:#212529 !important;text-align:left !important;background-color:#fff !important}.loader-div{height:100%;text-align:center;margin:auto;padding:15%}.header-main-div .navbar-light .navbar-nav .nav-link{cursor:pointer;font-weight:600;text-transform:uppercase;letter-spacing:.5px}.beta_layout-theme .header-section .fixed-top ul .nav-item a{font-weight:600}.beta_layout-theme .header-section .fixed-top .lastbtn .nav-link{letter-spacing:.5px;position:relative;font-weight:600;padding:10px 20px;border-radius:5px}.beta_layout-theme .sectionDivider{display:-ms-flexbox;display:flex}.beta_layout-theme .sectionDivider .divider__left,.beta_layout-theme .sectionDivider .divider__right{position:relative;display:block;height:30px;width:50%}.beta_layout-theme .sectionDivider .divider__left{border-top-right-radius:70px}.beta_layout-theme .sectionDivider .divider__right{border-top-left-radius:70px}.beta_layout-theme .betaSurvey .newSurveyHeading h2{font-size:48px;font-weight:bold}.beta_layout-theme .betaSurvey .betaLayoutFormContainer{border-radius:10px;padding:70px;position:relative;margin-top:30px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .progressBar{position:absolute;right:30px;top:30px;font-size:14px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormLabel-root{font-size:24px;font-weight:600;width:100%}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormLabel-root div{font-weight:600}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormGroup-root{flex-direction:row}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root{border-radius:5px;width:48%;margin:1%}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root .MuiFormControlLabel-label{font-size:16px;font-weight:500}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root .MuiFormControlLabel-label div{font-size:16px;font-weight:500}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .date-box__field{height:44px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span{min-height:64px;width:48%;flex-direction:inherit;padding:5px 15px;margin:1%;border-radius:5px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span .customDropdown-first-theme_span_label,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span .customDropdown-eighth-theme_span_label,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span .customDropdown-first-theme_span_label,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span .customDropdown-eighth-theme_span_label{font-size:16px;font-weight:500}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span .customDropdown-first-theme_span_label center,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span .customDropdown-eighth-theme_span_label center,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span .customDropdown-first-theme_span_label center,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span .customDropdown-eighth-theme_span_label center{font-weight:500;margin-top:0px !important}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span span.icon-span-main i,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span span.icon-span-main i{font-size:30px !important}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .privacypolicy{margin-top:10px;text-align:center}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter{display:inline-block;width:100%;margin-top:20px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter .nextBtn{width:auto;font-size:24px;font-weight:600;border-radius:10px;padding:11px 30px;float:right}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter .nextBtn.submit-btn{width:100%}.beta_layout-theme .howItWorks{background-repeat:no-repeat;background-position:right bottom}.beta_layout-theme .howItWorks .howItWorksContainer{padding:50px 0px 70px 0px}.beta_layout-theme .howItWorks .howItWorksContainer .row{justify-content:center}.beta_layout-theme .howItWorks .howItWorksContainer .smileIcon{text-align:center;width:100%;text-align:center}.beta_layout-theme .howItWorks .howItWorksContainer .heading-section{text-align:center;width:850px;max-width:100%;margin:auto}.beta_layout-theme .howItWorks .howItWorksContainer .heading-section h2{font-size:44px;font-weight:bold;line-height:normal}.beta_layout-theme .howItWorks .howItWorksContainer .heading-section p{width:100%;font-size:18px}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples{margin-top:50px}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block{text-align:center}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block:hover{box-shadow:none}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg{width:100%;max-width:250px;border-radius:50%;padding:10px;margin:auto;position:relative}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg img{border-radius:50%;position:relative;z-index:1}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg:before{position:absolute;right:-20px;bottom:0;width:100px;height:100px;content:"";border-radius:50%;z-index:0;opacity:.1}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg:after{position:absolute;left:0;top:10px;width:50px;height:50px;content:"";border-radius:50%;z-index:0;opacity:.1}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block h4{margin-top:25px}.beta_layout-theme .beta-Section-second{padding:0px 0px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer{padding:20px 0px 70px 0px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;padding:78px 5% 41px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;border-radius:20px;background-size:auto;background-repeat:no-repeat;position:relative;background-size:cover}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer:before{opacity:1;content:"";position:absolute;height:100%;width:100%;left:0;top:0;border-radius:20px;z-index:1}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;max-width:622px;margin-bottom:62px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;position:relative;z-index:2}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section h2{margin-top:0;margin-bottom:34px;font-size:50px;line-height:60px;font-weight:600}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section p{font-size:24px;line-height:32px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section .homebtn{max-width:100%;font-size:24px;font-weight:600;border-radius:10px;padding:10px 15px;min-width:300px;text-align:center;margin-top:20px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer{padding:40px 0px 70px 0px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdheader{text-align:center;width:850px;max-width:100%;margin:auto;margin-bottom:50px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdheader h2{font-size:44px;font-weight:bold;line-height:normal}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdImgSection{border-radius:20px;overflow:hidden}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection p{font-size:18px;line-height:29px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection ul{margin:30px 0px;padding:0px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection ul li{padding-left:40px;list-style:none;line-height:20px;font-weight:600;margin-bottom:26px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer{padding:50px 0px 70px 0px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader{text-align:center;width:850px;max-width:100%;margin:auto}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader h2{font-size:44px;font-weight:bold;line-height:normal;margin-bottom:20px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader p{font-size:18px;line-height:29px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .btnCheck{text-align:center;width:100%;margin-top:20px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .btnCheck .homebtn{max-width:100%;font-size:24px;font-weight:600;border-radius:10px;padding:10px 25px;min-width:300px;text-align:center;margin-top:20px}.beta_layout-theme .section-footer{padding:30px 0px;font-size:14px}.beta_layout-theme .section-footer .custome-links{float:right}.beta_layout-theme .section-footer .custome-links ul{margin-bottom:0px}.beta_layout-theme .section-footer .custome-links ul li{display:inline-block;margin:0px 15px}.beta_layout-theme .thankyou-section{height:calc(100vh - 98px);background-size:cover}.beta_layout-theme .thankyou-section .tankkyou-container{height:100%;display:flex;justify-content:center;align-items:center}.beta_layout-theme .thankyou-section .tankkyou-container .descript-thankyou{border-radius:10px;padding:70px;text-align:center}.beta_layout-theme .pageTitle{padding:90px 0px 50px 0px;text-align:center}.beta_layout-theme .innerPageContent{padding:50px 0px}.beta_layout-theme .innerPageContent .container{max-width:1240px}.beta_layout-first-theme .header-main-div .navbar-light .navbar-nav .nav-link{color:#000}.beta_layout-first-theme .header-main-div .navbar-light .navbar-nav .nav-link:hover{color:#172e6f}.beta_layout-first-theme .header-section{background:rgba(0,0,0,0)}.beta_layout-first-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important}.beta_layout-first-theme .header-section .fixed-top ul .nav-item a{color:#172e6f}.beta_layout-first-theme .header-section .fixed-top ul .nav-item a:hover{color:#0fbfd5}.beta_layout-first-theme .header-section .fixed-top .lastbtn .nav-link{background:#ff9f0e;color:#fff;box-shadow:0px 0px 5px #ffc34d}.beta_layout-first-theme .header-section .fixed-top .lastbtn .nav-link:hover{background-color:#172e6f;color:#fff;box-shadow:0px 5px 5px #cfdcff}.beta_layout-first-theme .header-section.pageScroll .fixed-top{background-color:#fff !important;box-shadow:0px 0px 5px rgba(0,0,0,.2)}.beta_layout-first-theme .sectionDivider{background:#fff}.beta_layout-first-theme .sectionDivider .divider__left,.beta_layout-first-theme .sectionDivider .divider__right{background:#172e6f}.beta_layout-first-theme .betaSurvey .newSurveyHeading h2{color:#172e6f}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer{background:#fff;box-shadow:0px 5px 10px #ebf0ff;border:2px solid #b1e5f1}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormLabel-root{color:#172e6f !important}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormLabel-root div{color:#172e6f}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormGroup-root{flex-direction:row}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .inputContainer{border-color:#b1e5f1 !important}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .inputContainer:hover,.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .inputContainer:focus{border-color:#172e6f !important}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root{border:2px solid #b1e5f1;background-color:#f5fdfe}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root .MuiFormControlLabel-label{color:#172e6f}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root .MuiFormControlLabel-label div i{color:#172e6f}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root:hover{background:#172e6f;color:#fff;border-color:#172e6f !important}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root:hover>div i{color:#fff !important}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root:hover .MuiFormControlLabel-label{color:#fff}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .input-box__field{border:2px solid #b1e5f1}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .input-box__field:hover,.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .input-box__field:focus{border-color:#172e6f}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span{border:2px solid #b1e5f1 !important;background-color:#f5fdfe}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span:hover,.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span.customDropdown-first-theme_span_selected{background:#172e6f;color:#fff;border-color:#172e6f !important}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter .nextBtn{background:#ff9f0e;border-color:#ff9f0e;box-shadow:0px 5px 5px #ebae33}.beta_layout-first-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter .nextBtn:hover{background-color:#172e6f;border-color:#172e6f;box-shadow:0px 5px 5px #cfdcff}.beta_layout-first-theme .howItWorks{background-color:#172e6f;background-image:url(/static/media/wave2.3bb6e3a69cb8ee9c4116e49c773f7c99.svg)}.beta_layout-first-theme .howItWorks .howItWorksContainer .heading-section h2{color:#fff}.beta_layout-first-theme .howItWorks .howItWorksContainer .heading-section p{color:#fff}.beta_layout-first-theme .howItWorks .howItWorksContainer .block-multiples .single-block{background:rgba(0,0,0,0)}.beta_layout-first-theme .howItWorks .howItWorksContainer .block-multiples .single-block:hover{box-shadow:none}.beta_layout-first-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg{border:2px solid #0fbfd5}.beta_layout-first-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg:before{background:#b1e5f1}.beta_layout-first-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg:after{background:#b1e5f1}.beta_layout-first-theme .howItWorks .howItWorksContainer .block-multiples .single-block h4{color:#fff}.beta_layout-first-theme .howItWorks .howItWorksContainer .block-multiples .single-block p{color:#fff}.beta_layout-first-theme .beta-Section-second{background:#f2fdfe}.beta_layout-first-theme .beta-Section-second .sectionDivider{background:#172e6f}.beta_layout-first-theme .beta-Section-second .sectionDivider .divider__left,.beta_layout-first-theme .beta-Section-second .sectionDivider .divider__right{background:#f2fdfe}.beta_layout-first-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer{background-color:#172e6f}.beta_layout-first-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer:before{background:#172e6f;background:linear-gradient(267deg, rgba(62, 110, 246, 0.1934174353) 0%, #172e6f 100%)}.beta_layout-first-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section h2{color:#fff}.beta_layout-first-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section p{color:#fff}.beta_layout-first-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section .homebtn{background:#ff9f0e;border:none;box-shadow:0px 5px 5px #684a0e;color:#fff}.beta_layout-first-theme .beta-thirdSection{background:#172e6f}.beta_layout-first-theme .beta-thirdSection .sectionDivider{background:#f2fdfe}.beta_layout-first-theme .beta-thirdSection .sectionDivider .divider__left,.beta_layout-first-theme .beta-thirdSection .sectionDivider .divider__right{background:#172e6f}.beta_layout-first-theme .beta-thirdSection .beta-thirdContainer .beta-thirdheader h2{color:#fff}.beta_layout-first-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection p{color:#fff}.beta_layout-first-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection ul li{background:url(/static/media/checkIcon.756642bb33c6b40c238c33bda6e75d1b.svg);background-repeat:no-repeat;background-size:15px}.beta_layout-first-theme .beta-fourthSection{background:#f2fdfe}.beta_layout-first-theme .beta-fourthSection .sectionDivider{background:#172e6f}.beta_layout-first-theme .beta-fourthSection .sectionDivider .divider__left,.beta_layout-first-theme .beta-fourthSection .sectionDivider .divider__right{background:#f2fdfe}.beta_layout-first-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader h2{color:#172e6f}.beta_layout-first-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader p{color:#000}.beta_layout-first-theme .beta-fourthSection .beta-fourthContainer .btnCheck .homebtn{background:#ff9f0e;border:none;box-shadow:0px 5px 5px #ffc34d;color:#fff}.beta_layout-first-theme .section-footer{border-top:1px solid #eee}.beta_layout-first-theme .thankyou-section .tankkyou-container .descript-thankyou{background:rgba(255,255,255,.8);border:2px solid #b1e5f1}.beta_layout-first-theme .pageTitle{background:#f4fdfe}.beta_layout-eighth-theme .header-main-div .navbar-light .navbar-nav .nav-link{color:#000}.beta_layout-eighth-theme .header-main-div .navbar-light .navbar-nav .nav-link:hover{color:#cb232e}.beta_layout-eighth-theme .header-section{background:rgba(0,0,0,0)}.beta_layout-eighth-theme .header-section .fixed-top{background:rgba(0,0,0,0) !important}.beta_layout-eighth-theme .header-section .fixed-top ul .nav-item a{color:#cb232e}.beta_layout-eighth-theme .header-section .fixed-top ul .nav-item a:hover{color:#ff4955}.beta_layout-eighth-theme .header-section .fixed-top .lastbtn .nav-link{background:#ff9f0e;color:#fff;box-shadow:0px 0px 5px #ffc34d}.beta_layout-eighth-theme .header-section .fixed-top .lastbtn .nav-link:hover{background-color:#cb232e;color:#fff;box-shadow:0px 5px 5px #cfdcff}.beta_layout-eighth-theme .header-section.pageScroll .fixed-top{background-color:#fff !important;box-shadow:0px 0px 5px rgba(0,0,0,.2)}.beta_layout-eighth-theme .sectionDivider{background:#fff}.beta_layout-eighth-theme .sectionDivider .divider__left,.beta_layout-eighth-theme .sectionDivider .divider__right{background:#cb232e}.beta_layout-eighth-theme .betaSurvey .newSurveyHeading h2{color:#cb232e}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer{background:#fff;box-shadow:0px 5px 10px #ffebeb;border:2px solid #f1b1b7}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormLabel-root{color:#cb232e !important}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormLabel-root div{color:#cb232e}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormGroup-root{flex-direction:row}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .inputContainer{border-color:#f1b1b7 !important}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .inputContainer:hover,.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .inputContainer:focus{border-color:#cb232e !important}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root{border:2px solid #f1b1b7;background-color:#fef5f5}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root:hover{background:#cb232e;color:#fff;border-color:#cb232e !important}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root:hover .MuiFormControlLabel-label{color:#fff}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root:hover .MuiFormControlLabel-label i{color:#fff !important}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .input-box__field{border:2px solid #f1b1b7}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .input-box__field:hover,.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .input-box__field:focus{border-color:#cb232e}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span{border:2px solid #f1b1b7 !important;background-color:#fef5f5}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span:hover,.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span.customDropdown-eighth-theme_span_selected{background:#cb232e;color:#fff;border-color:#cb232e !important}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter .nextBtn{background:#ff9f0e;border-color:#ff9f0e;box-shadow:0px 5px 5px #ebae33}.beta_layout-eighth-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter .nextBtn:hover{background-color:#cb232e;border-color:#cb232e;box-shadow:0px 5px 5px #ffcfcf}.beta_layout-eighth-theme .howItWorks{background-color:#cb232e;background-image:url(/static/media/wave2-new.589c9326896e6ca71c8dff595077158c.svg)}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .heading-section h2{color:#fff}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .heading-section p{color:#fff}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .block-multiples .single-block{background:rgba(0,0,0,0)}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .block-multiples .single-block:hover{box-shadow:none}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg{border:2px solid #ff4955}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg:before{background:#f1b1b7}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg:after{background:#f1b1b7}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .block-multiples .single-block h4{color:#fff}.beta_layout-eighth-theme .howItWorks .howItWorksContainer .block-multiples .single-block p{color:#fff}.beta_layout-eighth-theme .beta-Section-second{background:#fef2f2}.beta_layout-eighth-theme .beta-Section-second .sectionDivider{background:#cb232e}.beta_layout-eighth-theme .beta-Section-second .sectionDivider .divider__left,.beta_layout-eighth-theme .beta-Section-second .sectionDivider .divider__right{background:#fef2f2}.beta_layout-eighth-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer{background-color:#cb232e}.beta_layout-eighth-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer:before{background:#cb232e;background:linear-gradient(267deg, rgba(62, 110, 246, 0.1934174353) 0%, #cb232e 100%)}.beta_layout-eighth-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section h2{color:#fff}.beta_layout-eighth-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section p{color:#fff}.beta_layout-eighth-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section .homebtn{background:#ff9f0e;border:none;box-shadow:0px 5px 5px #680e0e;color:#fff}.beta_layout-eighth-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section .homebtn:hover{background:#cb232e;text-decoration:none;box-shadow:0px 5px 5px #680e0e}.beta_layout-eighth-theme .beta-thirdSection{background:#cb232e}.beta_layout-eighth-theme .beta-thirdSection .sectionDivider{background:#fef2f2}.beta_layout-eighth-theme .beta-thirdSection .sectionDivider .divider__left,.beta_layout-eighth-theme .beta-thirdSection .sectionDivider .divider__right{background:#cb232e}.beta_layout-eighth-theme .beta-thirdSection .beta-thirdContainer .beta-thirdheader h2{color:#fff}.beta_layout-eighth-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection p{color:#fff}.beta_layout-eighth-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection ul li{background:url(/static/media/checkIcon-white.9c52d3e76bca56bcf985dbe6b7982128.svg);background-repeat:no-repeat;background-size:15px}.beta_layout-eighth-theme .beta-fourthSection{background:#fef2f2}.beta_layout-eighth-theme .beta-fourthSection .sectionDivider{background:#cb232e}.beta_layout-eighth-theme .beta-fourthSection .sectionDivider .divider__left,.beta_layout-eighth-theme .beta-fourthSection .sectionDivider .divider__right{background:#fef2f2}.beta_layout-eighth-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader h2{color:#cb232e}.beta_layout-eighth-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader p{color:#000}.beta_layout-eighth-theme .beta-fourthSection .beta-fourthContainer .btnCheck .homebtn{background:#ff9f0e;border:none;box-shadow:0px 5px 5px #ffc34d;color:#fff}.beta_layout-eighth-theme .beta-fourthSection .beta-fourthContainer .btnCheck .homebtn:hover{background:#cb232e;text-decoration:none;box-shadow:0px 5px 5px #680e0e}.beta_layout-eighth-theme .section-footer{border-top:1px solid #eee}.beta_layout-eighth-theme .thankyou-section .tankkyou-container .descript-thankyou{background:rgba(255,255,255,.8);border:2px solid #f1b1b7}.beta_layout-eighth-theme .pageTitle{background:#fef4f4}.beta-blog-theme .header.active{top:0;z-index:99;position:fixed;width:100%;transition:.5s;min-height:66px}.beta-blog-theme .header .row{width:100%}.beta-blog-theme .header .header-button.nav-link{letter-spacing:.5px;position:relative;font-weight:600;padding:10px 20px;border-radius:5px}.beta-blog-theme .beta-blog-layout .beta-blogHeader{padding:50px 0px;background-position:right bottom;background-repeat:no-repeat}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText{width:630px;max-width:100%}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText h1{font-size:52px;font-weight:bold}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText .postDetails{display:inline-block;width:100%;margin-top:15px}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText .postDetails .postedBy{float:left}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText .postDetails .postedBy img{width:14px;margin-right:10px}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText .postDetails .postDate{float:left;margin-left:25px}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText .postDetails .postDate img{width:14px;margin-right:10px}.beta-blog-theme .beta-blog-layout .beta-blogHeader .betaBlogImg{width:100%}.beta-blog-theme .beta-blog-layout .beta-blogHeader .betaBlogImg img{max-width:100%;border-radius:20px}.beta-blog-theme .beta-blog-layout .beta-mainContent{padding:50px 0px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container{max-width:1255px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content p{font-size:18px;line-height:34px;font-weight:300;letter-spacing:.5px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content h5{margin-top:30px;margin-bottom:0}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content h5 strong{font-weight:600}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content h2{font-size:1.8em;margin-top:3rem;font-weight:500}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content h2 strong{font-weight:600}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .big-text{float:left;font-size:70px;font-weight:700;margin:17px 0 15px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible{width:700px;border-radius:20px;padding:50px;margin:40px auto;max-width:100%}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible h3{text-align:center;margin-bottom:30px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul{display:flex;flex-wrap:wrap}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li{list-style:none;padding:10px 15px;border-radius:10px;display:inline-block;flex:0 0 31.3%;max-width:31.3%;margin:1%;text-align:center;transition:.2s}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li a{font-weight:500;text-decoration:none}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li .imgCircle{width:80px;height:80px;display:block;margin:auto;border-radius:50%;padding:5px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li .imgCircle .imgCircleInside{border-radius:50%;height:100%;width:100%;display:inline-block;padding:10px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li .imgCircle .imgCircleInside img{max-width:100%}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li:hover{transform:scale(1.1)}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section{text-align:center}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn{margin-top:30px;margin-bottom:15px;display:inline-block;width:100%}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn a,.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn span{letter-spacing:.5px;position:relative;font-weight:600;padding:15px 30px;border-radius:5px;font-size:18px;display:inline-block}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .averagetext{margin-top:15px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .averagetext p{font-size:12px;line-height:normal}.beta-blog-theme .beta-blog-layout .advertisement-images{list-style:none;padding:0px 0 0;width:255px;max-width:100%}.beta-blog-theme .beta-blog-layout .advertisement-images li{list-style:none}.beta-blog-theme .beta-blog-layout .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.beta-blog-theme .beta-blog-layout .advertisement-images.stick_scroll{position:fixed;padding-top:100px;height:50%;width:255px;transition:.7s ease;margin-bottom:20px;top:0px}.beta-blog-theme .foter-bottom{padding:30px 0px}.beta-blog-theme .foter-bottom p{font-size:12px;margin-bottom:0px}.beta-blog-theme .foter-bottom ul{float:right;margin-bottom:0px}.beta-blog-theme .foter-bottom ul li{display:inline-block;margin:0px 15px;font-size:12px}.beta-blog_first-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.beta-blog_first-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.beta-blog_first-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.beta-blog_first-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.beta-blog_first-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.beta-blog_first-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.beta-blog_first-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.beta-blog_first-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.beta-blog_first-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.beta-blog_first-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.beta-blog_first-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.beta-blog_first-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.beta-blog_first-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.beta-blog_first-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.beta-blog_first-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.beta-blog_first-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.beta-blog_first-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.beta-blog_first-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}.beta-blog_first-theme .header{background:#fff;box-shadow:0px 0px 5px rgba(0,0,0,.2)}.beta-blog_first-theme .header .header-button.nav-link{background:#ff9f0e;color:#fff;box-shadow:0px 0px 5px #ffc34d}.beta-blog_first-theme .header .header-button.nav-link:hover{background-color:#172e6f;color:#fff;box-shadow:0px 5px 5px #cfdcff}.beta-blog_first-theme .beta-blog-layout .beta-blogHeader{background-color:#f2fdfe;background-image:url(/static/media/wave2.3bb6e3a69cb8ee9c4116e49c773f7c99.svg)}.beta-blog_first-theme .beta-blog-layout .beta-blogHeader .blogHeaderText h1{color:#172e6f}.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible{background:#f2fdfe;border:2px solid #b1e5f1}.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li{background:#fff;border:1px solid #b1e5f1;box-shadow:0px 0px 5px #b1e5f1}.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li a{color:#172e6f}.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li .imgCircle{border:1px solid #b1e5f1}.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li .imgCircle .imgCircleInside{background:#172e6f}.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn a,.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn span{background:#ff9f0e;color:#fff;box-shadow:0px 0px 5px #ffc34d}.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn a:hover,.beta-blog_first-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn span:hover{background:#172e6f;box-shadow:0px 0px 5px #b1e5f1}.beta-blog_first-theme .foter-bottom{border-top:1px solid #eee}.beta-blog_eighth-theme svg g#CA-NU>path#CA-NU-2{fill:#b91f26}.beta-blog_eighth-theme svg g#CA-NU:hover path#CA-NU-2{fill:#ffd7db}.beta-blog_eighth-theme svg g#CA-SK>path#CA-SK-2{fill:#b91f26}.beta-blog_eighth-theme svg g#CA-SK:hover path#CA-SK-2{fill:#ffd7db}.beta-blog_eighth-theme svg g#CA-QC>path#CA-QC-2{fill:#b91f26}.beta-blog_eighth-theme svg g#CA-QC:hover path#CA-QC-2{fill:#ffd7db}.beta-blog_eighth-theme svg g#CA-NT>path#CA-NT-2{fill:#da2b2b}.beta-blog_eighth-theme svg g#CA-NT:hover path#CA-NT-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-ON>path#CA-ON-2{fill:#da2b2b}.beta-blog_eighth-theme svg g#CA-ON:hover path#CA-ON-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-YT>path#CA-YT-2{fill:#ee3f3f}.beta-blog_eighth-theme svg g#CA-YT:hover path#CA-YT-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-NB>path#CA-NB-2{fill:#ee3f3f}.beta-blog_eighth-theme svg g#CA-NB:hover path#CA-NB-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-MB>path#CA-MB-2{fill:#ee3f3f}.beta-blog_eighth-theme svg g#CA-MB:hover path#CA-MB-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-NL>path#CA-NL-2{fill:#ee3f3f}.beta-blog_eighth-theme svg g#CA-NL:hover path#CA-NL-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-AB>path#CA-AB-2{fill:#ee3f3f}.beta-blog_eighth-theme svg g#CA-AB:hover path#CA-AB-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-PE>path#CA-PE-2{fill:#ee3f3f}.beta-blog_eighth-theme svg g#CA-PE:hover path#CA-PE-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-BC>path#CA-BC-2{fill:#f26764}.beta-blog_eighth-theme svg g#CA-BC:hover path#CA-BC-2{fill:#ffc7c7}.beta-blog_eighth-theme svg g#CA-NS>path#CA-NS-2{fill:#f26764}.beta-blog_eighth-theme svg g#CA-NS:hover path#CA-NS-2{fill:#ffc7c7}.beta-blog_eighth-theme .header{background:#fff;box-shadow:0px 0px 5px rgba(0,0,0,.2)}.beta-blog_eighth-theme .header .header-button.nav-link{background:#ff9f0e;color:#fff;box-shadow:0px 0px 5px #ffc34d}.beta-blog_eighth-theme .header .header-button.nav-link:hover{background-color:#cb232e;color:#fff;box-shadow:0px 5px 5px #cfdcff}.beta-blog_eighth-theme .beta-blog-layout .beta-blogHeader{background-color:#fef2f2;background-image:url(/static/media/wave2-new.589c9326896e6ca71c8dff595077158c.svg)}.beta-blog_eighth-theme .beta-blog-layout .beta-blogHeader .blogHeaderText h1{color:#cb232e}.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible{background:#fef2f2;border:2px solid #f1b1b1}.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li{background:#fff;border:1px solid #f1b1b1;box-shadow:0px 0px 5px #f1b1b1}.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li a{color:#cb232e}.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li .imgCircle{border:1px solid #f1b1b1}.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li .imgCircle .imgCircleInside{background:#cb232e}.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn a,.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn span{background:#ff9f0e;color:#fff;box-shadow:0px 0px 5px #ffc34d}.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn a:hover,.beta-blog_eighth-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choosearea-section .comparebtn span:hover{background:#cb232e;box-shadow:0px 0px 5px #f1b1b1}.beta-blog_eighth-theme .foter-bottom{border-top:1px solid #eee}@media(max-width: 1365px){.beta_layout-theme .betaSurvey .newSurveyHeading h2{font-size:46px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer{background-size:cover}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section h2{font-size:46px;line-height:54px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section p{font-size:20px;line-height:26px}.beta_layout-theme .container{max-width:1240px}.beta-blog-theme .beta-blog-layout .container{max-width:1240px}.beta-blog-theme .beta-blog-layout .beta-blogHeader .blogHeaderText h1{font-size:36px}}@media(max-width: 1024px){.beta_layout-theme .betaSurvey .newSurveyHeading h2{font-size:36px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer{padding:30px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .progressBar{right:15px;top:15px;font-size:12px;z-index:1}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormLabel-root{font-size:20px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .newSurveyFooter .nextBtn{font-size:20px}.beta_layout-theme .sectionDivider .divider__left,.beta_layout-theme .sectionDivider .divider__right{height:30px}.beta_layout-theme .howItWorks .howItWorksContainer{padding:20px 0px 40px 0px}.beta_layout-theme .howItWorks .howItWorksContainer .heading-section h2{font-size:36px}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block .singleBlockImg{max-width:150px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer{padding:20px 0px 50px 0px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer{padding:40px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section{margin-bottom:0px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section h2{font-size:36px;line-height:44px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section p{font-size:16px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdheader h2{font-size:36px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection p{font-size:16px;line-height:24px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection ul{margin:15px 0px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdContentSection ul li{margin-bottom:15px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer{padding:30px 0px 50px 0px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader h2{font-size:36px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader p{font-size:16px;line-height:24px}.beta-blog-theme .header .container{padding:0px}.beta-blog-theme .header .container .row{margin:0px}.beta-blog-theme .beta-blog-layout .beta-mainContent .col-md-9{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.beta-blog-theme .beta-blog-layout .beta-mainContent .col-md-3{display:none}}@media(max-width: 992px){.beta_layout-theme .header-section .fixed-top{background:#fff !important;box-shadow:0px 0px 5px rgba(0,0,0,.2)}.beta_layout-theme .betaSurvey .betaLayoutFormContainer{padding:15px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root{width:100%;margin:1% 0%}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-first-theme_span,.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .customDropdown-eighth-theme_span{width:100%;margin:1% 0%}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .col-sm-6.order-md-2,.beta_layout-theme .beta-thirdSection .beta-thirdContainer .col-sm-6.order-md-1{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdImgSection{margin-top:20px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdImgSection img{width:100%}.beta_layout-theme .beta-fourthSection .beta-fourthContainer{padding:30px 15px 50px 15px}.beta-blog-theme .header .container .row{justify-content:space-between}.beta-blog-theme .beta-blog-layout .beta-blogHeader{padding:20px 0px}.beta-blog-theme .beta-blog-layout .beta-mainContent{padding:20px 0px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content p{font-size:16px;line-height:28px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible{padding:15px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible h3{font-size:24px}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .group-editible ul li{flex:0 0 100%;max-width:100%;margin:1% 0%}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choos-boollets-points svg{max-width:100%;height:auto}.beta-blog-theme .beta-blog-layout .beta-mainContent .container .mid-content .mi-section-content .choos-boollets-points .choosearea-section .comparebtn a{font-size:16px;padding:10px 30px}.beta-blog-theme .foter-bottom ul{float:none;margin:auto;margin-bottom:0px;text-align:center}}@media(max-width: 767px){.beta_layout-theme .betaSurvey .newSurveyHeading h2{font-size:28px}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .MuiFormControlLabel-root{width:100%;margin:1% 0%}.beta_layout-theme .betaSurvey .betaLayoutFormContainer .questionSteps .space-between .date-box__field{height:58px;width:100%;box-sizing:border-box}.beta_layout-theme .howItWorks .howItWorksContainer .heading-section h2{font-size:28px}.beta_layout-theme .howItWorks .howItWorksContainer .block-multiples .single-block{margin-bottom:20px;display:inline-block;width:100%}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer{padding:15px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section h2{font-size:28px;line-height:34px}.beta_layout-theme .beta-Section-second .beta-sectionSecondContainer .betaSectionContainer .heading-section .homebtn{font-size:20px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdheader h2{font-size:28px}.beta_layout-theme .beta-thirdSection .beta-thirdContainer .beta-thirdImgSection{margin-top:0px;margin-bottom:20px}.beta_layout-theme .beta-fourthSection .beta-fourthContainer .beta-fourthHeader h2{font-size:28px}.beta_layout-theme .footer-content{text-align:center;font-size:12px}.beta_layout-theme .footer-content .custome-links{width:100%}.beta_layout-theme .footer-content .custome-links ul{text-align:center;width:100%}}
@media(min-width: 1201px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1400px !important}}.MuiDialog-paperWidthSm{width:600px}body{font-size:1rem !important;font-weight:300 !important;line-height:1.5 !important;color:#212529 !important;text-align:left !important;background-color:#fff !important}body{color:#000}.loader-div{height:100%;text-align:center;margin:auto;padding:15%}.layout-fourth-default-theme body{color:#000}.layout-fourth-default-theme .navbar{margin-bottom:0;border-radius:0}.layout-fourth-default-theme footer{background-color:#f2f2f2;padding:25px}.layout-fourth-default-theme a,.layout-fourth-default-theme button{transition:all .3s ease 0s;text-decoration:none}.layout-fourth-default-theme .noppading{padding:0px !important}.layout-fourth-default-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;top:20px;z-index:9999 !important}.layout-fourth-default-theme .affix+.container-fluid{padding-top:70px}.layout-fourth-default-theme label.switch.mob{float:right;margin-top:8px;display:none}.layout-fourth-default-theme .affix-top{position:static;top:-35px}.layout-fourth-default-theme .navigation{padding:15px 0px}.layout-fourth-default-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.layout-fourth-default-theme .navigation.header.clearfix.active.affix #navbarResponsive ul li a{color:#131313}.layout-fourth-default-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.layout-fourth-default-theme .navigation.active{background:#fff !important;padding:10px 0px}.layout-fourth-default-theme .top-header{background:#fff;padding:6px 0px}.layout-fourth-default-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.layout-fourth-default-theme .top-header p.text-right{float:right}.layout-fourth-default-theme .top-header p a{color:#000}.layout-fourth-default-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.layout-fourth-default-theme #navbarResponsive ul li.active a{color:#e9c87b;background:rgba(0,0,0,0)}.layout-fourth-default-theme #navbarResponsive ul li a{color:#fff}.layout-fourth-default-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#e9c87b;border-radius:4px;padding:10px 15px;color:#fff !important;margin-top:5px}.layout-fourth-default-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.layout-fourth-default-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:none;position:absolute}.layout-fourth-default-theme .active .navbar-header .img-responsive{width:auto;height:52px}.layout-fourth-default-theme .navbar-header .navbar-brand{padding:0px 0px}.layout-fourth-default-theme .navbar-header .navbar-brand .img-responsive{max-height:70px}.layout-fourth-default-theme .form-wrapper.nav-stacked{background:#fff;padding:40px;border-radius:15px;width:100%;float:right;position:relative;top:0px;margin-left:28px;max-height:calc(100vh - 200px);overflow-y:auto;box-shadow:0px 0px 15px rgba(0,0,0,.2)}.layout-fourth-default-theme .form-wrapper.nav-stacked .btn.btn-primary{margin:20px 0px;background:#e9c87b;border:1px solid #e9c87b;font-size:16px}.layout-fourth-default-theme .form-wrapper.nav-stacked h5{font-size:30px;text-align:left;padding-bottom:13px;margin-top:0px;color:#636363;line-height:38px}.layout-fourth-default-theme .brands-images{background:#f9fbff;padding:40px;margin-top:40px;margin-bottom:15px}.layout-fourth-default-theme .brands-images .featureeText{color:#8a8a8a;font-size:25px;width:1034px;margin:auto;text-align:center;max-width:100%}.layout-fourth-default-theme .brands-images .textContent{width:100%;display:inline-block;margin-top:30px}.layout-fourth-default-theme .brands-images .textContent img{float:left;max-width:170px}.layout-fourth-default-theme .brands-images .textContent p{margin-left:200px;text-align:left;color:#8a8a8a;font-size:18px}.layout-fourth-default-theme .brands-images .textContent p span{color:#8a8a8a !important;font-size:18px !important}.layout-fourth-default-theme .brands-images ul{list-style:none;margin-top:8%;box-shadow:0px 0px 7px 0px #bbb;padding:15px 12px;text-align:center}.layout-fourth-default-theme .brands-images .seperation-new{padding:20px 0px}.layout-fourth-default-theme .quickeasy{background-position:left top;background-size:cover;position:relative;color:#8a8a8a;padding:3% 0%;margin-top:0%}.layout-fourth-default-theme .quickeasy .image-new-brnad{text-align:center;background:#fff;width:50%;margin:0px auto;border-radius:22px;padding:15px 0px;margin-top:17px}.layout-fourth-default-theme .quickeasy .image-new-brnad .img-responsive{width:100px;height:auto;margin:0px auto}.layout-fourth-default-theme .quickeasy ul{padding:0px;list-style:none;font-size:25px;font-weight:600}.layout-fourth-default-theme .quickeasy ul li{padding:6px 0px}.layout-fourth-default-theme .quickeasy ul li .fa{margin-right:9px}.layout-fourth-default-theme .content-footer{background:#fff;color:#8a8a8a;font-size:16px;padding:0% 0% 2% 0%}.layout-fourth-default-theme .copyright-footer{background:#000;color:#fff;position:relative;z-index:9999;padding:15px 0px}.layout-fourth-default-theme .copyright-footer p{margin:0px;padding:0px}.layout-fourth-default-theme .copyright-footer .col-sm-6:last-child{text-align:right}.layout-fourth-default-theme .copyright-footer ul{padding:0px;list-style:none;margin:0px}.layout-fourth-default-theme .copyright-footer ul li{display:inline-block;padding-left:20px}.layout-fourth-default-theme .copyright-footer ul li a{color:#fff}.layout-fourth-default-theme .seperation-new{text-align:center}.layout-fourth-default-theme .seperation-new .getlink{vertical-align:middle;display:inline-flex;padding-top:5px}.layout-fourth-default-theme .seperation-new .row{display:inline-flex;vertical-align:middle;align-items:center}.layout-fourth-default-theme .paragraph-alignment-new .getlink{text-align:center;padding-top:24px}.layout-fourth-default-theme .brands-section h2{font-size:40px;color:#333;width:700px;max-width:100%;margin:auto;margin-bottom:auto;margin-bottom:50px}.layout-fourth-default-theme .brands-section .sideContent>span{font-size:25px !important;color:#818181 !important}.layout-fourth-default-theme .brands-section .sideContent ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-default-theme .brands-section .sideContent ul li{width:100%;list-style:none;padding-left:30px;position:relative;color:#8a8a8a;font-size:18px;margin:10px 0px}.layout-fourth-default-theme .brands-section .sideContent ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-default-theme .brands-section .brands-images h4{font-size:28px;font-weight:600;padding:20px 0px}.layout-fourth-default-theme .brands-section .brands-images li{width:140px;display:inline-block;margin:0px 15px;padding:5px 0px}.layout-fourth-default-theme .step2.form-custome-new{display:none}.layout-fourth-default-theme .mystyle .step2.form-custome-new{display:block}.layout-fourth-default-theme .mystyle .step1.form-custome-new{display:none}.layout-fourth-default-theme .lock-icon.d-inline-flex{color:#777;margin-bottom:0px}.layout-fourth-default-theme .form-group{text-align:left}.layout-fourth-default-theme .form-group label{font-weight:500;color:#3b3b3b}.layout-fourth-default-theme .form-group label .mendatory{color:red}.layout-fourth-default-theme .form-container{text-align:center}.layout-fourth-default-theme .checkbox{text-align:left}.layout-fourth-default-theme .form-step-text{text-align:left;font-size:12px;color:#636363;line-height:normal;margin-top:-20px}.layout-fourth-default-theme .container-footer{text-align:center;font-size:12px}.layout-fourth-default-theme #navbarResponsive ul li a:hover,.layout-fourth-default-theme #navbarResponsive ul li a:active,.layout-fourth-default-theme #navbarResponsive ul li a:focus{color:#e9c87b !important}.layout-fourth-default-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.layout-fourth-default-theme .hero{min-height:100vh}.layout-fourth-default-theme .hero .form-wrapper.stuck .form-container{position:fixed;top:20px;width:inherit;max-width:inherit}.layout-fourth-default-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.layout-fourth-default-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.layout-fourth-default-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.layout-fourth-default-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.layout-fourth-default-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-default-theme .slidercode .carousel-caption ul li:hover a{color:#000}.layout-fourth-default-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-default-theme .slidercode .carousel-caption ul li.active a{color:#000}.layout-fourth-default-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.layout-fourth-default-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.layout-fourth-default-theme .slidercode .carousel-caption p{font-size:20px}.layout-fourth-default-theme .group-editible{text-align:center;box-shadow:0px 0px 6px 0px #ddd;padding:20px;background:linear-gradient(135deg, #157894 0%, #55bfd1 100%);color:#fff}.layout-fourth-default-theme .group-editible ul{padding:0px;list-style:none;margin-top:15px}.layout-fourth-default-theme .group-editible ul li{display:inline-block;width:100%}.layout-fourth-default-theme .group-editible ul li a{background:#fff;color:#4094a9;text-transform:capitalize;padding:7px 15px;display:inline-block;margin:4px 0px;width:200px;font-size:16px;text-decoration:none}.layout-fourth-default-theme .boollets-points ul{padding:0px 0px 0px 15px}.layout-fourth-default-theme .boollets-points ul li{padding:6px 0px}.layout-fourth-default-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.layout-fourth-default-theme .boollets-points ul li a b{display:block}.layout-fourth-default-theme .choos-boollets-points{box-shadow:0px 0px 6px 0px #ddd;padding:30px}.layout-fourth-default-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.layout-fourth-default-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.layout-fourth-default-theme .comparebtn{text-align:center}.layout-fourth-default-theme .comparebtn a{background:#4094a9;color:#fff;font-size:16px;padding:10px 20px;border-radius:4px;display:inline-block;margin-bottom:20px}.layout-fourth-default-theme .averagetext{text-align:center;font-size:15px;color:#777}.layout-fourth-default-theme .contactfomr{padding-top:2%;width:70%}.layout-fourth-default-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.layout-fourth-default-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.layout-fourth-default-theme .contactfomr .form-control{text-transform:capitalize}.layout-fourth-default-theme .article-heading h1{font-size:30px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.layout-fourth-default-theme .mid-content .mi-section-content{padding-bottom:20px;border-bottom:1px solid #ddd;margin-bottom:15px}.layout-fourth-default-theme .mid-content .mi-section-content:last-child{border:none}.layout-fourth-default-theme .left-clinet-list ul{padding:0px;list-style:none}.layout-fourth-default-theme .left-clinet-list ul li p{background:#e1e1e1;padding:10px 8px;font-size:16px;text-transform:capitalize}.layout-fourth-default-theme .left-clinet-list ul li p b{padding-right:10px}.layout-fourth-default-theme .aqualheight{height:660px;display:table;padding-top:5%}.layout-fourth-default-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.layout-fourth-default-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.layout-fourth-default-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.layout-fourth-default-theme .col-sm-6.left-sec{background:#f2f2f2}.layout-fourth-default-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.layout-fourth-default-theme .content-chaselife h1{font-size:72px;font-weight:600}.layout-fourth-default-theme .banner-home.hero{width:100%;top:0;left:0;background-color:#fff;background-size:cover;background-position:center center;position:relative;background-attachment:fixed;background-size:cover}.layout-fourth-default-theme .banner-home.hero::before{content:"";background:#1b4a98;background:rgba(0,0,0,0) linear-gradient(284deg, #13ac8f 0%, rgba(26, 132, 187, 0.631372549) 100%) 0% 0% no-repeat padding-box;opacity:.8;height:100%;position:absolute;width:100%}.layout-fourth-default-theme .banner-home.hero .waveImg{width:100%;position:absolute;left:0px;bottom:-1px;height:100%;background:url(/static/media/wave.a1d4178cc5f9e75212ed4629c429c7e0.png);background-repeat:no-repeat;background-position:bottom}.layout-fourth-default-theme .heading-banner{padding-top:18%}.layout-fourth-default-theme .heading-banner h1{font-weight:600;color:#fff;font-size:50px}.layout-fourth-default-theme .heading-banner h5{margin-top:20px}.layout-fourth-default-theme .heading-banner h5 strong{font-size:22px;font-weight:400}.layout-fourth-default-theme .heading-banner ul{list-style:none;padding:0px;color:#fff;font-size:20px;padding-top:20px}.layout-fourth-default-theme .heading-banner ul .fa{padding-right:10px}.layout-fourth-default-theme .heading-banner .bg-trans{font-size:18px;background:rgba(255,218,132,.4);color:#fff;font-style:italic;font-weight:600;padding:20px;border-radius:20px;margin-top:50px}.layout-fourth-default-theme .text-contentbanner{padding-top:10%;display:flex}.layout-fourth-default-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.layout-fourth-default-theme .footer-section h2{font-size:20px}.layout-fourth-default-theme .footer-section ul{padding:0px;list-style:none}.layout-fourth-default-theme .footer-section ul a{color:#ccc}.layout-fourth-default-theme .footer-section ul a:hover,.layout-fourth-default-theme .footer-section ul a:focus,.layout-fourth-default-theme .footer-section ul a:active{color:#e9c87b}.layout-fourth-default-theme .doublelist ul li{width:50%;float:left}.layout-fourth-default-theme .col-sm-3.noppading.formnews p{color:#ccc}.layout-fourth-default-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.layout-fourth-default-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.layout-fourth-default-theme .footer-logo{padding-top:20px}.layout-fourth-default-theme .home-section-top{padding-top:1%}.layout-fourth-default-theme #Australia-continent g:hover{opacity:1 !important}.layout-fourth-default-theme #Australia-continent:hover g{opacity:.5}.layout-fourth-default-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#4094a9}.layout-fourth-default-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px}.layout-fourth-default-theme .foter-bottom ul li{display:inline-block}.layout-fourth-default-theme .foter-bottom ul li a{color:#fff;padding:0px 2px}.layout-fourth-default-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.layout-fourth-default-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.layout-fourth-default-theme .advertisement-images{padding:0pc;padding-top:0pc;list-style:none;padding-top:25px}.layout-fourth-default-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.layout-fourth-default-theme .bgbluew{background:#13ac8f;height:280px;display:block}.layout-fourth-default-theme .content-innerpages{position:relative;margin-top:-130px;background:#fff;padding:40px;box-shadow:0px 0px 15px rgba(0,0,0,.1);margin-bottom:5%;min-height:44.9em;border-radius:15px}.layout-fourth-default-theme .content-innerpages h2{color:#333;text-transform:capitalize;position:relative;font-size:40px}.layout-fourth-default-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#13ac8f;position:absolute;bottom:-5px;left:0}.layout-fourth-default-theme .content-innerpages ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-default-theme .content-innerpages ul li{width:100%;list-style:none !important;padding-left:30px;position:relative;color:#666 !important;font-size:18px;margin:5px 0px}.layout-fourth-default-theme .content-innerpages ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-default-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.layout-fourth-default-theme .bototmmcontent ul li{padding:5px 0px}.layout-fourth-default-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.layout-fourth-default-theme a.active.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-default-theme a.inactive.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-default-theme .img-responsive{display:block;max-width:100%;height:auto}.layout-fourth-default-theme .navigation{transition:.5s ease}.layout-fourth-default-theme .navigation.active{background:#13ac8f !important;padding:10px 0px;top:0px;box-shadow:0px 0px 12px 0px #13ac8f;z-index:99;position:fixed;width:inherit;transition:.5s ease}.layout-fourth-default-theme .dynamic-form{width:auto}.layout-fourth-default-theme .controls{background:#f9f9f9}.layout-fourth-default-theme .navigation .row{width:100%}.layout-fourth-default-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-default-theme a.header-button.nav-link{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px;text-transform:uppercase}.layout-fourth-default-theme .navbar-brand{margin-right:0px}.layout-fourth-default-theme .navbar-brand .img-responsive{max-height:70px}.layout-fourth-default-theme .dynamic-form{margin:0px -15px;padding:0px;flex-direction:inherit;flex-wrap:wrap}.layout-fourth-default-theme .dynamic-form .space-between{padding:0px 15px;margin:5px 0 5px 0}.layout-fourth-default-theme .dynamic-form .space-between.half-width{width:50%}.layout-fourth-default-theme .dynamic-form .space-between.half-width .date-box__field{width:100%;color:#7c7d7d}.layout-fourth-default-theme .dynamic-form .space-between .radio_box_root{border:none !important}.layout-fourth-default-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root{padding:0px !important}.layout-fourth-default-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root label{font-weight:500 !important}.layout-fourth-default-theme .dynamic-form .space-between .MuiButtonBase-roo{height:60px}.layout-fourth-default-theme span.anchorLink{color:#6495ed;cursor:pointer}.layout-fourth-default-theme .bg-blue{height:100px;background:#06124e}.layout-fourth-default-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout-fourth-default-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout-fourth-default-theme .descript-thankyou h1{font-weight:700;font-size:66px}.layout-fourth-default-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout-fourth-default-theme .button-home a{background:#13ac8f;color:#fff;text-transform:capitalize;font-weight:400;padding:11px 25px;display:inline-block;margin-top:40px;text-decoration:none;border:2px solid #13ac8f}.layout-fourth-default-theme .button-home a:hover{background:#fff;color:#13ac8f;border:2px solid #13ac8f}.layout-fourth-default-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout-fourth-default-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout-fourth-default-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout-fourth-default-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:#06124e;border:1px solid #06124e;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:40px 0px 0px 0px;font-size:18px}.layout-fourth-default-theme .testimonialsArea p{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-default-theme .testimonialsArea p span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-default-theme .testimonialsArea p strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400}.layout-fourth-default-theme .testimonialsArea h2{font-size:40px !important;color:#333 !important}.layout-fourth-default-theme .testimonialsArea h2 span{font-size:40px !important;color:#333 !important}.layout-fourth-default-theme .testimonialsArea h2 strong{font-size:40px !important;color:#333 !important;font-weight:500}.layout-fourth-default-theme .content-footer p.testimonialsList{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-default-theme .content-footer p.testimonialsList span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-default-theme .content-footer p.testimonialsList strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400;display:inline-block;width:100%}.layout-fourth-default-theme .content-footer blockquote{border-radius:15px;border:1px solid #d4d4d4;background:#fff;padding:30px;background-image:url(/static/media/quote.78c4b921429a229e99bf87ccd8cdd257.png);background-repeat:no-repeat;background-position:30px 20px;text-align:left;padding:50px 50px 50px 150px;font-size:20px;color:#8a8a8a;min-height:230px}.layout-fourth-default-theme .getlink a{background:#13ac8f;color:#fff;padding:15px 40px;text-transform:uppercase;font-weight:500;display:inline-block;border:2px solid #fff}.layout-fourth-default-theme .getlink a:hover{background:#fff !important;color:#13ac8f;border:2px solid #13ac8f}.layout-fourth-default-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #13ac8f;color:#fff;background:#13ac8f;margin-bottom:10px;border-radius:2px}.layout-fourth-default-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #13ac8f;color:#13ac8f;background:#fff}.layout-fourth-default-theme .header .navbar-nav li a.nav-link{padding-right:1.5rem;padding-left:1.5rem;text-transform:uppercase;color:#eaeaea;font-weight:500;cursor:pointer}.layout-fourth-default-theme .header .navbar-nav li a.nav-link.header-button:hover{background:#fff;color:#13ac8f}.layout-fourth-default-theme .header .navbar-nav li.lastbtn{padding-left:20px}.layout-fourth-default-theme .innerPageContent .container{max-width:100% !important}.layout-fourth-default-theme .surveyForm{display:inline-block;width:100%;position:relative;min-height:calc(100vh - 234px);padding:0px 15px;margin-top:-100px}.layout-fourth-default-theme .surveyForm .form-survey-section{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;position:relative;z-index:1;border-radius:10px;padding:50px 50px 90px}.layout-fourth-default-theme .surveyForm .form-survey-section .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#13ac8f}.layout-fourth-default-theme .surveyForm .form-survey-section .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout-fourth-default-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout-fourth-default-theme .surveyForm input.input-box__field.input-box__field--survey.false,.layout-fourth-default-theme .surveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout-fourth-default-theme .surveyForm .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout-fourth-default-theme .surveyForm .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #13ac8f;border-left:none;font-size:16px !important;font-weight:500}.layout-fourth-default-theme .surveyForm .newSurveyFooter{display:inline-block;width:100%;padding-top:0}.layout-fourth-default-theme .surveyForm .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:0}.layout-fourth-default-theme .surveyForm .newSurveyFooter .nextBtn{border:2px solid #13ac8f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#13ac8f;letter-spacing:1px;border-radius:0}.layout-fourth-default-theme .surveyForm .progressBar{background:#13ac8f;position:absolute;bottom:0;height:40px;left:0;width:100%;border-radius:0 0 5px 5px;overflow:hidden;text-align:center}.layout-fourth-default-theme .surveyForm .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout-fourth-default-theme .surveyForm .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout-fourth-default-theme .surveyForm .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout-fourth-default-theme .surveyForm .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout-fourth-default-theme .space-between .input-box__field{width:100%;height:45px}.layout-fourth-default-theme button.btn.btn-submit{border:2px solid #13ac8f;border-radius:0px;color:#13ac8f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout-fourth-default-theme input.date-box__field.false{height:47px;width:-webkit-fill-available}.layout-fourth-default-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2)}.layout-fourth-default-theme .tab{width:100%;color:#fff;overflow:hidden;border-bottom:1px solid;border-color:rgb(6.4562159943%,58.4457447901%,48.5915203778%)}.layout-fourth-default-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#13ac8f;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout-fourth-default-theme .tab-label:hover{background:rgb(6.4562159943%,58.4457447901%,48.5915203778%)}.layout-fourth-default-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s}.layout-fourth-default-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout-fourth-default-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#13ac8f;cursor:pointer}.layout-fourth-default-theme .tab-close:hover{background:rgb(6.4562159943%,58.4457447901%,48.5915203778%)}.layout-fourth-default-theme .tab:last-child{border:none}.layout-fourth-default-theme .tab input[type=checkbox]{display:none}.layout-fourth-default-theme input:checked+.tab-label{background:rgb(6.4562159943%,58.4457447901%,48.5915203778%)}.layout-fourth-default-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout-fourth-default-theme input:checked~.tab-content{max-height:100vh;padding:1em}@media(max-width: 1200px){.layout-fourth-default-theme .form-wrapper.nav-stacked{width:auto;margin-right:15px}.layout-fourth-default-theme .navigation.active{position:fixed}}@media(max-width: 1024px){.layout-fourth-default-theme .heading-banner{padding-top:22%}.layout-fourth-default-theme .heading-banner h1{font-size:40px}.layout-fourth-default-theme .heading-banner h5 strong{font-size:20px}.layout-fourth-default-theme .form-wrapper.nav-stacked{margin-left:0px;margin-right:0px;padding:20px;max-height:calc(100vh - 150px)}.layout-fourth-default-theme .form-wrapper.nav-stacked h5{font-size:24px;line-height:28px}.layout-fourth-default-theme .dynamic-form .space-between{margin:7px 0 7px 0}.layout-fourth-default-theme .brands-section{padding-top:50px}.layout-fourth-default-theme .brands-section .sideContent span{line-height:normal;font-size:20px !important}.layout-fourth-default-theme .brands-section .sideContent ul li{margin:7px 0px}.layout-fourth-default-theme .brands-images .featureeText{font-size:20px;line-height:26px}.layout-fourth-default-theme .brands-images .seperation-new .row{vertical-align:top;align-items:normal}.layout-fourth-default-theme .brands-images .seperation-new .row .textContent img{max-width:120px}.layout-fourth-default-theme .brands-images .seperation-new .row .textContent p{margin-left:135px}.layout-fourth-default-theme .content-footer blockquote{background-size:40px;background-position:15px 15px;padding:15px 15px 15px 70px;font-size:18px;min-height:170px}.layout-fourth-default-theme .surveyForm{padding:15px 0px !important;background-image:none !important}.layout-fourth-default-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 991px){.layout-fourth-default-theme .text-contentbanner{padding-top:8rem}.layout-fourth-default-theme .col-md-4.right-side{max-width:100% !important}.layout-fourth-default-theme .col-sm-8.left-side{max-width:100%;padding-top:30px}.layout-fourth-default-theme section.brands-section .row{display:block}.layout-fourth-default-theme section.brands-section .col-sm-8{max-width:100%;width:100% !important}.layout-fourth-default-theme .paragraph-alignment-new .row .col-sm-6{max-width:100%}.layout-fourth-default-theme .quickeasy .row{display:block;text-align:center}.layout-fourth-default-theme .brands-images .seperation-new .col-sm-4{display:inline-block;vertical-align:middle}.layout-fourth-default-theme .header-or-banner.clearfix{background:#000}.layout-fourth-default-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{padding:7px 15px;display:inline-block}.layout-fourth-default-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link:hover{background:#fff !important;color:#13ac8f !important}.layout-fourth-default-theme .navbar-collapse .navbar-nav:last-child{display:block;padding-bottom:20px}.layout-fourth-default-theme .quickeasy .col-sm-8{max-width:100%;margin-left:0px}.layout-fourth-default-theme a.inactive.nav-link{color:#fff !important}.layout-fourth-default-theme a.header-button.nav-link{background:#e9c87b;text-align:center;margin-left:20px}.layout-fourth-default-theme a.header-button.nav-link:hover{background:#fff !important;color:#13ac8f !important}.layout-fourth-default-theme .navbar-dark .navbar-toggler{color:#fff;border-color:#fff;position:absolute;right:15px;top:12px}.layout-fourth-default-theme .form-wrapper.nav-stacked{float:none}.layout-fourth-default-theme .text-contentbanner .col-sm-8.left-side{width:100%}.layout-fourth-default-theme .heading-banner{padding-bottom:40px}.layout-fourth-default-theme .banner-home.hero{padding-bottom:30px}.layout-fourth-default-theme .brands-section .col-sm-8{width:100%}.layout-fourth-default-theme .quickeasy .col-sm-4{width:50%}.layout-fourth-default-theme .content-footer .col-sm-4{width:50%}.layout-fourth-default-theme .content-footer .row .col-sm-4{max-width:100%;width:100%}.layout-fourth-default-theme .navbar-brand .img-responsive{max-height:50px}.layout-fourth-default-theme .banner-home.hero{min-height:auto}.layout-fourth-default-theme .banner-home.hero .waveImg{background-size:auto}.layout-fourth-default-theme .text-contentbanner{display:block}.layout-fourth-default-theme .text-contentbanner .left-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-default-theme .text-contentbanner .left-side .heading-banner{padding-top:15%}.layout-fourth-default-theme .text-contentbanner .right-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-default-theme .text-contentbanner .right-side .form-wrapper.nav-stacked{width:600px;max-width:100%;margin:auto}.layout-fourth-default-theme .brands-section .col-sm-6{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-default-theme .brands-section .col-sm-6 .sideContent{margin-top:20px}.layout-fourth-default-theme .form-wrapper.nav-stacked h5{font-size:34px;line-height:38px}.layout-fourth-default-theme .content-footer blockquote{min-height:200px}.layout-fourth-default-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{background:rgba(0,0,0,0);text-align:left;margin-left:0px;border:none;padding-left:0px}.layout-fourth-default-theme .navbar-collapse .navbar-nav:last-child{padding-bottom:0px}.layout-fourth-default-theme .surveyForm{margin-bottom:40px}.layout-fourth-default-theme .surveyForm{padding:15px 0px !important;background-size:contain}.layout-fourth-default-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}.layout-fourth-default-theme .navigation{padding:10px 15px !important}}@media(max-width: 767px){.layout-fourth-default-theme .top-header p.text-right{float:none}.layout-fourth-default-theme .copyright-footer .row{display:block}.layout-fourth-default-theme .copyright-footer .row .col-sm-6{max-width:100%;text-align:center;padding:5px 15px}.layout-fourth-default-theme .quickeasy .col-sm-4{width:100%;text-align:center}.layout-fourth-default-theme .header-or-banner.clearfix{background:#fff}.layout-fourth-default-theme .content-footer .col-sm-4{width:100%}.layout-fourth-default-theme #navbarResponsive ul li a{color:#131313}.layout-fourth-default-theme .quickeasy ul{line-height:normal;padding-top:20px}.layout-fourth-default-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.layout-fourth-default-theme .article-heading h1{font-size:20px}.layout-fourth-default-theme .choosearea-section svg{width:100%}.layout-fourth-default-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.layout-fourth-default-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.layout-fourth-default-theme .top-header p{display:block;text-align:center !important}.layout-fourth-default-theme .navigation{padding:12px 10px;background:#13ac8f}.layout-fourth-default-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px;position:relative;top:-5px}.layout-fourth-default-theme .navigation.active{padding:10px 10px}.layout-fourth-default-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.layout-fourth-default-theme .text-contentbanner{width:100%;padding-top:2rem}.layout-fourth-default-theme .text-contentbanner .heading-banner h1{font-size:30px}.layout-fourth-default-theme .text-contentbanner .heading-banner h5 strong{font-size:18px}.layout-fourth-default-theme .form-wrapper.nav-stacked h5{font-size:26px;line-height:30px}.layout-fourth-default-theme .brands-section h2{font-size:30px;margin-bottom:20px}.layout-fourth-default-theme .brands-images{padding:15px}.layout-fourth-default-theme .brands-images .seperation-new .row .textContent img{float:none;margin:auto}.layout-fourth-default-theme .brands-images .seperation-new .row .textContent p{margin-left:0px}.layout-fourth-default-theme .paragraph-alignment-new .getlink{padding-top:0px}.layout-fourth-default-theme .testimonialsArea h2 strong{font-size:30px !important}.layout-fourth-default-theme .form-wrapper.nav-stacked{max-height:none}.layout-fourth-default-theme .content-innerpages{padding:15px}.layout-fourth-default-theme .bgbluew{height:200px}.layout-fourth-default-theme .bototmmcontent strong{font-weight:500}.layout-fourth-default-theme .bototmmcontent h2{font-size:24px !important;margin-top:15px !important}.layout-fourth-default-theme .bototmmcontent h2::after{display:none}.layout-fourth-default-theme .bototmmcontent p{word-break:break-word}.layout-fourth-default-theme .content-innerpages h2{font-size:30px}.layout-fourth-default-theme .surveyForm{padding:15px !important;background-image:none !important;min-height:auto}.layout-fourth-default-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 600px){.layout-fourth-default-theme .brands-images .seperation-new .col-sm-4 img.img-responsive{width:100%}.layout-fourth-default-theme .content-footer blockquote{min-height:auto}.layout-fourth-default-theme .innerpage .container{padding:0px}.layout-fourth-default-theme .bototmmcontent .row .col-sm-12{padding:0px 0px !important}.layout-fourth-default-theme .bototmmcontent .row .col-sm-12 h3{font-weight:400 !important;margin-bottom:20px;margin-top:0px}.layout-fourth-default-theme .innerPageContent{padding-top:20px !important}.layout-fourth-default-theme .surveyForm .form-survey-section{padding:15px 15px 60px}.layout-fourth-default-theme .newSurveyHeading{font-size:1.5rem}.layout-fourth-default-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:16px;font-weight:500}.layout-fourth-default-theme .surveyForm .progressBar .progressBarContainer .bar{width:120px}}.layout-fourth-first-theme body{color:#000}.layout-fourth-first-theme .navbar{margin-bottom:0;border-radius:0}.layout-fourth-first-theme footer{background-color:#f2f2f2;padding:25px}.layout-fourth-first-theme a,.layout-fourth-first-theme button{transition:all .3s ease 0s;text-decoration:none}.layout-fourth-first-theme .noppading{padding:0px !important}.layout-fourth-first-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;top:20px;z-index:9999 !important}.layout-fourth-first-theme .affix+.container-fluid{padding-top:70px}.layout-fourth-first-theme label.switch.mob{float:right;margin-top:8px;display:none}.layout-fourth-first-theme .affix-top{position:static;top:-35px}.layout-fourth-first-theme .navigation{padding:15px 0px}.layout-fourth-first-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.layout-fourth-first-theme .navigation.header.clearfix.active.affix #navbarResponsive ul li a{color:#131313}.layout-fourth-first-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.layout-fourth-first-theme .navigation.active{background:#fff !important;padding:10px 0px}.layout-fourth-first-theme .top-header{background:#fff;padding:6px 0px}.layout-fourth-first-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.layout-fourth-first-theme .top-header p.text-right{float:right}.layout-fourth-first-theme .top-header p a{color:#000}.layout-fourth-first-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.layout-fourth-first-theme #navbarResponsive ul li.active a{color:#e9c87b;background:rgba(0,0,0,0)}.layout-fourth-first-theme #navbarResponsive ul li a{color:#fff}.layout-fourth-first-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#e9c87b;border-radius:4px;padding:10px 15px;color:#fff !important;margin-top:5px}.layout-fourth-first-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.layout-fourth-first-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:none;position:absolute}.layout-fourth-first-theme .active .navbar-header .img-responsive{width:auto;height:52px}.layout-fourth-first-theme .navbar-header .navbar-brand{padding:0px 0px}.layout-fourth-first-theme .navbar-header .navbar-brand .img-responsive{max-height:70px}.layout-fourth-first-theme .form-wrapper.nav-stacked{background:#fff;padding:40px;border-radius:15px;width:100%;float:right;position:relative;top:0px;margin-left:28px;max-height:calc(100vh - 200px);overflow-y:auto;box-shadow:0px 0px 15px rgba(0,0,0,.2)}.layout-fourth-first-theme .form-wrapper.nav-stacked .btn.btn-primary{margin:20px 0px;background:#e9c87b;border:1px solid #e9c87b;font-size:16px}.layout-fourth-first-theme .form-wrapper.nav-stacked h5{font-size:30px;text-align:left;padding-bottom:13px;margin-top:0px;color:#636363;line-height:38px}.layout-fourth-first-theme .brands-images{background:#f9fbff;padding:40px;margin-top:40px;margin-bottom:15px}.layout-fourth-first-theme .brands-images .featureeText{color:#8a8a8a;font-size:25px;width:1034px;margin:auto;text-align:center;max-width:100%}.layout-fourth-first-theme .brands-images .textContent{width:100%;display:inline-block;margin-top:30px}.layout-fourth-first-theme .brands-images .textContent img{float:left;max-width:170px}.layout-fourth-first-theme .brands-images .textContent p{margin-left:200px;text-align:left;color:#8a8a8a;font-size:18px}.layout-fourth-first-theme .brands-images .textContent p span{color:#8a8a8a !important;font-size:18px !important}.layout-fourth-first-theme .brands-images ul{list-style:none;margin-top:8%;box-shadow:0px 0px 7px 0px #bbb;padding:15px 12px;text-align:center}.layout-fourth-first-theme .brands-images .seperation-new{padding:20px 0px}.layout-fourth-first-theme .quickeasy{background-position:left top;background-size:cover;position:relative;color:#8a8a8a;padding:3% 0%;margin-top:0%}.layout-fourth-first-theme .quickeasy .image-new-brnad{text-align:center;background:#fff;width:50%;margin:0px auto;border-radius:22px;padding:15px 0px;margin-top:17px}.layout-fourth-first-theme .quickeasy .image-new-brnad .img-responsive{width:100px;height:auto;margin:0px auto}.layout-fourth-first-theme .quickeasy ul{padding:0px;list-style:none;font-size:25px;font-weight:600}.layout-fourth-first-theme .quickeasy ul li{padding:6px 0px}.layout-fourth-first-theme .quickeasy ul li .fa{margin-right:9px}.layout-fourth-first-theme .content-footer{background:#fff;color:#8a8a8a;font-size:16px;padding:0% 0% 2% 0%}.layout-fourth-first-theme .copyright-footer{background:#000;color:#fff;position:relative;z-index:9999;padding:15px 0px}.layout-fourth-first-theme .copyright-footer p{margin:0px;padding:0px}.layout-fourth-first-theme .copyright-footer .col-sm-6:last-child{text-align:right}.layout-fourth-first-theme .copyright-footer ul{padding:0px;list-style:none;margin:0px}.layout-fourth-first-theme .copyright-footer ul li{display:inline-block;padding-left:20px}.layout-fourth-first-theme .copyright-footer ul li a{color:#fff}.layout-fourth-first-theme .seperation-new{text-align:center}.layout-fourth-first-theme .seperation-new .getlink{vertical-align:middle;display:inline-flex;padding-top:5px}.layout-fourth-first-theme .seperation-new .row{display:inline-flex;vertical-align:middle;align-items:center}.layout-fourth-first-theme .paragraph-alignment-new .getlink{text-align:center;padding-top:24px}.layout-fourth-first-theme .brands-section h2{font-size:40px;color:#333;width:700px;max-width:100%;margin:auto;margin-bottom:auto;margin-bottom:50px}.layout-fourth-first-theme .brands-section .sideContent>span{font-size:25px !important;color:#818181 !important}.layout-fourth-first-theme .brands-section .sideContent ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-first-theme .brands-section .sideContent ul li{width:100%;list-style:none;padding-left:30px;position:relative;color:#8a8a8a;font-size:18px;margin:10px 0px}.layout-fourth-first-theme .brands-section .sideContent ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-first-theme .brands-section .brands-images h4{font-size:28px;font-weight:600;padding:20px 0px}.layout-fourth-first-theme .brands-section .brands-images li{width:140px;display:inline-block;margin:0px 15px;padding:5px 0px}.layout-fourth-first-theme .step2.form-custome-new{display:none}.layout-fourth-first-theme .mystyle .step2.form-custome-new{display:block}.layout-fourth-first-theme .mystyle .step1.form-custome-new{display:none}.layout-fourth-first-theme .lock-icon.d-inline-flex{color:#777;margin-bottom:0px}.layout-fourth-first-theme .form-group{text-align:left}.layout-fourth-first-theme .form-group label{font-weight:500;color:#3b3b3b}.layout-fourth-first-theme .form-group label .mendatory{color:red}.layout-fourth-first-theme .form-container{text-align:center}.layout-fourth-first-theme .checkbox{text-align:left}.layout-fourth-first-theme .form-step-text{text-align:left;font-size:12px;color:#636363;line-height:normal;margin-top:-20px}.layout-fourth-first-theme .container-footer{text-align:center;font-size:12px}.layout-fourth-first-theme #navbarResponsive ul li a:hover,.layout-fourth-first-theme #navbarResponsive ul li a:active,.layout-fourth-first-theme #navbarResponsive ul li a:focus{color:#e9c87b !important}.layout-fourth-first-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.layout-fourth-first-theme .hero{min-height:100vh}.layout-fourth-first-theme .hero .form-wrapper.stuck .form-container{position:fixed;top:20px;width:inherit;max-width:inherit}.layout-fourth-first-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.layout-fourth-first-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.layout-fourth-first-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.layout-fourth-first-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.layout-fourth-first-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-first-theme .slidercode .carousel-caption ul li:hover a{color:#000}.layout-fourth-first-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-first-theme .slidercode .carousel-caption ul li.active a{color:#000}.layout-fourth-first-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.layout-fourth-first-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.layout-fourth-first-theme .slidercode .carousel-caption p{font-size:20px}.layout-fourth-first-theme .group-editible{text-align:center;box-shadow:0px 0px 6px 0px #ddd;padding:20px;background:linear-gradient(135deg, #157894 0%, #55bfd1 100%);color:#fff}.layout-fourth-first-theme .group-editible ul{padding:0px;list-style:none;margin-top:15px}.layout-fourth-first-theme .group-editible ul li{display:inline-block;width:100%}.layout-fourth-first-theme .group-editible ul li a{background:#fff;color:#4094a9;text-transform:capitalize;padding:7px 15px;display:inline-block;margin:4px 0px;width:200px;font-size:16px;text-decoration:none}.layout-fourth-first-theme .boollets-points ul{padding:0px 0px 0px 15px}.layout-fourth-first-theme .boollets-points ul li{padding:6px 0px}.layout-fourth-first-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.layout-fourth-first-theme .boollets-points ul li a b{display:block}.layout-fourth-first-theme .choos-boollets-points{box-shadow:0px 0px 6px 0px #ddd;padding:30px}.layout-fourth-first-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.layout-fourth-first-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.layout-fourth-first-theme .comparebtn{text-align:center}.layout-fourth-first-theme .comparebtn a{background:#4094a9;color:#fff;font-size:16px;padding:10px 20px;border-radius:4px;display:inline-block;margin-bottom:20px}.layout-fourth-first-theme .averagetext{text-align:center;font-size:15px;color:#777}.layout-fourth-first-theme .contactfomr{padding-top:2%;width:70%}.layout-fourth-first-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.layout-fourth-first-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.layout-fourth-first-theme .contactfomr .form-control{text-transform:capitalize}.layout-fourth-first-theme .article-heading h1{font-size:30px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.layout-fourth-first-theme .mid-content .mi-section-content{padding-bottom:20px;border-bottom:1px solid #ddd;margin-bottom:15px}.layout-fourth-first-theme .mid-content .mi-section-content:last-child{border:none}.layout-fourth-first-theme .left-clinet-list ul{padding:0px;list-style:none}.layout-fourth-first-theme .left-clinet-list ul li p{background:#e1e1e1;padding:10px 8px;font-size:16px;text-transform:capitalize}.layout-fourth-first-theme .left-clinet-list ul li p b{padding-right:10px}.layout-fourth-first-theme .aqualheight{height:660px;display:table;padding-top:5%}.layout-fourth-first-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.layout-fourth-first-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.layout-fourth-first-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.layout-fourth-first-theme .col-sm-6.left-sec{background:#f2f2f2}.layout-fourth-first-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.layout-fourth-first-theme .content-chaselife h1{font-size:72px;font-weight:600}.layout-fourth-first-theme .banner-home.hero{width:100%;top:0;left:0;background-color:#fff;background-size:cover;background-position:center center;position:relative;background-attachment:fixed;background-size:cover}.layout-fourth-first-theme .banner-home.hero::before{content:"";background:#1b4a98;background:rgba(0,0,0,0) linear-gradient(119deg, #1b283f 0%, rgba(19, 111, 172, 0.180392)) 0% 0% no-repeat padding-box;opacity:.8;height:100%;position:absolute;width:100%}.layout-fourth-first-theme .banner-home.hero .waveImg{width:100%;position:absolute;left:0px;bottom:-1px;height:100%;background:url(/static/media/wave.a1d4178cc5f9e75212ed4629c429c7e0.png);background-repeat:no-repeat;background-position:bottom}.layout-fourth-first-theme .heading-banner{padding-top:18%}.layout-fourth-first-theme .heading-banner h1{font-weight:600;color:#fff;font-size:50px}.layout-fourth-first-theme .heading-banner h5{margin-top:20px}.layout-fourth-first-theme .heading-banner h5 strong{font-size:22px;font-weight:400}.layout-fourth-first-theme .heading-banner ul{list-style:none;padding:0px;color:#fff;font-size:20px;padding-top:20px}.layout-fourth-first-theme .heading-banner ul .fa{padding-right:10px}.layout-fourth-first-theme .heading-banner .bg-trans{font-size:18px;background:rgba(255,218,132,.4);color:#fff;font-style:italic;font-weight:600;padding:20px;border-radius:20px;margin-top:50px}.layout-fourth-first-theme .text-contentbanner{padding-top:10%;display:flex}.layout-fourth-first-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.layout-fourth-first-theme .footer-section h2{font-size:20px}.layout-fourth-first-theme .footer-section ul{padding:0px;list-style:none}.layout-fourth-first-theme .footer-section ul a{color:#ccc}.layout-fourth-first-theme .footer-section ul a:hover,.layout-fourth-first-theme .footer-section ul a:focus,.layout-fourth-first-theme .footer-section ul a:active{color:#e9c87b}.layout-fourth-first-theme .doublelist ul li{width:50%;float:left}.layout-fourth-first-theme .col-sm-3.noppading.formnews p{color:#ccc}.layout-fourth-first-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.layout-fourth-first-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.layout-fourth-first-theme .footer-logo{padding-top:20px}.layout-fourth-first-theme .home-section-top{padding-top:1%}.layout-fourth-first-theme #Australia-continent g:hover{opacity:1 !important}.layout-fourth-first-theme #Australia-continent:hover g{opacity:.5}.layout-fourth-first-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#4094a9}.layout-fourth-first-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px}.layout-fourth-first-theme .foter-bottom ul li{display:inline-block}.layout-fourth-first-theme .foter-bottom ul li a{color:#fff;padding:0px 2px}.layout-fourth-first-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.layout-fourth-first-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.layout-fourth-first-theme .advertisement-images{padding:0pc;padding-top:0pc;list-style:none;padding-top:25px}.layout-fourth-first-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.layout-fourth-first-theme .bgbluew{background:#1b283f;height:280px;display:block}.layout-fourth-first-theme .content-innerpages{position:relative;margin-top:-130px;background:#fff;padding:40px;box-shadow:0px 0px 15px rgba(0,0,0,.1);margin-bottom:5%;min-height:44.9em;border-radius:15px}.layout-fourth-first-theme .content-innerpages h2{color:#333;text-transform:capitalize;position:relative;font-size:40px}.layout-fourth-first-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#1b283f;position:absolute;bottom:-5px;left:0}.layout-fourth-first-theme .content-innerpages ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-first-theme .content-innerpages ul li{width:100%;list-style:none !important;padding-left:30px;position:relative;color:#666 !important;font-size:18px;margin:5px 0px}.layout-fourth-first-theme .content-innerpages ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-first-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.layout-fourth-first-theme .bototmmcontent ul li{padding:5px 0px}.layout-fourth-first-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.layout-fourth-first-theme a.active.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-first-theme a.inactive.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-first-theme .img-responsive{display:block;max-width:100%;height:auto}.layout-fourth-first-theme .navigation{transition:.5s ease}.layout-fourth-first-theme .navigation.active{background:#1b283f !important;padding:10px 0px;top:0px;box-shadow:0px 0px 12px 0px #1b283f;z-index:99;position:fixed;width:inherit;transition:.5s ease}.layout-fourth-first-theme .dynamic-form{width:auto}.layout-fourth-first-theme .controls{background:#f9f9f9}.layout-fourth-first-theme .navigation .row{width:100%}.layout-fourth-first-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-first-theme a.header-button.nav-link{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px;text-transform:uppercase}.layout-fourth-first-theme .navbar-brand{margin-right:0px}.layout-fourth-first-theme .navbar-brand .img-responsive{max-height:70px}.layout-fourth-first-theme .dynamic-form{margin:0px -15px;padding:0px;flex-direction:inherit;flex-wrap:wrap}.layout-fourth-first-theme .dynamic-form .space-between{padding:0px 15px;margin:5px 0 5px 0}.layout-fourth-first-theme .dynamic-form .space-between.half-width{width:50%}.layout-fourth-first-theme .dynamic-form .space-between.half-width .date-box__field{width:100%;color:#7c7d7d}.layout-fourth-first-theme .dynamic-form .space-between .radio_box_root{border:none !important}.layout-fourth-first-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root{padding:0px !important}.layout-fourth-first-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root label{font-weight:500 !important}.layout-fourth-first-theme .dynamic-form .space-between .MuiButtonBase-roo{height:60px}.layout-fourth-first-theme span.anchorLink{color:#6495ed;cursor:pointer}.layout-fourth-first-theme .bg-blue{height:100px;background:#06124e}.layout-fourth-first-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout-fourth-first-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout-fourth-first-theme .descript-thankyou h1{font-weight:700;font-size:66px}.layout-fourth-first-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout-fourth-first-theme .button-home a{background:#1b283f;color:#fff;text-transform:capitalize;font-weight:400;padding:11px 25px;display:inline-block;margin-top:40px;text-decoration:none;border:2px solid #1b283f}.layout-fourth-first-theme .button-home a:hover{background:#fff;color:#1b283f;border:2px solid #1b283f}.layout-fourth-first-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout-fourth-first-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout-fourth-first-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout-fourth-first-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:#06124e;border:1px solid #06124e;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:40px 0px 0px 0px;font-size:18px}.layout-fourth-first-theme .testimonialsArea p{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-first-theme .testimonialsArea p span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-first-theme .testimonialsArea p strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400}.layout-fourth-first-theme .testimonialsArea h2{font-size:40px !important;color:#333 !important}.layout-fourth-first-theme .testimonialsArea h2 span{font-size:40px !important;color:#333 !important}.layout-fourth-first-theme .testimonialsArea h2 strong{font-size:40px !important;color:#333 !important;font-weight:500}.layout-fourth-first-theme .content-footer p.testimonialsList{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-first-theme .content-footer p.testimonialsList span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-first-theme .content-footer p.testimonialsList strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400;display:inline-block;width:100%}.layout-fourth-first-theme .content-footer blockquote{border-radius:15px;border:1px solid #d4d4d4;background:#fff;padding:30px;background-image:url(/static/media/quote.78c4b921429a229e99bf87ccd8cdd257.png);background-repeat:no-repeat;background-position:30px 20px;text-align:left;padding:50px 50px 50px 150px;font-size:20px;color:#8a8a8a;min-height:230px}.layout-fourth-first-theme .getlink a{background:#1b283f;color:#fff;padding:15px 40px;text-transform:uppercase;font-weight:500;display:inline-block;border:2px solid #fff}.layout-fourth-first-theme .getlink a:hover{background:#fff !important;color:#1b283f;border:2px solid #1b283f}.layout-fourth-first-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #1b283f;color:#fff;background:#1b283f;margin-bottom:10px;border-radius:2px}.layout-fourth-first-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #1b283f;color:#1b283f;background:#fff}.layout-fourth-first-theme .header .navbar-nav li a.nav-link{padding-right:1.5rem;padding-left:1.5rem;text-transform:uppercase;color:#eaeaea;font-weight:500;cursor:pointer}.layout-fourth-first-theme .header .navbar-nav li a.nav-link.header-button:hover{background:#fff;color:#1b283f}.layout-fourth-first-theme .header .navbar-nav li.lastbtn{padding-left:20px}.layout-fourth-first-theme .innerPageContent .container{max-width:100% !important}.layout-fourth-first-theme .surveyForm{display:inline-block;width:100%;position:relative;min-height:calc(100vh - 234px);padding:0px 15px;margin-top:-100px}.layout-fourth-first-theme .surveyForm .form-survey-section{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;position:relative;z-index:1;border-radius:10px;padding:50px 50px 90px}.layout-fourth-first-theme .surveyForm .form-survey-section .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#1b283f}.layout-fourth-first-theme .surveyForm .form-survey-section .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout-fourth-first-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout-fourth-first-theme .surveyForm input.input-box__field.input-box__field--survey.false,.layout-fourth-first-theme .surveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout-fourth-first-theme .surveyForm .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout-fourth-first-theme .surveyForm .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #1b283f;border-left:none;font-size:16px !important;font-weight:500}.layout-fourth-first-theme .surveyForm .newSurveyFooter{display:inline-block;width:100%;padding-top:0}.layout-fourth-first-theme .surveyForm .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:0}.layout-fourth-first-theme .surveyForm .newSurveyFooter .nextBtn{border:2px solid #1b283f;color:#fff;padding:12px 30px;text-transform:uppercase;background:#1b283f;letter-spacing:1px;border-radius:0}.layout-fourth-first-theme .surveyForm .progressBar{background:#1b283f;position:absolute;bottom:0;height:40px;left:0;width:100%;border-radius:0 0 5px 5px;overflow:hidden;text-align:center}.layout-fourth-first-theme .surveyForm .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout-fourth-first-theme .surveyForm .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout-fourth-first-theme .surveyForm .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout-fourth-first-theme .surveyForm .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout-fourth-first-theme .space-between .input-box__field{width:100%;height:45px}.layout-fourth-first-theme button.btn.btn-submit{border:2px solid #1b283f;border-radius:0px;color:#1b283f;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout-fourth-first-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2)}.layout-fourth-first-theme .tab{width:100%;color:#fff;overflow:hidden;border-bottom:1px solid;border-color:hsl(218.3333333333,40%,12.6470588235%)}.layout-fourth-first-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#1b283f;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout-fourth-first-theme .tab-label:hover{background:hsl(218.3333333333,40%,12.6470588235%)}.layout-fourth-first-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s}.layout-fourth-first-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout-fourth-first-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#1b283f;cursor:pointer}.layout-fourth-first-theme .tab-close:hover{background:hsl(218.3333333333,40%,12.6470588235%)}.layout-fourth-first-theme .tab:last-child{border:none}.layout-fourth-first-theme .tab input[type=checkbox]{display:none}.layout-fourth-first-theme input:checked+.tab-label{background:hsl(218.3333333333,40%,12.6470588235%)}.layout-fourth-first-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout-fourth-first-theme input:checked~.tab-content{max-height:100vh;padding:1em}.layout-fourth-first-theme input.date-box__field.false{height:47px;width:-webkit-fill-available}@media(max-width: 1200px){.layout-fourth-first-theme .form-wrapper.nav-stacked{width:auto;margin-right:15px}.layout-fourth-first-theme .navigation.active{position:fixed}}@media(max-width: 1024px){.layout-fourth-first-theme .heading-banner{padding-top:22%}.layout-fourth-first-theme .heading-banner h1{font-size:40px}.layout-fourth-first-theme .heading-banner h5 strong{font-size:20px}.layout-fourth-first-theme .form-wrapper.nav-stacked{margin-left:0px;margin-right:0px;padding:20px;max-height:calc(100vh - 150px)}.layout-fourth-first-theme .form-wrapper.nav-stacked h5{font-size:24px;line-height:28px}.layout-fourth-first-theme .dynamic-form .space-between{margin:7px 0 7px 0}.layout-fourth-first-theme .brands-section{padding-top:50px}.layout-fourth-first-theme .brands-section .sideContent span{line-height:normal;font-size:20px !important}.layout-fourth-first-theme .brands-section .sideContent ul li{margin:7px 0px}.layout-fourth-first-theme .brands-images .featureeText{font-size:20px;line-height:26px}.layout-fourth-first-theme .brands-images .seperation-new .row{vertical-align:top;align-items:normal}.layout-fourth-first-theme .brands-images .seperation-new .row .textContent img{max-width:120px}.layout-fourth-first-theme .brands-images .seperation-new .row .textContent p{margin-left:135px}.layout-fourth-first-theme .content-footer blockquote{background-size:40px;background-position:15px 15px;padding:15px 15px 15px 70px;font-size:18px;min-height:170px}.layout-fourth-first-theme .surveyForm{padding:15px 0px !important;background-image:none !important}.layout-fourth-first-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 991px){.layout-fourth-first-theme .text-contentbanner{padding-top:8rem}.layout-fourth-first-theme .col-md-4.right-side{max-width:100% !important}.layout-fourth-first-theme .col-sm-8.left-side{max-width:100%;padding-top:30px}.layout-fourth-first-theme section.brands-section .row{display:block}.layout-fourth-first-theme section.brands-section .col-sm-8{max-width:100%;width:100% !important}.layout-fourth-first-theme .paragraph-alignment-new .row .col-sm-6{max-width:100%}.layout-fourth-first-theme .quickeasy .row{display:block;text-align:center}.layout-fourth-first-theme .brands-images .seperation-new .col-sm-4{display:inline-block;vertical-align:middle}.layout-fourth-first-theme .header-or-banner.clearfix{background:#000}.layout-fourth-first-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{padding:7px 15px;display:inline-block}.layout-fourth-first-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link:hover{background:#fff !important;color:#1b283f !important}.layout-fourth-first-theme .navbar-collapse .navbar-nav:last-child{display:block;padding-bottom:20px}.layout-fourth-first-theme .quickeasy .col-sm-8{max-width:100%;margin-left:0px}.layout-fourth-first-theme a.inactive.nav-link{color:#fff !important}.layout-fourth-first-theme a.header-button.nav-link{background:#e9c87b;text-align:center;margin-left:20px}.layout-fourth-first-theme a.header-button.nav-link:hover{background:#fff !important;color:#1b283f !important}.layout-fourth-first-theme .navbar-dark .navbar-toggler{color:#fff;border-color:#fff;position:absolute;right:15px;top:12px}.layout-fourth-first-theme .form-wrapper.nav-stacked{float:none}.layout-fourth-first-theme .text-contentbanner .col-sm-8.left-side{width:100%}.layout-fourth-first-theme .heading-banner{padding-bottom:40px}.layout-fourth-first-theme .banner-home.hero{padding-bottom:30px}.layout-fourth-first-theme .brands-section .col-sm-8{width:100%}.layout-fourth-first-theme .quickeasy .col-sm-4{width:50%}.layout-fourth-first-theme .content-footer .col-sm-4{width:50%}.layout-fourth-first-theme .content-footer .row .col-sm-4{max-width:100%;width:100%}.layout-fourth-first-theme .navbar-brand .img-responsive{max-height:50px}.layout-fourth-first-theme .banner-home.hero{min-height:auto}.layout-fourth-first-theme .banner-home.hero .waveImg{background-size:auto}.layout-fourth-first-theme .text-contentbanner{display:block}.layout-fourth-first-theme .text-contentbanner .left-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-first-theme .text-contentbanner .left-side .heading-banner{padding-top:15%}.layout-fourth-first-theme .text-contentbanner .right-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-first-theme .text-contentbanner .right-side .form-wrapper.nav-stacked{width:600px;max-width:100%;margin:auto}.layout-fourth-first-theme .brands-section .col-sm-6{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-first-theme .brands-section .col-sm-6 .sideContent{margin-top:20px}.layout-fourth-first-theme .form-wrapper.nav-stacked h5{font-size:34px;line-height:38px}.layout-fourth-first-theme .content-footer blockquote{min-height:200px}.layout-fourth-first-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{background:rgba(0,0,0,0);text-align:left;margin-left:0px;border:none;padding-left:0px}.layout-fourth-first-theme .navbar-collapse .navbar-nav:last-child{padding-bottom:0px}.layout-fourth-first-theme .surveyForm{margin-bottom:40px}.layout-fourth-first-theme .surveyForm{padding:15px 0px !important;background-size:contain}.layout-fourth-first-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}.layout-fourth-first-theme .navigation{padding:10px 15px !important}}@media(max-width: 767px){.layout-fourth-first-theme .top-header p.text-right{float:none}.layout-fourth-first-theme .copyright-footer .row{display:block}.layout-fourth-first-theme .copyright-footer .row .col-sm-6{max-width:100%;text-align:center;padding:5px 15px}.layout-fourth-first-theme .quickeasy .col-sm-4{width:100%;text-align:center}.layout-fourth-first-theme .header-or-banner.clearfix{background:#fff}.layout-fourth-first-theme .content-footer .col-sm-4{width:100%}.layout-fourth-first-theme #navbarResponsive ul li a{color:#131313}.layout-fourth-first-theme .quickeasy ul{line-height:normal;padding-top:20px}.layout-fourth-first-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.layout-fourth-first-theme .article-heading h1{font-size:20px}.layout-fourth-first-theme .choosearea-section svg{width:100%}.layout-fourth-first-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.layout-fourth-first-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.layout-fourth-first-theme .top-header p{display:block;text-align:center !important}.layout-fourth-first-theme .navigation{padding:12px 10px;background:#1b283f}.layout-fourth-first-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px;position:relative;top:-5px}.layout-fourth-first-theme .navigation.active{padding:10px 10px}.layout-fourth-first-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.layout-fourth-first-theme .text-contentbanner{width:100%;padding-top:2rem}.layout-fourth-first-theme .text-contentbanner .heading-banner h1{font-size:30px}.layout-fourth-first-theme .text-contentbanner .heading-banner h5 strong{font-size:18px}.layout-fourth-first-theme .form-wrapper.nav-stacked h5{font-size:26px;line-height:30px}.layout-fourth-first-theme .brands-section h2{font-size:30px;margin-bottom:20px}.layout-fourth-first-theme .brands-images{padding:15px}.layout-fourth-first-theme .brands-images .seperation-new .row .textContent img{float:none;margin:auto}.layout-fourth-first-theme .brands-images .seperation-new .row .textContent p{margin-left:0px}.layout-fourth-first-theme .paragraph-alignment-new .getlink{padding-top:0px}.layout-fourth-first-theme .testimonialsArea h2 strong{font-size:30px !important}.layout-fourth-first-theme .form-wrapper.nav-stacked{max-height:none}.layout-fourth-first-theme .content-innerpages{padding:15px}.layout-fourth-first-theme .bgbluew{height:200px}.layout-fourth-first-theme .bototmmcontent strong{font-weight:500}.layout-fourth-first-theme .bototmmcontent h2{font-size:24px !important;margin-top:15px !important}.layout-fourth-first-theme .bototmmcontent h2::after{display:none}.layout-fourth-first-theme .bototmmcontent p{word-break:break-word}.layout-fourth-first-theme .content-innerpages h2{font-size:30px}.layout-fourth-first-theme .surveyForm{padding:15px !important;background-image:none !important;min-height:auto}.layout-fourth-first-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 600px){.layout-fourth-first-theme .brands-images .seperation-new .col-sm-4 img.img-responsive{width:100%}.layout-fourth-first-theme .content-footer blockquote{min-height:auto}.layout-fourth-first-theme .innerpage .container{padding:0px}.layout-fourth-first-theme .bototmmcontent .row .col-sm-12{padding:0px 0px !important}.layout-fourth-first-theme .bototmmcontent .row .col-sm-12 h3{font-weight:400 !important;margin-bottom:20px;margin-top:0px}.layout-fourth-first-theme .innerPageContent{padding-top:20px !important}.layout-fourth-first-theme .surveyForm .form-survey-section{padding:15px 15px 60px}.layout-fourth-first-theme .newSurveyHeading{font-size:1.5rem}.layout-fourth-first-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:16px;font-weight:500}.layout-fourth-first-theme .surveyForm .progressBar .progressBarContainer .bar{width:120px}}.layout-fourth-second-theme body{color:#000}.layout-fourth-second-theme .navbar{margin-bottom:0;border-radius:0}.layout-fourth-second-theme footer{background-color:#f2f2f2;padding:25px}.layout-fourth-second-theme a,.layout-fourth-second-theme button{transition:all .3s ease 0s;text-decoration:none}.layout-fourth-second-theme .noppading{padding:0px !important}.layout-fourth-second-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;top:20px;z-index:9999 !important}.layout-fourth-second-theme .affix+.container-fluid{padding-top:70px}.layout-fourth-second-theme label.switch.mob{float:right;margin-top:8px;display:none}.layout-fourth-second-theme .affix-top{position:static;top:-35px}.layout-fourth-second-theme .navigation{padding:15px 0px}.layout-fourth-second-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.layout-fourth-second-theme .navigation.header.clearfix.active.affix #navbarResponsive ul li a{color:#131313}.layout-fourth-second-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.layout-fourth-second-theme .navigation.active{background:#fff !important;padding:10px 0px}.layout-fourth-second-theme .top-header{background:#fff;padding:6px 0px}.layout-fourth-second-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.layout-fourth-second-theme .top-header p.text-right{float:right}.layout-fourth-second-theme .top-header p a{color:#000}.layout-fourth-second-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.layout-fourth-second-theme #navbarResponsive ul li.active a{color:#e9c87b;background:rgba(0,0,0,0)}.layout-fourth-second-theme #navbarResponsive ul li a{color:#fff}.layout-fourth-second-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#e9c87b;border-radius:4px;padding:10px 15px;color:#fff !important;margin-top:5px}.layout-fourth-second-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.layout-fourth-second-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:none;position:absolute}.layout-fourth-second-theme .active .navbar-header .img-responsive{width:auto;height:52px}.layout-fourth-second-theme .navbar-header .navbar-brand{padding:0px 0px}.layout-fourth-second-theme .navbar-header .navbar-brand .img-responsive{max-height:70px}.layout-fourth-second-theme .form-wrapper.nav-stacked{background:#fff;padding:40px;border-radius:15px;width:100%;float:right;position:relative;top:0px;margin-left:28px;max-height:calc(100vh - 200px);overflow-y:auto;box-shadow:0px 0px 15px rgba(0,0,0,.2)}.layout-fourth-second-theme .form-wrapper.nav-stacked .btn.btn-primary{margin:20px 0px;background:#e9c87b;border:1px solid #e9c87b;font-size:16px}.layout-fourth-second-theme .form-wrapper.nav-stacked h5{font-size:30px;text-align:left;padding-bottom:13px;margin-top:0px;color:#636363;line-height:38px}.layout-fourth-second-theme .brands-images{background:#f9fbff;padding:40px;margin-top:40px;margin-bottom:15px}.layout-fourth-second-theme .brands-images .featureeText{color:#8a8a8a;font-size:25px;width:1034px;margin:auto;text-align:center;max-width:100%}.layout-fourth-second-theme .brands-images .textContent{width:100%;display:inline-block;margin-top:30px}.layout-fourth-second-theme .brands-images .textContent img{float:left;max-width:170px}.layout-fourth-second-theme .brands-images .textContent p{margin-left:200px;text-align:left;color:#8a8a8a;font-size:18px}.layout-fourth-second-theme .brands-images .textContent p span{color:#8a8a8a !important;font-size:18px !important}.layout-fourth-second-theme .brands-images ul{list-style:none;margin-top:8%;box-shadow:0px 0px 7px 0px #bbb;padding:15px 12px;text-align:center}.layout-fourth-second-theme .brands-images .seperation-new{padding:20px 0px}.layout-fourth-second-theme .quickeasy{background-position:left top;background-size:cover;position:relative;color:#8a8a8a;padding:3% 0%;margin-top:0%}.layout-fourth-second-theme .quickeasy .image-new-brnad{text-align:center;background:#fff;width:50%;margin:0px auto;border-radius:22px;padding:15px 0px;margin-top:17px}.layout-fourth-second-theme .quickeasy .image-new-brnad .img-responsive{width:100px;height:auto;margin:0px auto}.layout-fourth-second-theme .quickeasy ul{padding:0px;list-style:none;font-size:25px;font-weight:600}.layout-fourth-second-theme .quickeasy ul li{padding:6px 0px}.layout-fourth-second-theme .quickeasy ul li .fa{margin-right:9px}.layout-fourth-second-theme .content-footer{background:#fff;color:#8a8a8a;font-size:16px;padding:0% 0% 2% 0%}.layout-fourth-second-theme .copyright-footer{background:#000;color:#fff;position:relative;z-index:9999;padding:15px 0px}.layout-fourth-second-theme .copyright-footer p{margin:auto;padding:0px}.layout-fourth-second-theme .copyright-footer .col-sm-6:last-child{text-align:right}.layout-fourth-second-theme .copyright-footer ul{padding:0px;list-style:none;margin:0px}.layout-fourth-second-theme .copyright-footer ul li{display:inline-block;padding-left:20px}.layout-fourth-second-theme .copyright-footer ul li a{color:#fff}.layout-fourth-second-theme .seperation-new{text-align:center}.layout-fourth-second-theme .seperation-new .getlink{vertical-align:middle;display:inline-flex;padding-top:5px}.layout-fourth-second-theme .seperation-new .row{display:inline-flex;vertical-align:middle;align-items:center}.layout-fourth-second-theme .paragraph-alignment-new .getlink{text-align:center;padding-top:24px}.layout-fourth-second-theme .brands-section h2{font-size:40px;color:#333;width:700px;max-width:100%;margin:auto;margin-bottom:auto;margin-bottom:50px}.layout-fourth-second-theme .brands-section .sideContent>span{font-size:25px !important;color:#818181 !important}.layout-fourth-second-theme .brands-section .sideContent ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-second-theme .brands-section .sideContent ul li{width:100%;list-style:none;padding-left:30px;position:relative;color:#8a8a8a;font-size:18px;margin:10px 0px}.layout-fourth-second-theme .brands-section .sideContent ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-second-theme .brands-section .brands-images h4{font-size:28px;font-weight:600;padding:20px 0px}.layout-fourth-second-theme .brands-section .brands-images li{width:140px;display:inline-block;margin:0px 15px;padding:5px 0px}.layout-fourth-second-theme .step2.form-custome-new{display:none}.layout-fourth-second-theme .mystyle .step2.form-custome-new{display:block}.layout-fourth-second-theme .mystyle .step1.form-custome-new{display:none}.layout-fourth-second-theme .lock-icon.d-inline-flex{color:#777;margin-bottom:0px}.layout-fourth-second-theme .form-group{text-align:left}.layout-fourth-second-theme .form-group label{font-weight:500;color:#3b3b3b}.layout-fourth-second-theme .form-group label .mendatory{color:red}.layout-fourth-second-theme .form-container{text-align:center}.layout-fourth-second-theme .checkbox{text-align:left}.layout-fourth-second-theme .form-step-text{text-align:left;font-size:12px;color:#636363;line-height:normal;margin-top:-20px}.layout-fourth-second-theme .container-footer{text-align:center;font-size:12px}.layout-fourth-second-theme #navbarResponsive ul li a:hover,.layout-fourth-second-theme #navbarResponsive ul li a:active,.layout-fourth-second-theme #navbarResponsive ul li a:focus{color:#e9c87b !important}.layout-fourth-second-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.layout-fourth-second-theme .hero{min-height:100vh}.layout-fourth-second-theme .hero .form-wrapper.stuck .form-container{position:fixed;top:20px;width:inherit;max-width:inherit}.layout-fourth-second-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.layout-fourth-second-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.layout-fourth-second-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.layout-fourth-second-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.layout-fourth-second-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-second-theme .slidercode .carousel-caption ul li:hover a{color:#000}.layout-fourth-second-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-second-theme .slidercode .carousel-caption ul li.active a{color:#000}.layout-fourth-second-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.layout-fourth-second-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.layout-fourth-second-theme .slidercode .carousel-caption p{font-size:20px}.layout-fourth-second-theme .group-editible{text-align:center;box-shadow:0px 0px 6px 0px #ddd;padding:20px;background:linear-gradient(135deg, #157894 0%, #55bfd1 100%);color:#fff}.layout-fourth-second-theme .group-editible ul{padding:0px;list-style:none;margin-top:15px}.layout-fourth-second-theme .group-editible ul li{display:inline-block;width:100%}.layout-fourth-second-theme .group-editible ul li a{background:#fff;color:#4094a9;text-transform:capitalize;padding:7px 15px;display:inline-block;margin:4px 0px;width:200px;font-size:16px;text-decoration:none}.layout-fourth-second-theme .boollets-points ul{padding:0px 0px 0px 15px}.layout-fourth-second-theme .boollets-points ul li{padding:6px 0px}.layout-fourth-second-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.layout-fourth-second-theme .boollets-points ul li a b{display:block}.layout-fourth-second-theme .choos-boollets-points{box-shadow:0px 0px 6px 0px #ddd;padding:30px}.layout-fourth-second-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.layout-fourth-second-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.layout-fourth-second-theme .comparebtn{text-align:center}.layout-fourth-second-theme .comparebtn a{background:#4094a9;color:#fff;font-size:16px;padding:10px 20px;border-radius:4px;display:inline-block;margin-bottom:20px}.layout-fourth-second-theme .averagetext{text-align:center;font-size:15px;color:#777}.layout-fourth-second-theme .contactfomr{padding-top:2%;width:70%}.layout-fourth-second-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.layout-fourth-second-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.layout-fourth-second-theme .contactfomr .form-control{text-transform:capitalize}.layout-fourth-second-theme .article-heading h1{font-size:30px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.layout-fourth-second-theme .mid-content .mi-section-content{padding-bottom:20px;border-bottom:1px solid #ddd;margin-bottom:15px}.layout-fourth-second-theme .mid-content .mi-section-content:last-child{border:none}.layout-fourth-second-theme .left-clinet-list ul{padding:0px;list-style:none}.layout-fourth-second-theme .left-clinet-list ul li p{background:#e1e1e1;padding:10px 8px;font-size:16px;text-transform:capitalize}.layout-fourth-second-theme .left-clinet-list ul li p b{padding-right:10px}.layout-fourth-second-theme .aqualheight{height:660px;display:table;padding-top:5%}.layout-fourth-second-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.layout-fourth-second-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.layout-fourth-second-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.layout-fourth-second-theme .col-sm-6.left-sec{background:#f2f2f2}.layout-fourth-second-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.layout-fourth-second-theme .content-chaselife h1{font-size:72px;font-weight:600}.layout-fourth-second-theme .banner-home.hero{width:100%;top:0;left:0;background-color:#fff;background-size:cover;background-position:center center;position:relative;background-attachment:fixed;background-size:cover}.layout-fourth-second-theme .banner-home.hero::before{content:"";background:#1b4a98;background:rgba(0,0,0,0) linear-gradient(61deg, #7773fa, rgba(19, 111, 172, 0.180392)) 0 0 no-repeat padding-box;opacity:.8;height:100%;position:absolute;width:100%}.layout-fourth-second-theme .banner-home.hero .waveImg{width:100%;position:absolute;left:0px;bottom:-1px;height:100%;background:url(/static/media/wave.a1d4178cc5f9e75212ed4629c429c7e0.png);background-repeat:no-repeat;background-position:bottom}.layout-fourth-second-theme .heading-banner{padding-top:18%}.layout-fourth-second-theme .heading-banner h1{font-weight:600;color:#fff;font-size:50px}.layout-fourth-second-theme .heading-banner h5{margin-top:20px}.layout-fourth-second-theme .heading-banner h5 strong{font-size:22px;font-weight:400}.layout-fourth-second-theme .heading-banner ul{list-style:none;padding:0px;color:#fff;font-size:20px;padding-top:20px}.layout-fourth-second-theme .heading-banner ul .fa{padding-right:10px}.layout-fourth-second-theme .heading-banner .bg-trans{font-size:18px;background:rgba(255,218,132,.4);color:#fff;font-style:italic;font-weight:600;padding:20px;border-radius:20px;margin-top:50px}.layout-fourth-second-theme .text-contentbanner{padding-top:10%;display:flex}.layout-fourth-second-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.layout-fourth-second-theme .footer-section h2{font-size:20px}.layout-fourth-second-theme .footer-section ul{padding:0px;list-style:none}.layout-fourth-second-theme .footer-section ul a{color:#ccc}.layout-fourth-second-theme .footer-section ul a:hover,.layout-fourth-second-theme .footer-section ul a:focus,.layout-fourth-second-theme .footer-section ul a:active{color:#e9c87b}.layout-fourth-second-theme .doublelist ul li{width:50%;float:left}.layout-fourth-second-theme .col-sm-3.noppading.formnews p{color:#ccc}.layout-fourth-second-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.layout-fourth-second-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.layout-fourth-second-theme .footer-logo{padding-top:20px}.layout-fourth-second-theme .home-section-top{padding-top:1%}.layout-fourth-second-theme #Australia-continent g:hover{opacity:1 !important}.layout-fourth-second-theme #Australia-continent:hover g{opacity:.5}.layout-fourth-second-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#4094a9}.layout-fourth-second-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px}.layout-fourth-second-theme .foter-bottom ul li{display:inline-block}.layout-fourth-second-theme .foter-bottom ul li a{color:#fff;padding:0px 2px}.layout-fourth-second-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.layout-fourth-second-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.layout-fourth-second-theme .advertisement-images{padding:0pc;padding-top:0pc;list-style:none;padding-top:25px}.layout-fourth-second-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.layout-fourth-second-theme .bgbluew{background:#7773fa;height:280px;display:block}.layout-fourth-second-theme .content-innerpages{position:relative;margin-top:-130px;background:#fff;padding:40px;box-shadow:0px 0px 15px rgba(0,0,0,.1);margin-bottom:5%;min-height:44.9em;border-radius:15px}.layout-fourth-second-theme .content-innerpages h2{color:#333;text-transform:capitalize;position:relative;font-size:40px}.layout-fourth-second-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#7773fa;position:absolute;bottom:-5px;left:0}.layout-fourth-second-theme .content-innerpages ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-second-theme .content-innerpages ul li{width:100%;list-style:none !important;padding-left:30px;position:relative;color:#666 !important;font-size:18px;margin:5px 0px}.layout-fourth-second-theme .content-innerpages ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-second-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.layout-fourth-second-theme .bototmmcontent ul li{padding:5px 0px}.layout-fourth-second-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.layout-fourth-second-theme a.active.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-second-theme a.inactive.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-second-theme .img-responsive{display:block;max-width:100%;height:auto}.layout-fourth-second-theme .navigation{transition:.5s ease}.layout-fourth-second-theme .navigation.active{background:#7773fa !important;padding:10px 0px;top:0px;box-shadow:0px 0px 12px 0px #7773fa;z-index:99;position:fixed;width:inherit;transition:.5s ease}.layout-fourth-second-theme .dynamic-form{width:auto}.layout-fourth-second-theme .controls{background:#f9f9f9}.layout-fourth-second-theme .navigation .row{width:100%}.layout-fourth-second-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-second-theme a.header-button.nav-link{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px;text-transform:uppercase}.layout-fourth-second-theme .navbar-brand{margin-right:0px}.layout-fourth-second-theme .navbar-brand .img-responsive{max-height:70px}.layout-fourth-second-theme .dynamic-form{margin:0px -15px;padding:0px;flex-direction:inherit;flex-wrap:wrap}.layout-fourth-second-theme .dynamic-form .space-between{padding:0px 15px;margin:5px 0 5px 0}.layout-fourth-second-theme .dynamic-form .space-between.half-width{width:50%}.layout-fourth-second-theme .dynamic-form .space-between.half-width .date-box__field{width:100%;color:#7c7d7d}.layout-fourth-second-theme .dynamic-form .space-between .radio_box_root{border:none !important}.layout-fourth-second-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root{padding:0px !important}.layout-fourth-second-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root label{font-weight:500 !important}.layout-fourth-second-theme .dynamic-form .space-between .MuiButtonBase-roo{height:60px}.layout-fourth-second-theme span.anchorLink{color:#6495ed;cursor:pointer}.layout-fourth-second-theme .bg-blue{height:100px;background:#06124e}.layout-fourth-second-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout-fourth-second-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout-fourth-second-theme .descript-thankyou h1{font-weight:700;font-size:66px}.layout-fourth-second-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout-fourth-second-theme .button-home a{background:#7773fa;color:#fff;text-transform:capitalize;font-weight:400;padding:11px 25px;display:inline-block;margin-top:40px;border:2px solid #7773fa;text-decoration:none}.layout-fourth-second-theme .button-home a:hover{background:#fff;color:#7773fa;border:2px solid #7773fa}.layout-fourth-second-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout-fourth-second-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout-fourth-second-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout-fourth-second-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:#06124e;border:1px solid #06124e;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:40px 0px 0px 0px;font-size:18px}.layout-fourth-second-theme .testimonialsArea p{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-second-theme .testimonialsArea p span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-second-theme .testimonialsArea p strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400}.layout-fourth-second-theme .testimonialsArea h2{font-size:40px !important;color:#333 !important}.layout-fourth-second-theme .testimonialsArea h2 span{font-size:40px !important;color:#333 !important}.layout-fourth-second-theme .testimonialsArea h2 strong{font-size:40px !important;color:#333 !important;font-weight:500}.layout-fourth-second-theme .content-footer p.testimonialsList{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-second-theme .content-footer p.testimonialsList span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-second-theme .content-footer p.testimonialsList strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400;display:inline-block;width:100%}.layout-fourth-second-theme .content-footer blockquote{border-radius:15px;border:1px solid #d4d4d4;background:#fff;padding:30px;background-image:url(/static/media/quote.78c4b921429a229e99bf87ccd8cdd257.png);background-repeat:no-repeat;background-position:30px 20px;text-align:left;padding:50px 50px 50px 150px;font-size:20px;color:#8a8a8a;min-height:230px}.layout-fourth-second-theme .getlink a{background:#7773fa;color:#fff;padding:15px 40px;text-transform:uppercase;font-weight:500;display:inline-block;border:2px solid #fff}.layout-fourth-second-theme .getlink a:hover{background:#fff !important;color:#7773fa;border:2px solid #7773fa}.layout-fourth-second-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #7773fa;color:#fff;background:#7773fa;margin-bottom:10px;border-radius:2px}.layout-fourth-second-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #7773fa;color:#7773fa;background:#fff}.layout-fourth-second-theme .header .navbar-nav li a.nav-link{padding-right:1.5rem;padding-left:1.5rem;text-transform:uppercase;color:#eaeaea;font-weight:500;cursor:pointer}.layout-fourth-second-theme .header .navbar-nav li a.nav-link.header-button:hover{background:#fff;color:#7773fa}.layout-fourth-second-theme .header .navbar-nav li.lastbtn{padding-left:20px}.layout-fourth-second-theme .innerPageContent .container{max-width:100% !important}.layout-fourth-second-theme .surveyForm{display:inline-block;width:100%;position:relative;min-height:calc(100vh - 234px);padding:0px 15px;margin-top:-100px}.layout-fourth-second-theme .surveyForm .form-survey-section{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;position:relative;z-index:1;border-radius:10px;padding:50px 50px 90px}.layout-fourth-second-theme .surveyForm .form-survey-section .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#7773fa}.layout-fourth-second-theme .surveyForm .form-survey-section .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout-fourth-second-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout-fourth-second-theme .surveyForm input.input-box__field.input-box__field--survey.false,.layout-fourth-second-theme .surveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout-fourth-second-theme .surveyForm .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout-fourth-second-theme .surveyForm .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #7773fa;border-left:none;font-size:16px !important;font-weight:500}.layout-fourth-second-theme .surveyForm .newSurveyFooter{display:inline-block;width:100%;padding-top:0}.layout-fourth-second-theme .surveyForm .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:0}.layout-fourth-second-theme .surveyForm .newSurveyFooter .nextBtn{border:2px solid #7773fa;color:#fff;padding:12px 30px;text-transform:uppercase;background:#7773fa;letter-spacing:1px;border-radius:0}.layout-fourth-second-theme .surveyForm .progressBar{background:#7773fa;position:absolute;bottom:0;height:40px;left:0;width:100%;border-radius:0 0 5px 5px;overflow:hidden;text-align:center}.layout-fourth-second-theme .surveyForm .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout-fourth-second-theme .surveyForm .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout-fourth-second-theme .surveyForm .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout-fourth-second-theme .surveyForm .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout-fourth-second-theme .space-between .input-box__field{width:100%;height:45px}.layout-fourth-second-theme button.btn.btn-submit{border:2px solid #7773fa;border-radius:0px;color:#7773fa;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout-fourth-second-theme input.date-box__field.false{height:47px;width:-webkit-fill-available}.layout-fourth-second-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2)}.layout-fourth-second-theme .tab{width:100%;color:#fff;overflow:hidden;border-bottom:1px solid;border-color:rgb(37.2873563218%,35.4428668019%,97.6943881001%)}.layout-fourth-second-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#7773fa;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout-fourth-second-theme .tab-label:hover{background:rgb(37.2873563218%,35.4428668019%,97.6943881001%)}.layout-fourth-second-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s}.layout-fourth-second-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout-fourth-second-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#7773fa;cursor:pointer}.layout-fourth-second-theme .tab-close:hover{background:rgb(37.2873563218%,35.4428668019%,97.6943881001%)}.layout-fourth-second-theme .tab:last-child{border:none}.layout-fourth-second-theme .tab input[type=checkbox]{display:none}.layout-fourth-second-theme input:checked+.tab-label{background:rgb(37.2873563218%,35.4428668019%,97.6943881001%)}.layout-fourth-second-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout-fourth-second-theme input:checked~.tab-content{max-height:100vh;padding:1em}@media(max-width: 1200px){.layout-fourth-second-theme .form-wrapper.nav-stacked{width:auto;margin-right:15px}.layout-fourth-second-theme .navigation.active{position:fixed}}@media(max-width: 1024px){.layout-fourth-second-theme .heading-banner{padding-top:22%}.layout-fourth-second-theme .heading-banner h1{font-size:40px}.layout-fourth-second-theme .heading-banner h5 strong{font-size:20px}.layout-fourth-second-theme .form-wrapper.nav-stacked{margin-left:0px;margin-right:0px;padding:20px;max-height:calc(100vh - 150px)}.layout-fourth-second-theme .form-wrapper.nav-stacked h5{font-size:24px;line-height:28px}.layout-fourth-second-theme .dynamic-form .space-between{margin:7px 0 7px 0}.layout-fourth-second-theme .brands-section{padding-top:50px}.layout-fourth-second-theme .brands-section .sideContent span{line-height:normal;font-size:20px !important}.layout-fourth-second-theme .brands-section .sideContent ul li{margin:7px 0px}.layout-fourth-second-theme .brands-images .featureeText{font-size:20px;line-height:26px}.layout-fourth-second-theme .brands-images .seperation-new .row{vertical-align:top;align-items:normal}.layout-fourth-second-theme .brands-images .seperation-new .row .textContent img{max-width:120px}.layout-fourth-second-theme .brands-images .seperation-new .row .textContent p{margin-left:135px}.layout-fourth-second-theme .content-footer blockquote{background-size:40px;background-position:15px 15px;padding:15px 15px 15px 70px;font-size:18px;min-height:170px}.layout-fourth-second-theme .surveyForm{padding:15px 0px !important;background-image:none !important}.layout-fourth-second-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 991px){.layout-fourth-second-theme .text-contentbanner{padding-top:8rem}.layout-fourth-second-theme .col-md-4.right-side{max-width:100% !important}.layout-fourth-second-theme .col-sm-8.left-side{max-width:100%;padding-top:30px}.layout-fourth-second-theme section.brands-section .row{display:block}.layout-fourth-second-theme section.brands-section .col-sm-8{max-width:100%;width:100% !important}.layout-fourth-second-theme .paragraph-alignment-new .row .col-sm-6{max-width:100%}.layout-fourth-second-theme .quickeasy .row{display:block;text-align:center}.layout-fourth-second-theme .brands-images .seperation-new .col-sm-4{display:inline-block;vertical-align:middle}.layout-fourth-second-theme .header-or-banner.clearfix{background:#000}.layout-fourth-second-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{padding:7px 15px;display:inline-block}.layout-fourth-second-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link:hover{background:#fff !important;color:#7773fa !important}.layout-fourth-second-theme .navbar-collapse .navbar-nav:last-child{display:block;padding-bottom:20px}.layout-fourth-second-theme .quickeasy .col-sm-8{max-width:100%;margin-left:0px}.layout-fourth-second-theme a.inactive.nav-link{color:#fff !important}.layout-fourth-second-theme a.header-button.nav-link{background:#e9c87b;text-align:center;margin-left:20px}.layout-fourth-second-theme a.header-button.nav-link:hover{background:#fff !important;color:#7773fa !important}.layout-fourth-second-theme .navbar-dark .navbar-toggler{color:#fff;border-color:#fff;position:absolute;right:15px;top:12px}.layout-fourth-second-theme .form-wrapper.nav-stacked{float:none}.layout-fourth-second-theme .text-contentbanner .col-sm-8.left-side{width:100%}.layout-fourth-second-theme .heading-banner{padding-bottom:40px}.layout-fourth-second-theme .banner-home.hero{padding-bottom:30px}.layout-fourth-second-theme .brands-section .col-sm-8{width:100%}.layout-fourth-second-theme .quickeasy .col-sm-4{width:50%}.layout-fourth-second-theme .content-footer .col-sm-4{width:50%}.layout-fourth-second-theme .content-footer .row .col-sm-4{max-width:100%;width:100%}.layout-fourth-second-theme .navbar-brand .img-responsive{max-height:50px}.layout-fourth-second-theme .banner-home.hero{min-height:auto}.layout-fourth-second-theme .banner-home.hero .waveImg{background-size:auto}.layout-fourth-second-theme .text-contentbanner{display:block}.layout-fourth-second-theme .text-contentbanner .left-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-second-theme .text-contentbanner .left-side .heading-banner{padding-top:15%}.layout-fourth-second-theme .text-contentbanner .right-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-second-theme .text-contentbanner .right-side .form-wrapper.nav-stacked{width:600px;max-width:100%;margin:auto}.layout-fourth-second-theme .brands-section .col-sm-6{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-second-theme .brands-section .col-sm-6 .sideContent{margin-top:20px}.layout-fourth-second-theme .form-wrapper.nav-stacked h5{font-size:34px;line-height:38px}.layout-fourth-second-theme .content-footer blockquote{min-height:200px}.layout-fourth-second-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{background:rgba(0,0,0,0);text-align:left;margin-left:0px;border:none;padding-left:0px}.layout-fourth-second-theme .navbar-collapse .navbar-nav:last-child{padding-bottom:0px}.layout-fourth-second-theme .surveyForm{margin-bottom:40px}.layout-fourth-second-theme .surveyForm{padding:15px 0px !important;background-size:contain}.layout-fourth-second-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}.layout-fourth-second-theme .navigation{padding:10px 15px !important}}@media(max-width: 767px){.layout-fourth-second-theme .top-header p.text-right{float:none}.layout-fourth-second-theme .copyright-footer .row{display:block}.layout-fourth-second-theme .copyright-footer .row .col-sm-6{max-width:100%;text-align:center;padding:5px 15px}.layout-fourth-second-theme .quickeasy .col-sm-4{width:100%;text-align:center}.layout-fourth-second-theme .header-or-banner.clearfix{background:#fff}.layout-fourth-second-theme .content-footer .col-sm-4{width:100%}.layout-fourth-second-theme #navbarResponsive ul li a{color:#131313}.layout-fourth-second-theme .quickeasy ul{line-height:normal;padding-top:20px}.layout-fourth-second-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.layout-fourth-second-theme .article-heading h1{font-size:20px}.layout-fourth-second-theme .choosearea-section svg{width:100%}.layout-fourth-second-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.layout-fourth-second-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.layout-fourth-second-theme .top-header p{display:block;text-align:center !important}.layout-fourth-second-theme .navigation{padding:12px 10px;background:#7773fa}.layout-fourth-second-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px;position:relative;top:-5px}.layout-fourth-second-theme .navigation.active{padding:10px 10px}.layout-fourth-second-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.layout-fourth-second-theme .text-contentbanner{width:100%;padding-top:2rem}.layout-fourth-second-theme .text-contentbanner .heading-banner h1{font-size:30px}.layout-fourth-second-theme .text-contentbanner .heading-banner h5 strong{font-size:18px}.layout-fourth-second-theme .form-wrapper.nav-stacked h5{font-size:26px;line-height:30px}.layout-fourth-second-theme .brands-section h2{font-size:30px;margin-bottom:20px}.layout-fourth-second-theme .brands-images{padding:15px}.layout-fourth-second-theme .brands-images .seperation-new .row .textContent img{float:none;margin:auto}.layout-fourth-second-theme .brands-images .seperation-new .row .textContent p{margin-left:0px}.layout-fourth-second-theme .paragraph-alignment-new .getlink{padding-top:0px}.layout-fourth-second-theme .testimonialsArea h2 strong{font-size:30px !important}.layout-fourth-second-theme .form-wrapper.nav-stacked{max-height:none}.layout-fourth-second-theme .content-innerpages{padding:15px}.layout-fourth-second-theme .bgbluew{height:200px}.layout-fourth-second-theme .bototmmcontent strong{font-weight:500}.layout-fourth-second-theme .bototmmcontent h2{font-size:24px !important;margin-top:15px !important}.layout-fourth-second-theme .bototmmcontent h2::after{display:none}.layout-fourth-second-theme .bototmmcontent p{word-break:break-word}.layout-fourth-second-theme .content-innerpages h2{font-size:30px}.layout-fourth-second-theme .surveyForm{padding:15px !important;background-image:none !important;min-height:auto}.layout-fourth-second-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 600px){.layout-fourth-second-theme .brands-images .seperation-new .col-sm-4 img.img-responsive{width:100%}.layout-fourth-second-theme .content-footer blockquote{min-height:auto}.layout-fourth-second-theme .innerpage .container{padding:0px}.layout-fourth-second-theme .bototmmcontent .row .col-sm-12{padding:0px 0px !important}.layout-fourth-second-theme .bototmmcontent .row .col-sm-12 h3{font-weight:400 !important;margin-bottom:20px;margin-top:0px}.layout-fourth-second-theme .innerPageContent{padding-top:20px !important}.layout-fourth-second-theme .surveyForm .form-survey-section{padding:15px 15px 60px}.layout-fourth-second-theme .newSurveyHeading{font-size:1.5rem}.layout-fourth-second-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:16px;font-weight:500}.layout-fourth-second-theme .surveyForm .progressBar .progressBarContainer .bar{width:120px}}.layout-fourth-third-theme body{color:#000}.layout-fourth-third-theme .navbar{margin-bottom:0;border-radius:0}.layout-fourth-third-theme footer{background-color:#f2f2f2;padding:25px}.layout-fourth-third-theme a,.layout-fourth-third-theme button{transition:all .3s ease 0s;text-decoration:none}.layout-fourth-third-theme .noppading{padding:0px !important}.layout-fourth-third-theme .affix{top:0;width:100%;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;top:20px;z-index:9999 !important}.layout-fourth-third-theme .affix+.container-fluid{padding-top:70px}.layout-fourth-third-theme label.switch.mob{float:right;margin-top:8px;display:none}.layout-fourth-third-theme .affix-top{position:static;top:-35px}.layout-fourth-third-theme .navigation{padding:15px 0px}.layout-fourth-third-theme .navigation.header.clearfix.active.affix{top:0px;background:#fff;box-shadow:0px 0px 12px 0px #ddd;z-index:99}.layout-fourth-third-theme .navigation.header.clearfix.active.affix #navbarResponsive ul li a{color:#131313}.layout-fourth-third-theme .navigation .navbar.navbar-inverse{background:rgba(0,0,0,0);border:none}.layout-fourth-third-theme .navigation.active{background:#fff !important;padding:10px 0px}.layout-fourth-third-theme .top-header{background:#fff;padding:6px 0px}.layout-fourth-third-theme .top-header p{display:inline-block;margin:0px;font-weight:bold}.layout-fourth-third-theme .top-header p.text-right{float:right}.layout-fourth-third-theme .top-header p a{color:#000}.layout-fourth-third-theme #navbarResponsive ul li{font-size:18px;text-transform:capitalize}.layout-fourth-third-theme #navbarResponsive ul li.active a{color:#e9c87b;background:rgba(0,0,0,0)}.layout-fourth-third-theme #navbarResponsive ul li a{color:#fff}.layout-fourth-third-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{background:#e9c87b;border-radius:4px;padding:10px 15px;color:#fff !important;margin-top:5px}.layout-fourth-third-theme #navbarResponsive .nav.navbar-nav.navbar-right li a:hover{color:#fff}.layout-fourth-third-theme .header-or-banner.clearfix{width:100%;z-index:9;box-shadow:none;position:absolute}.layout-fourth-third-theme .active .navbar-header .img-responsive{width:auto;height:52px}.layout-fourth-third-theme .navbar-header .navbar-brand{padding:0px 0px}.layout-fourth-third-theme .navbar-header .navbar-brand .img-responsive{max-height:70px}.layout-fourth-third-theme .form-wrapper.nav-stacked{background:#fff;padding:40px;border-radius:15px;width:100%;float:right;position:relative;top:0px;margin-left:28px;max-height:calc(100vh - 200px);overflow-y:auto;box-shadow:0px 0px 15px rgba(0,0,0,.2)}.layout-fourth-third-theme .form-wrapper.nav-stacked .btn.btn-primary{margin:20px 0px;background:#e9c87b;border:1px solid #e9c87b;font-size:16px}.layout-fourth-third-theme .form-wrapper.nav-stacked h5{font-size:30px;text-align:left;padding-bottom:13px;margin-top:0px;color:#636363;line-height:38px}.layout-fourth-third-theme .brands-images{background:#f9fbff;padding:40px;margin-top:40px;margin-bottom:15px}.layout-fourth-third-theme .brands-images .featureeText{color:#8a8a8a;font-size:25px;width:1034px;margin:auto;text-align:center;max-width:100%}.layout-fourth-third-theme .brands-images .textContent{width:100%;display:inline-block;margin-top:30px}.layout-fourth-third-theme .brands-images .textContent img{float:left;max-width:170px}.layout-fourth-third-theme .brands-images .textContent p{margin-left:200px;text-align:left;color:#8a8a8a;font-size:18px}.layout-fourth-third-theme .brands-images .textContent p span{color:#8a8a8a !important;font-size:18px !important}.layout-fourth-third-theme .brands-images ul{list-style:none;margin-top:8%;box-shadow:0px 0px 7px 0px #bbb;padding:15px 12px;text-align:center}.layout-fourth-third-theme .brands-images .seperation-new{padding:20px 0px}.layout-fourth-third-theme .quickeasy{background-position:left top;background-size:cover;position:relative;color:#8a8a8a;padding:3% 0%;margin-top:0%}.layout-fourth-third-theme .quickeasy .image-new-brnad{text-align:center;background:#fff;width:50%;margin:0px auto;border-radius:22px;padding:15px 0px;margin-top:17px}.layout-fourth-third-theme .quickeasy .image-new-brnad .img-responsive{width:100px;height:auto;margin:0px auto}.layout-fourth-third-theme .quickeasy ul{padding:0px;list-style:none;font-size:25px;font-weight:600}.layout-fourth-third-theme .quickeasy ul li{padding:6px 0px}.layout-fourth-third-theme .quickeasy ul li .fa{margin-right:9px}.layout-fourth-third-theme .content-footer{background:#fff;color:#8a8a8a;font-size:16px;padding:0% 0% 2% 0%}.layout-fourth-third-theme .copyright-footer{background:#000;color:#fff;position:relative;z-index:9999;padding:15px 0px}.layout-fourth-third-theme .copyright-footer p{margin:0px;padding:0px}.layout-fourth-third-theme .copyright-footer .col-sm-6:last-child{text-align:right}.layout-fourth-third-theme .copyright-footer ul{padding:0px;list-style:none;margin:0px}.layout-fourth-third-theme .copyright-footer ul li{display:inline-block;padding-left:20px}.layout-fourth-third-theme .copyright-footer ul li a{color:#fff}.layout-fourth-third-theme .seperation-new{text-align:center}.layout-fourth-third-theme .seperation-new .getlink{vertical-align:middle;display:inline-flex;padding-top:5px}.layout-fourth-third-theme .seperation-new .row{display:inline-flex;vertical-align:middle;align-items:center}.layout-fourth-third-theme .paragraph-alignment-new .getlink{text-align:center;padding-top:24px}.layout-fourth-third-theme .brands-section h2{font-size:40px;color:#333;width:700px;max-width:100%;margin:auto;margin-bottom:auto;margin-bottom:50px}.layout-fourth-third-theme .brands-section .sideContent>span{font-size:25px !important;color:#818181 !important}.layout-fourth-third-theme .brands-section .sideContent ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-third-theme .brands-section .sideContent ul li{width:100%;list-style:none;padding-left:30px;position:relative;color:#8a8a8a;font-size:18px;margin:10px 0px}.layout-fourth-third-theme .brands-section .sideContent ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-third-theme .brands-section .brands-images h4{font-size:28px;font-weight:600;padding:20px 0px}.layout-fourth-third-theme .brands-section .brands-images li{width:140px;display:inline-block;margin:0px 15px;padding:5px 0px}.layout-fourth-third-theme .step2.form-custome-new{display:none}.layout-fourth-third-theme .mystyle .step2.form-custome-new{display:block}.layout-fourth-third-theme .mystyle .step1.form-custome-new{display:none}.layout-fourth-third-theme .lock-icon.d-inline-flex{color:#777;margin-bottom:0px}.layout-fourth-third-theme .form-group{text-align:left}.layout-fourth-third-theme .form-group label{font-weight:500;color:#3b3b3b}.layout-fourth-third-theme .form-group label .mendatory{color:red}.layout-fourth-third-theme .form-container{text-align:center}.layout-fourth-third-theme .checkbox{text-align:left}.layout-fourth-third-theme .form-step-text{text-align:left;font-size:12px;color:#636363;line-height:normal;margin-top:-20px}.layout-fourth-third-theme .container-footer{text-align:center;font-size:12px}.layout-fourth-third-theme #navbarResponsive ul li a:hover,.layout-fourth-third-theme #navbarResponsive ul li a:active,.layout-fourth-third-theme #navbarResponsive ul li a:focus{color:#e9c87b !important}.layout-fourth-third-theme .nav.navbar-nav.navbar-right li .img-responsive{display:inline-block;padding:0px 5px}.layout-fourth-third-theme .hero{min-height:100vh}.layout-fourth-third-theme .hero .form-wrapper.stuck .form-container{position:fixed;top:20px;width:inherit;max-width:inherit}.layout-fourth-third-theme .slidercode .carousel-caption{text-align:left;text-align:left;top:32%}.layout-fourth-third-theme .slidercode .carousel-caption ul{list-style:none;padding:12px 0px}.layout-fourth-third-theme .slidercode .carousel-caption ul li{display:inline-block;font-size:18px;margin-right:15px;width:10%;border:1px solid #666;text-align:center;padding:5px}.layout-fourth-third-theme .slidercode .carousel-caption ul li a{padding:10px 15px;color:#666;text-transform:capitalize;text-decoration:none;text-shadow:none}.layout-fourth-third-theme .slidercode .carousel-caption ul li:hover{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-third-theme .slidercode .carousel-caption ul li:hover a{color:#000}.layout-fourth-third-theme .slidercode .carousel-caption ul li.active{background:#e9c87b;border:1px solid #e9c87b}.layout-fourth-third-theme .slidercode .carousel-caption ul li.active a{color:#000}.layout-fourth-third-theme .slidercode .carousel-caption .text-orange{color:#e9c87b;font-size:36px;margin-bottom:0px}.layout-fourth-third-theme .slidercode .carousel-caption h3{font-size:72px;text-transform:capitalize;font-weight:bold;margin-top:0px}.layout-fourth-third-theme .slidercode .carousel-caption p{font-size:20px}.layout-fourth-third-theme .group-editible{text-align:center;box-shadow:0px 0px 6px 0px #ddd;padding:20px;background:linear-gradient(135deg, #157894 0%, #55bfd1 100%);color:#fff}.layout-fourth-third-theme .group-editible ul{padding:0px;list-style:none;margin-top:15px}.layout-fourth-third-theme .group-editible ul li{display:inline-block;width:100%}.layout-fourth-third-theme .group-editible ul li a{background:#fff;color:#4094a9;text-transform:capitalize;padding:7px 15px;display:inline-block;margin:4px 0px;width:200px;font-size:16px;text-decoration:none}.layout-fourth-third-theme .boollets-points ul{padding:0px 0px 0px 15px}.layout-fourth-third-theme .boollets-points ul li{padding:6px 0px}.layout-fourth-third-theme .boollets-points ul li a{text-decoration:none;color:#131313;display:block}.layout-fourth-third-theme .boollets-points ul li a b{display:block}.layout-fourth-third-theme .choos-boollets-points{box-shadow:0px 0px 6px 0px #ddd;padding:30px}.layout-fourth-third-theme .choos-boollets-points h4{text-align:center;margin-bottom:30px}.layout-fourth-third-theme .map__desc.clearfix{position:relative;top:-90px;width:200px;left:36px}.layout-fourth-third-theme .comparebtn{text-align:center}.layout-fourth-third-theme .comparebtn a{background:#4094a9;color:#fff;font-size:16px;padding:10px 20px;border-radius:4px;display:inline-block;margin-bottom:20px}.layout-fourth-third-theme .averagetext{text-align:center;font-size:15px;color:#777}.layout-fourth-third-theme .contactfomr{padding-top:2%;width:70%}.layout-fourth-third-theme .contactfomr h3{margin-top:0px;text-transform:capitalize;padding-bottom:15px}.layout-fourth-third-theme .contactfomr .btn.btn-default{background:#4094a9;border:1px solid #4094a9;color:#fff;font-size:16px}.layout-fourth-third-theme .contactfomr .form-control{text-transform:capitalize}.layout-fourth-third-theme .article-heading h1{font-size:30px;font-weight:600;border-bottom:1px solid #ddd;padding-bottom:20px}.layout-fourth-third-theme .mid-content .mi-section-content{padding-bottom:20px;border-bottom:1px solid #ddd;margin-bottom:15px}.layout-fourth-third-theme .mid-content .mi-section-content:last-child{border:none}.layout-fourth-third-theme .left-clinet-list ul{padding:0px;list-style:none}.layout-fourth-third-theme .left-clinet-list ul li p{background:#e1e1e1;padding:10px 8px;font-size:16px;text-transform:capitalize}.layout-fourth-third-theme .left-clinet-list ul li p b{padding-right:10px}.layout-fourth-third-theme .aqualheight{height:660px;display:table;padding-top:5%}.layout-fourth-third-theme .aqualheight .content-chaselife{vertical-align:middle;display:table-cell;padding-left:15px}.layout-fourth-third-theme .aqualheight .content-chaselife h4{font-size:20px;font-weight:bold;padding:10px 0px}.layout-fourth-third-theme .aqualheight .content-chaselife p{width:70%;font-size:16px;font-weight:500}.layout-fourth-third-theme .col-sm-6.left-sec{background:#f2f2f2}.layout-fourth-third-theme .col-sm-6.left-sec .aqualheight{float:right;text-align:center;margin:0px auto;margin-right:8%}.layout-fourth-third-theme .content-chaselife h1{font-size:72px;font-weight:600}.layout-fourth-third-theme .banner-home.hero{width:100%;top:0;left:0;background-color:#fff;background-size:cover;background-position:center center;position:relative;background-attachment:fixed;background-size:cover}.layout-fourth-third-theme .banner-home.hero::before{content:"";background:#1b4a98;background:rgba(0,0,0,0) linear-gradient(61deg, #4094a9, rgba(19, 111, 172, 0.180392)) 0 0 no-repeat padding-box;opacity:.8;height:100%;position:absolute;width:100%}.layout-fourth-third-theme .banner-home.hero .waveImg{width:100%;position:absolute;left:0px;bottom:-1px;height:100%;background:url(/static/media/wave.a1d4178cc5f9e75212ed4629c429c7e0.png);background-repeat:no-repeat;background-position:bottom}.layout-fourth-third-theme .heading-banner{padding-top:18%}.layout-fourth-third-theme .heading-banner h1{font-weight:600;color:#fff;font-size:50px}.layout-fourth-third-theme .heading-banner h5{margin-top:20px}.layout-fourth-third-theme .heading-banner h5 strong{font-size:22px;font-weight:400}.layout-fourth-third-theme .heading-banner ul{list-style:none;padding:0px;color:#fff;font-size:20px;padding-top:20px}.layout-fourth-third-theme .heading-banner ul .fa{padding-right:10px}.layout-fourth-third-theme .heading-banner .bg-trans{font-size:18px;background:rgba(255,218,132,.4);color:#fff;font-style:italic;font-weight:600;padding:20px;border-radius:20px;margin-top:50px}.layout-fourth-third-theme .text-contentbanner{padding-top:10%;display:flex}.layout-fourth-third-theme .footer-section{background:#1c1a25;color:#fff;padding:2% 0% 1% 0%;border-bottom:1px solid #464646}.layout-fourth-third-theme .footer-section h2{font-size:20px}.layout-fourth-third-theme .footer-section ul{padding:0px;list-style:none}.layout-fourth-third-theme .footer-section ul a{color:#ccc}.layout-fourth-third-theme .footer-section ul a:hover,.layout-fourth-third-theme .footer-section ul a:focus,.layout-fourth-third-theme .footer-section ul a:active{color:#e9c87b}.layout-fourth-third-theme .doublelist ul li{width:50%;float:left}.layout-fourth-third-theme .col-sm-3.noppading.formnews p{color:#ccc}.layout-fourth-third-theme .formnews form input{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #e9c87b;width:70%;height:39px}.layout-fourth-third-theme .subcribe{background:#e9c87b;border:1px solid #e9c87b;width:30%;margin-left:-4px;color:#000;font-weight:bold;height:40px;text-transform:capitalize;padding:5px 0px;font-weight:bold}.layout-fourth-third-theme .footer-logo{padding-top:20px}.layout-fourth-third-theme .home-section-top{padding-top:1%}.layout-fourth-third-theme #Australia-continent g:hover{opacity:1 !important}.layout-fourth-third-theme #Australia-continent:hover g{opacity:.5}.layout-fourth-third-theme .foter-bottom{color:#fff;padding:20px 0px 20px 0px;background:#4094a9}.layout-fourth-third-theme .foter-bottom ul{padding:0px;padding-bottom:0px;list-style:none;padding-bottom:10px}.layout-fourth-third-theme .foter-bottom ul li{display:inline-block}.layout-fourth-third-theme .foter-bottom ul li a{color:#fff;padding:0px 2px}.layout-fourth-third-theme .foter-bottom ul .fa{font-size:20px;vertical-align:middle;color:#999;padding:0px 4px}.layout-fourth-third-theme .foter-bottom .col-sm-4.text-right p{color:#ccc}.layout-fourth-third-theme .advertisement-images{padding:0pc;padding-top:0pc;list-style:none;padding-top:25px}.layout-fourth-third-theme .advertisement-images li .img-responsive{width:100%;margin-bottom:20px}.layout-fourth-third-theme .bgbluew{background:#4094a9;height:280px;display:block}.layout-fourth-third-theme .content-innerpages{position:relative;margin-top:-130px;background:#fff;padding:40px;box-shadow:0px 0px 15px rgba(0,0,0,.1);margin-bottom:5%;min-height:44.9em;border-radius:15px}.layout-fourth-third-theme .content-innerpages h2{color:#333;text-transform:capitalize;position:relative;font-size:40px}.layout-fourth-third-theme .content-innerpages h2::after{content:"";height:3px;width:100px;background:#4094a9;position:absolute;bottom:-5px;left:0}.layout-fourth-third-theme .content-innerpages ul{margin:0px;padding:0px;display:inline-block;width:100%}.layout-fourth-third-theme .content-innerpages ul li{width:100%;list-style:none !important;padding-left:30px;position:relative;color:#666 !important;font-size:18px;margin:5px 0px}.layout-fourth-third-theme .content-innerpages ul li:before{background-image:url(/static/media/list-bullet.5f1ef18b4ac9e2e07866dd67ee80db93.png);background-repeat:no-repeat;background-position:left top;position:absolute;left:0px;top:10px;content:"";width:10px;height:10px}.layout-fourth-third-theme .bototmmcontent{padding-top:3%;padding-top:3%;color:#4b4b4b}.layout-fourth-third-theme .bototmmcontent ul li{padding:5px 0px}.layout-fourth-third-theme .bototmmcontent h5{padding:12px 0px 0px 0px}.layout-fourth-third-theme a.active.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-third-theme a.inactive.nav-link{color:#fff !important;background:rgba(0,0,0,0);text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-third-theme .img-responsive{display:block;max-width:100%;height:auto}.layout-fourth-third-theme .navigation{transition:.5s ease}.layout-fourth-third-theme .navigation.active{background:#4094a9 !important;padding:10px 0px;top:0px;box-shadow:0px 0px 12px 0px #4094a9;z-index:99;position:fixed;width:inherit;transition:.5s ease}.layout-fourth-third-theme .dynamic-form{width:auto}.layout-fourth-third-theme .controls{background:#f9f9f9}.layout-fourth-third-theme .navigation .row{width:100%}.layout-fourth-third-theme .header-section .fixed-top ul .nav-item a{color:#fff;text-transform:uppercase;padding:10px 0;font-size:14px;cursor:pointer}.layout-fourth-third-theme a.header-button.nav-link{background:rgba(0,0,0,0);border:2px solid #fff;color:#fff;padding:9px 30px;text-transform:uppercase}.layout-fourth-third-theme .navbar-brand{margin-right:0px}.layout-fourth-third-theme .navbar-brand .img-responsive{max-height:70px}.layout-fourth-third-theme .dynamic-form{margin:0px -15px;padding:0px;flex-direction:inherit;flex-wrap:wrap}.layout-fourth-third-theme .dynamic-form .space-between{padding:0px 15px;margin:5px 0 5px 0}.layout-fourth-third-theme .dynamic-form .space-between.half-width{width:50%}.layout-fourth-third-theme .dynamic-form .space-between.half-width .date-box__field{width:100%;color:#7c7d7d}.layout-fourth-third-theme .dynamic-form .space-between .radio_box_root{border:none !important}.layout-fourth-third-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root{padding:0px !important}.layout-fourth-third-theme .dynamic-form .space-between .radio_box_root .MuiFormControl-root label{font-weight:500 !important}.layout-fourth-third-theme .dynamic-form .space-between .MuiButtonBase-roo{height:60px}.layout-fourth-third-theme span.anchorLink{color:#6495ed;cursor:pointer}.layout-fourth-third-theme .bg-blue{height:100px;background:#06124e}.layout-fourth-third-theme .descript-thankyou{text-align:center;padding:21% 0%}.layout-fourth-third-theme .descript-thankyou .img-fluid{width:auto;height:200px;margin-bottom:20px}.layout-fourth-third-theme .descript-thankyou h1{font-weight:700;font-size:66px}.layout-fourth-third-theme .descript-thankyou p{font-size:20px;width:60%;margin:0px auto;font-weight:400}.layout-fourth-third-theme .button-home a{background:#4094a9;color:#fff;text-transform:capitalize;font-weight:400;padding:11px 25px;display:inline-block;margin-top:40px;border:2px solid #4094a9;text-decoration:none}.layout-fourth-third-theme .button-home a:hover{background:#fff;color:#4094a9;border:2px solid #4094a9}.layout-fourth-third-theme .thankyou-section{background-repeat:no-repeat;background-size:cover;color:#fff;position:relative;background-position:center}.layout-fourth-third-theme .thankyou-section:after{content:"\a";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6);opacity:1;transition:all .5s;-webkit-transition:all .5s}.layout-fourth-third-theme .tankkyou-container{position:relative;z-index:2;text-align:center}.layout-fourth-third-theme a.homebtn.section-4{color:#fff;text-decoration:none;background:#06124e;border:1px solid #06124e;text-transform:uppercase;font-weight:500;padding:10px 45px;margin:40px 0px 0px 0px;font-size:18px}.layout-fourth-third-theme .testimonialsArea p{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-third-theme .testimonialsArea p span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-third-theme .testimonialsArea p strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400}.layout-fourth-third-theme .testimonialsArea h2{font-size:40px !important;color:#333 !important}.layout-fourth-third-theme .testimonialsArea h2 span{font-size:40px !important;color:#333 !important}.layout-fourth-third-theme .testimonialsArea h2 strong{font-size:40px !important;color:#333 !important;font-weight:500}.layout-fourth-third-theme .content-footer p.testimonialsList{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-third-theme .content-footer p.testimonialsList span{font-size:18px !important;color:#8a8a8a !important}.layout-fourth-third-theme .content-footer p.testimonialsList strong{font-size:18px !important;color:#8a8a8a !important;font-weight:400;display:inline-block;width:100%}.layout-fourth-third-theme .content-footer blockquote{border-radius:15px;border:1px solid #d4d4d4;background:#fff;padding:30px;background-image:url(/static/media/quote.78c4b921429a229e99bf87ccd8cdd257.png);background-repeat:no-repeat;background-position:30px 20px;text-align:left;padding:50px 50px 50px 150px;font-size:20px;color:#8a8a8a;min-height:230px}.layout-fourth-third-theme .getlink a{background:#4094a9;color:#fff;padding:15px 40px;text-transform:uppercase;font-weight:500;display:inline-block;border:2px solid #fff}.layout-fourth-third-theme .getlink a:hover{background:#fff !important;color:#4094a9;border:2px solid #4094a9}.layout-fourth-third-theme input.form_button{height:45px;width:100%;text-transform:uppercase;border:solid 2px #4094a9;color:#fff;background:#4094a9;margin-bottom:10px;border-radius:2px}.layout-fourth-third-theme input.form_button:hover{transition:.5s;transform-origin:center;border:solid 2px #4094a9;color:#4094a9;background:#fff}.layout-fourth-third-theme .header .navbar-nav li a.nav-link{padding-right:1.5rem;padding-left:1.5rem;text-transform:uppercase;color:#eaeaea;font-weight:500;cursor:pointer}.layout-fourth-third-theme .header .navbar-nav li a.nav-link.header-button:hover{background:#fff;color:#4094a9}.layout-fourth-third-theme .header .navbar-nav li.lastbtn{padding-left:20px}.layout-fourth-third-theme .innerPageContent .container{max-width:100% !important}.layout-fourth-third-theme .surveyForm{display:inline-block;width:100%;position:relative;min-height:calc(100vh - 234px);padding:0px 15px;margin-top:-100px}.layout-fourth-third-theme .surveyForm .form-survey-section{width:700px;max-width:100%;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);margin:auto;position:relative;z-index:1;border-radius:10px;padding:50px 50px 90px}.layout-fourth-third-theme .surveyForm .form-survey-section .newSurveyHeading{display:inline-block;width:100%;margin-bottom:50px;color:#4094a9}.layout-fourth-third-theme .surveyForm .form-survey-section .newSurveyContent{display:inline-block;width:100%;margin-bottom:40px}.layout-fourth-third-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:20px;padding-left:4px !important}.layout-fourth-third-theme .surveyForm input.input-box__field.input-box__field--survey.false,.layout-fourth-third-theme .surveyForm input.input-box__field.input-box__field--survey.input-box__field--error{height:35px}.layout-fourth-third-theme .surveyForm .date-box__field--survey{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #c5c5c5;border-left:none}.layout-fourth-third-theme .surveyForm .date-box__field--survey_hoverColor{width:100%;height:44px;color:#7c7d7d;border-top-right-radius:5px;border-bottom-right-radius:5px;border:2px solid #4094a9;border-left:none;font-size:16px !important;font-weight:500}.layout-fourth-third-theme .surveyForm .newSurveyFooter{display:inline-block;width:100%;padding-top:0}.layout-fourth-third-theme .surveyForm .newSurveyFooter .backBtn{border:2px solid #ccc;color:#ccc;padding:12px 30px;text-transform:uppercase;letter-spacing:1px;border-radius:0}.layout-fourth-third-theme .surveyForm .newSurveyFooter .nextBtn{border:2px solid #4094a9;color:#fff;padding:12px 30px;text-transform:uppercase;background:#4094a9;letter-spacing:1px;border-radius:0}.layout-fourth-third-theme .surveyForm .progressBar{background:#4094a9;position:absolute;bottom:0;height:40px;left:0;width:100%;border-radius:0 0 5px 5px;overflow:hidden;text-align:center}.layout-fourth-third-theme .surveyForm .progressBar .progressBarContainer{height:40px;overflow:hidden;margin:auto 0;display:inline-block}.layout-fourth-third-theme .surveyForm .progressBar .progressBarContainer .progressBarText{color:#fff;font-size:15px;display:block;background-repeat:no-repeat;background-position:50%;margin-right:14px;height:40px;line-height:40px;float:left}.layout-fourth-third-theme .surveyForm .progressBar .progressBarContainer .bar{width:200px;border-radius:2px;height:8px;float:left;margin-top:16px;border:1px solid #fff;border-radius:5px}.layout-fourth-third-theme .surveyForm .progressBar .progressBarContainer .bar span{background-color:#fff;height:8px;border-radius:2px;float:left}.layout-fourth-third-theme .space-between .input-box__field{width:100%;height:45px}.layout-fourth-third-theme button.btn.btn-submit{border:2px solid #4094a9;border-radius:0px;color:#4094a9;padding:12px 30px;text-transform:uppercase;background:#fff;letter-spacing:1px;border-radius:2px}.layout-fourth-third-theme input.date-box__field.false{height:47px;width:-webkit-fill-available}.layout-fourth-third-theme .tabs{border-radius:8px;overflow:hidden;box-shadow:0 0px 10px rgba(0,0,0,.2)}.layout-fourth-third-theme .tab{width:100%;color:#fff;overflow:hidden;border-bottom:1px solid;border-color:hsl(192,45.0643776824%,40.6862745098%)}.layout-fourth-third-theme .tab-label{display:flex;justify-content:space-between;padding:1em;background:#4094a9;font-weight:normal;cursor:pointer;margin-bottom:0px;font-size:20px;font-family:Helvetica}.layout-fourth-third-theme .tab-label:hover{background:hsl(192,45.0643776824%,40.6862745098%)}.layout-fourth-third-theme .tab-label::after{content:"❯";width:1em;height:1em;text-align:center;transition:all .35s}.layout-fourth-third-theme .tab-content{max-height:0;padding:0 1em;color:#000;background:#fff;transition:all .35s}.layout-fourth-third-theme .tab-close{display:flex;justify-content:flex-end;padding:1em;font-size:.75em;background:#4094a9;cursor:pointer}.layout-fourth-third-theme .tab-close:hover{background:hsl(192,45.0643776824%,40.6862745098%)}.layout-fourth-third-theme .tab:last-child{border:none}.layout-fourth-third-theme .tab input[type=checkbox]{display:none}.layout-fourth-third-theme input:checked+.tab-label{background:hsl(192,45.0643776824%,40.6862745098%)}.layout-fourth-third-theme input:checked+.tab-label::after{transform:rotate(90deg)}.layout-fourth-third-theme input:checked~.tab-content{max-height:100vh;padding:1em}@media(max-width: 1200px){.layout-fourth-third-theme .form-wrapper.nav-stacked{width:auto;margin-right:15px}.layout-fourth-third-theme .navigation.active{position:fixed}}@media(max-width: 1024px){.layout-fourth-third-theme .heading-banner{padding-top:22%}.layout-fourth-third-theme .heading-banner h1{font-size:40px}.layout-fourth-third-theme .heading-banner h5 strong{font-size:20px}.layout-fourth-third-theme .form-wrapper.nav-stacked{margin-left:0px;margin-right:0px;padding:20px;max-height:calc(100vh - 150px)}.layout-fourth-third-theme .form-wrapper.nav-stacked h5{font-size:24px;line-height:28px}.layout-fourth-third-theme .dynamic-form .space-between{margin:7px 0 7px 0}.layout-fourth-third-theme .brands-section{padding-top:50px}.layout-fourth-third-theme .brands-section .sideContent span{line-height:normal;font-size:20px !important}.layout-fourth-third-theme .brands-section .sideContent ul li{margin:7px 0px}.layout-fourth-third-theme .brands-images .featureeText{font-size:20px;line-height:26px}.layout-fourth-third-theme .brands-images .seperation-new .row{vertical-align:top;align-items:normal}.layout-fourth-third-theme .brands-images .seperation-new .row .textContent img{max-width:120px}.layout-fourth-third-theme .brands-images .seperation-new .row .textContent p{margin-left:135px}.layout-fourth-third-theme .content-footer blockquote{background-size:40px;background-position:15px 15px;padding:15px 15px 15px 70px;font-size:18px;min-height:170px}.layout-fourth-third-theme .surveyForm{padding:15px 0px !important;background-image:none !important}.layout-fourth-third-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 991px){.layout-fourth-third-theme .text-contentbanner{padding-top:8rem}.layout-fourth-third-theme .col-md-4.right-side{max-width:100% !important}.layout-fourth-third-theme .col-sm-8.left-side{max-width:100%;padding-top:30px}.layout-fourth-third-theme section.brands-section .row{display:block}.layout-fourth-third-theme section.brands-section .col-sm-8{max-width:100%;width:100% !important}.layout-fourth-third-theme .paragraph-alignment-new .row .col-sm-6{max-width:100%}.layout-fourth-third-theme .quickeasy .row{display:block;text-align:center}.layout-fourth-third-theme .brands-images .seperation-new .col-sm-4{display:inline-block;vertical-align:middle}.layout-fourth-third-theme .header-or-banner.clearfix{background:#000}.layout-fourth-third-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{padding:7px 15px;display:inline-block}.layout-fourth-third-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link:hover{background:#fff !important;color:#4094a9 !important}.layout-fourth-third-theme .navbar-collapse .navbar-nav:last-child{display:block;padding-bottom:20px}.layout-fourth-third-theme .quickeasy .col-sm-8{max-width:100%;margin-left:0px}.layout-fourth-third-theme a.inactive.nav-link{color:#fff !important}.layout-fourth-third-theme a.header-button.nav-link{background:#e9c87b;text-align:center;margin-left:20px}.layout-fourth-third-theme a.header-button.nav-link:hover{background:#fff !important;color:#4094a9 !important}.layout-fourth-third-theme .navbar-dark .navbar-toggler{color:#fff;border-color:#fff;position:absolute;right:15px;top:12px}.layout-fourth-third-theme .form-wrapper.nav-stacked{float:none}.layout-fourth-third-theme .text-contentbanner .col-sm-8.left-side{width:100%}.layout-fourth-third-theme .heading-banner{padding-bottom:40px}.layout-fourth-third-theme .banner-home.hero{padding-bottom:30px}.layout-fourth-third-theme .brands-section .col-sm-8{width:100%}.layout-fourth-third-theme .quickeasy .col-sm-4{width:50%}.layout-fourth-third-theme .content-footer .col-sm-4{width:50%}.layout-fourth-third-theme .content-footer .row .col-sm-4{max-width:100%;width:100%}.layout-fourth-third-theme .navbar-brand .img-responsive{max-height:50px}.layout-fourth-third-theme .banner-home.hero{min-height:auto}.layout-fourth-third-theme .banner-home.hero .waveImg{background-size:auto}.layout-fourth-third-theme .text-contentbanner{display:block}.layout-fourth-third-theme .text-contentbanner .left-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-third-theme .text-contentbanner .left-side .heading-banner{padding-top:15%}.layout-fourth-third-theme .text-contentbanner .right-side{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-third-theme .text-contentbanner .right-side .form-wrapper.nav-stacked{width:600px;max-width:100%;margin:auto}.layout-fourth-third-theme .brands-section .col-sm-6{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.layout-fourth-third-theme .brands-section .col-sm-6 .sideContent{margin-top:20px}.layout-fourth-third-theme .form-wrapper.nav-stacked h5{font-size:34px;line-height:38px}.layout-fourth-third-theme .content-footer blockquote{min-height:200px}.layout-fourth-third-theme .navbar-collapse .navbar-nav:last-child a.header-button.nav-link{background:rgba(0,0,0,0);text-align:left;margin-left:0px;border:none;padding-left:0px}.layout-fourth-third-theme .navbar-collapse .navbar-nav:last-child{padding-bottom:0px}.layout-fourth-third-theme .surveyForm{margin-bottom:40px}.layout-fourth-third-theme .surveyForm{padding:15px 0px !important;background-size:contain}.layout-fourth-third-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}.layout-fourth-third-theme .navigation{padding:10px 15px !important}}@media(max-width: 767px){.layout-fourth-third-theme .top-header p.text-right{float:none}.layout-fourth-third-theme .copyright-footer .row{display:block}.layout-fourth-third-theme .copyright-footer .row .col-sm-6{max-width:100%;text-align:center;padding:5px 15px}.layout-fourth-third-theme .quickeasy .col-sm-4{width:100%;text-align:center}.layout-fourth-third-theme .header-or-banner.clearfix{background:#fff}.layout-fourth-third-theme .content-footer .col-sm-4{width:100%}.layout-fourth-third-theme #navbarResponsive ul li a{color:#131313}.layout-fourth-third-theme .quickeasy ul{line-height:normal;padding-top:20px}.layout-fourth-third-theme .nav.navbar-nav.navbar-right li{padding-left:15px}.layout-fourth-third-theme .article-heading h1{font-size:20px}.layout-fourth-third-theme .choosearea-section svg{width:100%}.layout-fourth-third-theme .navbar-inverse .navbar-toggle{margin-left:10px;background:#131313}.layout-fourth-third-theme .nav.navbar-nav.navbar-right li .img-responsive{padding:0px 5px 0px 0px}.layout-fourth-third-theme .top-header p{display:block;text-align:center !important}.layout-fourth-third-theme .navigation{padding:12px 10px;background:#4094a9}.layout-fourth-third-theme .navigation a.navbar-brand img.img-responsive{width:auto;height:40px;padding-left:15px;padding-top:6px;position:relative;top:-5px}.layout-fourth-third-theme .navigation.active{padding:10px 10px}.layout-fourth-third-theme #navbarResponsive .nav.navbar-nav.navbar-right li a{display:inline-block}.layout-fourth-third-theme .text-contentbanner{width:100%;padding-top:2rem}.layout-fourth-third-theme .text-contentbanner .heading-banner h1{font-size:30px}.layout-fourth-third-theme .text-contentbanner .heading-banner h5 strong{font-size:18px}.layout-fourth-third-theme .form-wrapper.nav-stacked h5{font-size:26px;line-height:30px}.layout-fourth-third-theme .brands-section h2{font-size:30px;margin-bottom:20px}.layout-fourth-third-theme .brands-images{padding:15px}.layout-fourth-third-theme .brands-images .seperation-new .row .textContent img{float:none;margin:auto}.layout-fourth-third-theme .brands-images .seperation-new .row .textContent p{margin-left:0px}.layout-fourth-third-theme .paragraph-alignment-new .getlink{padding-top:0px}.layout-fourth-third-theme .testimonialsArea h2 strong{font-size:30px !important}.layout-fourth-third-theme .form-wrapper.nav-stacked{max-height:none}.layout-fourth-third-theme .content-innerpages{padding:15px}.layout-fourth-third-theme .bgbluew{height:200px}.layout-fourth-third-theme .bototmmcontent strong{font-weight:500}.layout-fourth-third-theme .bototmmcontent h2{font-size:24px !important;margin-top:15px !important}.layout-fourth-third-theme .bototmmcontent h2::after{display:none}.layout-fourth-third-theme .bototmmcontent p{word-break:break-word}.layout-fourth-third-theme .content-innerpages h2{font-size:30px}.layout-fourth-third-theme .surveyForm{padding:15px !important;background-image:none !important;min-height:auto}.layout-fourth-third-theme .surveyForm .form-survey-section .newSurveyForm{padding-top:0px}}@media(max-width: 600px){.layout-fourth-third-theme .brands-images .seperation-new .col-sm-4 img.img-responsive{width:100%}.layout-fourth-third-theme .content-footer blockquote{min-height:auto}.layout-fourth-third-theme .innerpage .container{padding:0px}.layout-fourth-third-theme .bototmmcontent .row .col-sm-12{padding:0px 0px !important}.layout-fourth-third-theme .bototmmcontent .row .col-sm-12 h3{font-weight:400 !important;margin-bottom:20px;margin-top:0px}.layout-fourth-third-theme .innerPageContent{padding-top:20px !important}.layout-fourth-third-theme .surveyForm .form-survey-section{padding:15px 15px 60px}.layout-fourth-third-theme .newSurveyHeading{font-size:1.5rem}.layout-fourth-third-theme .surveyForm .form-survey-section .newSurveyContent .questionSteps .MuiFormLabel-root{font-size:16px;font-weight:500}.layout-fourth-third-theme .surveyForm .progressBar .progressBarContainer .bar{width:120px}}
.seventh_layout_global svg{max-width:100%;height:auto}.seventh_layout_global .header{z-index:11}.seventh_layout_global .header .navbar-nav .nav-link{border-radius:5px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;font-size:14px;padding:13px 25px}.seventh_layout_global .header.active{position:fixed;left:0;top:0;width:100%}.seventh_layout_global .seventhLayoutBlog{float:left;width:100%}.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader{max-width:1020px;margin-top:40px;margin-right:auto;margin-left:auto;-webkit-align-self:center;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader h1{max-width:100%;margin:0 auto 20px;font-size:55px;line-height:1.1;font-weight:600;text-align:center}.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:20px auto 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .firstLetter{width:50px;height:50px;margin-right:10px;border-radius:100px;line-height:50px;text-align:center;font-size:28px;font-weight:500}.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .autherName{margin-top:0;margin-bottom:0;color:#313338;font-size:18px;font-weight:600}.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .blogDate{margin-bottom:0;color:#9899ad;font-size:12px}.seventh_layout_global .seventhLayoutBlog .seventhLayoutFeatureImg{margin:60px auto 60px;border-radius:12px;max-width:1140px;overflow:hidden}.seventh_layout_global .seventhLayoutBlog .seventhLayoutFeatureImg img{max-width:100%}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent{width:100%;height:100%;max-width:880px;margin-right:auto;margin-bottom:40px;margin-left:auto}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog{display:block}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog h2{margin-top:60px;font-size:28px;line-height:140%;text-align:left;font-weight:600}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog p{margin-top:0;margin-bottom:30px;font-size:16px;line-height:1.5em;font-weight:400}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog p .big-text{float:left;font-size:70px;font-weight:700;margin:17px 0 20px;margin-right:5px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions{max-width:100%;display:flex;flex-wrap:wrap;border-radius:10px;padding:40px;margin:40px auto}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions h4{font-size:22px;line-height:140%;text-align:left;font-weight:600;width:100%;padding-bottom:15px;margin-bottom:15px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup{display:inline-block;width:100%}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul{display:flex;flex-wrap:wrap;max-width:100%;margin:0px -10px;padding:0px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li{flex:0 0 20%;max-width:20%;list-style:none;padding:10px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a{padding:15px;float:left;width:100%;border-radius:5px;position:relative;text-decoration:none;transition:.5s}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:after{width:22px;height:22px;position:absolute;right:10px;top:18px;border-radius:50%;content:"";background-size:16px;background-repeat:no-repeat;background-position:3px 3px;display:none}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:hover{box-shadow:none;transform:translate(0px, -5px)}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:hover::after{display:block}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup.block-4 ul li{flex:0 0 25%;max-width:25%}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup.block-3 ul li{flex:0 0 33.3333%;max-width:33.3333%}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh{text-align:center;padding:40px;display:inline-block;width:100%;border-radius:10px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap{display:inline-block;width:100%;margin-top:40px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap .compareNowMapBtn{border-radius:5px;display:inline-block;padding:15px 40px;transition:.5s;text-decoration:none;font-weight:600;text-transform:uppercase;letter-spacing:1.3px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap .compareNowMapBtn:hover{transform:translate(0px, -5px)}.seventh_layout_global .section-footer{display:inline-block;width:100%;padding:40px 0px;text-align:center}.seventh_layout_global .section-footer .copyright p{font-size:14px;margin-bottom:0px}.seventh_layout_global .section-footer .footer-content{float:left;width:100%}.seventh_layout_global .section-footer .footer-content .custome-links{display:inline-block;width:100%}.seventh_layout_global .section-footer .footer-content .custome-links ul{float:left;width:100%}@media(max-width: 1024px){.seventh_layout_global .navbar-toggler{position:absolute;right:15px;top:17px}}@media(max-width: 992px){.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader h1{font-size:42px}.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .firstLetter{width:40px;height:40px;line-height:40px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li{flex:0 0 33.3333%;max-width:33.3333%}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup.block-4 ul li{flex:0 0 50%;max-width:50%}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup.block-3 ul li{flex:0 0 50%;max-width:50%}}@media(max-width: 767px){.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader h1{font-size:32px}.seventh_layout_global .seventhLayoutBlog .seventhLayoutFeatureImg{margin:30px auto 30px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog h2{font-size:22px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions{padding:20px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh{padding:20px}.seventh_layout_global .section-footer{padding:15px 0px}}@media(max-width: 560px){.seventh_layout_global .seventhLayoutBlog .seventhLayoutBlogHeader h1{font-size:26px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul{margin:0px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li{flex:0 0 100%;max-width:100%;padding:5px 0px}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup.block-4 ul li{flex:0 0 100%;max-width:100%}.seventh_layout_global .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup.block-3 ul li{flex:0 0 100%;max-width:100%}}.seventh_layout_global .seventh_blog_default-theme .header{background:#44cb86}.seventh_layout_global .seventh_blog_default-theme .header .navbar-nav .nav-link{background:#fff;color:#44cb86;box-shadow:-5px 22px 10px -17px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_default-theme .header .navbar-toggler{background:#fff}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog{background-image:linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg)}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .seventhLayoutBlogHeader h1{color:#0a0535}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .firstLetter{background-color:#252525;color:#fff}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .autherName{color:#313338}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .blogDate{color:#9899ad}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .seventhLayoutFeatureImg{box-shadow:21px 21px 100px 0 rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog p{color:#4e4e4e}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions{background:#44cb86}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions h4{color:#fff;border-bottom:1px dashed rgba(255,255,255,.7)}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a{background:#fff;color:#717171;box-shadow:0px 5px 5px rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:after{background-color:#44cb86;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:hover{border-color:#44cb86;color:#44cb86;box-shadow:none}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh{background:#fafafb}.seventh_layout_global .seventh_blog_default-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap .compareNowMapBtn{background:#44cb86;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_default-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .seventh_blog_default-theme .section-footer .copyright p{color:#a8a8a8}.seventh_layout_global .seventh_blog_default-theme .section-footer .footer-content .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .seventh_blog_default-theme .section-footer .footer-content .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .seventh_blog_default-theme .section-footer .footer-content .custome-links ul li:last-child{border-right:none}.seventh_layout_global .seventh_blog_first-theme .header{background:#1b283f}.seventh_layout_global .seventh_blog_first-theme .header .navbar-nav .nav-link{background:#fff;color:#1b283f;box-shadow:-5px 22px 10px -17px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_first-theme .header .navbar-toggler{background:#fff}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog{background-image:linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg)}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .seventhLayoutBlogHeader h1{color:#0a0535}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .firstLetter{background-color:#252525;color:#fff}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .autherName{color:#313338}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .blogDate{color:#9899ad}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .seventhLayoutFeatureImg{box-shadow:21px 21px 100px 0 rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog p{color:#4e4e4e}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions{background:#1b283f}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions h4{color:#fff;border-bottom:1px dashed rgba(255,255,255,.7)}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a{background:#fff;color:#717171;box-shadow:0px 5px 5px rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:after{background-color:#1b283f;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:hover{border-color:#1b283f;color:#1b283f;box-shadow:none}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh{background:#fafafb}.seventh_layout_global .seventh_blog_first-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap .compareNowMapBtn{background:#1b283f;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_first-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .seventh_blog_first-theme .section-footer .copyright p{color:#a8a8a8}.seventh_layout_global .seventh_blog_first-theme .section-footer .footer-content .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .seventh_blog_first-theme .section-footer .footer-content .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .seventh_blog_first-theme .section-footer .footer-content .custome-links ul li:last-child{border-right:none}.seventh_layout_global .seventh_blog_second-theme .header{background:#7773fa}.seventh_layout_global .seventh_blog_second-theme .header .navbar-nav .nav-link{background:#fff;color:#7773fa;box-shadow:-5px 22px 10px -17px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_second-theme .header .navbar-toggler{background:#fff}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog{background-image:linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader h1{color:#0a0535}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .firstLetter{background-color:#252525;color:#fff}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .autherName{color:#313338}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .blogDate{color:#9899ad}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutFeatureImg{box-shadow:21px 21px 100px 0 rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog p{color:#4e4e4e}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions{background:#7773fa}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions h4{color:#fff;border-bottom:1px dashed rgba(255,255,255,.7)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a{background:#fff;color:#717171;box-shadow:0px 5px 5px rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:after{background-color:#7773fa;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:hover{border-color:#7773fa;color:#7773fa;box-shadow:none}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh{background:#fafafb}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap .compareNowMapBtn{background:#7773fa;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_second-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .seventh_blog_second-theme .section-footer .copyright p{color:#a8a8a8}.seventh_layout_global .seventh_blog_second-theme .section-footer .footer-content .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .seventh_blog_second-theme .section-footer .footer-content .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .seventh_blog_second-theme .section-footer .footer-content .custome-links ul li:last-child{border-right:none}.seventh_layout_global .seventh_blog_second-theme .header{background:#7773fa}.seventh_layout_global .seventh_blog_second-theme .header .navbar-nav .nav-link{background:#fff;color:#7773fa;box-shadow:-5px 22px 10px -17px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_second-theme .header .navbar-toggler{background:#fff}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog{background-image:linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader h1{color:#0a0535}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .firstLetter{background-color:#252525;color:#fff}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .autherName{color:#313338}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .blogDate{color:#9899ad}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .seventhLayoutFeatureImg{box-shadow:21px 21px 100px 0 rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog p{color:#4e4e4e}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions{background:#7773fa}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions h4{color:#fff;border-bottom:1px dashed rgba(255,255,255,.7)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a{background:#fff;color:#717171;box-shadow:0px 5px 5px rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:after{background-color:#7773fa;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:hover{border-color:#7773fa;color:#7773fa;box-shadow:none}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh{background:#fafafb}.seventh_layout_global .seventh_blog_second-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap .compareNowMapBtn{background:#7773fa;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_second-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .seventh_blog_second-theme .section-footer .copyright p{color:#a8a8a8}.seventh_layout_global .seventh_blog_second-theme .section-footer .footer-content .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .seventh_blog_second-theme .section-footer .footer-content .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .seventh_blog_second-theme .section-footer .footer-content .custome-links ul li:last-child{border-right:none}.seventh_layout_global .seventh_blog_third-theme .header{background:#4094a9}.seventh_layout_global .seventh_blog_third-theme .header .navbar-nav .nav-link{background:#fff;color:#4094a9;box-shadow:-5px 22px 10px -17px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_third-theme .header .navbar-toggler{background:#fff}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog{background-image:linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.95)),url(/static/media/rays.e2182ea1bbb65ffdf536c5df90c3cba8.svg)}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .seventhLayoutBlogHeader h1{color:#0a0535}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .firstLetter{background-color:#252525;color:#fff}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .autherName{color:#313338}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .seventhLayoutBlogHeader .profileHeader .blogDate{color:#9899ad}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .seventhLayoutFeatureImg{box-shadow:21px 21px 100px 0 rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog p{color:#4e4e4e}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions{background:#4094a9}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions h4{color:#fff;border-bottom:1px dashed rgba(255,255,255,.7)}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a{background:#fff;color:#717171;box-shadow:0px 5px 5px rgba(0,0,0,.1)}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:after{background-color:#4094a9;background-image:url(/static/media/yes-white.cab6a4b02ca84b40e1066deb6dc7d1be.svg)}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .ChooseOptions .chooseGroup ul li a:hover{border-color:#4094a9;color:#4094a9;box-shadow:none}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh{background:#fafafb}.seventh_layout_global .seventh_blog_third-theme .seventhLayoutBlog .blogSeventhContent .ContentSectionBlog .mapSectionSeventh .compareNowMap .compareNowMapBtn{background:#4094a9;color:#fff;box-shadow:-5px 30px 20px -16px rgba(46,89,204,.45)}.seventh_layout_global .seventh_blog_third-theme .section-footer{border-top:1px solid #ddd}.seventh_layout_global .seventh_blog_third-theme .section-footer .copyright p{color:#a8a8a8}.seventh_layout_global .seventh_blog_third-theme .section-footer .footer-content .custome-links ul li{border-right:1px solid #ddd}.seventh_layout_global .seventh_blog_third-theme .section-footer .footer-content .custome-links ul li a{color:#a8a8a8}.seventh_layout_global .seventh_blog_third-theme .section-footer .footer-content .custome-links ul li:last-child{border-right:none}
.body{font-family:"din-2014"}.layout_second{background-color:#f2f2f2;font-family:"din-2014";min-height:100vh;padding-top:74px}.layout_second .navigationHeader .container{max-width:1288px !important}.layout_second .bodyContentArea .container,.layout_second .section-footer .container{max-width:1470px !important}.layout_second main{width:100%;background-color:#f2f2f2}.layout_second header{width:100%;position:fixed;z-index:9;top:0;left:0}.layout_second .navigationHeader{background:#fff;flex-wrap:wrap !important;padding:0rem 0rem !important;box-shadow:0px 0px 10px rgba(0,0,0,.1)}.layout_second .navigationHeader .navbar-brand{padding:12px 0px}.layout_second .logoImg{max-height:50px}.layout_second .loginJoin ul li{margin:0px 8px 0px 0px}.layout_second .loginJoin ul li a{border-radius:8px 0px 8px 0px;min-width:116px;height:40px;text-align:center;font-weight:600}.layout_second .loginBtn a{border:1px solid #ea0029;color:#ea0029}.layout_second .joinBtn a{background:#ea0029;color:#fff}.layout_second .getShopa{background:#ea0029;width:100%;float:left;padding:15px 0px;box-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12)}.layout_second .getShopa a.getShopaApp{color:#fff;float:right;font-weight:bold;font-size:18px;cursor:pointer}.layout_second a.getShopaApp svg{width:1.5em;height:1.5em;fill:#fff}.layout_second a.getShopaApp:hover{color:#fff !important}.layout_second .navbar-toggler{background:#ea0029}.layout_second .navigationHeader .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.layout_second .mainMenu ul.navMenu li{position:relative}.layout_second .mainMenu ul.navMenu li a.nav-link{color:#fff;font-size:1.2rem;font-weight:500;padding:.5rem 1em}.layout_second .mainMenu ul.navMenu li:first-child a.nav-link{padding:.5rem 1rem .5rem 0rem}.layout_second .mainMenu ul.navMenu svg{width:15px;fill:#fff}.layout_second .mainMenu .dropdown-menu{width:725px;padding:15px;border:none;box-shadow:rgba(0,0,0,.2) 0px 5px 5px -3px,rgba(0,0,0,.14) 0px 8px 10px 1px,rgba(0,0,0,.12) 0px 3px 14px 2px}.layout_second .mainMenu .dropdown-menu .subMenu{max-width:33.3333%;flex:0 0 33.3333%;margin:0px;padding:0px;float:left}.layout_second .mainMenu .dropdown-menu .subMenu li{list-style:none;float:left;width:100%;margin:5px 0px}.layout_second .mainMenu .dropdown-menu .subMenu li a{color:#000;font-size:18px;display:inline-block;width:100%;text-decoration:none}.layout_second .mainMenu .dropdown-menu .subMenu li a:hover{color:#ea0029}.layout_second .formBlock{background:#fff;padding:40px;border-radius:5px;margin-bottom:50px}.layout_second .formHead{text-align:center;margin-bottom:30px}.layout_second .formHead h1{font-size:44px;font-weight:bold;color:#ea0029;font-family:"din-2014"}.layout_second .formHead h1 span{color:#000}.layout_second .formHead h5{margin-top:20px;font-size:22px}.layout_second .formBlockContainer{width:700px;max-width:100%;margin:auto}.layout_second .formBlockContainer form{width:500px;max-width:100%;margin:auto}.layout_second .formBlockContainer .info_sm{max-height:250px;overflow:auto;background:#eee;padding:15px;border-radius:5px;font-family:"din-2014";font-weight:300}.layout_second .formBlockContainer .info_sm ul{margin-left:30px}.layout_second .formBlockContainer .info_sm ul li{font-family:"din-2014";font-weight:300;margin:8px 0px}.layout_second .formBlockContainer .info_sm p{font-family:"din-2014";font-weight:300}.layout_second .formBlockContainer .info_sm a{font-family:"din-2014";font-weight:300}.layout_second .form-group{position:relative;margin-bottom:25px;font-family:"din-2014";font-weight:300}.layout_second .form-group input{display:block;background:rgba(0,0,0,0);border:solid 1px #ccc;transition:all .3s ease;padding:0 15px}.layout_second .form-group input:focus,.layout_second .form-group input:hover,.layout_second .form-group select:focus,.layout_second select:hover{border-color:#333;box-shadow:none}.layout_second .form-group label{position:absolute;cursor:text;top:17px;left:10px;font-size:15px;font-weight:400;padding:0px 5px;color:#999;transition:all .3s ease;margin-bottom:0px}.layout_second .form-group label span{color:#ea0029}.layout_second .col-sm-6.form-group label{left:25px}.layout_second .form-group input:focus+label,.layout_second .form-group input:valid+label,.layout_second .form-group select:focus+label,.layout_second .form-group select:valid+label,.layout_second .form-group:focus input+label{font-size:12px;top:-10px;background:#fff;z-index:1}.layout_second .form-group input:focus+label,.layout_second .form-group select:focus+label{color:#333;background:#fff}.layout_second .info_sm{font-size:14px;line-height:18px;color:#707070}.layout_second .acceptBnt{background-color:#ea0029;font-size:1.25rem;text-transform:none;min-width:64px;padding:8px 22px;line-height:1.75;font-weight:500;cursor:pointer;box-shadow:none;border-top-left-radius:10px;border-bottom-right-radius:10px;color:#fff;margin-top:30px}.layout_second .shopaFooter{padding:0px 0px 15px 0px}.layout_second .shopaFooter h4{font-size:.875rem;font-family:"DIN2014-Bold";line-height:1.43;margin-bottom:8px}.layout_second .shopaFooter ul{padding:0px 0px 0px 10px;margin-bottom:30px}.layout_second .shopaFooter ul li{color:#707070;font-size:.875rem;line-height:1;margin-bottom:8px;border-right-color:#ddd;border-right-width:1px;list-style:none}.layout_second .shopaFooter ul li a{color:#707070}.layout_second .shopaFooter ul li a:hover{color:#ea0029;text-decoration:none}.layout_second .copyRights{display:inline-block;width:100%;text-align:center}.layout_second .copyRights p{margin-bottom:0px;text-align:center;font-weight:300;font-size:.875rem;line-height:1.43;color:#000;margin-top:15px}.layout_second .appDownload{background-color:#fff;background-image:url(https://s3-ap-southeast-2.amazonaws.com/micrositesacquirely/micrositessub/acquirely_5_bff0463d-92aa-4a54-b29f-080ced233b3c.png);padding:10px;width:215px;min-height:200px;max-width:100%;display:inline-block;background-position:bottom right;background-repeat:no-repeat;background-size:cover;position:relative;box-shadow:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);border-radius:5px}.layout_second .appDownload h3{font-size:1.2rem;line-height:1.5rem;color:#11bf19}.layout_second .appDownloadImages{position:absolute;left:10px;bottom:10px}.layout_second .appDownloadImages a{margin-top:5px;display:inline-block}.layout_second .appDownloadImages img{max-height:35px}.layout_second .shopaDocketAppDownload{background-image:url(https://s3-ap-southeast-2.amazonaws.com/micrositesacquirely/micrositessub/acquirely_54_949babee-c196-4d97-95a8-23044a10e645.png)}.layout_second .shopaDocketAppDownload h3{color:#ea0029}.layout_second .partOfGroup{float:right;text-align:right;margin-top:20px}.layout_second .partOfGroup p{font-size:.875rem;margin-bottom:0px;color:#000;font-weight:600}.layout_second .partOfGroup img{max-width:126px}.layout_second .socialIcons a{width:auto;margin-right:7px}.layout_second .socialIcons a svg{width:23px;fill:#707070}.layout_second .logoMobileImg{display:none}.layout_second .dynamic-form{flex-direction:row;flex-wrap:wrap;margin:0px -7.5px;width:auto}.layout_second .dynamic-form .space-between{margin:0px 0px 15px 0px;flex:0 0 100%;max-width:100%;padding:0px 7.5px}.layout_second .dynamic-form .space-between.halfColumn{flex:0 0 50%;max-width:50%}.layout_second .dynamic-form .space-between>div{position:relative}.layout_second .dynamic-form .space-between>div .datePickerIcon{position:absolute;right:5px;top:10px;font-size:22px}.layout_second .dynamic-form .space-between .form-group{margin-bottom:0px}.layout_second .dynamic-form .space-between .form-group input{height:calc(1.9em + 1rem + 2px);background-color:rgba(0,0,0,0);position:relative;z-index:1}.layout_second .dynamic-form .space-between .select-box .inputContainer{border:none !important}.layout_second .dynamic-form .space-between .select-box .inputContainer i{position:absolute;left:2px;top:5px}.layout_second .dynamic-form .space-between .select-box .inputContainer input{border-radius:5px;padding-left:40px;height:calc(2.1em + 1rem + 2px);background-color:rgba(0,0,0,0);position:relative;z-index:1}.layout_second .dynamic-form .space-between .react-datepicker-popper{z-index:2}.layout_second .thankYouTitle{width:700px;max-width:100%;margin:auto;color:#000;font-weight:600;padding:40px 0px}.layout_second .dynamic-form .space-between .react-datepicker-popper{z-index:9}.layout_second .react-datepicker{background:#fff;border:none;box-shadow:0px 0px 15px rgba(0,0,0,.2)}.layout_second .react-datepicker__header{background:#fff;border:none}.layout_second .react-datepicker__day-name{color:#707070}.layout_second .react-datepicker__current-month{display:none}.layout_second .react-datepicker__month-read-view--down-arrow{display:none}.layout_second .react-datepicker__year-read-view--down-arrow{border-width:.35rem;margin-left:10px;border-top-color:#000;top:12px}.layout_second .react-datepicker__header__dropdown{display:inline-block;width:100%;text-align:left;padding:5px 15px;font-size:1.2rem;top:12px}.layout_second .react-datepicker__navigation--previous{right:50px;border-right-color:#000;top:22px;left:auto}.layout_second .react-datepicker__navigation--next{top:22px;border-left-color:#000}.layout_second .react-datepicker__day{color:#000}.layout_second .react-datepicker__day--outside-month{opacity:0}.layout_second .react-datepicker__day-name,.layout_second .react-datepicker__day,.layout_second .react-datepicker__time-name{width:2.3rem;line-height:2.3rem}.layout_second .react-datepicker__day--keyboard-selected:hover,.layout_second .react-datepicker__month-text--keyboard-selected:hover,.layout_second .react-datepicker__quarter-text--keyboard-selected:hover{background-color:#f5f5f5;border-radius:50%}.layout_second .react-datepicker__day--keyboard-selected,.layout_second .react-datepicker__month-text--keyboard-selected,.layout_second .react-datepicker__quarter-text--keyboard-selected{background-color:#ec1c2a;border-radius:50%;color:#fff}.layout_second .react-datepicker__day:hover,.layout_second .react-datepicker__month-text:hover,.layout_second .react-datepicker__quarter-text:hover{background-color:#f5f5f5;border-radius:50%}.layout_second .react-datepicker__day--selected,.layout_second .react-datepicker__day--in-selecting-range,.layout_second .react-datepicker__day--in-range,.layout_second .react-datepicker__month-text--selected,.layout_second .react-datepicker__month-text--in-selecting-range,.layout_second .react-datepicker__month-text--in-range,.layout_second .react-datepicker__quarter-text--selected,.layout_second .react-datepicker__quarter-text--in-selecting-range,.layout_second .react-datepicker__quarter-text--in-range{background-color:#ec1c2a;border-radius:50%;color:#fff}.layout_second .react-datepicker__triangle{display:none}.layout_second .react-datepicker-popper[data-placement^=bottom]{margin-top:0px}.layout_second .react-datepicker-popper[data-placement^=top]{margin-bottom:0px}.layout_second .react-datepicker__year-read-view,.layout_second .react-datepicker__month-read-view{visibility:visible !important}.layout_second .react-datepicker__year-dropdown,.layout_second .react-datepicker__month-dropdown,.layout_second .react-datepicker__month-year-dropdown{background:#fff;border:none;top:50px;width:100%;left:0;display:flex;flex-wrap:wrap;padding:15px;min-height:320px}.layout_second .react-datepicker__year-option{flex:0 0 25%;max-width:25%;padding:15px 10px;font-size:14px;margin-left:inherit;margin-right:inherit;border-radius:0px}.layout_second .react-datepicker__month-option{flex:0 0 33.3333%;max-width:33.3333%;padding:15px 10px;font-size:14px;margin-left:inherit;margin-right:inherit;line-height:40px}.layout_second .react-datepicker__year-option.react-datepicker__year-option--selected_year,.layout_second .react-datepicker__month-option.react-datepicker__month-option--selected_month{background:#ea0029;color:#fff}.layout_second .react-datepicker__month-option--selected,.layout_second .react-datepicker__year-option--selected{display:none}@media(max-width: 992px){.layout_second .navigationHeader .container{padding:0px 15px}.layout_second .shopaFooter{border-top:none;padding-top:0px}.layout_second .footerTop{display:none}}@media(max-width: 767px){.layout_second .dynamic-form{margin:0px}}@media(max-width: 640px){.layout_second{padding-top:57px}.layout_second .getShopa{display:none}.layout_second .navigationHeader{padding:.5rem 0rem;background-color:#ea0029 !important;box-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12)}.layout_second .navigationHeader .navbar-brand img{filter:grayscale(100%) invert(100%) sepia(200%) saturate(0%) hue-rotate(130deg) brightness(200%) contrast(100%);max-height:30px !important}.layout_second .logoImg{display:none}.layout_second .logoMobileImg{display:block;max-width:178px}.layout_second .joinBtn a{background:#fff;color:#ea0029;height:30px}.layout_second .loginJoin ul li a{height:30px;font-size:12px;min-width:64px}.layout_second .formBlock{padding:15px}.layout_second .formHead h1{font-size:2.125rem}.layout_second .competitionBannerSection .container,.layout_second .formSection .container{padding:0px 0px}.layout_second .formHead h5{font-size:18px}.layout_second .dynamic-form{margin:0px}.layout_second .dynamic-form .space-between{padding:0px}.layout_second .dynamic-form .space-between.halfColumn{flex:0 0 100%;max-width:100%}.layout_second .thankYouTitle{font-size:2rem}}
.advertisePage{min-height:100vh;padding:110px 20px 40px 20px;display:flex;justify-content:center;align-items:center;background:#f8fcff}.advertisePage .advertiseContainer{width:800px;max-width:100%;margin:auto;box-shadow:0px 0px 15px rgba(0,74,142,.1215686275);border-radius:10px;overflow:hidden;padding:40px;background:#fff}.advertisePage .advertiseContainer .advertisementText h2{font-size:2.2rem;font-weight:600;margin-bottom:35px}.advertisePage .advertiseContainer .advertisementForm{width:400px;float:right;max-width:100%}.advertisePage .advertiseContainer .advertisementForm label{font-size:14px}.advertisePage .advertiseContainer .form-control{font-size:.8rem;min-height:44px}.advertisePage .advertiseContainer svg .cls-1{fill:#f5f5f5}.advertisePage .advertiseContainer svg .cls-2{fill:#e0e0e0}.advertisePage .advertiseContainer svg .cls-3{fill:#fff}.advertisePage .advertiseContainer svg .cls-4{fill:#ebebeb}.advertisePage .advertiseContainer svg .cls-5{fill:#263238}.advertisePage .advertiseContainer svg .cls-6{fill:#ffbe9d}.advertisePage .advertiseContainer svg .cls-7{fill:#eb996e}.advertisePage .advertiseContainer svg .cls-8{fill:#455a64}.advertisePage .advertiseContainer svg .cls-9{fill:#004a8e}.advertisePage .advertiseContainer svg .cls-10{opacity:.3}.advertisePage .advertiseContainer .btn.btn-success{background-color:#68bd48;border-color:#68bd48;padding:10px 30px;text-transform:uppercase;margin-top:18px;width:100%}@media(max-width: 767px){.advertisePage .advertiseContainer .advertisementText svg{display:none}.advertisePage .advertiseContainer .advertisementForm{float:none;margin:auto;width:100%}}
