@charset "utf-8";

/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework 
*/

/* 1. Clean Base
------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

blockquote,
q {
  quotes: none;
}

br {
  height: 0;
}

ul,
ol,
dl,
li {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  border: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

/* Class for clearing floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.cf:after,
.cf:before {
  display: table;
  content: "";
}

.cf:after {
  clear: both;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 2. Base Typography
------------------------------------------------------------------------------*/
body {
  /* Typography */
  color: #7a7a7a;
  font: 400 16px/22px "Source Sans Pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* Typography */
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #212529;
}

h1 {
  /* Typography */
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 20px;
}

h3 {
  /* Box-model */
  margin-bottom: 15px;
  /* Typography s*/
  font-size: 28px;
  line-height: 32px;
}

h4 {
  /* Box-model */
  margin-bottom: 10px;
  /* Typography */
  font-size: 25px;
  line-height: 28px;
  color: #000;
}

h5 {
  /* Box-model */
  margin-bottom: 20px;
  /* Typography */
  font-size: 27px;
  line-height: 30px;
  color: #ea7617;
}

h6 {
  /* Box-model */
  margin-bottom: 10px;
  /* Typography */
  font-size: 16px;
  line-height: 20px;
  color: #ea7617;
}

blockquote {
  /* Box-model */
  padding: 10px 20px;
  margin: 0 0 20px;
  /* Typography */
  font-size: 17px;
  /* Visual */
  border-left: 5px solid #eee;
}

p {
  /* Box-model */
  margin-bottom: 20px;
  /* Typography */
  color: #141116;
  font-size: 19px;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}

p strong {
  /* Box-model */
  display: block;
  /* Typography */
  font-weight: 700;
}

p a {
  /* Typography */
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p span {
  /* Typography */
  color: inherit;
  font-weight: 700;
}

ul {
  /* Box-model */
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  margin-left: 15px;
}

ul li {
  /* Box-model */
  padding: 0;
  margin: 0;
  /* Typography */
  font-size: 15px;
  color: #333333;
  font-weight: 400;
  line-height: 22px;
}

ol {
  /* Box-model */
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  margin-left: 18px;
}

ol li {
  /* Box-model */
  padding: 0;
  margin: 0;
  /* Typography */
  font-size: 15px;
  color: #333333;
  font-weight: 400;
  line-height: 22px;
}

hr {
  /* Box-model */
  margin-top: 20px;
  margin-bottom: 20px;
  /* Visual */
  border: 0;
  border-top: 1px solid #eee;
}

/* 3. Images
------------------------------------------------------------------------------*/

img {
  /* Box-model */
  display: block;
  max-width: 100%;
  vertical-align: middle;
  /* Visual */
  border: none;
  border-style: none;
}

.alignleft {
  /* Box-model */
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  /* Box-model */
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter,
.alignnone {
  /* Box-model */
  float: none;
  margin: 0 auto 20px;
}

.wp-block-image-con {
  width: 100%;
  /* display: block; */
  float: left;
}

/* 4. Link
------------------------------------------------------------------------------*/

a {
  /* Typography */
  color: #ea7617;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  /* Visual */
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover,
a:focus {
  /* Typography */
  color: #cb003d;
  /* Visual */
  outline: none;
}

/* 5. Forms
------------------------------------------------------------------------------*/

input,
button,
select,
textarea {
  /* Typography */
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  /* Visual */
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: none;
  -webkit-text-size-adjust: none;
  outline: none;
}

input[type="email"],
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="password"],
textarea {
  /* Box-model */
  padding: 0 10px 0 22px;
  display: block;
  width: 100%;
  height: 42px;
  /* Typography */
  font-size: 14px;
  line-height: 42px;
  color: #aeaeae;
  /* Visual */
  background-color: #fff;
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

textarea {
  /* Box-model */
  padding: 15px 22px;
  height: 122px;
  /* Typography */
  line-height: 24px;
  /* Visual */
  overflow: auto;
  resize: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  /* Box-model */
  display: inline-block;
  padding: 0 18px;
  height: 42px;
  /* Typography */
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 39px;
  text-transform: uppercase;
  color: #ea7617;
  line-height: 42px;
  /* Visual */
  border: 1px solid #ea7617;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  /* Typography */
  color: #fff;
  /* Visual */
  background-color: #ea7617;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: #aeaeae;
}

::-moz-placeholder {
  color: #aeaeae;
}

:-ms-input-placeholder {
  color: #aeaeae;
}

:-moz-placeholder {
  color: #aeaeae;
}

@-moz-document url-prefix() {
  ::-webkit-input-placeholder {
    opacity: 1;
  }

  ::-moz-placeholder {
    opacity: 1;
  }

  :-ms-input-placeholder {
    opacity: 1;
  }

  :-moz-placeholder {
    opacity: 1;
  }
}

/* 6. Tables
------------------------------------------------------------------------------*/

table {
  /* Visual */
  border-spacing: 0;
  border-collapse: collapse;
}

td {
  /* Typography */
  text-align: left;
  font-weight: normal;
}

/* 7. Layout Framework
------------------------------------------------------------------------------*/

/* commomn css */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

.left {
  float: left;
}

.right {
  float: right;
}

.mm-page {
  min-height: 100%;
}

#wrapper {
  /* Box-model */
  width: 100%;
  min-height: 100%;
}

.container {
  /* Box-model */
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
}

/* button */

.btn,
.main_header ul.menu li a,
.contact_now a,
.banner_content_box .inner_banner_content_box a {
  /* Box-model */
  display: inline-block;
  padding: 0 18px;
  height: 42px;
  min-width: 110px;
  /* Typography */
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 39px;
  color: #ea7617;
  /* Visual */
  cursor: pointer;
  border: 2px solid #f49a37;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  -o-border-radius: 21px;
  border-radius: 21px;
}

.btn:hover,
.btn:focus {
  /* Typography */
  color: #fff;
  /* Visual */
  background-color: #ea7617;
}

/* header */

header {
  /* Visual */
  position: relative;
  /* Box-model */
  width: 100%;
  height: auto;
  top: 0px;
  padding: 15px 0;
}

nav ul {
  margin: 0;
}

/* footer */

footer {
  /* Positioning */
  position: relative;
  padding: 15px 0;
  /* Box-model */
  width: 100%;
  /*Visual */
  background-color: #000;
}

footer p {
  text-align: center;
  margin: 0px;
  color: #fff;
}

/*--------- home page ------------*/

/* .logo {
    float: left;
    width:100%;
    text-align: center;
} */

.logo a {
  display: inline-block;
}

.top-bannerbox {
  padding-top: 0px;
  padding-bottom: 50px;
}

.top-bannerbox .left-banercont-box {
  float: left;
  width: 50%;
  position: relative;
}

.top-bannerbox .right-banne-imgbox {
  float: right;
  width: 50%;
  position: relative;
  right: 0;
  padding-left: 20px;
  top: 0;
}

.top-bannerbox .left-banercont-box p {
  font-size: 19px;
  letter-spacing: 0.01em;
  line-height: 29px;
}

a.btn.default-btn,
.main_header ul.menu li a,
.contact_now a,
.banner_content_box .inner_banner_content_box a {
  text-transform: UPPERCASE;
  background-color: #f49a37;
  color: #fff;
}

.top-bannerbox .left-banercont-box a.default-btn,
.main_header ul.menu li a,
.contact_now a {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
}

.top-bannerbox .left-banercont-box a.default-btn:hover,
.main_header ul.menu li a:hover,
.contact_now a:hover,
.banner_content_box .inner_banner_content_box a:hover {
  background-color: transparent;
  color: #f49a37;
}

.logo a {
  max-width: 340px;
}

.contact_now a {
  margin-top: 0;
}

.main_header .admin_login_btn {
  margin-left: 0;
  flex-shrink: 0;
}

.main_header_nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.table {
  display: table;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.row {
  margin: 0 -15px;
}

.two-blocks {
  float: left;
  width: 50%;
  padding: 0 15px;
}

.home-middle-blocbox {
  border-top: 2px solid #bdbdbd;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.marketing-service-block span {
  display: block;
  text-align: center;
  max-width: 210px;
  margin: 0 auto 30px;
}

.marketing-service-block h3 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
}

.marketing-service-block p {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  margin-bottom: 0px;
}

.marketing-service-block {
  padding: 0 50px;
  margin-bottom: 70px;
  float: none;
  width: 49.8%;
  display: inline-block;
  vertical-align: top;
}

.marketing-service-block span.png-imgbox {
  max-width: 400px;
}

.title-boxes {
  margin-bottom: 50px;
}

.marketing-service-block.dark-textes p {
  color: #000;
}

.three-block {
  width: 33.33%;
  padding: 0 15px;
  float: left;
}

.grey-bg {
  background-color: #fafafa;
}

.testim-blocks {
  padding: 0 67px;
}

.testimonial-section .container {
  max-width: 1050px;
}

.testim-blocks span {
  max-width: 70px;
  margin: 0 auto 25px;
  display: block;
}

.testim-blocks p {
  font-size: 18px;
  line-height: 25px;
  color: #000;
}

.testim-blocks h4 {
  font-size: 18px;
  margin: 0;
}

.appoint-section {
  background: #06264e;
  /* Old browsers */
  /* background: -moz-linear-gradient(-45deg, rgba(220, 29, 156, 1) 0%, rgba(86, 8, 128, 1) 51%, rgba(25, 16, 82, 1) 100%); */
  /* FF3.6-15 */
  /* background: -webkit-linear-gradient(-45deg, rgba(220, 29, 156, 1) 0%, rgba(86, 8, 128, 1) 51%, rgba(25, 16, 82, 1) 100%); */
  /* Chrome10-25,Safari5.1-6 */
  /* background: linear-gradient(135deg, rgba(220, 29, 156, 1) 0%, rgba(86, 8, 128, 1) 51%, rgba(25, 16, 82, 1) 100%); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#dc1d9c', endColorstr='#191052', GradientType=1); */
  /* IE6-9 fallback on horizontal gradient */
}

.appoint-section .title-boxes h2 {
  color: #fff;
  font-weight: normal;
  font-size: 38px;
  text-transform: capitalize;
}

.appoint-section .title-boxes p {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 28px;
}

.appoint-section .title-boxes {
  max-width: 100%;
  text-align: left;
}

.appoint-section .appint-formbox {
  max-width: 500px;
  /* margin: 0 auto; */
}

.main_form_section .title-boxes {
  margin-bottom: 26px;
}

.appint-formbox .form-group {
  margin-bottom: 15px;
}

.appint-formbox .form-group .form-control {
  border-radius: 4px;
  font-size: 16px;
  color: #6c757d;
  font-weight: 500;
}

/* .appint-formbox form.wpcf7-form {
    padding: 0;
} */

.main_form_section .title-boxes h2 {
  font-size: 36px;
  line-height: 44px;
  text-align: left;
}

.appint-formbox .form-group.form-btnbox .btn {
  width: 100%;
  border-radius: 30px;
  background-color: #eaa22b;
  border-color: #eaa22b;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
  /* padding: 0; */
}

.appint-formbox .form-group:last-child {
  margin-bottom: 0px;
}

.appint-formbox .form-group.form-btnbox .btn:hover {
  background-color: transparent;
  color: #eaa22b;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #6c757d;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #6c757d;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #6c757d;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #6c757d;
}

div#cookie-law-info-bar h5 {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  font-weight: 600;
  float: left;
  background-color: transparent;
  margin-bottom: 0;
  margin-top: 5px;
  margin-right: 10px;
  text-transform: uppercase;
  border-right: 1px solid #fff;
  padding: 22px 25px 22px 0;
  max-width: 120px;
  width: 100%;
}

div#cookie-law-info-bar {
  background: rgba(0, 0, 0, 0.8) !important;
  box-shadow: none;
}

div#cookie-law-info-bar .span {
  float: left;
  width: calc(100% - 110px);
}

div#cookie-law-info-bar span {
  float: right;
  width: calc(100% - 150px);
  text-align: left;
}

div#cookie-law-info-bar span p {
  color: #fff;
}

div#cookie-law-info-bar span .cookie-btntext p {
  float: left;
  width: calc(100% - 350px);
  padding-right: 50px;
  margin: 0;
}

div#cookie-law-info-bar span .cookie-btntext a.medium {
  text-transform: uppercase;
  background-color: transparent !important;
  font-weight: bold;
  font-size: 16px;
  color: #eaa22b !important;
}

div#cookie-law-info-bar span .cookie-btntext p a {
  color: #eaa22b;
}

div#cookie-law-info-bar p {
  font-size: 15px;
  line-height: 19px;
}

.schedul-app-box a.btn {
  line-height: 37px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.schedul-app-box a.btn:hover {
  background-color: transparent;
  color: #f49a37;
}

div#cookie-law-info-again {
  background-color: #eaa22b !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
}

/*-added video on banner-*/

.custom_section_right_images .image_block:first-child {
  max-width: 230px;
}

.custom_section_right_images .image_block:first-child img {
  height: auto;
}

.custom_section_right_images .image_block.image_block_right.video iframe {
  width: auto;
  height: 100%;
  min-height: 180px;
}

a.btn.default-btn.client-assetment,
a.btn.schedule_btn[href*="Client-assessment"],
a.btn.schedule_btn[href*="client-assessment"],
.main_header ul.menu li a[href*="Client-assessment"],
.main_header ul.menu li a[href*="client-assessment"] {
  display: none !important;
}

.main_header ul.menu li:has(> a[href*="Client-assessment"]),
.main_header ul.menu li:has(> a[href*="client-assessment"]) {
  display: none !important;
}
.mobile-show-profile {
  display: none;
}
@media (max-width: 1064px) {
  .header-flex-wrapper-template-left {
    width: calc(100% - 240px) !important;
  }
  .template-profile-wrapper {
    max-width: 35%;
  }
  .header-flex-wrapper-template-left h1 {
    font-size: 48px !important;
  }
}
@media (max-width: 991px) {
  .header-template {
    flex-direction: column;
  }
  .hide-mobile-profile {
    display: none;
  }
  .christmans-text {
    color: #fff !important;
    font-size: 34px !important;
    line-height: 32px !important;
  }
  .template-wrapper-christmas .flex-wrapper {
    padding: 0px 20px !important;
  }
  .template-wrapper-christmas .flex-wrapper .date-venue-wrapper h4 {
    font-size: 27px !important;
  }
  .template-wrapper-christmas .flex-wrapper .date-venue-wrapper h5 {
    line-height: 30px !important;
    font-size: 26px !important;
  }
  .kc-title-main {
    padding: 15px 0px !important;
  }
  .header-flex-wrapper-template-left h4,
  .header-flex-wrapper-template-left h1 {
    text-align: center !important;
  }
  .template-profile-wrapper img {
    margin: 0 auto !important;
  }
  .template-profile-wrapper {
    max-width: 100% !important;
    position: relative !important;
  }
  .header-flex-wrapper-template-left {
    max-width: 100% !important;
    width: 100% !important;
  }
  /* .header-template {
    flex-direction: column-reverse;
  } */
  .mobile-show-profile {
    display: block;
  }
  .header-flex-wrapper-template-left h2 {
    margin-top: 50px !important;
    font-size: 48px !important;
    line-height: 58px !important;
  }
  div#cookie-law-info-bar h5 {
    padding: 22px 15px 22px 0;
    max-width: 100px;
  }

  div#cookie-law-info-bar span {
    width: calc(100% - 120px);
  }

  div#cookie-law-info-bar span .cookie-btntext p {
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .header-flex-wrapper-template-left h2 {
    margin-top: 0px !important;
  }
  .christmas-template {
    padding: 15px 0px !important;
  }
  .template-footer .center-footer p,
  .template-footer .paid-text {
    font-size: 16px;
  }
  .template-wrapper-christmas .supporter-section p {
    padding: 15px 15px !important;
  }
  .template-wrapper-christmas .flex-wrapper,
  .header-template,
  .template-footer {
    padding: 0px 15px !important;
  }
  .header-flex-wrapper-template-left h4 {
    font-size: 28px;
  }
  .header-flex-wrapper-template-left h6 {
    font-size: 12px !important;
  }
  .header-flex-wrapper-template-left h3 {
    font-size: 26px !important;
    line-height: 30px !important;
    margin-bottom: 0px !important;
  }
  .christmans-text {
    font-size: 24px !important;
    line-height: 26px !important;
  }
  .header-flex-wrapper-template-left h2 {
    font-size: 34px !important;
    line-height: 48px !important;
  }
  .header-flex-wrapper-template-left p {
    font-size: 24px !important;
  }
  .header-flex-wrapper-template-left h1 {
    line-height: 50px;
    white-space: pre-wrap;
    flex-wrap: wrap;
    word-break: break-word;
    font-size: 24px !important;
    padding: 0px 9px !important;
  }
  .christmans-text {
    transform: rotate(0deg) !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
  }
  .template-wrapper-christmas .flex-wrapper {
    flex-direction: column;
    align-items: center !important;
  }
  .header-template {
    padding: 0px 30px;
  }
  div#cookie-law-info-bar span .cookie-btntext p {
    width: calc(100% - 0px);
  }

  div#cookie-law-info-bar h5 {
    width: 100%;
    max-width: 100%;
    border: none;
    margin: 0px;
  }

  div#cookie-law-info-bar span {
    width: calc(100% - 0px);
    text-align: center;
  }

  .logo {
    margin-top: 40px;
  }
}

/* 25-11-2019 Thank you page start*/

.thankyou-title-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 15px 30px;
}

.thankyou-title-box h3 {
  line-height: 37px;
  font-size: 26px;
  margin: 0 0 30px 0;
  color: #e49c24;
  font-weight: 500;
}

.success-checkmark {
  width: 90px;
  height: 115px;
  margin: 0 auto;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4caf50;
}

.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4caf50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 1.2s;
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #eaa22d;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 1.2s;
}

.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(234, 162, 45, 0.4);
}

.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: "";
  height: 100px;
  position: absolute;
  background: #ffffff;
  transform: rotate(-45deg);
}

.wp-block-image {
  float: left;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }

  5% {
    transform: rotate(-45deg);
  }

  12% {
    transform: rotate(-405deg);
  }

  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }

  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }

  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }

  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.thankyou-title-box h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 40px;
}

.thankyou-title-box h4 a {
  color: #004b8e;
}

.thankyou-title-box h4 a:hover {
  color: #e6b347;
}

.thanky-section {
  padding: 10px 0;
}

.thankyou-title-box h4 a {
  color: #0575bd;
}

.thank-logo {
  text-align: center;
}

.thank-logo a {
  display: inline-block;
  margin-bottom: 0;
}

.thank-logo {
  padding: 20px 0 30px;
}

.thankyou-video video {
  max-width: 600px;
  height: 350px;
}

@media (max-width: 767px) {
  .thankyou-title-box {
    padding: 10px 15px 10px;
  }

  .thank-logo {
    padding: 10px 0 20px;
  }

  .thankyou-title-box h3 {
    line-height: 28px;
    font-size: 22px;
    margin: 0 0 20px 0;
  }

  .thankyou-title-box h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .thank-logo a img {
    width: 300px;
  }

  .thankyou-video video {
    max-width: 300px;
    height: 220px;
    width: 100%;
  }
}

/* 25-11-2019 Thank you page end*/

/*logo slider css*/

#page-wrapper {
  position: relative;
  padding-bottom: 0;
}

.success-checkmark img {
  display: inline-block;
  vertical-align: top;
}

.logo-slider {
  overflow: hidden;
  padding: 0 50px;
}

.logo-slider .slick-track {
  display: flex;
  align-items: center;
}

.logo-slider .slick-slide {
  padding: 0 10px;
  text-align: center;
}

.logo-slider .slick-slide img {
  display: inline-block;
  vertical-align: top;
}

.logo-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 35px;
  padding: 0;
  margin-top: -17px;
  text-indent: -999999px;
  background-image: url("../images/back.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  background-color: #ea7617;
}

.logo-slider .slick-prev.slick-arrow {
  left: 0;
}

.logo-slider .slick-next.slick-arrow {
  right: 0;
  transform: rotate(180deg);
}

/*date 26-10-2020 css  start*/

.social-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.single-details {
  width: calc(25% - 30px) !important;
  text-align: left;
  box-shadow: 0 0 24.5px rgba(0, 0, 0, 0.18);
  margin: 0px 15px 40px 15px;
  padding: 10px 10px 60px 10px;
  position: relative;
}

.single-details .single_btn {
  position: absolute;
  bottom: 15px;
  width: calc(100% - 20px);
  left: 10px;
}

.single-details .single_btn.default-btn:hover {
  background-color: #fff;
  color: #f49a37;
}

.custom_section_right_images,
.custom_section_right_images .image_block1 {
  display: flex;
}

.custom_section_right_images .image_1 {
  margin-right: 15px;
}

.custom_section_right_images .image_block {
  margin-right: 15px;
}

.custom_section_right_images .image_block2 {
  margin-top: 15px;
}

.custom_section_right_images .image_1 img,
.custom_section_right_images .image_2 img {
  max-height: 130px;
}

.single-details figure img {
  margin: auto;
}

.single-details:hover {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.single-details p,
.single-details p,
.banner_con_text p {
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 25px;
}

.banner_con_text p {
  font-size: 19px;
  letter-spacing: 0.01em;
  line-height: 29px;
}

.single-details h3 {
  margin-bottom: 10px;
  font-size: 24px;
  text-align: center;
}

.client_logo_slider .slick-slide {
  height: 100%;
}

.client_logo_slider .slick-slide img {
  max-height: 160px;
  margin-left: auto;
  margin-right: auto;
}

.client_logo_slider .slick-slide {
  margin: 0px 10px;
}

.client_logo_slider .slick-track {
  display: flex;
  align-items: center;
  margin: 20px 0px;
}

/*.client_logo_slider  .slick-dots{display: none !important;}*/

.client_logo_slider .slick-prev {
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  transform: translateY(-50%);
}

.client_logo_slider .slick-next {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 15px);
  right: 0;
  transform: translateY(-50%);
}

.client_logo_slider .slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.slick-dots button {
  font-size: 0px;
  padding: 0;
  margin: 0px 3px 20px 3px;
  border-radius: 100%;
  height: 10px;
  line-height: 10px;
  width: 10px;
  border: 1px solid #ea7617;
  background-color: #fff;
}

.slick-dots .slick-active button {
  background-color: #ea7617;
}

.client_logo_slider {
  padding: 0px 30px;
}

.client_logo_slider .slick-prev,
.client_logo_slider .slick-next {
  transition: 0.2s;
  height: 30px;
  z-index: 9;
  width: 30px;
  line-height: 28px;
  color: #fff;
  background-color: #ea7617;
  border-radius: 5px;
}

.client_logo_slider .slick-prev:hover,
.client_logo_slider .slick-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/*date 03-11-2020 css  start*/

.appint-formbox form.wpcf7-form {
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0);
  /* border-width: ;
    border-radius: ; */
  border-style: none;
  padding-top: 10px;
  /* padding-right: 10px; */
  padding-bottom: 10px;
  /* padding-left: 10px; */
  width: 100%;
}

.appint-formbox input[type="email"],
.appint-formbox input[type="text"],
.appint-formbox input[type="search"],
.appint-formbox input[type="tel"],
.appint-formbox input[type="password"],
.appint-formbox textarea {
  /* Box-model */
  padding: 0 10px 0 10px;
}

.appint-formbox form.wpcf7-form .form-group {
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0);
  /* border-width: ;
    border-radius: ; */
  border-style: none;
  padding-top: 5px;
  /* padding-right: 5px; */
  padding-bottom: 5px;
  /* padding-left: 5px; */
}

.appint-formbox .form-group.form-btnbox .btn {
  background-color: #eaa22b;
  border-color: #eaa22b;
  color: #fff;
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-radius: 25px;
  padding-top: 0px;
  padding-bottom: 20px;
  font-family: Source Sans Pro, sans-serif;
  font-size: 18px;
  font-weight: 600;
  /* box-shadow: ; */
  transition: 0.4s;
  outline: none;
  display: inline-block;
}

.appint-formbox .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442 !important;
  float: left;
  width: 100% !important;
  font-size: 16px;
  margin: 0px 0px 20px 0px !important;
  padding: 8px 10px !important;
  border-radius: 8px;
}

.appint-formbox .wpcf7 form.sent .wpcf7-response-output {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d !important;
  float: left;
  width: 100% !important;
  font-size: 16px;
  margin: 0px 0px 20px 0px !important;
  padding: 8px 10px !important;
  border-radius: 8px;
}

.appint-formbox .form-group.form-grouplast {
  /* margin-bottom: 4px; */
}

.single-details figure {
  margin: 0;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #f49a37;
  overflow: hidden;
  padding: 5px;
}

.single-details figure img {
  object-fit: cover;
  width: 100%;
  max-height: 250px;
  height: 100%;
}

.main_third_waves ul.slick-dots {
  display: flex !important;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

/*-07-01-2021-*/

.top-bannerbox .right-banne-imgbox .custom_section_right_images {
  flex-direction: column;
}

.top-bannerbox .right-banne-imgbox .table {
  width: 100%;
}

.top-bannerbox .right-banne-imgbox .custom_section_right_images .image_block {
  max-width: none;
  margin: 0;
}

.top-bannerbox
  .right-banne-imgbox
  .custom_section_right_images
  .image_block
  img {
  max-width: 500px;
  margin: 0 auto;
}

.top-bannerbox
  .right-banne-imgbox
  .custom_section_right_images
  .image_block.video {
  margin-top: 20px;
  text-align: center;
}

.top-bannerbox
  .right-banne-imgbox
  .custom_section_right_images
  .image_block.video
  iframe {
  min-height: 270px;
  width: 85%;
}

.top-bannerbox
  .right-banne-imgbox
  .custom_section_right_images
  .image_block.last_section {
  margin-top: 25px;
}

/* date 18-11-2020 Lending Page css start*/

.leanding-banner {
  padding: 50px 0;
}

.leanding-banner .container {
  position: relative;
}

.leanding-banner .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
}

.banner-wrap {
  position: relative;
}

.banner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  border-radius: 0 40px 0 0;
  background: -moz-linear-gradient(
    left,
    rgba(126, 209, 249, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(126, 209, 249, 1)),
    color-stop(100%, rgba(123, 191, 175, 0.7))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(126, 209, 249, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(126, 209, 249, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(126, 209, 249, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: linear-gradient(
    to right,
    rgba(126, 209, 249, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
}

.banner-wrap::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 84px;
  right: 0;
  width: 40px;
  background: -moz-linear-gradient(
    bottom,
    rgba(49, 197, 251, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: -webkit-gradient(
    left bottom,
    left top,
    color-stop(0%, rgba(49, 197, 251, 1)),
    color-stop(100%, rgba(123, 191, 175, 0.7))
  );
  background: -webkit-linear-gradient(
    bottom,
    rgba(49, 197, 251, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: -o-linear-gradient(
    bottom,
    rgba(49, 197, 251, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: -ms-linear-gradient(
    bottom,
    rgba(49, 197, 251, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
  background: linear-gradient(
    to top,
    rgba(49, 197, 251, 1) 0%,
    rgba(123, 191, 175, 0.7) 100%
  );
}

.leanding-banner h1 {
  color: #244288;
  font-size: 34px;
  line-height: 1.1;
}

.leanding-banner h3 {
  color: rgb(62 195 250);
}

.leanding-banner .left-col {
  width: 50%;
  z-index: 1;
  position: relative;
  padding: 50px 0 0;
}

.leanding-banner h6 {
  color: #1c3469;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.leanding-banner h6 a {
  color: rgb(62 195 250) !important;
}

.leanding-banner ul {
  list-style: none;
  margin-left: 0;
}

.leanding-banner ul li {
  position: relative;
  padding-left: 17px;
  font-size: 18px;
  margin-bottom: 10px;
}

.leanding-banner ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #4ec9f5;
  border-radius: 50%;
}

.rightImg {
  background-image: url(../images/rightImg.jpg);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  border-radius: 0 40px 0 0;
  position: absolute;
  height: 100%;
  width: 75%;
  top: 0;
  right: 0;
  z-index: -1;
}

.btm-logo {
  margin-top: 30px;
  position: relative;
}

.btm-logo ::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40%;
  height: 40px;
  border-radius: 0 0 40px 0;
  background: -moz-linear-gradient(
    left,
    rgb(20 183 248) 0%,
    rgba(23, 184, 243, 0.8) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgb(20 183 248)),
    color-stop(100%, rgba(23, 184, 243, 0.8))
  );
  background: -webkit-linear-gradient(
    left,
    rgb(20 183 248) 0%,
    rgba(23, 184, 243, 0.8) 100%
  );
  background: -o-linear-gradient(
    left,
    rgb(20 183 248) 0%,
    rgba(23, 184, 243, 0.8) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgb(20 183 248) 0%,
    rgba(23, 184, 243, 0.8) 100%
  );
  background: linear-gradient(
    to right,
    rgb(20 183 248) 0%,
    rgba(23, 184, 243, 0.8) 100%
  );
}

.btm-logo::after {
  content: "";
  position: absolute;
  right: 40%;
  top: 12px;
  background-image: url(../images/shape-arrow.png);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  width: 53px;
  height: 105px;
}

.btm-logo a {
  max-width: 50%;
  display: block;
}

.btm-logo img {
  margin: auto;
}

.logo-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap li {
  padding: 0 15px;
  max-width: 300px;
}

.logo-wrap li::before {
  display: none;
}

/*-08-03-2021-*/

section.capab_state .main_box {
  padding: 90px;
  padding: 7%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  max-width: 1024px;
  margin: 0 auto 50px;
  max-height: 1342px;
  overflow: hidden;
}

section.capab_state .main_box .cap_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.capab_state .main_box .cap_header img {
  max-width: 290px;
  width: 100%;
}

section.capab_state .main_box .cap_header .text_box {
  max-width: calc(100% - 215px);
  width: 100%;
  text-align: center;
  padding: 10px 15px;
  color: #393738;
}

section.capab_state .main_box .cap_header .text_box h1 {
  margin-bottom: 5px;
  color: #393738;
}

section.capab_state .main_box .cap_header .text_box p {
  color: #393738;
  margin: 0;
}

.cap_body h3.title {
  margin-bottom: 10px;
  padding-bottom: 0px;
  border-bottom: 2px solid #32323f;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
}

.cap_body h3.title span {
  background-color: #32323f;
  padding: 10px 15px;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
}

.cap_body p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
  color: #32323f;
}

.footer-aws {
  padding: 0 !important;
  margin-top: 10px !important;
  max-width: 120px;
  height: auto;
  width: 100%;
}

.cap_body .half_cap:nth-child(2),
.cap_body .half_cap:nth-child(3) {
  min-height: 456px;
}

.cap_body .half_cap:nth-last-child(2) {
  float: right;
}

.cap_body .half_cap {
  width: 50%;
}

.cap_body .about_cap {
  margin-top: 15px;
}

.cap_body .left {
  padding: 0 10px;
  margin-bottom: 20px;
  margin-bottom: 25px;
}

.cap_body .left ul {
  margin-bottom: 0;
  margin-left: 20px;
}

.cap_body .left ul li {
  font-size: 18px;
  line-height: 24px;
  list-style-type: disc;
  margin-bottom: 5px;
  color: #32323f;
}

.cap_body p img {
  display: inline-block;
  margin: 15px 10px 10px;
}

.cap_body .half_cap p img {
  max-width: 160px;
}

.cap_body p a {
  color: #32323f;
}

.cap_body p a:hover {
  color: #7c3235;
}

section.certified_section {
  padding-top: 40px;
}

section.certified_section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: space-between;
}

section.certified_section .row .three-block {
  /* max-width: 33.33%;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 35px; */
  max-width: 30%;
  width: 100%;
  padding: 15px;
  margin: 0 10px;
  margin-bottom: 35px;
  border-radius: 4px;
  box-shadow: 0 0 7px 0px #ececec;
  transition: all 0.4s ease-in-out;
}

section.certified_section .row .three-block:hover {
  box-shadow: 0 5px 7px 0px #ececec;
}

.certified_section .icon_box .image_certi {
  margin-bottom: 15px;
  max-width: 350px;
  min-height: 120px;
  min-height: 75px;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.certified_section .icon_box .image_certi img {
  max-height: 110px;
  max-height: 60px;
}

.certified_section .icon_box p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.certified_section .cert_heading {
  text-align: center;
  margin-bottom: 25px;
}

.certified_section .cert_heading h2 {
  font-size: 36px;
  line-height: 40px;
  color: #eaa129;
}

section.capab_state .main_box .main_box_hide {
  max-height: 1200px;
  overflow: hidden;
  overflow-y: auto;
}

section.capab_state .main_box .certified_section .cert_heading h2 {
  color: #32323f;
}

footer {
  background-color: #fff;
}

footer p {
  color: #303030;
}

.footer_logos {
  text-align: center;
  margin-top: 15px;
}

.footer_logos img.footer-aws {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.footer_logos img.footer-logo {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 300px;
}

.schedul-app-box.text-center.pt-60 {
  padding: 40px 0 25px;
}

/*-17-11-2021 Resume Start-*/

section.resume_temp {
  margin-bottom: 30px;
}

section.resume_temp .left,
section.resume_temp .right {
  float: none;
}

section.resume_temp .two_part {
  display: flex;
  align-items: start;
}

section.resume_temp .two_part .left {
  width: 100%;
  max-width: 360px;
  padding-left: 70px;
  background-color: #eaa22b;
  color: #002881;
}

section.resume_temp .two_part .left * {
  color: #002358;
}

section.resume_temp .two_part .right {
  width: 100%;
  padding-left: 55px;
}

section.resume_temp .image_cover {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 70px;
  margin-bottom: 70px;
}

section.resume_temp .two_part .head_info {
  margin-bottom: 40px;
  margin-top: 60px;
}

section.resume_temp .two_part .head_info h1 {
  margin-bottom: 0;
  color: #002358;
}

section.resume_temp .two_part .head_info span {
  display: block;
  color: #002358;
}

section.resume_temp .two_part .head_info p {
  margin: 0;
  color: #002358;
}

section.resume_temp .two_part h3 {
  color: #002358;
  font-size: 24px;
  margin: 0;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

section.resume_temp .two_part h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #002358;
  position: absolute;
  bottom: 0;
  left: 0;
}

section.resume_temp .two_part .right_inner_box h3:after {
  background-color: #eaa22b;
}

section.resume_temp .two_part .inner_box {
  margin-bottom: 60px;
}

section.resume_temp .two_part .inner_box:last-child {
  margin-bottom: 15px;
}

section.resume_temp .two_part .inner_box ul {
  margin: 0;
  padding-right: 10px;
}

section.resume_temp .two_part .inner_box ul li {
  margin-bottom: 10px;
  list-style-type: none;
}

section.resume_temp .two_part .inner_box ul li i.fa {
  width: 30px;
  height: 30px;
  background-color: #002358;
  color: #eaa22b;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

section.resume_temp .two_part .inner_box ul li a {
  padding-left: 40px;
  position: relative;
  display: block;
  line-height: 30px;
}

section.resume_temp .two_part .inner_box ul li a:hover {
  color: #0059b5;
}

section.resume_temp .two_part .inner_box h4 {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 5px;
}

section.resume_temp .two_part .inner_box.education_box ul li {
  margin-bottom: 20px;
}

section.resume_temp .two_part .inner_box.skills_box ul li {
  margin-bottom: 5px;
  list-style-type: disclosure-closed;
  margin-left: 20px;
}

section.resume_temp .two_part .work_box {
  padding-bottom: 50px;
  padding-left: 45px;
  position: relative;
}

section.resume_temp .two_part .work_box:before {
  content: "";
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #002358;
  left: 12px;
  top: 5px;
}

section.resume_temp .two_part .work_box:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-color: #002358;
  position: absolute;
  top: 2px;
  left: 5px;
  border-radius: 50%;
  border: 5px solid #eaa22b;
}

section.resume_temp .two_part .work_box:last-child {
  padding-bottom: 0;
}

section.resume_temp .two_part .work_box h4 {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 0;
  color: #002358;
}

section.resume_temp .two_part .work_box h4 + span {
  font-size: 16px;
  font-weight: 100;
  color: #eaa22b;
  display: block;
  margin-bottom: 8px;
}

section.resume_temp .two_part .work_box h5 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #eaa22b;
}

section.resume_temp .two_part .work_box ol {
  margin: 0;
  padding-left: 22px;
  margin-bottom: 30px;
}

section.resume_temp .two_part .work_box ol:last-child {
  margin-bottom: 0;
}

section.resume_temp .two_part .work_box ol li {
  padding-left: 5px;
  margin-bottom: 5px;
  color: #002358;
}

section.resume_temp .two_part .work_box .sub_details {
  margin-bottom: 20px;
}

section.resume_temp .two_part .work_box .sub_details:last-child {
  margin-bottom: 0;
}

section.resume_temp .two_part .work_box .sub_details h6 {
  margin-bottom: 5px;
  color: #002358;
}

section.resume_temp .two_part .work_box .sub_details p {
  font-size: 15px;
  margin: 0;
  color: #002358;
}

section.resume_temp .two_part .work_box p {
  font-size: 16px;
  color: #002358;
}

section.resume_temp.Mobile_view {
  display: none;
}

/* 16-3-2022 */

.main_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.main_header ul.menu {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
}

.main_header ul.menu li a {
  margin-top: 0;
  margin-right: 10px;
}

header > .container.cf {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}

/* .contact_now a,
.banner_content_box .inner_banner_content_box a {
    background-color: #ff4885;
    color: #fff;
    border: 2px solid #ff4885;
} */

/* .contact_now a:hover,
.banner_content_box .inner_banner_content_box a:hover {
    background-color: transparent;
    color: #ff4885;
} */

.banner_con_text {
  padding: 50px 0;
}

.banner_con_text p:last-child {
  margin-bottom: 0;
}

.main_header ul.menu li:last-child a {
  margin-right: 0;
}

.banner_vid_sec {
  position: relative;
  height: 500px;
}

.banner_content_box .inner_banner_content_box h1,
.banner_content_box .inner_banner_content_box p {
  color: #fff;
}

.main_header .menu-menu-1-container {
  margin-left: 0;
  /* margin-right: 13px; */
}

.banner_content_box .inner_banner_content_box h1 {
  font-size: 40px;
  line-height: 52px;
}

.banner_content_box .inner_banner_content_box p {
  font-size: 22px;
  line-height: 32px;
}

.top-bannerbox {
  display: none;
}

/* .banner_content_box {
    position: absolute;
    left: 0;
    bottom: 59px;
    left: 25px;
} */

.banner_content_box {
  padding: 50px 0;
  height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.banner_vid_sec:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.main_form_section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.right_side_form_con img {
  width: 100%;
  /* object-fit: cover; */
}

.left_side_form,
.right_side_form_con {
  width: 50%;
}

.left_side_form {
  width: 49%;
}

.banner_vid_sec video {
  position: absolute;
  z-index: -1;
  object-fit: cover;
  object-position: 0 0;
}

.appoint-section.pt-60.pb-60 .title-boxes:last-child p:empty:before {
  display: none;
}

.main_third_waves {
  /* padding: 15px; */
}

.main_third_waves .slick-track {
  display: flex;
  align-items: center;
}

.main_third_waves .slick-track .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_third_waves .slick-track .slick-slide img {
  width: auto;
  max-height: 350px;
  object-fit: contain;
}

.main_third_waves .slick-track .slick-slide > div {
}

.main_third_waves .slick-list {
  border: 1px solid #eaa22b;
  /* padding: 15px; */
}

.single-details:nth-child(2) figure img,
.single-details:nth-child(3) figure img,
.single-details:first-child figure img {
  object-fit: contain;
}

.banner_vid_sec video {
  position: static;
}

.banner_vid_sec {
  height: auto;
}

.banner_vid_sec .container {
  position: absolute;
  left: 100px;
  /*max-width: 970px;*/
  top: 50%;
  transform: translate(0, -50%);
}

.banner_content_box {
  height: auto;
}

.middle_box_new {
  max-width: 1550px;
}

.middle_box_new .home-middle-blocbox .title-boxes {
  max-width: 1170px;
  margin-inline: auto;
}

.middle_box_new .home-middle-blocbox .single-details {
  width: calc(20% - 30px) !important;
}
.health_top_header {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.left_health_img h1 {
  color: #dad1bf;
  font-size: 80px;
  opacity: 0.6;
  line-height: 50px;
  display: none;
}
.inner_ken_ch h3 {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 0px;
}
.inner_ken_ch h3,
.inner_ken_ch h5,
.inner_ken_ch a,
.out_inner_ken h1 {
  color: #7c591f;
}
.create_more_wrapper {
  display: flex;
}
p.more_auto_k span:last-child {
  display: block;
  max-width: 380px;
  font-size: 16px;
}
p.more_auto_k {
  display: flex;
  align-items: center;
}
p.more_auto_k span {
  color: #141116;
}
p.more_auto_k span:first-child {
  font-size: 36px;
  /* margin-top: 10px; */
  margin-right: 4px;
  font-weight: 600;
  color: #7c591f;
}
p.more_auto_k span:last-child {
  display: block;
  max-width: 380px;
  font-size: 15px;
  line-height: 17px;
  font-weight: 100;
}
p.ohm {
  font-size: 16px;
  margin-bottom: 3px;
  color: #7c591f;
}
p.uniqe_ct {
  font-size: 16px;
}
p.uniqe_ct span {
  color: #7c591f;
}
.inner_ken_ch h5 {
  font-size: 16px;
  margin-bottom: 2px;
  line-height: 24px;
  font-weight: 100;
}
/* 22-11-2022 */
.kenn-image-ds img {
  clip-path: polygon(0 0, 86% 0%, 86% 100%, 0 79%);
}
p.uniqe_ct span {
  font-style: italic;
}
.second_img_group img {
  width: 100%;
  object-fit: cover;
}
p.qa_border {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 25px;
}
p.qa_border span {
  color: #7c591f;
  font-size: 22px;
  text-align: center;
  display: block;
  font-weight: 600;
}
.thrive_wrap .container {
  max-width: 800px;
}

.create_more_wrapper .left_create_more {
  width: 50%;
  border-right: 1px solid #7c591f;
  padding-right: 5px;
}

.create_more_wrapper .right_create_more {
  width: 50%;
  padding-left: 10px;
}
.create_more_wrapper .right_create_more p {
  font-size: 16px;
}
.footer_thrive p {
  font-size: 13px;
  color: #7c591f;
  letter-spacing: 3px;
}
p.ohm strong span {
  font-style: italic;
}
.create_more_wrapper {
  display: flex;
  border-bottom: 1px solid #7c591f;
  padding-bottom: 20px;
}
.two_half_img {
  display: flex;
  /* flex-wrap: wrap; */
}
.second_img_group {
  /* max-width: 569px; */
  margin: 0 auto;
}
.full_width_img_g {
  margin-bottom: 2px;
}
.top_mental_hjy {
  position: relative;
  margin-top: 110px;
}
.kenn-image-ds {
  padding-top: 10px;
}
.inner_ken_ch h1 {
  color: #dad1bf;
  font-size: 80px;
  opacity: 0.6;
  line-height: 90px;
  margin-left: -2px;
}
.top_mental_hjy .container {
  max-width: 900px;
  margin: 0 auto;
}
.inner_ken_ch h3 {
  padding-top: 20px;
}
.top_mental_hjy .container {
  position: relative;
}
.top_mental_hjy .container:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: block;
  background-image: url(https://3rdwave-marketing.com/wp-content/themes/wave-marketing/images/imgpsh_fullsize_anim.png);
  width: 100%;
  height: 156px;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  width: 100%;
  background-size: cover;
  z-index: -1;
  top: -33px;
}
.two_half_img img {
  width: 50%;
  object-fit: cover;
}

footer .mail-visa-section .visa-section {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 20px;
}

footer .mail-visa-section .visa-section a {
  font-size: 19px;
  color: #303030;
  font-weight: 600;
  margin: 2px 6px;
}

footer .mail-visa-section .visa-section a:hover {
  color: #f49a37;
}

footer .mail-visa-section .visa-img {
  text-align: center;
  margin-bottom: 40px;
}

footer .mail-visa-section .visa-img img {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 400px;
}

/* Responsive */

@media (max-width: 1500px) {
  .home-middle-blocbox .title-boxes h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

@media (max-width: 1180px) {
  .middle_box_new .home-middle-blocbox .single-details {
    width: calc(50% - 30px) !important;
  }

  .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .main_header {
    justify-content: center;
  }

  .main_header .main_header_nav {
    margin-left: unset;
  }

  .main_header .menu-menu-1-container {
    margin-left: unset;
  }

  .single-details {
    width: calc(50% - 30px) !important;
  }

  .single-details figure {
    height: 350px;
  }

  .single-details figure img {
    max-height: 340px;
  }

  .top-bannerbox
    .right-banne-imgbox
    .custom_section_right_images
    .image_block
    img {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  a.btn.default-btn.client-assetment,
  a.btn.schedule_btn[href*="Client-assessment"],
  a.btn.schedule_btn[href*="client-assessment"],
  .main_header ul.menu li a[href*="Client-assessment"],
  .main_header ul.menu li a[href*="client-assessment"],
  .main_header ul.menu li:has(> a[href*="Client-assessment"]),
  .main_header ul.menu li:has(> a[href*="client-assessment"]) {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .left_side_form {
    width: 100%;
  }

  .right_side_form_con {
    width: 100%;
  }

  .appoint-section .appint-formbox {
    max-width: 100%;
    padding: 0 5px;
  }
}

@media (max-width: 991px) {
  .middle_box_new .home-middle-blocbox .single-details {
    width: calc(50% - 30px) !important;
  }

  .banner_content_box .inner_banner_content_box h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .banner_vid_sec:before {
    background: rgb(0 0 0 / 0%);
  }

  .banner_vid_sec {
    height: auto;
  }

  .banner_vid_sec video {
    position: static;

    object-fit: contain;
  }

  .banner_content_box {
    padding-bottom: 0;
    padding-top: 25px;
    height: auto;
    position: relative;
  }

  .banner_content_box .inner_banner_content_box h1,
  .banner_content_box .inner_banner_content_box p {
    color: #000;
  }
}

@media (max-width: 800px) {
  .banner_content_box .inner_banner_content_box h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .main_header .menu-menu-1-container ul li {
    width: 100%;
  }

  .main_header .menu-menu-1-container ul {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 20px;
    row-gap: 20px;
  }

  .main_header .menu-menu-1-container ul li a {
    margin: 0;
    width: 100%;
    min-width: 235px;
  }
}

@media (max-width: 767px) {
  .leanding-banner .left-col {
    width: 70%;
  }
  .top_mental_hjy:before {
    top: -80px;
  }
  .banner_content_box .inner_banner_content_box h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .banner_content_box .inner_banner_content_box p {
    font-size: 20px;
    line-height: 27px;
  }

  .leanding-banner h1 {
    font-size: 30px;
  }

  .leanding-banner h3 {
    font-size: 24px;
  }

  .leanding-banner h6 {
    font-size: 18px;
  }

  .cap_body .half_cap {
    width: 100%;
    min-height: unset !important;
    margin-bottom: 15px;
  }

  section.capab_state .main_box .cap_header {
    flex-direction: column;
    justify-content: center;
  }

  section.capab_state .main_box .cap_header .text_box {
    max-width: none;
  }

  section.certified_section .row .three-block {
    max-width: 46%;
  }
}
@media (max-width: 676px) {
  .inner_ken_ch h3 {
    font-size: 15px;
    line-height: 24px;
    padding-top: 0;
  }
  .kenn-image-ds {
    height: 260px;
    margin-bottom: 20px;
  }
  .kenn-image-ds img {
    clip-path: polygon(0 0, 86% 0%, 86% 100%, 0 79%);
    height: 100%;
  }
  .left_health_img {
    display: flex;
  }
  .inner_ken_ch h1 {
    display: none;
  }
  .left_health_img h1 {
    display: block;
    height: fit-content;
    margin-top: 20px;
  }
  .kenn-image-ds {
    height: 260px;
  }
  .left_health_img h1 {
    font-size: 54px;
    margin-top: 30px;
  }
  .health_top_header {
    flex-wrap: wrap;
  }
  .inner_ken_ch {
    width: 100%;
  }
  .inner_ken_ch h1 {
    color: #dad1bf;
    font-size: 50px;
    line-height: 60px;
    opacity: 0.6;
    /* line-height: 80px; */
  }
  .create_more_wrapper .left_create_more {
    width: 100%;
    border-right: 0;
    padding-right: 0;
  }
  .create_more_wrapper .right_create_more {
    width: 100%;
    padding-left: 0;
  }
  .create_more_wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 639px) {
  .middle_box_new .home-middle-blocbox .single-details {
    width: calc(100% - 30px) !important;
  }

  .main_header .logo a img {
    width: 340px;
  }

  .main_header .menu-menu-1-container ul li a {
    font-size: 15px;
    min-width: 200px;
    line-height: 30px;
    height: 35px;
  }

  .main_header .menu-menu-1-container {
    padding-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .leanding-banner .container::before {
    display: none;
  }

  .rightImg {
    width: 100%;
    height: 52vw;
    position: static;
  }

  .leanding-banner .left-col {
    width: 80%;
  }

  .banner_content_box .inner_banner_content_box h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .banner_content_box .inner_banner_content_box p {
    font-size: 18px;
    line-height: 24px;
  }

  .banner-wrap::after {
    width: 30px;
    top: 29px;
  }

  .banner-wrap::before {
    height: 30px;
  }

  .btm-logo ::before {
    height: 30px;
    top: 6%;
  }

  .btm-logo::after {
    width: 45px;
    height: 90px;
    top: -32px;
  }

  .leanding-banner {
    padding: 24px 0px 50px 0px;
  }

  .top-bannerbox
    .right-banne-imgbox
    .custom_section_right_images
    .image_block
    img {
    width: 100%;
  }

  .top-bannerbox
    .right-banne-imgbox
    .custom_section_right_images
    .image_block.video
    iframe {
    min-height: 200px;
    width: 100%;
    max-height: 330px;
  }

  section.certified_section .row .three-block {
    max-width: 100%;
  }
}

/* date 18-11-2020 Lending Page css End*/

@media only screen and (max-width: 1100px) {
  section.capab_state .main_box {
    max-width: 910px;
    background-image: none !important;
    padding: 5%;
    max-height: none;
  }

  section.capab_state .main_box .main_box_hide {
    overflow: visible;
    max-height: none;
  }
}

@media only screen and (max-width: 991px) {
  .top-bannerbox .left-banercont-box a.default-btn {
    margin-left: 0 !important;
  }

  section.resume_temp.Mobile_view {
    display: block;
  }

  section.resume_temp.Desktop_view {
    display: none;
  }

  .custom_section_right_images .image_1 img,
  .custom_section_right_images .image_2 img {
    max-height: inherit;
  }

  .custom_section_right_images .image_1 img,
  .custom_section_right_images .image_2 img {
    width: 100%;
  }

  .social-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .single-details {
    width: 29%;
  }

  .page-template-mhg-page .logo a img {
    width: 380px;
    padding-right: 60px;
  }

  section.resume_temp .two_part {
    flex-direction: column;
  }

  section.resume_temp .two_part:first-child {
    align-items: center;
  }

  section.resume_temp .two_part:first-child .left {
    padding: 0;
    width: auto;
    height: 200px;
    background-color: transparent;
  }

  section.resume_temp .two_part:first-child .left .image_cover {
    margin: 0;
  }

  section.resume_temp .two_part:first-child .head_info {
    margin-top: 20px;
  }

  section.resume_temp .two_part .left {
    padding: 20px 15px;
    max-width: 100%;
  }

  section.resume_temp .two_part .left .inner_box:last-child {
    margin-bottom: 0;
  }

  section.resume_temp .two_part .inner_box {
    margin-bottom: 30px;
  }

  section.resume_temp .two_part .right {
    padding: 0;
  }

  section.resume_temp .two_part:not(:first-child) .right {
    margin-top: 35px;
  }

  section.resume_temp .two_part h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  section.resume_temp .two_part .work_box h4 {
    font-size: 16px;
    line-height: 24px;
  }

  section.resume_temp .two_part:first-child .left {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .single-details {
    width: 45%;
  }

  .custom_section_right_images .image_block {
    max-width: none !important;
    width: 100%;
    margin: 0 !important;
  }

  .top-bannerbox
    .right-banne-imgbox
    .custom_section_right_images
    .image_block.last_section {
    margin-top: 25px !important;
  }

  .custom_section_right_images .image_block:first-child img {
    height: auto;
  }

  .custom_section_right_images {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .top-bannerbox .right-banne-imgbox {
    height: auto !important;
  }

  .top-bannerbox .right-banne-imgbox .table {
    margin: 0;
    width: 100%;
  }

  .custom_section_right_images .image_block.image_block_right.video {
    margin-top: 25px !important;
  }

  .custom_section_right_images .image_block.image_block_right.video iframe {
    height: 200px;
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .single-details {
    width: 80%;
  }
  .two_half_img img {
    width: 100%;
    object-fit: cover;
  }
  .two_half_img {
    flex-wrap: wrap;
  }
  .left_health_img h1 {
    font-size: 45px;
    margin-top: 30px;
  }
  .out_inner_ken h1 {
    font-size: 18px;
    line-height: 21px;
    margin-top: 4px;
  }
  footer .mail-visa-section .visa-section {
    justify-content: center;
  }
}

/*add new css*/
.single-details:first-child figure img {
  max-height: 198px;
  min-width: 308px;
}
/*date 26-10-2020 css end*/

/* @media only print {
    section.resume_temp  {
        transform: scale(0.8);
    }
} */

/* 29-11-22 starts */

.christmas-template .header-template h3 {
  font-family: "Alex Brush", sans-serif;
  padding: 30px 0px;
}
.christmas-template .template-wrapper-christmas {
  background-image: url(https://3rdwave-marketing.com/wp-content/uploads/2021/images/bg-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  position: relative;
}
.header-template {
  display: flex;
  justify-content: space-between;
}
.header-flex-wrapper-template-left {
  /* max-width: 70%;
  width: 100%; */
  max-width: 100%;
  width: calc(100% - 350px);
}
/* .template-profile-wrapper {
  max-width: 40%;
  width: 100%;
  right: 0;
  position: absolute;
  top: 0;
}
.template-profile-wrapper img {
  margin-left: auto;
} */
.header-flex-wrapper-template-left h3 {
  text-align: center;
  font-size: 46px;
  color: #fff;
  line-height: 50px;
  letter-spacing: 2.5px;
}
.header-flex-wrapper-template-left h6 {
  text-align: center;
  background: #fff;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #103063;
  justify-content: center;
  margin-bottom: 0px;
  word-break: break-word;
  line-height: 68px;
}
.header-flex-wrapper-template-left h1 {
  font-family: "Neometric Alt", sans-serif;
  font-weight: 900;
  font-size: 68px;
  background: #fff;
  padding: 15px 9px;
  color: #174a97;
  text-align: center;
}
.header-flex-wrapper-template-left h1 span {
  color: #eb1a3c;
}
.template-profile-wrapper img {
  max-width: 350px;
  width: 100%;
}
.header-flex-wrapper-template-left h4 {
  font-family: "Alex Brush", sans-serif;
  font-size: 42px;
  margin-bottom: 0;
  padding-top: 0px !important;
  background: #fff;
  padding: 0px 15px;
  font-weight: 600;
  color: #174a97;
  text-align: center;
}
.header-flex-wrapper-template-left h2 {
  font-family: "Alex Brush", sans-serif;
  font-size: 68px;
  text-align: center;
  color: #fff;
  letter-spacing: 2.5px;
  font-weight: 300;
  line-height: 78px;
  margin-bottom: 0;
}
.header-flex-wrapper-template-left p {
  text-align: center;
  font-family: "Alex Brush", sans-serif;
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 1.5px;
}
.template-wrapper-christmas .flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 30px;
}
.template-wrapper-christmas .flex-wrapper .date-venue-wrapper h5 {
  text-align: center;
  font-family: "Alex Brush", sans-serif;
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-decoration: underline;
  line-height: 43px;
}
.template-wrapper-christmas .flex-wrapper .date-venue-wrapper h4 {
  text-align: center;
  font-family: "Alex Brush", sans-serif;
  color: #fff;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 3.5px;
  padding-top: 10px;
}
.template-wrapper-christmas .komo-text {
  text-decoration: none !important;
  padding-top: 10px;
  font-size: 27px !important;
  font-weight: 300 !important;
}
.christmans-text {
  font-family: "Alex Brush", sans-serif;
  font-size: 48px;
  line-height: 38px;
  text-align: center;
  transform: rotate(-9deg);
  color: #174a97;
  font-weight: 600;
  letter-spacing: 3.5px;
  padding-bottom: 20px;
}
.template-wrapper-christmas .supporter-section h6 {
  text-align: center;
  font-size: 22px;
  color: #174a97;
  text-decoration: underline;
  padding-top: 30px;
}
.template-wrapper-christmas .supporter-section {
  max-width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  background: #ffffffad;
  border-radius: 10px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.template-wrapper-christmas .supporter-section p {
  padding: 15px 30px;
  text-align: center;
  color: #174a97;
  line-height: 30px;
  font-size: 18px;
  /* background: #ffffffad; */
  font-weight: 600;
}
.template-footer .center-footer p {
  text-align: center;
  font-size: 20px;
  color: #fff;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 600;
  font-style: italic;
}
.template-footer .center-footer .web-link a {
  font-size: 18px;
  color: #fff;
  font-style: initial;
  font-weight: 300;
  text-transform: lowercase;
  position: relative;
}
.template-footer .center-footer .web-link a:after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #fff;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
.template-footer .center-footer .web-link a:hover:after {
  width: 100%;
}
.template-footer .paid-text {
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  padding-bottom: 15px;
}
.kc-title-main {
  background: #fff;
}
/* 29-11-22 ends */

.page-template-melissa-patterson-halzey-kcmo-3rddistrict-atlarge header,
.page-template-melissa-patterson-halzey-kcmo-3rddistrict-atlarge footer {
  display: none !important;
}
.christmas-template {
  padding: 30px 0px;
}
.template-footer .flex-wrapper-footer {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
}
.template-footer .flex-wrapper-footer .center-footer {
  max-width: 100%;
  width: 100%;
}
.template-footer .flex-wrapper-footer .center-footer {
  text-align: center;
}
.template-footer .flex-wrapper-footer .right-footer h5 {
  text-align: center;
  color: #fff;
}
.template-footer .flex-wrapper-footer .center-footer p img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
.donation-btn button {
  cursor: pointer;
  background: #de373d;
  border-color: #de373d;
  border-radius: 28px;
  font-weight: bold;
  line-height: 24px;
  font-size: 24px;
  color: #fff;
  max-width: 380px;
  width: 100%;
  margin-bottom: 20px !important;
  height: 54px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
.donation-btn button:hover {
  background-color: #fff;
  color: #de373d;
}
.donation-btn button:hover i {
  color: #de373d;
}
.donation-btn button span {
  margin-right: 15px;
}
.donation-btn button span i {
  font-size: 30px;
}
