@charset "UTF-8";
:root {
  --red: #e3001b;
  --blue: #194e9d;
  --black: #1f1f1f;
  --body-font: "Rubik", sans-serif;
  --title-font: "Rubik", sans-serif;
}

a.button {
  color: var(--blue);
  padding: 12px 15px;
  border: 1px solid var(--blue);
}
a.button:hover {
  color: white;
  background: var(--blue);
}

body {
  line-height: 1.6;
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--black);
}

a {
  color: var(--black);
}
a:hover {
  text-decoration: none;
  color: var(--blue);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--title-font);
  font-weight: bold;
}

section {
  padding: 130px 0;
}

.container {
  max-width: 1200px;
}

.section-title {
  font-size: 42px;
  text-align: center;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 40px;
}

/* Top Bar */
.top-bar {
  top: 0;
  background: var(--red) !important;
  color: white;
  font-size: 0.9rem;
  padding: 8px 0;
  z-index: 10;
  width: 100%;
}
.top-bar a {
  color: white;
}
.top-bar a:hover {
  color: #ddd;
}
.top-bar ul {
  padding: 0;
  margin: 0;
}
.top-bar li {
  list-style-type: none;
  display: inline-block;
}
.top-bar .social-icons li {
  padding: 0 10px;
}
.top-bar .contact li {
  margin-right: 20px;
}

/* End Top Bar */
/* Header */
header {
  padding: 0px 0;
}
header nav ul {
  padding: 0;
  margin: 0;
  text-align: right;
}
header nav ul li {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
header nav ul li ul li ul {
  display: none;
  padding-top: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 250px !important;
}
header nav ul li ul {
  display: none;
  position: absolute;
  left: 0;
  padding-top: 15px;
  color: white;
  text-align: left;
  width: 250px;
  z-index: 999;
}
header nav ul li ul li {
  display: block;
  margin-left: 0;
  padding: 12px 18px;
  background: var(--blue);
}
header nav ul li ul li:hover {
  background: #0e3b7b;
}
header nav ul li ul li:hover:before {
  display: none;
}
header nav ul li ul li a {
  color: white;
  font-size: 15px;
}
header nav ul li ul li a:hover {
  color: white;
}
header nav ul li ul li a:hover:before {
  display: none;
}
header nav ul li a {
  font-weight: 500;
  border-bottom: 3px solid transparent;
  position: relative;
}
header nav ul li a:before {
  content: "";
  height: 2px;
  background: var(--blue);
  width: 0%;
  bottom: -6px;
  left: 0;
  display: block;
  position: absolute;
  transition: 0.5s all ease;
}
header nav ul li a:hover:before {
  width: 100%;
}
header .fa-angle-right {
  float: right;
  margin-top: 8px;
}

.read-more-link {
  position: relative;
}

.read-more-link:before {
  content: "";
  height: 1px;
  background: var(--blue);
  width: 0%;
  bottom: -6px;
  left: 0;
  display: block;
  position: absolute;
  transition: 0.5s all ease;
}

.read-more-link:hover:before {
  width: 100%;
}

/*End Header*/
/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  height: 73vh;
}
.slider #myVideo {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.slider .filter {
  background: black;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.slider .container {
  position: relative;
  height: 100%;
}
.slider .slider-content-wrapper {
  height: 100%;
}
.slider .slider-content {
  color: white;
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 800px;
  transform: translateY(-50%);
  z-index: 2;
}
.slider .slider-content h1 {
  font-size: 60px;
  margin-bottom: 40px;
  position: relative;
}
.slider .slider-content h1:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0px;
  height: 5px;
  width: 200px;
  z-index: 999;
  background: var(--blue);
}
.slider .slider-content a.button {
  background: var(--blue);
  color: white;
  padding: 7px 20px;
  font-size: 16px;
  border-radius: 40px;
  transition: 0.3s all ease;
}
.slider .slider-content a.button:hover {
  background: var(--red);
}

/* End Slider */
/* What we offer */
.what-we-offer {
  text-align: left;
}
.what-we-offer .offer-item {
  min-height: 100%;
  border-radius: 5px 5px 0 0;
  background: #f6f6f6;
  border-bottom: 3px solid var(--red);
  padding-bottom: 50px 20px;
  transition: 0.3s all ease;
  position: relative;
  z-index: 9;
  padding-top: 15px;
}
.what-we-offer .offer-item:after {
  transition: 0.5s all ease;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: var(--blue);
  z-index: -1;
}
.what-we-offer .offer-item .icon {
  margin-bottom: 10px;
  padding-left: 30px;
  width: 94px;
  height: 94px;
}
.what-we-offer .offer-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  padding: 0 30px;
}
.what-we-offer .offer-item p {
  padding: 0 30px;
}
.what-we-offer .offer-item p:last-child {
  font-size: 16px;
}
.what-we-offer .offer-item p:last-child a {
  color: var(--blue);
  text-align: left;
}
.what-we-offer .offer-item:hover {
  border-bottom: 3px solid var(--blue);
  color: white;
}
.what-we-offer .offer-item:hover:after {
  height: 100%;
}
.what-we-offer .offer-item:hover h3 {
  color: white;
}
.what-we-offer .offer-item:hover a {
  color: white !important;
}
.what-we-offer .col-lg-4:nth-child(1) .offer-item .icon {
  background: url("/wp-content/uploads/2020/10/bharatre_risk_managers.png") left/cover no-repeat;
  margin-left: 30px;
}
.what-we-offer .col-lg-4:nth-child(2) .offer-item .icon {
  background: url("/wp-content/uploads/2020/10/bharatre_we_are_different.png") left/cover no-repeat;
  margin-left: 30px;
}
.what-we-offer .col-lg-4:nth-child(3) .offer-item .icon {
  background: url("/wp-content/uploads/2020/10/bharatre_everywhere.png") left/cover no-repeat;
  margin-left: 30px;
}
.what-we-offer .col-lg-4:nth-child(1) .offer-item:hover .icon {
  background: url("/wp-content/uploads/2020/10/bharatre_risk_managers_white.png") left/cover no-repeat;
}
.what-we-offer .col-lg-4:nth-child(2) .offer-item:hover .icon {
  background: url("/wp-content/uploads/2020/10/bharatre_different_white.png") left/cover no-repeat;
}
.what-we-offer .col-lg-4:nth-child(3) .offer-item:hover .icon {
  background: url("/wp-content/uploads/2020/10/bharatre_everywhere_white.png") left/cover no-repeat;
}

/*End What we offer*/
/*Why Bharat Re*/
h3#m-menu-title {
  display: inline-block;
  position: relative;
  color: var(--blue);
}
h3#m-menu-title:after {
  border-bottom: 2px solid var(--blue);
  padding-bottom: 5px;
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  left: 0;
}

.why-bharat-re {
  background: url("../images/pre-footer-bg.png") center/cover no-repeat;
  color: white;
  text-align: center;
}
.why-bharat-re h2 + p {
  max-width: 800px;
  margin: 0 auto 40px;
}
.why-bharat-re .usp {
  max-width: 90%;
  margin: 0 auto;
  background: white;
  padding: 40px 20px;
}
.why-bharat-re .usp img {
  transition: 0.3s ease all;
  width: 130px;
}
.why-bharat-re .usp p {
  margin: 15px 0 0;
  font-weight: bold;
  font-size: 20px !important;
}
.why-bharat-re .usp a:hover p {
  color: var(--red);
}
.why-bharat-re .usp .row > div:hover img {
  transform: scale(1.1);
}

/*End Why BharatRe*/
/*Highlights*/
.highlights {
  background: url("../images/highlights-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 90px 0;
  position: relative;
}
.highlights:before {
  content: "";
  background: #194e9de6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.highlights h3 {
  font-size: 40px;
}
.highlights p {
  font-size: 20px;
  margin-top: 10px;
  padding: 0 20px;
}

/*End Highlights*/
/*Testimonials*/
.testimonials ul {
  list-style-type: none;
}
.testimonials ul li {
  padding: 10px 60px 60px;
}
.testimonials ul li:before {
  display: none;
}
.testimonials ul li .testimonial-item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.09) !important;
  background: white;
}
.testimonials ul li .testimonial-item img {
  width: auto !important;
}
.testimonials ul li .testimonial-item img.rounded-full {
  display: block;
}
.testimonials ul li .testimonial-item p {
  font-style: italic;
  padding-right: 30px;
}
.testimonials ul li .testimonial-item .author {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  place-content: center;
}
.testimonials ul li .testimonial-item .author .author-img {
  margin-right: 10px;
  overflow: hidden;
}
.testimonials ul li .testimonial-item .author .author-img img {
  display: inline-block;
}
.testimonials ul li .testimonial-item .author .author-info span {
  display: block;
}
.testimonials ul li .testimonial-item .author .author-info .author-name {
  color: var(--blue);
  font-weight: bold;
}
.testimonials ul li .testimonial-item .author .author-info .author-meta {
  font-size: 14px;
}
.testimonials .owl-dots {
  text-align: center;
}
.testimonials .owl-dots span {
  width: 40px;
  height: 6px;
  background: var(--blue);
  display: block;
  margin: 0 10px;
}
.testimonials .owl-dots .owl-dot.active span {
  background: var(--red);
}

/*End Testimonials*/
/*Form*/
.form,
form {
  text-align: center;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form select,
.form textarea,
form input[type=text],
form input[type=email],
form input[type=tel],
form select,
form textarea {
  padding: 7px 10px;
  border: 1px solid var(--blue);
  width: 100%;
  height: 100%;
}
.form select,
form select {
  color: inherit;
  color: #818181;
}
.form .button,
form .button {
  padding: 7px 10px !important;
}
.form.contact-page input[type=text],
.form.contact-page input[type=email],
.form.contact-page textarea,
form.contact-page input[type=text],
form.contact-page input[type=email],
form.contact-page textarea {
  padding: 10px;
  border: 1px solid var(--blue);
  width: 100%;
}
.form.contact-page .button,
form.contact-page .button {
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  padding: 10px !important;
}
.form p,
form p {
  margin-bottom: 30px;
}
.form .form-row,
form .form-row {
  justify-content: space-between;
}
.form .form-row p,
form .form-row p {
  width: 48%;
}
.form .button,
form .button {
  width: 100%;
  font-weight: bold;
  font-size: 20px;
  padding: 18px;
  background: var(--blue);
  color: white;
  outline: none;
  border: none;
}
.form .button:hover,
form .button:hover {
  background: var(--red);
}

.blue {
  color: var(--blue);
}

/*End Form*/
/*Pre Footer*/
.pre-footer {
  background: url("../images/pre-footer-bg.png") center/cover no-repeat;
  color: white;
  padding: 90px 0;
}
.pre-footer a.link {
  color: white;
  transition: 0.3s all ease;
  font-weight: bold;
}
.pre-footer a.link:hover {
  color: var(--black);
}
.pre-footer a.button {
  background: var(--blue);
  color: white;
  padding: 13px 23px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: 0.3s all ease;
}
.pre-footer a.button:hover {
  background: white;
  color: var(--blue);
  border: 2px solid var(--red);
}

/*End Pre Footer*/
/*Footer*/
footer {
  padding: 80px 0;
  background: url("../images/footer-background.png") bottom/cover no-repeat;
  font-size: 15px;
  color: white;
}
footer h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
footer a {
  color: white;
}
footer a:hover {
  color: var(--red);
}
footer ul {
  padding-left: 20px;
}
footer li {
  margin-bottom: 10px;
}
footer .no-list {
  list-style-type: none;
  padding: 0;
}
footer .social-icons li {
  display: inline-block;
  margin-right: 10px;
}

/*End Footer*/
/*Copyright*/
.copyright {
  background: #111a3e;
  padding: 15px 0;
  font-size: 14px;
  color: white;
}
.copyright a {
  color: var(--red);
}

.red {
  color: var(--red);
}

li.phone {
  padding-left: 20px;
  position: relative;
}
li.phone:before {
  content: "";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free", serif;
}

/*End Copyright*/
/*Page*/
.page-content {
  padding: 60px 0;
  font-size: 16px;
}
.page-content ul {
  list-style-type: none;
  padding-left: 20px;
}
.page-content ul li {
  position: relative;
  margin-bottom: 20px;
}
.page-content ul li:before {
  content: "›";
  color: var(--red);
  font-size: 22px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: -23px;
  line-height: 24px;
}
.page-content h2 {
  color: var(--red);
}

.page-header {
  padding: 70px 0 70px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  border-bottom: 4px solid var(--red);
}
.page-header:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.5;
  z-index: 1;
}
.page-header h1 {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 33;
  color: white;
  text-transform: uppercase;
}

.highlight {
  background: var(--blue);
  position: relative;
  color: white;
  border-radius: 5px;
  z-index: 1;
}
.highlight p:last-child {
  padding: 0;
  margin: 0;
  font-weight: bold;
}
.highlight p:first-child {
  font-style: italic;
  font-family: "Georgia";
}
.highlight:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  height: 100px;
  background: url(http://localhost:3001/wp-content/themes/bharatre/images/quote.png) center/cover no-repeat;
  width: 100px;
  z-index: -1;
  opacity: 0.2;
}

/*End Page*/
.highlights-icon {
  display: none;
}
.highlights-icon img {
  display: none;
}

.alignleft {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

.page-content .col,
.page-content .col-1,
.page-content .col-10,
.page-content .col-11,
.page-content .col-12,
.page-content .col-2,
.page-content .col-3,
.page-content .col-4,
.page-content .col-5,
.page-content .col-6,
.page-content .col-7,
.page-content .col-8,
.page-content .col-9,
.page-content .col-auto,
.page-content .col-lg,
.page-content .col-lg-1,
.page-content .col-lg-10,
.page-content .col-lg-11,
.page-content .col-lg-12,
.page-content .col-lg-2,
.page-content .col-lg-3,
.page-content .col-lg-4,
.page-content .col-lg-5,
.page-content .col-lg-6,
.page-content .col-lg-7,
.page-content .col-lg-8,
.page-content .col-lg-9,
.page-content .col-lg-auto,
.page-content .col-md,
.page-content .col-md-1,
.page-content .col-md-10,
.page-content .col-md-11,
.page-content .col-md-12,
.page-content .col-md-2,
.page-content .col-md-3,
.page-content .col-md-4,
.page-content .col-md-5,
.page-content .col-md-6,
.page-content .col-md-7,
.page-content .col-md-8,
.page-content .col-md-9,
.page-content .col-md-auto,
.page-content .col-sm,
.page-content .col-sm-1,
.page-content .col-sm-10,
.page-content .col-sm-11,
.page-content .col-sm-12,
.page-content .col-sm-2,
.page-content .col-sm-3,
.page-content .col-sm-4,
.page-content .col-sm-5,
.page-content .col-sm-6,
.page-content .col-sm-7,
.page-content .col-sm-8,
.page-content .col-sm-9,
.page-content .col-sm-auto,
.page-content .col-xl,
.page-content .col-xl-1,
.page-content .col-xl-10,
.page-content .col-xl-11,
.page-content .col-xl-12,
.page-content .col-xl-2,
.page-content .col-xl-3,
.page-content .col-xl-4,
.page-content .col-xl-5,
.page-content .col-xl-6,
.page-content .col-xl-7,
.page-content .col-xl-8,
.page-content .col-xl-9,
.page-content .col-xl-auto {
  padding-left: 20px;
  padding-right: 20px;
}
.member-item h3 {
  font-size: 20px !important;
  color: #194e9d !important;
  margin-bottom: 5px;
}

.custom-shadow {
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.514) !important;
}

.trigger h4 {
  color: #000;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
}
.trigger h4:before {
  content: "›";
  position: absolute;
  color: var(--red);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.trigger h4 span {
  display: none;
}

.trigger[aria-expanded=true] h4:before {
  transform: rotate(90deg);
  top: 0%;
}

.accordion .accordion .card {
  background: none !important;
}

.accordion .accordion .trigger h4 {
  font-size: 18px;
}

.trigger h4 span {
  font-weight: 600;
}

.specialisation {
  color: var(--blue) !important;
}

.accordion .card {
  border-radius: 0;
  margin-bottom: 4px;
}

.accordion .card-body {
  border-bottom: 1px solid #eee;
  padding: 1.5rem;
}

.accordion .card-body {
  background: #f9f9f9 !important;
}

.accordion-wrapper .card {
  border: none !important;
}

.accordion .card-header {
  background: none;
  font-weight: 500 !important;
  padding: 0;
}

.card:hover > .card-header h2 {
  color: var(--blue) !important;
}

.accordion .card-header button {
  outline: none !important;
  color: #ffffff;
  text-decoration: none !important;
  box-shadow: none !important;
}

.accordion .card-header button:hover {
  text-decoration: none;
}

.trigger[aria-expanded=true] .fa-minus-circle {
  display: block;
}

.trigger[aria-expanded=true] .fa-plus-circle {
  display: none;
}

.trigger[aria-expanded=false] .fa-minus-circle {
  display: none;
}

.trigger[aria-expanded=false] .fa-plus-circle {
  display: block;
}

.accordion li {
  margin-bottom: 5px !important;
}

.collapsing {
  transition: all 1s ease-in !important;
}

.square:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}

.square {
  background-position: top !important;
  background-size: cover !important;
}

.breadcrumbs {
  padding: 10px 0;
  background: #f6f6f6;
}

#crumbs {
  font-size: 15px;
  color: var(--red);
}
.location {
  font-size: 15px !important;
  color: gray;
  font-weight: normal;
  margin-top: 8px;
  display: block;
}

img.frill-right {
  border-bottom: 4px solid var(--blue);
}

img.frill-left {
  border-bottom: 4px solid var(--red);
}

.delimitter {
  font-size: 12px;
}

.side-menu {
  background: var(--blue);
  list-style-type: none;
  border-bottom: 3px solid var(--red);
}
.side-menu .title {
  background: #1453aa;
}

.sidebar-menu .mm-navbar {
  background: var(--blue);
}
.sidebar-menu .mm-navbar a {
  color: white !important;
}
.sidebar-menu .mm-btn.mm-btn_prev.mm-navbar__btn {
  color: white !important;
}
.sidebar-menu .mm-panel:after {
  display: none;
}

.side-menu ul {
  padding: 0;
}

.side-menu li {
  margin: 0 !important;
}

.side-menu li a {
  display: block;
  color: white;
  transition: 0.3s all ease;
  border-left: 4px solid #093577;
}

.side-menu ul > li > a:not(.mm-listitem__btn):hover {
  background: var(--red);
  color: white;
  border-left: 4px solid #b31225;
}

.side-menu li a[aria-current=page] {
  background: var(--red);
  border-left: 4px solid #b31225;
  color: white;
}

.side-menu li a[aria-current=page]:hover {
  color: white;
}

.callout-cta {
  background: #efefef;
  color: #303030;
  text-align: center;
  padding: 30px 20px;
  border-bottom: 3px solid var(--blue);
}
.callout-cta a {
  color: #303030 !important;
}
.callout-cta img {
  margin-bottom: 20px;
}
.callout-cta h4 {
  color: var(--blue);
}

header {
  z-index: 9;
  width: 100%;
  z-index: 99999;
}
header .top-container {
  padding: 20px 22px;
  border-radius: 5px 5px;
  background: white !important;
}
header .container {
  position: relative;
}
header #mega-menu {
  border-bottom: 4px solid var(--red);
  display: none;
  position: absolute;
  width: 100%;
  top: 120px;
  background: white;
  z-index: 999;
  padding: 35px;
  box-shadow: 0 19px 18px #34343470;
  width: 1200px;
  left: 50%;
  transform: translateX(-50%);
}
header .menu-links {
  padding: 0;
  margin: 0;
}
header .menu-links li {
  position: relative;
  border-bottom: 1px solid #eee;
  list-style-type: none;
}
header .menu-links li:before {
  content: "›";
  position: absolute;
  color: var(--red);
  top: 9px;
  left: 0;
}
header .menu-links li:hover:before {
  display: block;
}
header .menu-links li a {
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  transition: 0.3s all ease;
  display: block;
}
header .menu-links li a:hover {
  color: red;
}
header .mt-6 {
  margin-top: 25px;
}
header #close {
  position: absolute;
  bottom: -35px;
  right: 5px;
  font-size: 24px;
  color: #939393;
}
header .sub-menu-group {
  margin-left: 25px;
}
header .sub-menu-group div:last-child {
  border: none !important;
}

#claims-app {
  overflow: hidden;
}
#claims-app .industry-wrapper {
  padding: 20px 0;
}
#claims-app .type-wrapper {
  padding: 20px;
  margin-bottom: 5px;
}
#claims-app .row {
  margin: 0;
}
#claims-app h5 {
  margin: 0;
  padding: 0;
  color: var(--blue);
}
#claims-app ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  grid-gap: 4px;
  place-items: center;
  text-align: center;
  justify-content: center;
  align-items: start;
}
#claims-app ul li {
  margin: 0;
  padding: 0;
  width: 100%;
}
#claims-app ul li:before, #claims-app ul li:after {
  display: none;
  height: 100%;
}
#claims-app ul li a {
  padding: 5px 10px !important;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
#claims-app ul li a:hover {
  color: var(--red);
}
#claims-app ul li a.selected {
  color: var(--red);
}

.domain-members {
  margin: 20px 0;
  background: #f8f8f8;
}

.sidebar-new {
  background: white;
}
.sidebar-new ul {
  padding: 0;
  margin: 0;
}
.sidebar-new .menu li:before {
  display: none;
}
.sidebar-new li {
  position: relative;
  border-bottom: 1px solid #eee;
  list-style-type: none;
  padding: 0 20px;
  margin-bottom: 0 !important;
}
.sidebar-new li.current_page_item {
  background: #e8e8e8;
}
.sidebar-new li:hover {
  background: #e8e8e8;
}
.sidebar-new li:hover a:before {
  color: var(--blue);
}
.sidebar-new a {
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: block;
}
.sidebar-new a:before {
  content: "›";
  position: absolute;
  color: var(--red);
  top: 9px;
  left: 0;
}
.sidebar-new .menu-item-has-children:hover {
  background: white !important;
}
.sidebar-new .menu-item-has-children {
  background: white !important;
  padding: 0;
}
.sidebar-new .menu-item-has-children.current_page_item > a {
  background: #e8e8e8 !important;
}
.sidebar-new .menu-item-has-children > a {
  padding: 8px 20px;
}
.sidebar-new .menu-item-has-children ul li {
  padding: 0 20px;
}
.sidebar-new .menu-item-has-children > a:hover {
  background: #e8e8e8;
}
.sidebar-new .menu-item-has-children > a::before {
  left: 8px;
}

.client-carousel .client-item {
  height: 250px;
  place-items: center;
  display: grid;
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 40px;
}
.client-carousel .owl-item.active.center .client-item {
  background: var(--red);
}
.client-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.client-carousel .owl-dots span {
  width: 10px;
  border-radius: 50%;
  height: 10px;
  background: var(--blue);
  display: block;
  margin: 0 10px;
}
.client-carousel .owl-dots .owl-dot.active span {
  background: var(--red);
}

#jobs a.button {
  background: var(--blue);
  color: white;
  padding: 8px 20px;
  font-size: 16px;
  border-radius: 40px;
  transition: 0.3s all ease;
}
#jobs a.button:hover {
  background: var(--red);
}

#jobs .card-header {
  padding: 12px 15px;
  background: #eee;
}

#jobs .modal .close {
  position: absolute;
  top: -20px;
  right: -20px;
  color: white;
}

.close {
  text-align: right;
  margin: 5px;
  display: inline-block;
}

.poster-section {
  padding: 6rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  position: relative;
  color: white;
  flex-direction: column;
}
.poster-section img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -9;
}
.poster-section .filter {
  background: black;
  opacity: 0.8;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -8;
}
.poster-section div {
  width: 100%;
}

.peter {
  width: 100%;
}

.peter-quote {
  position: absolute;
  top: 0px;
  right: 0;
  width: 120px;
}

#myTab {
  padding: 0;
  margin: 0;
}
#myTab li {
  border: none;
  margin-bottom: 0;
}
#myTab li:before, #myTab li:after {
  display: none;
}
#myTab li a {
  padding-bottom: 10px;
  padding-right: 20px;
  padding-top: 10px;
  padding-left: 20px;
  display: block;
  border-bottom: 2px solid transparent;
}
#myTab li a.active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
#myTab li a.active a {
  color: white;
}

.g-accordion button {
  padding: 0;
  color: var(--blue);
  background: none;
  display: block;
  font-weight: bold;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  width: 100%;
  text-align: left;
}

.g-accordion button:hover {
  text-decoration: none;
}

.g-accordion h5 {
  padding: 0;
  background: none;
}

.g-accordion .card-header {
  background: none;
  border: none;
  padding: 0;
}

.g-accordion {
  margin-bottom: 10px;
  border: none;
}

.g-accordion button[aria-expanded=false]:before {
  content: "+";
}

.g-accordion button[aria-expanded=true]:before {
  content: "-";
}

.g-accordion button[aria-expanded=true] {
  color: var(--red);
}

.g-accordion * {
  text-decoration: none !important;
}

.g-accordion button:before {
  content: "+";
}

.domain-members {
  margin: 0px 0;
  background: #f8f8f8;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #eee;
}

.card li {
  margin-bottom: initial !important;
}

.profile-modal .close {
  position: absolute;
  top: 2px;
  right: 5px;
  z-index: 9;
}

.profile-names {
  display: grid;
  justify-content: space-between;
  grid-gap: 20px;
  flex-wrap: wrap;
  min-width: 300px;
  grid-template-columns: repeat(3, 1fr);
}
.profile-names a {
  padding: 15px;
  display: block;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-weight: bold;
}
.profile-names a:hover {
  background: var(--blue);
  color: white;
}
.profile-names a:hover i {
  color: white;
}
.profile-names a i {
  font-size: 14px;
  color: darkgray;
}

#menu-item-623 ul {
  column-count: 2;
}

/*# sourceMappingURL=style.css.map */