/*
Theme Name: Thrive
Text Domain: Thrive
Version: 1.3.1

*/


:root{
  --swiper-theme-color: #2d0e2f;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Myriad Pro", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

p {
  margin-bottom: 1em;
}
a {
  text-decoration: none;
}
img {
  width: auto;
  height: auto;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-It.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

h1,
h2 {
  font-weight: normal;
}

header {
  background-color: #310a30;
  text-transform: uppercase;
  padding: 30px 0;
  position: relative;
  z-index: 99;
}
header .logo {
  width: 190px;
}
header a {
  color: #fff;
}
header .container {
  max-width: 1380px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .menu {
  display: flex;
  padding-top: 30px;
}

header .menu li {
  display: block;
}
header .menu li a {
  display: block;
}
header .menu > li > a {
  margin: 0px 30px;
}
header .menu li a:hover,
header .menu li:hover > a,
header .menu li.current-menu-item > a,
header .menu li.current-menu-ancestor > a {
  color: #d4dbc2;
}

#header nav ul.menu > li.menu-item-has-children > a:before {
  right: 35px;
}

#header nav ul.menu > li:hover > a:before {
  transform: scaleX(1);
}

#header nav ul.menu > li.menu-item-has-children > a {
  padding-right: 40px;
  margin-right: 10px;
  position: relative;
}

#header nav ul.menu > li.menu-item-has-children > a:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.45 50'%3E%3Cpolygon fill='%23ffffff' points='2.93 0 0 2.91 22.61 25.67 .69 47.04 3.58 50 28.45 25.75 2.93 0'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 9px;
  transform: rotate(90deg);
  position: absolute;
  right: 0;
  top: 0px;
  transition: all 0.3s ease;
}

#header nav ul.menu > li.menu-item-has-children:hover > a:after {
  transform: rotate(0deg);
}

#header nav ul.menu li {
  display: block;
  position: relative;
}

#header nav ul.menu > li {
  padding: 10px 0;
}
li.mobile-only {
  display: none;
}

#header nav ul.menu a {
}

#header nav ul.sub-menu {
  position: absolute;
  background: #fff;
  min-width: 300px;
  border-radius: 10px;
  padding: 10px 0;
  top: 120%;
  left: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
  opacity: 0;
  font-size: 15px;
  box-shadow: 0 0 10px -6px #00000082;
}

#header nav li:hover > ul.sub-menu {
  pointer-events: all;
  opacity: 1;
  top: 100%;
}

#header nav ul.sub-menu:before {
  content: "";
  display: block;
  position: absolute;
  left: 50px;
  top: -9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #ffffff transparent;
}

#header nav ul.sub-menu a {
  color: #2d0e2f;
  padding: 5px 20px;
}

#header nav ul.sub-menu li:hover > a {
  color: #fff;
  background-color: #2d0e2f;
}

/*menu btn*/
.m-menu {
}

.m-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  right: 0;
  border-radius: 2px;
}

.m-menu span:nth-child(1) {
  top: 0;
}

.m-menu span:nth-child(2) {
  top: 8px;
  width: 80%;
}

.m-menu span:nth-child(3) {
  top: 16px;
}

.m-menu {
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 11;
  position: absolute;
  right: 15px;
  top: 24px;
  display: none;
  text-align: right;
  width: 25px;
}

.m-menu span {
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}

.mm-open .m-menu span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.mm-open .m-menu span:nth-child(2) {
  opacity: 0;
  right: 60px;
}

.mm-open .m-menu span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

.height100 {
  height: 100%;
}
.title-icon *,
.title-icon {
  height: 100%;
}
.bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  right: 100px;
}
.bottom-shape svg {
  width: 100%;
  height: 200px;
  display: block;
}

.right-image:before {
  content: "" !important;
  display: block !important;
  position: absolute;
  width: calc(50vw - 670px);
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  background: #fff !important;
  z-index: 1;
}
.left-image:before {
  content: "" !important;
  display: block !important;
  position: absolute;
  width: calc(50vw - 670px);
  top: 0;
  bottom: 0;
  left: auto;
  background: #fff !important;
  z-index: 1;
}
.sbutton {
  width: 170px;
  position: relative;
  display: block;
}
.sbutton span,
.sbutton svg {
  display: block;
  transition: all 0.3s;
}
.sbutton:hover svg {
  transform: scale(1.1);
}
.sbutton .title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  color: #310a30;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sbutton.white .title {
  color: #fff;
}

.elementor-widget-image a {
  display: block !important;
}
.morebtn.elementor-widget-button .elementor-button {
  background: transparent;
  font-size: 18px;
}
.morebtn.elementor-widget-button .elementor-button svg {
  width: 45px;
  margin-top: -10px;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.morebtn:hover svg {
  transform: translateX(10px);
}
.hover-image a {
  overflow: hidden;
}
.hover-image a img {
  transition: all 0.3s ease;
}
.hover-image a:hover img {
  transform: scale(1.1);
}

.people-thumbnail .elementor-widget-Elementor_parallax {
  transition: all 0.3s ease;
}
.people-thumbnail:hover .elementor-widget-Elementor_parallax {
  transform: translate(-10px, -10px);
}

footer {
  font-size: 16px;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}

/*wheel*/
.whbox {
  position: relative;
  width: 568px;
  height: 568px;
  padding: 0px;
  box-sizing: border-box;
  display: flex;
  position: absolute;
  left: 0;
}

.whbox .cbutton {
  content: " ";
  display: block;
  background-image: url(images/wbg-2.png);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -98px;
  margin-top: -98px;
  cursor: pointer;
  width: 126px;
  height: 126px;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 50%;
  background-position: center;
  border: 4px solid #fff;
  box-sizing: border-box;
  background-size: 620px;
}

.whbox .cbutton:hover,
.whbox .cbutton.act {
  background-color: #491f49;
}

.whbox:before {
  content: " ";
  display: block;
  background-image: url(images/wbg1-2.png);
  position: absolute;
  left: -38px;
  right: 38px;
  bottom: 38px;
  top: -38px;
  pointer-events: none;
  z-index: 0;
  background-size: 567px;
  background-repeat: no-repeat;
}

.wheel {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 490px;
  height: 490px;
}

.wheel svg {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 490px;
  height: 490px;
}

.wheel svg > g {
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.wheel svg > g.act#wh1 {
  transform: translate(5.5px, -14px);
}

.wheel svg > g.act#wh2 {
  transform: translate(18.5px, -8px);
}

.wheel svg > g.act#wh3 {
  transform: translate(18.5px, 7px);
}

.wheel svg > g.act#wh4 {
  transform: translate(8.5px, 18px);
}

.wheel svg > g.act#wh5 {
  transform: translate(-7.5px, 18px);
}

.wheel svg > g.act#wh6 {
  transform: translate(-22.5px, 10px);
}

.wheel svg > g.act#wh7 {
  transform: translate(-20.5px, -8px);
}

.wheel svg > g.act#wh8 {
  transform: translate(-6.5px, -14px);
}

.wheel .st1 {
  fill: #320930;
}

.wheel .act .st1 {
  fill: #cba968;
}

.wheelslider .wpb_text_column hr {
  width: 100%;
  height: 1px;
  background-color: #595959;
}
.wheel-box{
  max-width:1340px;
  margin:auto;
  position:relative;
  background: #e9e8e3;
  min-height: 480px;
  margin-bottom: 100px;
  padding-left: 650px;
}
.wheel-box h3{
  font-size:55px;
  font-weight:normal;
  color:#2d0e2f;
  line-height: 1;
  margin-bottom: 10px;
}
.wheel-box:before{
  content:'';
  display:block;
  position:absolute;
  top:0;
  bottom:0;
  right:50%;
  width:50vw;
  background:#e9e8e3;
}
.wheel-content{
  max-width: 550px;
  padding-top: 60px;
}




/*custom slider*/

.card-swiper img{
  width:100%;
  height:44vw;
  object-fit:cover;
}
.card-swiper .cap{
  position:absolute;
  top:40%;
  left:14%;
  color:#310A30;
  font-weight:300;
  font-size:28px;
  max-width:45%;
  line-height:1.1;
  transform:translateY(-50%);
}
.card-swiper .cap p{
		margin-top:15px;
		margin-bottom:0px;
}
.card-swiper .cap h3{
  font-weight:normal;
  margin:0;
}
.card-swiper .cap h1{
  font-weight:300;
  font-size:78px;
  margin:0;
}
.card-swiper .cap h2{
	margin-bottom:8px;
  font-weight:bold;
  font-size:2.9em;
  color:#bcc79f;
}
.card-swiper .cap a{
  display:inline-block;
  background:#46214a;
  padding:13px 30px;
  font-size:0.7em;
  display:inline-block;
  color:#bcc79f;
  font-weight:bold;
	border-radius:25px;
}
.card-swiper .cap a:hover{
   color:#fff;
	
}
.card-swiper a.pinkbtn {
   color:#310a30;
	background:#e5aab7 !important;
}
.imglink{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  right:0;
  display:block;
}



@media(max-width:1100px){
  .card-swiper .cap{
    font-size:16px;
    
  }
  .whbox{
    position:relative;
    left: 10px;
    margin: auto;
  }
  .wheel-box{
    padding-left:10px;
    padding-right:10px;
  }
  .wheel-content{
    max-width:100%;
  }
}




@media (max-width: 767px) {

  .card-swiper .cap{
    /* position:relative; */
    /* transform:translateY(0%); */
    /* width:100%; */
    max-width: 50%;
    left: 0;
    padding: 20px;
    font-size: 11px;
    line-height: 1.1;
    left: 10px;
  }
  .card-swiper .cap a{
    padding:5px 10px;
  }
  .card-swiper .cap h3{
    margin:0;
  }
  .swiper-button-next, .swiper-button-prev{width: 10px;
                                           --swiper-navigation-size:20px;
                                           }
  .whbox {
      transform: scale(0.6);
      margin-left: -97px;
      margin-top: -100px;
      margin-bottom: -100px;
  }


  
  body {
    font-size: 16px;
  }
  .title-icon svg {
    width: 80px;
  }
  .m-menu {
  }
  #header nav {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.3s ease;
    margin-top: 30px;
  }

  .mm-open #header nav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: scale(1);
    margin-top: 0;
  }

  #header nav:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffffd9;
    backdrop-filter: blur(11px);
    left: 0;
    top: 0;
  }

  #header nav ul.menu {
    display: block;
    width: 100%;
    z-index: 11;
    position: relative;
    padding-top: 0;
  }

  .m-menu {
    display: block;
  }

  #header nav ul.menu > li {
    padding: 0;
  }

  #header nav ul.menu > li.menu-item-has-children > a:after,
  #header nav ul.menu > li.menu-item-has-children > a:before {
    display: none;
  }

  #header nav ul.menu > li.menu-item-has-children > span.sub {
    content: "";
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.45 50'%3E%3Cpolygon fill='%232d0e2f' points='2.93 0 0 2.91 22.61 25.67 .69 47.04 3.58 50 28.45 25.75 2.93 0'/%3E%3C/svg%3E")
      no-repeat center;
    background-size: 9px;
    /* transform: rotate(90deg); */
    position: absolute;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
  }

  #header nav ul.menu > li > a {
    height: 50px;
    border-bottom: 1px solid #ffffff3b;
    padding-left: 0;
    font-weight: normal;
  }

  #header nav ul.menu > l:last-child > a {
    border-bottom: none;
  }

  #header nav ul.menu > li.menu-item-has-children:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 10px;
    bottom: 10px;
    background-color: var(--red);
    opacity: 0;
    transition: all 0.3s ease;
  }

  #header nav ul.menu > li.act:before {
    opacity: 1;
    left: -20px;
    right: -20px;
    top: 0;
    bottom: 0;
  }

  #header nav ul.menu > li.act a {
    color: #fff;
    border-color: #fff;
  }

  #header nav ul.sub-menu {
    position: relative;
    background: transparent;
    opacity: 1;
    pointer-events: all;
    display: none;
    box-shadow: none;
  }

  #header nav ul.menu > li.menu-item-has-children.act > span.sub {
    transform: rotate(90deg);
  }

  #header nav li.act > ul.sub-menu {
    display: block;
  }

  #header nav ul.sub-menu:before {
    display: none;
  }

  #header nav li:hover > ul.sub-menu {
  }
  #header nav ul.menu > li > a:before {
    display: none;
  }
  #header nav ul.sub-menu a {
    color: var(--darkblue);
    padding-left: 0;
    height: 40px;
    font-size: 14px;
  }

  #header nav ul.menu > li.menu-item-has-children > a:after,
  #header nav ul.menu > li.menu-item-has-children > a:before {
    display: none;
  }

  #header nav ul.menu > li > a {
    height: 50px;
    border-bottom: 1px solid #ffffff3b;
    padding-left: 0;
    font-weight: normal;
    padding-top: 10px;
  }

  #header nav ul.menu > l:last-child > a {
    border-bottom: none;
  }

  #header nav ul.menu > li.menu-item-has-children:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 10px;
    bottom: 10px;
    background-color: #e9e8e2;
    opacity: 0;
    transition: all 0.3s ease;
  }

  #header nav ul.menu > li.act:before {
    opacity: 1;
    left: -20px;
    right: -20px;
    top: 0;
    bottom: 0;
  }

  #header nav ul.menu > li.act a {
    color: #2d0e2f;
    border-color: #fff;
  }

  #header nav ul.sub-menu {
    position: relative;
    background: transparent;
    opacity: 1;
    pointer-events: all;
    display: none;
    box-shadow: none;
    padding-left: 30px;
  }

  #header nav ul.menu > li.menu-item-has-children.act > span.sub {
    transform: rotate(90deg);
  }

  #header nav li.act > ul.sub-menu {
    display: block;
  }

  #header nav ul.sub-menu:before {
    display: none;
  }

  #header nav li:hover > ul.sub-menu {
  }
  #header nav ul.menu > li > a:before {
    display: none;
  }
  #header nav ul.sub-menu a {
    color: #2d0e2f;
    padding-left: 0;
    height: 40px;
    font-size: 14px;
  }

  header {
    padding: 10px 0px;
  }
  header .logo {
    width: 100px;
  }
  #header a {
    color: #222;
  }

  .sbutton {
    width: 150px;
  }
  .sbutton .title {
    font-size: 16px;
  }
}
