/** GENERAL **/
:root {
  scroll-behavior: unset;
}

body {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  color: #233746;
  position: relative;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  font-weight: 800;
}

h1, .h1 {
  font-size: 50px;
  line-height: 55px;
}

h2, .h2 {
  font-size: 30px;
  line-height: 33px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 20px;
}

a,
a:hover,
a:focus {
  color: #AD2A23;
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

ul.contact,
ul.socials,
ul.menu,
ul.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-yellow {
  color: #EB6C0E;
}

.text-red {
  color: #AD2A23;
}

div.container {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 575.98px) {
  h1, .h1 {
    font-size: 40px;
    line-height: 44px;
  }
}
/** END GENERAL **/
/** BUTTON **/
.button-primary {
  display: inline-block;
  min-width: 228px;
  padding: 12px 24px;
  background-color: #EB6C0E;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: 0.25s;
}
.button-primary:hover {
  background-color: #80CC69;
  color: #fff;
}
.button-primary.green {
  background-color: #80CC69;
}
.button-primary.green:hover {
  background-color: #EB6C0E;
}

/** END BUTTON **/
/** FORM **/
button,
input {
  outline: none;
  box-shadow: none;
}

/** END FORM **/
/** slick slider **/
.slick-slide {
  outline: none !important;
}

.slick-slider ul.slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.slick-slider.equal-height .slick-track {
  display: flex;
}

.slick-slider.equal-height .slick-track:before,
.slick-slider.equal-height .slick-track:after {
  display: none;
}

.slick-slider.equal-height .slick-track .slick-slide {
  display: flex;
  height: auto;
}

/** END slick slider **/
/** HEADER **/
.logo-sticky {
  display: none;
}

#header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding-top: 50px;
}

#header a.logo {
  display: inline-block;
}
#header a.logo img {
  width: 180px;
}

#header button.toggle-menu {
  position: relative;
  width: 32px;
  height: 18px;
  border: 0;
  padding: 0;
  background-color: transparent;
  z-index: 900;
}

#header button.toggle-menu span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #233746;
  border-radius: 20px;
  transition: 0.25s;
}

#header button.toggle-menu.active span {
  background-color: #fff;
}

#header button.toggle-menu.active span:nth-child(1),
#header button.toggle-menu.active span:nth-child(3) {
  top: 50%;
  margin-top: -1.5px;
}

#header button.toggle-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#header button.toggle-menu.active span:nth-child(2) {
  opacity: 0;
}

#header button.toggle-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#header button.toggle-menu:not(.active) span:nth-child(1) {
  top: 0;
}

#header button.toggle-menu:not(.active) span:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}

#header button.toggle-menu:not(.active) span:nth-child(3) {
  bottom: 0;
}

#header button.button-search {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: transparent;
  padding: 0;
  border: 0;
  text-indent: -9999px;
  outline: none;
  overflow: hidden;
}
#header button.button-search:before, #header button.button-search:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.25s;
}
#header button.button-search:before {
  background-image: url(../svg/search-black.svg);
}
#header button.button-search:after {
  background-image: url(../svg/search-orange.svg);
  opacity: 0;
}
#header button.button-search:hover:before, #header button.button-search.active:before {
  opacity: 0;
}
#header button.button-search:hover:after, #header button.button-search.active:after {
  opacity: 1;
}
#header div.search-form form {
  position: relative;
}
#header div.search-form form ::-webkit-input-placeholder {
  color: #233746;
}
#header div.search-form form ::-moz-placeholder {
  color: #233746;
}
#header div.search-form form :-ms-input-placeholder {
  color: #233746;
}
#header div.search-form form :-moz-placeholder {
  color: #233746;
}
#header div.search-form form input[type=search] {
  width: 100%;
  height: 48px;
  background-color: #f5f5f5;
  border: 0;
  border-radius: 100px;
  padding: 0 48px 0 20px;
}
#header div.search-form form button.button-search {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 1200px) {
  #header > div.container {
    position: relative;
  }
  #header div.search-form {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #header div.search-form form input[type=search] {
    width: 200px;
    transition: width 0.25s;
  }
  #header div.search-form form input[type=search]:focus {
    width: 300px;
  }
}
@media (min-width: 1400px) {
  #header > div.container {
    max-width: 100%;
    padding-left: 140px;
    padding-right: 140px;
  }
  #header div.search-form {
    right: 140px;
  }
}
@media (max-width: 1199.98px) {
  #header {
    padding: 30px 0;
  }
  #header a.logo img {
    width: 144px;
  }
}
#menu {
  padding: 0;
  margin-left: 35px;
}

#menu ul.menu li a {
  display: inline-block;
  color: #233746;
  transition: 0.25s;
  height: 110px;
  padding: 0 15px;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  line-height: 110px;
  text-transform: capitalize !important;
}

#menu ul.menu > li > a {
  white-space: nowrap;
}

#menu ul.menu > li > ul > li > a {
  display: block;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

#menu ul.menu > li > ul > li > a:hover {
  background-color: rgba(255, 255, 255, 0.025);
  background-blend-mode: multiply;
}

#menu ul.menu > li > ul ul {
  padding: 0 18px;
}

#menu ul.menu > li > ul ul li a {
  position: relative;
  display: block;
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid transparent;
}

#menu ul.menu > li > ul ul li a:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 15px;
  background-image: url(../svg/chevron-right-yellow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#menu ul.menu > li > ul ul li a:hover {
  color: #EB6C0E;
  border-bottom-color: #EB6C0E;
}

#menu div.search-form {
  padding-top: 40px;
}

body:not(.header-light) #header a.logo img.logo-white {
  display: none;
}

body.header-light divv:not(.is-sticky) #header button.toggle-menu span {
  background-color: #fff;
}
body.header-light #header a.logo img.logo-black {
  display: none;
}
body.header-light #header button.toggle-menu span {
  background-color: #fff;
}
body.header-light #menu ul.menu li a {
  color: #fff;
}
body.header-light #menu ul.menu li a:hover {
  color: #EB6C0E;
}

@media (min-width: 1500px) {
  #menu ul.menu li a {
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  #menu ul.menu {
    position: relative;
  }
  #menu ul.menu > li {
    position: relative;
  }
  #menu ul.menu > li.current-menu-item > a,
#menu ul.menu > li:hover > a {
    color: #EB6C0E;
  }
  #menu ul.menu > li.menu-item-has-children > ul {
    position: absolute;
    left: 26px;
    top: 85%;
    display: block;
    background-color: #233746;
    border-radius: 20px;
    padding: 20px 15px;
    opacity: 0;
    margin-top: 20px;
    visibility: hidden;
    transition: 0.25s;
  }
  #menu ul.menu > li.menu-item-has-children > ul > li {
    width: 100%;
    padding: 0 15px;
  }
  #menu ul.menu > li.menu-item-has-children > ul > li a {
    height: auto;
    color: #fff;
    line-height: 38px;
    padding: 0;
    font-size: 20px;
  }
  #menu ul.menu > li.menu-item-has-children > ul > li a:hover {
    color: #EB6C0E;
  }
  #menu ul.menu > li.menu-item-has-children:hover > ul {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1199.98px) {
  #menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: #233746;
    padding: 109px 30px 86px;
    -webkit-transform: translateX(320px);
            transform: translateX(320px);
    opacity: 0;
    visibility: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    transition: 0.25s;
  }
  #menu ul.menu li a {
    display: block;
  }
  #menu ul.menu > li {
    padding: 10px 0;
  }
  #menu ul.menu > li.menu-item-has-children > a {
    position: relative;
    padding-right: 30px;
  }
  #menu ul.menu > li.menu-item-has-children > a:before,
#menu ul.menu > li.menu-item-has-children > a:after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    width: 12px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.25s;
  }
  #menu ul.menu > li.menu-item-has-children > a:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #menu ul.menu > li.menu-item-has-children > a.active:after {
    opacity: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  #menu ul.menu > li.menu-item-has-children > ul {
    display: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-top: 10px;
    margin-left: 20px;
  }
  #menu.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 575px) {
  #menu {
    padding-top: 86px;
  }
}
.is-sticky #header {
  background-color: #ffffff;
  box-shadow: 0 0 15px #ddd;
}

.is-sticky #header a.logo .logo {
  display: none;
}

.is-sticky #header .logo-sticky {
  display: block;
}

.is-sticky #header #menu ul.menu li a {
  color: #233746 !important;
}

.is-sticky #header #menu ul.menu li a:hover {
  color: #EB6C0E !important;
}

.is-sticky #header #menu ul.menu li ul li a {
  color: #fff !important;
}

.is-sticky #header #menu ul.menu li ul li a:hover {
  color: #EB6C0E !important;
}

/** END HEADER **/
/* Home */
#main .banner-connent {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/White-bg@2x.png);
  width: 100%;
  height: 100%;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 260px 0px 0px;
  position: relative;
}

#main .banner-connent .text-s {
  position: absolute;
  top: 17%;
  left: 1%;
}

#main .banner-connent .text-s h4 {
  font-family: "Nevaeh", sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 4.8;
  color: #bebebe;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#main .banner-connent .box-flex {
  display: flex;
  align-items: center;
}

#main .banner-connent .box-flex .text {
  width: 60%;
}

#main .banner-connent .box-flex .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 100px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #233746;
  margin-bottom: 30px;
}

#main .banner-connent .box-flex .text p {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #EB6C0E;
  line-height: 1.33;
}

#main .banner-connent .box-flex .text .bottom {
  padding: 170px 0px 70px;
}

#main .banner-connent .box-flex .text .bottom span {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  color: #233746;
  margin-right: 40px;
}

#main .banner-connent .box-flex .text .bottom a {
  font-family: "Montserrat", sans-serif;
  padding: 14px 41px 13px 37px;
  border-radius: 25px;
  background-color: #EB6C0E;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
}

#main .banner-connent .box-flex .images {
  width: 40%;
  text-align: right;
  margin-top: -200px;
}

#main .banner-connent .box-flex .images img {
  max-width: 530px;
}

#main .carousel-content {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Rectangle-28.png);
  background-size: cover;
  padding: 45px 0;
  background-position: left;
  position: relative;
}

#main .carousel-content .text-s {
  position: absolute;
  top: 50px;
}

#main .carousel-content .text-s h4 {
  font-family: "Nevaeh", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 4.8;
  color: #bebebe;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#main .carousel-content .wt {
  padding: 0px 80px;
}

#main .carousel-content .wt button.slick-prev.slick-arrow {
  display: none !important;
}

#main .carousel-content .wt button.slick-next.slick-arrow {
  display: none !important;
}

#main .carousel-content .wt .box-title {
  padding-right: 50px;
  padding-left: 50px;
}

#main .carousel-content .wt .box-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #EB6C0E;
  text-transform: uppercase;
}

#main .carousel-content .wt .box-title p {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  color: #f5f5f5;
}

#main .carousel-content .wt .box-title a {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #80CC69;
}

#main .carousel-content ul.slick-dots {
  display: inherit;
  position: absolute;
  bottom: 11px;
  left: 100%;
  width: auto;
}

#main .carousel-content ul.slick-dots li {
  display: block;
  margin: 18px 0px;
}

#main .carousel-content ul.slick-dots li button {
  border: solid 2px #EB6C0E;
  border-radius: 100%;
  background-color: #233746;
  width: 24px;
  height: 24px;
  opacity: 1;
  font-size: 0;
}

#main .carousel-content ul.slick-dots li.slick-active button {
  background-color: #EB6C0E;
}

#main .about-content {
  padding: 100px 0px;
}

#main .about-content .text-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#main .about-content .text-flex .left {
  width: 35%;
}

#main .about-content .text-flex .left h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
}

#main .about-content .text-flex .left p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  padding-bottom: 80px;
  margin-bottom: 0;
}

#main .about-content .text-flex .left a {
  margin: 0;
  padding: 14px 41px 13px 37px;
  border-radius: 25px;
  background-color: #EB6C0E;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  color: #ffffff;
}

#main .about-content .text-flex .right {
  width: 60%;
}

#main .about-content .text-flex .right .box-video {
  position: relative;
}

#main .about-content .text-flex .right .box-video img {
  cursor: pointer;
}

#main .about-content .text-flex .right .box-video #player2 {
  display: none;
}

#main .about-content .text-flex .right .box-video .box-text-icon {
  display: flex;
  align-items: center;
  position: absolute;
  top: 24px;
  left: 38px;
}

#main .about-content .text-flex .right .box-video .box-text-icon h2 {
  color: #fff;
  margin-left: 30px;
  font-size: 34px;
}

#main .background-line {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_28T09_37_13_266Z.png);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: 62% 90px;
}

#main .section-box-top {
  padding: 200px 0px;
  padding-bottom: 35px;
  background: #f5f5f5;
  position: relative;
  z-index: 99;
}

#main .section-box-top .icon-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

#main .section-box-top:before {
  content: "";
  height: 48px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom right, #fff, #fff 50%, #F5F5F5 50%, #F5F5F5);
  position: absolute;
  top: 0;
  left: -18px;
  right: 0;
}

#main .section-box-top .section-fl {
  z-index: 999;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#main .section-box-top .section-fl .title {
  width: 35%;
}

#main .section-box-top .section-fl .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
}

#main .section-box-top .section-fl .title p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  padding-bottom: 26px;
  margin-bottom: 0;
}

#main .section-box-top .section-fl .title a {
  margin: 0;
  padding: 14px 41px 13px 37px;
  border-radius: 25px;
  background-color: #80CC69;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  color: #ffffff;
}

#main .section-box-top .section-fl .images {
  width: 58%;
  display: flex;
  justify-content: space-between;
}

#main .section-box-top .section-fl .images .box-list-image {
  position: relative;
  margin-right: 34px;
}

#main .section-box-top .section-fl .images .box-list-image ul {
  list-style: none;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  position: absolute;
  left: 165px;
  padding: 0;
  margin: 0;
  top: -171px;
}

#main .section-box-top .section-fl .images .box-list-image ul .slick-track {
  width: auto !important;
  -webkit-transform: none !important;
          transform: none !important;
}

#main .section-box-top .section-fl .images .box-list-image ul .slick-list {
  -webkit-transform: none;
  transform: none;
}

#main .section-box-top .section-fl .images .box-list-image ul li {
  font-family: "Quicksand", sans-serif;
  margin-bottom: 39px;
  width: auto !important;
  float: none !important;
}

#main .section-box-top .section-fl .images .box-list-image ul li a {
  font-family: "Quicksand", sans-serif;
  font-size: 28px;
  color: #233746;
  font-weight: bold;
  line-height: 1;
}

#main .section-box-top .section-fl .images .box-list-image ul li a:hover {
  color: #EB6C0E;
}

#main .section-box-top .section-fl .images .box-list-image ul li.slick-current a {
  color: #EB6C0E;
}

#main .section-box-top .section-fl .images .box-list-image .img1 {
  width: 100%;
  position: relative;
  bottom: -122px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

#main .section-box-top .section-fl .images .list-img {
  width: 260px;
}

#main .section-box-bottom .bottom-flex {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

#main .section-box-bottom .bottom-flex:nth-child(2) {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Intersection-2-1.png);
  background-position: left;
  background-size: 43%;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  z-index: 9;
}

#main .section-box-bottom .bottom-flex:nth-child(2):before {
  content: "";
  height: 45px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  bottom: 0px;
  left: -18px;
  right: 0;
}

#main .section-box-bottom .bottom-flex:nth-child(2) .icon-bg {
  position: absolute;
  bottom: -270px;
  left: 29%;
}

#main .section-box-bottom .bottom-flex:nth-child(1) {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Intersection-1-1.png);
  background-position: right;
  background-size: 43%;
  background-repeat: no-repeat;
  z-index: 10;
}

#main .section-box-bottom .bottom-flex:nth-child(1) .images {
  display: none;
}

#main .section-box-bottom .bottom-flex:nth-child(1) .text {
  padding-bottom: 200px;
}

#main .section-box-bottom .bottom-flex:nth-child(1):before {
  content: "";
  height: 45px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, #f5f5f5, #f5f5f5 50%, transparent 50%, transparent);
  position: absolute;
  top: 0;
  left: -18px;
  right: 0;
}

#main .section-box-bottom .bottom-flex .line1 {
  background: #233746;
  position: absolute;
  height: 19px;
  top: 45px;
  left: 37%;
  right: -67px;
}

#main .section-box-bottom .bottom-flex .line2 {
  background: #233746;
  position: absolute;
  width: 19px;
  top: 45px;
  right: -67px;
  bottom: -68px;
}

#main .section-box-bottom .bottom-flex .line2:before {
  content: "";
  width: 114px;
  height: 115px;
  right: -55px;
  position: absolute;
  top: 103px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_12_815Z.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#main .section-box-bottom .bottom-flex .line2:after {
  content: "Steam unlocks the potential";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 300px;
  position: absolute;
  top: 357px;
  right: -177px;
  font-family: Quicksand;
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.08;
  letter-spacing: normal;
  text-align: right;
  color: #EB6C0E;
}

#main .section-box-bottom .bottom-flex .line3 {
  background: #233746;
  position: absolute;
  height: 19px;
  top: 49px;
  left: 9px;
  right: -77px;
}

#main .section-box-bottom .bottom-flex .line4 {
  background: #233746;
  position: absolute;
  width: 19px;
  top: 49px;
  right: -81px;
  bottom: -68px;
}

#main .section-box-bottom .bottom-flex .line4:before {
  content: "";
  width: 114px;
  height: 115px;
  right: -55px;
  position: absolute;
  top: 103px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_12_815Z.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#main .section-box-bottom .bottom-flex .line4:after {
  content: "All in the same process";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 300px;
  position: absolute;
  top: 357px;
  right: -177px;
  font-family: Quicksand;
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.08;
  letter-spacing: normal;
  text-align: right;
  color: #EB6C0E;
}

#main .section-box-bottom .bottom-flex .text {
  width: 47%;
  padding: 150px 0;
  position: relative;
}

#main .section-box-bottom .bottom-flex .text span {
  font-size: 20px;
  color: #EB6C0E;
  font-family: "Quicksand", sans-serif;
  display: block;
  font-weight: bold;
  margin-bottom: 0px;
}

#main .section-box-bottom .bottom-flex .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 50px;
  width: 85%;
}

#main .section-box-bottom .bottom-flex .text p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  padding-bottom: 30px;
  margin-bottom: 0;
  width: 85%;
}

#main .section-box-bottom .bottom-flex .text a {
  margin: 0;
  padding: 0 40px;
  border-radius: 25px;
  background-color: #EB6C0E;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
  line-height: 50px;
}

#main .section-box-bottom .bottom-flex .images {
  width: 50%;
}

#main .section-box-bottom .bottom-flex .images img {
  display: none;
}

#main .section-line .box-line {
  display: flex;
  width: 80%;
  padding: 150px 0;
  position: relative;
  z-index: 9;
}

#main .section-line .box-line .line5 {
  position: absolute;
  height: 19px;
  right: -29%;
  top: 75px;
  left: 25%;
  background: #233746;
}

#main .section-line .box-line .line5:before {
  content: "";
  width: 114px;
  height: 115px;
  right: -55px;
  position: absolute;
  top: -45px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_12_815Z.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9;
}

#main .section-line .box-line .line6 {
  position: absolute;
  height: 19px;
  background-image: linear-gradient(to left, #233746 4%, #1cbadb 51%, #1cbadb 95%);
  right: 25%;
  top: 75px;
  left: 23%;
}

#main .section-line .box-line .box-producing {
  position: absolute;
  right: -33%;
  text-align: right;
}

#main .section-line .box-line .box-producing h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: right;
  color: #EB6C0E;
  margin-bottom: 17px;
  margin-top: 10px;
}

#main .section-line .box-line .box-producing p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: right;
  color: #233746;
}

#main .section-line .box-line .box {
  width: 50%;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

#main .section-line .box-line .box.box1 {
  padding-left: 0;
}

#main .section-line .box-line .box.box1:before {
  content: "";
  background: #1cbadb;
  width: 19px;
  top: -75px;
  bottom: 97%;
  left: 44%;
  position: absolute;
}

#main .section-line .box-line .box.box2 {
  padding-right: 0;
}

#main .section-line .box-line .box.box2:before {
  content: "";
  width: 19px;
  top: -75px;
  bottom: 97%;
  left: 52%;
  position: absolute;
  background-image: linear-gradient(to bottom, #233746 30%, #80CC69 75%, #80CC69 95%);
}

#main .section-line .box-line .box.box2 h2 {
  color: #80CC69;
}

#main .section-line .box-line .box.box2 a {
  background-color: #80CC69;
}

#main .section-line .box-line .box h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: normal;
  color: #1cbadb;
  text-align: center;
  margin-bottom: 14px;
  margin-top: 6px;
}

#main .section-line .box-line .box p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #233746;
  margin-top: 28px;
}

#main .section-line .box-line .box a {
  border-radius: 25px;
  background-color: #1cbadb;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  line-height: 50px;
  display: inline-block;
  padding: 0 30px;
  margin-top: 30px;
}

#main .section-line .box-line .box a:hover {
  opacity: 0.8;
}

#main .plant-content-main {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Raven-home-BG-1.png);
  background-size: cover;
  padding: 80px 0px 40px;
  background-position: bottom;
  position: relative;
}

#main .plant-content-main:before {
  position: absolute;
  content: "";
  background-color: #233746;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
  opacity: 0.3;
  z-index: 1;
}

#main .plant-content-main a {
  margin: 0;
  padding: 14px 45px 13px 45px;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  border-radius: 25px;
  background-color: #80CC69;
  color: #fff;
  display: inline-block;
  width: auto;
  z-index: 9;
}

#main .plant-content-main .text-tilte {
  padding-bottom: 55px;
}

#main .plant-content-main .text-tilte h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  color: #80CC69;
  z-index: 9;
  position: relative;
}

#main .plant-content-main .plants-flex {
  display: flex;
  justify-content: space-between;
}

#main .plant-content-main .plants-flex .box {
  width: 23%;
}

#main .plant-content-main .plants-flex .box h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  color: #1cbadb;
  font-weight: bold;
  margin: 0px 0px 40px;
  line-height: 1;
  z-index: 9;
  position: relative;
}

#main .plant-content-main .plants-flex .box h2 img {
  display: inline-block;
  width: 50px;
  margin-right: 13px;
}

#main .plant-content-main .plants-flex .box p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 55px;
  margin-bottom: 0;
  color: #ffffff;
}

#newsletter {
  padding: 40px 0px;
  background-color: #f5f5f5;
}

#newsletter .box-newletter {
  padding: 60px 80px;
  background-color: #80CC69;
}

#newsletter .box-newletter .box-title {
  display: flex;
  align-items: center;
}

#newsletter .box-newletter .box-title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.38;
  color: #233746;
  padding-right: 35px;
  margin-right: 25px;
  position: relative;
}

#newsletter .box-newletter .box-title h2:before {
  position: absolute;
  content: "";
  background: #233746;
  width: 7px;
  height: 57px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

#newsletter .box-newletter .box-title p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
  margin: 0;
}

#newsletter .box-newletter .newsletter__form form .gform_footer.top_label {
  padding: 0;
  margin: 0;
  position: relative;
  text-align: center;
  text-align: center;
  position: relative;
  justify-content: center;
}

#newsletter .box-newletter .newsletter__form form .gform_footer.top_label:before {
  position: absolute;
  content: "";
  width: 41%;
  height: 11px;
  background: #233746;
  border-radius: 25px;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

#newsletter .box-newletter .newsletter__form form .gform_footer.top_label:after {
  position: absolute;
  content: "";
  width: 41%;
  height: 11px;
  background: #233746;
  border-radius: 25px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

#newsletter .box-newletter .newsletter__form form .gform_footer.top_label input#gform_submit_button_2 {
  margin: 0;
  padding: 10px 29px 11px 27px;
  border-radius: 25px;
  background-color: #233746;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
  color: #80CC69;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 {
  padding: 40px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 input {
  border: 0;
  padding: 23px 25px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 label {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 a {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 div#field_2_1 {
  width: 250px;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 div#field_2_2 {
  width: 260px;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 fieldset#field_2_5 {
  width: 285px;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 fieldset#field_2_5 .gchoice {
  margin: 9px 0px;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 fieldset#field_2_5 input#choice_2_5_1 {
  width: 26px;
  height: 26px;
  border: 0 !important;
}

#newsletter .box-newletter .newsletter__form form #gform_fields_2 fieldset#field_2_5 input#choice_2_5_2 {
  width: 26px;
  height: 26px;
  border: 0 !important;
}

footer#footer .footer-top {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/White-bg@2x.png);
  width: 100%;
  height: 100%;
  background-position: initial;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0px 60px;
}

footer#footer .footer-top .box-list-footer {
  display: flex !important;
  justify-content: space-between !important;
}

footer#footer .footer-top .box-list-footer .item-footer {
  width: 25%;
}

footer#footer .footer-top .box-list-footer .item-footer:nth-child(1) {
  width: 30%;
  position: relative;
}

footer#footer .footer-top .box-list-footer .item-footer:nth-child(2) {
  width: 25%;
  margin: 30px 0px 0px;
}

footer#footer .footer-top .box-list-footer .item-footer:nth-child(3) {
  margin: 30px 0px 0px;
}

footer#footer .footer-top .box-list-footer .item-footer .box-img-footer {
  position: relative;
}

footer#footer .footer-top .box-list-footer .item-footer .box-img-footer .frame-e {
  position: relative;
  width: 240px;
  z-index: 1;
}

footer#footer .footer-top .box-list-footer .item-footer .box-img-footer .text {
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  text-align: left;
  color: #000;
  position: absolute;
  bottom: -12px;
  left: 20%;
  z-index: 10;
}

footer#footer .footer-top .box-list-footer .item-footer h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.38;
  color: #233746;
  margin-bottom: 20px;
}

footer#footer .footer-top .box-list-footer .item-footer .footer-menu ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
  margin: 0;
  display: block;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 20px 30px;
  margin-bottom: 10px;
}

footer#footer .footer-top .box-list-footer .item-footer .box-contact-footer {
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.39;
  color: #233746;
}

.footer-bottom {
  background-color: #233746;
  padding: 30px 0px;
}

.footer-bottom .box-copyright {
  display: flex;
  justify-content: space-between;
}

.footer-bottom .box-copyright p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.39;
  color: #ffffff;
}

.footer-bottom .box-copyright p a {
  color: #bdeb79;
  text-decoration: none;
  margin: 0px 2px;
}

/* end home */
/* About */
main#main-about .banner-content {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Path-269.jpg);
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px;
}

main#main-about .banner-content .flexx {
  position: relative;
}

main#main-about .banner-content .flexx .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  color: #ffffff;
}

main#main-about .banner-content .flexx .text p {
  font-family: Quicksand;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #EB6C0E;
}

main#main-about .banner-content .flexx .images {
  position: absolute;
  right: 0;
  top: -70px;
}

main#main-about .banner-content .flexx .images img {
  width: 300px;
}

main#main-about .powering-content {
  padding: 130px 0px;
}

main#main-about .powering-content .text-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main#main-about .powering-content .text-flex .left {
  width: 35%;
}

main#main-about .powering-content .text-flex .left h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
}

main#main-about .powering-content .text-flex .left p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  margin-bottom: 0;
}

main#main-about .powering-content .text-flex .left .right {
  width: 60%;
}

main#main-about .section-bg-content {
  position: relative;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Raven-home-BG-2.png);
  background-size: cover;
  padding: 150px 0px 180px;
}

main#main-about .section-bg-content:before {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Group-15.png);
  background-size: cover;
  padding: 0;
  position: absolute;
  content: "";
  width: 580px;
  height: 476px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  z-index: 1;
  left: 32px;
}

main#main-about .section-bg-content .wt .section-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  padding-bottom: 40px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(odd) .line1 {
  position: absolute;
  height: 19px;
  background: #EB6C0E;
  top: -62px;
  left: -100px;
  right: -100px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(odd) .line2 {
  position: absolute;
  width: 19px;
  background: #EB6C0E;
  top: -53px;
  left: -100px;
  right: -100px;
  bottom: 46px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(odd):last-child .line2 {
  position: absolute;
  width: 19px;
  background: #EB6C0E;
  top: -53px;
  left: -100px;
  right: -100px;
  bottom: 46px;
  background-image: linear-gradient(to top, #80CC69, #EB6C0E);
}

main#main-about .section-bg-content .wt .section-box:nth-child(odd):last-child .line2:before {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_25_998Z.png);
  position: absolute;
  bottom: -36px;
  background-repeat: no-repeat;
  background-size: contain;
  left: -33px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(odd):last-child .line2:after {
  content: "The Future";
  position: absolute;
  bottom: -13px;
  display: inline-block;
  width: 211px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #80CC69;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  left: 91px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(even) .line1 {
  position: absolute;
  height: 19px;
  background: #EB6C0E;
  top: -62px;
  left: -100px;
  right: -100px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(even) .line2 {
  position: absolute;
  width: 19px;
  background: #EB6C0E;
  top: -53px;
  right: -100px;
  bottom: 46px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(even):last-child .line2 {
  position: absolute;
  width: 19px;
  background: #EB6C0E;
  top: -53px;
  left: auto;
  right: -100px;
  bottom: 46px;
  background-image: linear-gradient(to top, #80CC69, #EB6C0E);
}

main#main-about .section-bg-content .wt .section-box:nth-child(even):last-child .line2:before {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_25_998Z.png);
  position: absolute;
  bottom: -36px;
  background-repeat: no-repeat;
  background-size: contain;
  left: -33px;
}

main#main-about .section-bg-content .wt .section-box:nth-child(even):last-child .line2:after {
  content: "The Future";
  position: absolute;
  bottom: -13px;
  display: inline-block;
  width: 211px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #80CC69;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  right: 91px;
}

main#main-about .section-bg-content .wt .section-box:first-child .line1:before {
  content: "";
  width: 19px;
  height: 413px;
  background: #EB6C0E;
  right: 0;
  position: absolute;
  bottom: 100%;
  background-image: linear-gradient(to bottom, #233746, #EB6C0E);
}

main#main-about .section-bg-content .wt .section-box:first-child .line1:after {
  content: "";
  width: 100px;
  height: 100px;
  right: -47px;
  position: absolute;
  top: -477px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_12_815Z.png);
  background-repeat: no-repeat;
  background-size: contain;
}

main#main-about .section-bg-content .wt .section-box .line3 {
  position: absolute;
  height: 19px;
  background: #EB6C0E;
  top: -62px;
  left: -100px;
  right: -100px;
}

main#main-about .section-bg-content .wt .section-box .line4 {
  position: absolute;
  width: 19px;
  background: #EB6C0E;
  top: -53px;
  right: -100px;
  bottom: 46px;
}

main#main-about .section-bg-content .wt .section-box .line5 {
  position: absolute;
  height: 19px;
  background: #EB6C0E;
  top: -62px;
  left: -100px;
  right: -100px;
}

main#main-about .section-bg-content .wt .section-box .line6 {
  position: absolute;
  width: 19px;
  background: #EB6C0E;
  top: -53px;
  left: -100px;
  right: -100px;
  bottom: 46px;
  background-image: linear-gradient(to top, #80CC69, #EB6C0E);
}

main#main-about .section-bg-content .wt .section-box .line6:before {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_25_998Z.png);
  position: absolute;
  bottom: -36px;
  background-repeat: no-repeat;
  background-size: contain;
  left: -33px;
}

main#main-about .section-bg-content .wt .section-box .line6:after {
  content: "The Future";
  position: absolute;
  bottom: -13px;
  display: inline-block;
  width: 211px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #80CC69;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  left: 91px;
}

main#main-about .section-bg-content .wt .section-box .box-main {
  width: 28%;
  padding: 0px 25px;
  position: relative;
  min-height: 350px;
}

main#main-about .section-bg-content .wt .section-box .box-main:before {
  content: "";
  width: 90px;
  height: 90px;
  top: -98px;
  position: absolute;
  left: -58px;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_19_294Z.png);
  background-repeat: no-repeat;
  background-size: contain;
}

main#main-about .section-bg-content .wt .section-box .box-main .positions {
  position: absolute;
  width: 245px;
  left: -135px;
  top: 109px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  height: 40px;
  text-align: right;
}

main#main-about .section-bg-content .wt .section-box .box-main .positions span {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  color: #EB6C0E;
}

main#main-about .section-bg-content .wt .section-box .box-main h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  color: #233746;
  padding-bottom: 15px;
}

main#main-about .section-bg-content .wt .section-box .box-main p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  padding-bottom: 35px;
}

main#main-about .section-bg-content .wt .section-box .box-main img {
  width: 100%;
}

main#main-about .ourteam-content-main {
  padding: 30px 0px;
  padding-bottom: 0;
}

main#main-about .ourteam-content-main .our-title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  color: #233746;
  margin-bottom: 35px;
}

main#main-about .ourteam-content-main .box-option {
  width: 100%;
  border-radius: 44px;
  background-color: #f5f5f5;
  padding: 10px 29px;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}

main#main-about .ourteam-content-main .box-option .text-option {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.33;
  letter-spacing: normal;
  text-align: left;
  color: #7e7e7e;
}

main#main-about .ourteam-content-main .box-option .text-option.active {
  color: #EB6C0E;
}

main#main-about .ourteam-content-main .box-option .text-option.board {
  margin-right: 20px;
}

main#main-about .ourteam-content-main .box-option .text-option.management {
  margin-left: 20px;
}

main#main-about .ourteam-content-main .box-option .option input.toggle-round {
  display: none;
}

main#main-about .ourteam-content-main .box-option .option input.toggle-round + label {
  display: block;
  position: relative;
  cursor: pointer;
}

main#main-about .ourteam-content-main .box-option .option input.toggle-round + label {
  padding: 1px;
  width: 100px;
  height: 44px;
  background-color: #fff;
  border-radius: 50px;
}

main#main-about .ourteam-content-main .box-option .option input.toggle-round + label:after {
  display: block;
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background-color: #EB6C0E;
  border-radius: 100%;
  box-shadow: 0 2px 3px #888;
  transition: margin 0.5s;
  top: 4px;
  left: 6px;
}

main#main-about .ourteam-content-main .box-option .option input.toggle-round:checked + label {
  background-color: lightblue;
}

main#main-about .ourteam-content-main .box-option .option input.toggle-round:checked + label:after {
  margin-left: 50px;
}

main#main-about .ourteam-content-main .ourteam-flex {
  display: none;
  justify-content: flex-start;
  flex-wrap: wrap;
}

main#main-about .ourteam-content-main .ourteam-flex.active {
  display: flex;
}

main#main-about .ourteam-content-main .ourteam-flex .box {
  text-align: center;
  padding: 0px 20px;
  width: 20%;
  margin-bottom: 70px;
}

main#main-about .ourteam-content-main .ourteam-flex .box .box-img {
  position: relative;
}

main#main-about .ourteam-content-main .ourteam-flex .box .box-img .img {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main#main-about .ourteam-content-main .ourteam-flex .box img {
  width: 170px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

main#main-about .ourteam-content-main .ourteam-flex .box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  color: #233746;
}

main#main-about .ourteam-content-main .ourteam-flex .box h2 i {
  font-weight: 500;
  display: block;
  font-style: initial;
}

main#main-about .ourteam-content-main .ourteam-flex .box p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.17;
  color: #233746;
  margin: 0;
  display: block;
  margin-bottom: 15px;
  margin-top: 25px;
}

main#main-about .ourteam-content-main .ourteam-flex .box a {
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 2;
  color: #80CC69;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  justify-content: center;
  align-items: center;
  background: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup.active {
  display: flex;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box {
  width: 100%;
  padding: 0;
  margin: 0;
  padding-left: 85px;
  position: relative;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-img {
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 2;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content {
  background: #f5f5f5;
  min-height: 400px;
  padding: 100px 120px;
  position: relative;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .box-close {
  position: absolute;
  top: 23px;
  right: 19px;
  width: 27px;
  height: 26px;
  cursor: pointer;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .box-close span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background-color: #EB6C0E;
  transition: 0.25s;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .box-close span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: 3px;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .box-close span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content:before {
  content: "";
  height: 60px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, #fff, #fff 50%, #F5F5F5 50%, #F5F5F5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content h2 {
  display: flex;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content h2 i {
  margin-left: 8px;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content p {
  text-align: left;
  margin-top: 12px;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .content {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  margin-bottom: 0;
}

main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .content p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  margin-top: 15px;
  margin-bottom: 0;
  height: auto;
}

.page-template-page_about #newsletter {
  display: none;
}

/* About */
/*reponsive Home */
@media (max-width: 1620px) {
  #main .section-box-bottom .bottom-flex .text {
    padding: 130px 0 !important;
  }
  #main .section-box-bottom .bottom-flex .line3 {
    right: 0;
  }
  #main .section-box-bottom .bottom-flex .line4 {
    right: 0;
  }
  #main .section-line .box-line .box-producing {
    right: -25%;
  }
  #main .section-line .box-line .line5 {
    right: -21%;
  }
}
@media (max-width: 1399px) {
  #main .carousel-content ul.slick-dots {
    bottom: 34%;
  }
  #main .section-box-bottom .bottom-flex .text {
    padding: 80px 0 !important;
  }
  #main .section-box-bottom .bottom-flex .line1 {
    display: none;
  }
  #main .section-box-bottom .bottom-flex .line2 {
    display: none;
  }
  #main .section-box-bottom .bottom-flex .line3 {
    display: none;
  }
  #main .section-box-bottom .bottom-flex .line4 {
    display: none;
  }
  #main .section-box-bottom .bottom-flex:nth-child(2) .icon-bg {
    display: none;
  }
  #main .section-box-top {
    padding: 100px 0px;
    padding-bottom: 35px;
  }
  #main .section-box-top .section-fl .images .box-list-image {
    position: inherit;
    margin-right: 0;
  }
  #main .section-box-top .section-fl .images .box-list-image .img1 {
    display: none;
  }
  #main .section-box-top .section-fl .images .box-list-image ul {
    -webkit-transform: none;
            transform: none;
    left: 0;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    top: 73px;
  }
  #main .banner-connent {
    padding: 200px 0px 0px;
  }
}
@media (max-width: 1199px) {
  #main .carousel-content ul.slick-dots {
    bottom: inherit;
    top: 0;
  }
  #main .carousel-content ul.slick-dots li {
    margin: 5px 0px;
  }
  #main .about-content {
    padding: 70px 0px;
  }
  #main .about-content .text-flex {
    display: block;
  }
  #main .about-content .text-flex .left {
    width: 100%;
  }
  #main .about-content .text-flex .left p {
    padding-bottom: 35px;
  }
  #main .about-content .text-flex .right {
    width: 100%;
    margin-top: 55px;
  }
  #main .section-box-top .section-fl {
    display: block;
  }
  #main .section-box-top .section-fl .images {
    width: 100%;
  }
  #main .section-box-top .section-fl .title {
    width: 100%;
  }
  #main .section-box-bottom .bottom-flex .text h2 {
    font-size: 33px;
    line-height: 38px;
    width: 100%;
  }
  #main .section-box-bottom .bottom-flex .text p {
    font-size: 16px;
    width: 100%;
  }
  #menu ul.menu li a {
    height: auto;
    line-height: 40px;
    color: #fff !important;
  }
  footer#footer .footer-top .box-list-footer .item-footer .box-contact-footer {
    padding: 30px 30px;
  }
  #newsletter .box-newletter {
    padding: 60px 50px;
  }
}
@media (max-width: 991px) {
  #main .banner-connent .box-flex .text h2 {
    font-size: 70px;
  }
  #main .banner-connent .box-flex .text .bottom {
    padding: 50px 0px 70px;
  }
  #main .banner-connent .box-flex .text .bottom span {
    display: block;
    font-size: 20px;
    margin-bottom: 30px;
  }
  #main .banner-connent .box-flex .images img {
    max-width: 100%;
  }
  #main .banner-connent .text-s {
    display: none;
  }
  #main .section-line .box-line {
    width: 100%;
    padding-bottom: 65px;
    padding-top: 50px;
  }
  #main .section-line .box-line .box:before {
    display: none;
  }
  #main .section-line .box-line .box h2 {
    font-size: 30px;
  }
  #main .section-line .box-line .line5 {
    display: none;
  }
  #main .section-line .box-line .line5:before {
    right: 0px;
  }
  #main .section-line .box-line .line6 {
    display: none;
  }
  #main .section-line .box-line .box-producing {
    display: none;
  }
  #main .plant-content-main .plants-flex {
    display: block;
  }
  #main .plant-content-main .plants-flex .box {
    width: 100%;
  }
  #main .plant-content-main .plants-flex .box h2 {
    display: flex;
    align-items: center;
  }
  #main .plant-content-main .plants-flex .box h2 img {
    display: block;
  }
  #main .section-box-bottom .bottom-flex:nth-child(1) {
    background: transparent !important;
  }
  #main .section-box-bottom .bottom-flex:nth-child(2) {
    background: #f5f5f5 !important;
  }
  #main .section-box-bottom .bottom-flex:nth-child(2) .text {
    padding-bottom: 90px !important;
  }
  #main .section-box-bottom .bottom-flex .images {
    width: 100%;
    display: block !important;
  }
  #main .section-box-bottom .bottom-flex .images img {
    display: block;
    width: 100%;
  }
  #main .section-box-bottom .bottom-flex .text {
    width: 100%;
    padding: 30px 0 !important;
    padding-bottom: 50px !important;
  }
  #main .carousel-content ul.slick-dots {
    bottom: 5%;
  }
  #newsletter .box-newletter .box-title {
    display: block;
  }
  #newsletter .box-newletter .box-title h2:before {
    display: none;
  }
}
@media (max-width: 800px) {
  #main .about-content .text-flex {
    display: block;
  }
  #main .about-content .text-flex .left {
    width: 100%;
    margin-bottom: 50px;
  }
  #main .about-content .text-flex .left p {
    padding: 0;
    margin-bottom: 30px;
  }
  #main .about-content .text-flex .right {
    width: 100%;
  }
  #main .section-box-top {
    padding: 100px 0;
  }
  #main .section-box-top .section-fl {
    align-items: flex-start;
  }
  #main .section-box-top .section-fl .title h2 {
    line-height: 44px;
  }
  #main .section-box-top .section-fl .images .img2 {
    display: none !important;
  }
  #main .section-box-top .section-fl .images .box-list-image ul {
    position: relative;
    width: 100%;
    top: 0;
    margin-bottom: 35px;
  }
  #main .section-box-top .section-fl .images .box-list-image ul li {
    margin-bottom: 20px;
  }
  #main .section-box-bottom .bottom-flex:nth-child(1) {
    background-image: none !important;
  }
  #main .section-box-bottom .bottom-flex:nth-child(1) .text {
    width: 100%;
  }
  #main .section-box-bottom .bottom-flex:nth-child(2) {
    background-image: none !important;
  }
  #main .section-box-bottom .bottom-flex .text {
    width: 100%;
    padding: 100px 0;
  }
  #main .plant-content-main .plants-flex {
    display: block;
  }
  #main .plant-content-main .plants-flex .box {
    width: 100%;
  }
  #main .section-line .box-line {
    width: 100%;
    display: block;
    padding: 60px 0;
    padding-bottom: 50px;
  }
  #main .section-line .box-line .line5 {
    display: none;
  }
  #main .section-line .box-line .box.box2:before {
    display: none;
  }
  #main .section-line .box-line .box.box1:before {
    display: none;
  }
  #main .section-line .box-line .line6 {
    display: none;
  }
  #main .section-line .box-line .box {
    width: 100%;
    margin-bottom: 50px;
    width: 100%;
    padding: 0;
  }
  #main .section-line .box-line .box-producing {
    position: relative;
    text-align: left !important;
    right: inherit;
  }
  #main .section-line .box-line .box-producing h2 {
    text-align: center;
  }
  #main .section-line .box-line .box-producing p {
    text-align: center;
  }
  #main .carousel-content .wt .box-title {
    padding-right: 0;
    padding-left: 30px;
  }
  footer#footer .footer-top .box-list-footer {
    display: block !important;
  }
  footer#footer .footer-top .box-list-footer .item-footer:nth-child(2) {
    width: 100%;
  }
  footer#footer .footer-top .box-list-footer .item-footer:nth-child(3) {
    width: 100%;
  }
  .section-box-bottom .row {
    padding-left: 10px;
    padding-right: 10px;
  }
  #main .about-content .text-flex .right .box-video .box-text-icon img {
    max-width: 60px;
  }
  #main .about-content .text-flex .right .box-video .box-text-icon h2 {
    margin-left: 19px;
    font-size: 27px;
  }
}
@media (max-width: 600px) {
  #main .carousel-content .text-s {
    position: absolute;
    top: 50px;
    left: -50px;
  }
  #main .carousel-content .wt {
    padding: 0px 20px;
  }
  #main .carousel-content ul.slick-dots {
    display: flex;
    position: inherit;
    bottom: 11px;
    left: 0;
    width: auto;
    justify-content: center;
    margin-top: 30px;
  }
  #main .carousel-content ul.slick-dots li {
    margin: 0 5px;
  }
  #main .carousel-content ul.slick-dots li button {
    width: 16px;
    height: 16px;
  }
  #main .banner-connent {
    padding: 150px 0px 0px;
  }
  #main .banner-connent .box-flex {
    display: block;
  }
  #main .banner-connent .box-flex .text {
    width: 100%;
  }
  #main .banner-connent .box-flex .text h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  #main .banner-connent .box-flex .text .bottom {
    margin-top: 0;
    padding: 0;
  }
  #main .banner-connent .box-flex .images {
    width: 100%;
    text-align: right;
    margin-top: 0;
  }
  #main .section-box-top .icon-bg {
    height: auto;
  }
  #main .section-box-top .section-fl {
    display: block;
  }
  #main .section-box-top .section-fl .images {
    width: 100%;
    display: block;
  }
  #main .section-box-top .section-fl .images .box-list-image ul {
    position: inherit;
  }
  #main .section-box-top .section-fl .title {
    width: 100%;
  }
  #main .plant-content-main .text-tilte h2 {
    font-size: 45px;
  }
  #main .about-content .text-flex .right .box-video .box-text-icon {
    top: 16px;
    left: 19px;
  }
  #newsletter .box-newletter {
    padding: 60px 20px;
  }
}
/*repronsive about */
@media screen and (max-width: 1620px) {
  main#main-about .powering-content .text-flex {
    padding-right: 90px;
  }
  main#main-about .powering-content .text-flex .left {
    width: 50%;
    margin-right: 20px;
  }
  main#main-about .powering-content .text-flex .right {
    width: 50%;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(odd) .line1 {
    right: 0;
    left: -62px;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(odd) .line2 {
    left: -62px;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(odd):last-child .line2 {
    position: absolute;
    width: 19px;
    background: #EB6C0E;
    top: -53px;
    left: -100px;
    right: -100px;
    bottom: 46px;
    background-image: linear-gradient(to top, #80CC69, #EB6C0E);
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(odd):last-child .line2:before {
    content: "";
    width: 100px;
    height: 100px;
    background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/image_2021_07_29T03_34_25_998Z.png);
    position: absolute;
    bottom: -36px;
    background-repeat: no-repeat;
    background-size: contain;
    left: -33px;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(odd):last-child .line2:after {
    content: "The Future";
    position: absolute;
    bottom: -13px;
    display: inline-block;
    width: 211px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #80CC69;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
    left: 91px;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(even) .line1 {
    left: -62px;
    right: 0;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(even) .line2 {
    right: 0;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(even):last-child .line2 {
    right: 0;
  }
  main#main-about .section-bg-content .wt .section-box:first-child .line1:before {
    height: 100px;
  }
  main#main-about .section-bg-content .wt .section-box:first-child .line1:after {
    top: -170px;
  }
}
@media screen and (max-width: 1199px) {
  .is-sticky #header #menu ul.menu li a {
    color: #ffffff !important;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box {
    width: 25%;
  }
  main#main-about .section-bg-content .wt .section-box .box-main p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px) {
  .section-bg-content .wt .section-box .line1 {
    display: none;
  }
  .section-bg-content .wt .section-box .line2 {
    display: none;
  }
  .section-bg-content .wt .section-box .box-main {
    left: auto !important;
    right: auto !important;
  }
  .section-bg-content .wt .section-box .box-main:before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  main#main-about .section-bg-content .wt .section-box .box-main h2 {
    font-size: 25px;
    padding-bottom: 0;
    line-height: 1;
  }
  main#main-about .section-bg-content .wt .section-box .box-main p {
    font-size: 14px;
    padding-bottom: 15px;
  }
  main#main-about .ourteam-content-main .our-title h2 {
    font-size: 35px;
  }
  main#main-about .ourteam-content-main .box-option .text-option {
    font-size: 20px;
  }
  main#main-about .ourteam-content-main .box-option .option input.toggle-round + label {
    height: 30px;
  }
  main#main-about .ourteam-content-main .box-option .option input.toggle-round + label:after {
    width: 22px;
    height: 22px;
  }
  main#main-about .ourteam-content-main .box-option .option input.toggle-round:checked + label:after {
    margin-left: 67px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box {
    width: 33.33%;
    float: left;
    margin-bottom: 20px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box h2 {
    font-size: 25px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box a {
    font-size: 18px;
  }
  footer#footer .footer-top .box-list-footer .item-footer .box-img-footer .text {
    font-size: 45px;
  }
  footer#footer .footer-top .box-list-footer .item-footer h2 {
    font-size: 25px;
  }
  footer#footer .footer-top .box-list-footer .item-footer .footer-menu ul li a {
    font-size: 16px;
    padding: 10px;
  }
  footer#footer .footer-top .box-list-footer .item-footer .box-contact-footer {
    padding: 15px;
    font-size: 16px;
  }
  #menu {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content {
    background: #f5f5f5;
    min-height: 400px;
    padding: 20px;
    padding-left: 120px;
    padding-top: 60px;
  }
  main#main-about .powering-content {
    padding: 60px 0px;
  }
  main#main-about .section-bg-content {
    padding: 60px 0;
    display: block;
  }
  main#main-about .section-bg-content .wt .section-box {
    display: block;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 9;
    padding-bottom: 0;
  }
  main#main-about .section-bg-content .wt .section-box .box-main {
    width: 100%;
    padding: 0px 25px;
    position: relative;
    min-height: auto;
  }
  main#main-about .section-bg-content .wt .section-box .box-main .positions {
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    display: inline-block;
    height: auto;
    text-align: left;
    transition: none;
    margin-bottom: 14px;
    -webkit-transform: none;
            transform: none;
  }
  main#main-about .section-bg-content .wt .section-box .box-main h2 {
    font-size: 20px;
  }
  main#main-about .section-bg-content .wt .section-box .box-main p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    padding-bottom: 0;
  }
  #newsletter .box-newletter .newsletter__form form #gform_fields_2 {
    flex-direction: column;
  }
  #newsletter .box-newletter .newsletter__form form #gform_fields_2 .gfield {
    width: 100% !important;
  }
  #newsletter .box-newletter .newsletter__form form #gform_fields_2 input {
    padding: 15px;
    font-size: 16px;
  }
  #newsletter .box-newletter .newsletter__form form #gform_fields_2 label {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main#main-about .banner-content {
    padding: 160px 0px;
  }
  main#main-about .banner-content .flexx .images img {
    width: 150px;
  }
  main#main-about .powering-content .text-flex {
    padding-right: 0;
    flex-direction: column;
  }
  main#main-about .powering-content .text-flex .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  main#main-about .powering-content .text-flex .right {
    width: 100%;
  }
  main#main-about .section-bg-content {
    background: #f5f5f5;
    padding-bottom: 10px !important;
  }
  main#main-about .section-bg-content .wt .section-box .box-main {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 0;
  }
  main#main-about .section-bg-content .wt .section-box .box-main p {
    -webkit-line-clamp: inherit;
  }
  main#main-about .section-bg-content .wt .section-box .box-main:before {
    display: none;
  }
  main#main-about .section-bg-content:before {
    width: auto;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box {
    width: 50%;
    float: left;
    margin-bottom: 20px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box h2 {
    font-size: 20px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box a {
    font-size: 16px;
  }
  #newsletter .box-newletter {
    padding: 30px 15px;
  }
  #newsletter .box-newletter .box-title {
    flex-direction: column;
  }
  #newsletter .box-newletter .box-title h2:before {
    display: none;
  }
  #newsletter .box-newletter .newsletter__form form .gform_footer.top_label:before,
#newsletter .box-newletter .newsletter__form form .gform_footer.top_label:after {
    display: none;
  }
  footer#footer .footer-top .box-list-footer {
    flex-direction: column;
  }
  footer#footer .footer-top .box-list-footer .item-footer {
    width: 100% !important;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box {
    padding: 0;
    background: #f5f5f5;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-img {
    position: relative;
    left: 0;
    top: 0;
    z-index: 2;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content {
    padding: 20px;
    z-index: 99;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content:before {
    display: none;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .box-close {
    top: -170px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content h2 {
    justify-content: center;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content p {
    height: auto;
    padding: 0;
    text-align: center;
    margin-bottom: 0;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .content {
    max-height: 300px;
    overflow: scroll;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box-popup .box .box-content .content p {
    margin-bottom: 0;
    height: auto;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  main#main-about .banner-content .flexx .images img {
    display: none;
  }
  main#main-about .ourteam-content-main .box-option .option input.toggle-round + label {
    width: 60px;
  }
  main#main-about .ourteam-content-main .box-option .option input.toggle-round:checked + label:after {
    margin-left: 28px;
  }
  main#main-about .ourteam-content-main .box-option .text-option {
    font-size: 16px;
  }
  #menu {
    width: 70%;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box {
    width: 100%;
    margin-bottom: 40px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box p {
    height: auto !important;
    padding: 0;
    margin: 0;
  }
}
/* end reponsive about */
/* News */
main#main-news .banner-content {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Path-269.jpg);
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px;
  position: relative;
}

main#main-news .banner-content:after {
  content: "";
  height: 107px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom right, transparent, transparent 50%, #f5f5f5 50%, #f5f5f5);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
}

main#main-news .banner-content .flexx {
  position: relative;
}

main#main-news .banner-content .flexx .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  color: #ffffff;
}

main#main-news .banner-content .flexx .text p {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #EB6C0E;
}

main#main-news .banner-content .flexx .images {
  position: absolute;
  right: 0;
  top: -70px;
}

main#main-news .banner-content .flexx .images img {
  width: 300px;
  z-index: 99;
  position: relative;
}

main#main-news .box-main-text {
  background-color: #f5f5f5;
  padding: 130px 0px 170px;
  position: relative;
  overflow: hidden;
}

main#main-news .box-main-text:after {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to top right, #fff, #fff 50%, transparent 50%, transparent);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-news .box-main-text:before {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Group-15.png);
  background-size: cover;
  padding: 0;
  position: absolute;
  content: "";
  width: 500px;
  height: 528px;
  background-repeat: no-repeat;
  background-position: center;
  top: 10px;
  z-index: 1;
  right: -104px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

main#main-news .box-main-text .box {
  max-width: 700px;
  z-index: 99;
  position: relative;
}

main#main-news .box-main-text .box h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  color: #233746;
  margin-bottom: 40px;
}

main#main-news .box-main-text .box span {
  font-size: 30px;
  font-weight: bold;
  color: #EB6C0E;
}

main#main-news .powering-content {
  padding: 80px 0px;
  position: relative;
  position: relative;
}

main#main-news .powering-content.s1:before {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, #f5f5f5, #f5f5f5 50%, transparent 50%, transparent);
  position: absolute;
  top: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-news .powering-content.s1:after {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to top left, #f5f5f5, #f5f5f5 50%, transparent 50%, transparent);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-news .powering-content .text-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main#main-news .powering-content .text-flex .left {
  width: 35%;
}

main#main-news .powering-content .text-flex .left h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
  padding: 40px 0px;
}

main#main-news .powering-content .text-flex .left p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  margin-bottom: 0;
  padding-bottom: 100px;
}

main#main-news .powering-content .text-flex .left a {
  margin: 0;
  line-height: 1;
  padding: 14px 40px;
  border-radius: 25px;
  background-color: #EB6C0E;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

main#main-news .powering-content .text-flex .right {
  width: 50%;
}

main#main-news .box-main-top {
  position: relative;
  overflow: hidden;
  padding: 80px 0px 30px;
  background: #f5f5f5;
}

main#main-news .box-main-top:after {
  content: "";
  height: 93px;
  margin: 0 auto;
  background-image: linear-gradient(to top left, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

main#main-news .box-main-top:before {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Group-15.png);
  background-size: cover;
  padding: 0;
  position: absolute;
  content: "";
  width: 617PX;
  height: 664px;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  z-index: 1;
  right: 78px;
  bottom: -337px;
  -webkit-transform: rotate(-67deg);
          transform: rotate(-67deg);
}

main#main-news .box-main-top .text-center img {
  width: 85%;
  position: relative;
  z-index: 9;
}

main#main-news .box-main-top .text-center h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
  padding: 40px 0px;
}

main#main-news .box-main-bg {
  position: relative;
  padding: 100px 0px;
  overflow: hidden;
}

main#main-news .box-main-bg.s1 {
  background: #f5f5f5;
  padding: 30px 0px 130px !important;
}

main#main-news .box-main-bg.s1:after {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to top right, #fff, #fff 50%, transparent 50%, transparent);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-news .box-main-bg.s1:before {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Group-15.png);
  background-size: cover;
  padding: 0;
  position: absolute;
  content: "";
  width: 550px;
  height: 533px;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  z-index: 1;
  right: 12%;
  top: -288px;
  -webkit-transform: rotate(-64deg);
          transform: rotate(-64deg);
}

main#main-news .box-main-bg#box-main-bg:after {
  display: none;
}

main#main-news .box-main-bg .btn {
  text-align: center;
  padding: 40px 0px 0px;
}

main#main-news .box-main-bg .btn a {
  margin: 0;
  line-height: 1;
  padding: 14px 40px;
  border-radius: 25px;
  background-color: #80CC69;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

main#main-news .box-main-bg .text-center h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
  padding-bottom: 40px;
  padding-top: 40px;
  z-index: 99;
  position: relative;
}

main#main-news .box-main-bg .text-center .flex {
  display: flex;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}

main#main-news .box-main-bg .text-center .flex .box {
  padding: 0px 10px;
}

main#main-news .box-main-bg .text-center .flex .box h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  color: #EB6C0E;
  padding: 30px 0px;
  margin: 0;
}

main#main-news .box-main-bg .text-center .flex .box p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
}

main#main-news .box-main-bg .text-center .flex .box img {
  width: 90px;
}

main#main-news #box-main-bg {
  background-image: none;
  padding: 40px 0px;
}

main#main-news #box-main-bg .flex {
  padding: 0px 70px;
}

main#main-news .section-bg-main {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Path-197.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 70px 0px;
  overflow: hidden;
  z-index: 99;
}

main#main-news .section-bg-main.s2:before {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Group-15.png);
  background-size: cover;
  padding: 0;
  position: absolute;
  content: "";
  width: 604px;
  height: 648px;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  z-index: 1;
  left: -485px;
  top: 4%;
  -webkit-transform: rotate(152deg);
          transform: rotate(152deg);
}

main#main-news .section-bg-main.s2:after {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to top right, #fff, #fff 50%, transparent 50%, transparent);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-news .section-bg-main #bottom .left a {
  background-color: #EB6C0E;
  margin-top: 110px;
  display: inline-block;
}

main#main-news .section-bg-main #bottom .right {
  width: 38%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 30px;
  margin-top: 30px;
}

main#main-news .section-bg-main #bottom .right img {
  width: 230px;
}

main#main-news .section-bg-main #top {
  padding: 80px 80px 55px;
}

main#main-news .section-bg-main #top img {
  width: 100%;
}

main#main-news .section-bg-main .box-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0px 55px;
  z-index: 99;
}

main#main-news .section-bg-main .box-flex .left {
  width: 40%;
}

main#main-news .section-bg-main .box-flex .left h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
}

main#main-news .section-bg-main .box-flex .left p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  padding-bottom: 55px;
}

main#main-news .section-bg-main .box-flex .left a {
  margin: 0;
  border-radius: 25px;
  background-color: #80CC69;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  padding: 14px 40px;
  color: #ffffff;
}

main#main-news .section-bg-main .box-flex .right {
  width: 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 30px;
}

main#main-news .section-bg-main .box-flex .right .main {
  text-align: center;
}

main#main-news .section-bg-main .box-flex .right .main img {
  width: 90px;
}

main#main-news .section-bg-main .box-flex .right .main h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  color: #EB6C0E;
  padding: 10px 0px;
  margin: 0;
}

main#main-news #section-bg-main {
  padding: 0px;
  background-image: none;
}

main#main-news #backgroud {
  background-image: none;
  padding-top: 0;
  padding-bottom: 0;
}

main#main-news .section-heading {
  padding: 100px 0px;
}

main#main-news .section-heading .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 30px;
  font-weight: bold;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

main#main-news .section-heading .flex {
  padding: 0px 60px;
}

main#main-news .section-heading .flex .bt {
  text-align: center;
  margin-top: 25px;
}

main#main-news .section-heading .flex .box {
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
}

main#main-news .section-heading .flex .box p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  padding: 10px 20px;
}

main#main-news .section-heading .flex a {
  margin: 0;
  line-height: 1;
  padding: 14px 40px;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #EB6C0E;
}

@media only screen and (max-width: 991px) {
  main#main-news .powering-content .text-flex {
    display: initial;
  }
  main#main-news .powering-content .text-flex .left {
    width: 100%;
    margin-bottom: 60px;
  }
  main#main-news .powering-content .text-flex .left P {
    padding-bottom: 50px;
  }
  main#main-news .powering-content .text-flex .left h2 {
    margin-bottom: 0;
  }
  main#main-news .powering-content .text-flex .right {
    width: 100%;
  }
  main#main-news .box-main-bg.s1:before {
    display: none;
  }
  main#main-news .box-main-bg.s1 .flex {
    display: initial;
  }
  main#main-news .box-main-bg.s1 .flex .box {
    margin-bottom: 45px;
  }
  main#main-news .section-bg-main .box-flex {
    display: initial;
    margin-bottom: 30px;
  }
  main#main-news .section-bg-main .box-flex .left {
    width: 100%;
    margin-bottom: 60px;
  }
  main#main-news .section-bg-main .box-flex .right {
    width: 100%;
    padding: 50px 0px;
  }
  main#main-news div#box-main-bg .flex {
    display: initial;
  }
  main#main-news div#box-main-bg .flex .box {
    margin-bottom: 45px;
  }
  main#main-news .section-heading {
    padding: 0px 0px 50px;
  }
  main#main-news .section-bg-main #bottom {
    padding: 0px 0px 55px;
    padding-bottom: 0;
  }
  main#main-news .section-bg-main #bottom .right {
    padding: 30px 0px;
    width: 100%;
    grid-row-gap: 0;
    margin-top: 0;
  }
  main#main-news .section-bg-main #bottom .right img {
    width: 95%;
  }
  main#main-news .section-bg-main #bottom .left {
    width: 100%;
    margin-bottom: 0;
  }
  main#main-news .section-bg-main #bottom .left p {
    padding-bottom: 31px;
  }
  main#main-news .section-bg-main #bottom .left a {
    margin-top: 30px;
  }
  main#main-news div#section-bg-main .box-flex {
    padding: 0px 50px !important;
  }
  main#main-news div#section-bg-main .box-flex .right {
    margin: 40px 0px;
  }
  main#main-news div#section-bg-main .box-flex .left {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  main#main-news .section-bg-main .box-flex .right {
    padding: 30px 0px;
    width: 100%;
    grid-row-gap: 0;
    margin-top: 0;
  }
  main#main-news .section-bg-main .box-flex .right img {
    width: 95%;
  }
  main#main-news .section-bg-main .box-flex .left {
    width: 100%;
    margin-bottom: 0;
  }
  main#main-news .section-bg-main .box-flex .left p {
    padding-bottom: 31px;
  }
  main#main-news .section-bg-main .box-flex .left a {
    margin-top: 30px;
  }
  main#main-news .section-bg-main.s2 #bottom {
    padding: 130px 0px 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  main#main-news .banner-content {
    padding-bottom: 100px;
  }
  main#main-news .banner-content:after {
    height: 60px;
  }
  main#main-news .banner-content .flexx .text {
    margin-bottom: 65px;
  }
  main#main-news .banner-content .flexx .images {
    display: none;
    position: inherit;
    right: 0;
    top: 0;
  }
  main#main-news .box-main-text {
    padding: 100px 0;
  }
  main#main-news .box-main-text:after {
    height: 26px;
  }
  main#main-news .box-main-text .box h2 {
    font-family: "Quicksand", sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 35px;
    color: #233746;
    margin-bottom: 12px;
  }
  main#main-news .box-main-text .box span {
    font-size: 22px;
    font-weight: bold;
    color: #EB6C0E;
  }
  main#main-news .powering-content {
    padding: 50px 0;
    padding-top: 0;
  }
  main#main-news .powering-content .text-flex .left h2 {
    padding-bottom: 22px;
  }
  main#main-news .box-main-top {
    padding: 59px 0px;
  }
  main#main-news .box-main-top:after {
    height: 40px;
  }
  main#main-news .box-main-top .text-center h2 {
    padding-bottom: 3px;
    z-index: 9999;
    position: relative;
  }
  main#main-news .powering-content.s1:before {
    height: 24px;
  }
  .footer-bottom .box-copyright {
    display: initial;
  }
  .footer-bottom .box-copyright p {
    margin-bottom: 25px;
  }
}
/* News */
/* contact */
main#main-contact .box-text-top p {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #233746;
  margin-bottom: 0;
  margin-top: 40px;
}

main#main-contact .box-text-bottom p {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #233746;
  margin-bottom: 40px;
}

main#main-contact .banner-content {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Path-269.jpg);
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px;
  position: relative;
}

main#main-contact .banner-content:after {
  content: "";
  height: 107px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom right, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
}

main#main-contact .banner-content .flexx {
  position: relative;
}

main#main-contact .banner-content .flexx .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  color: #ffffff;
}

main#main-contact .banner-content .flexx .text p {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #EB6C0E;
}

main#main-contact .banner-content .flexx .images {
  position: absolute;
  right: 0;
  top: -70px;
}

main#main-contact .banner-content .flexx .images img {
  width: 300px;
  z-index: 99;
  position: relative;
}

main#main-contact .form-sup {
  margin: 50px auto;
  position: relative;
  padding: 30px;
  background-color: #80CC69;
  max-width: 1350px;
}

main#main-contact .form-sup .box-title h2 {
  width: 500px;
  font-family: Quicksand;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  padding-bottom: 20px;
  position: relative;
  left: 216px;
}

main#main-contact .form-sup .box-subtitle {
  position: absolute;
  left: -100px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  top: 65px;
}

main#main-contact .form-sup .box-subtitle h3 {
  font-family: Quicksand;
  font-size: 40px;
  font-weight: bold;
  text-align: left;
  color: #1cbadb;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 {
  display: flex;
  justify-content: space-between;
  width: 90%;
  padding-left: 220px;
  align-items: center;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 div#field_2_1 {
  width: 22%;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 div#field_2_1 input#input_2_1 {
  border: 0;
  padding: 23px 25px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 div#field_2_2 {
  width: 22%;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 div#field_2_2 input#input_2_2 {
  border: 0;
  padding: 23px 25px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 div#field_2_3 {
  width: 25%;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 div#field_2_3 input#input_2_3 {
  border: 0;
  padding: 23px 25px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 fieldset#field_2_5 .gchoice {
  margin: 9px 0px;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 fieldset#field_2_5 .gchoice.gchoice_2_5_2 {
  display: none;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 fieldset#field_2_5 input#choice_2_5_1 {
  width: 26px;
  height: 26px;
  border: 0 !important;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 fieldset#field_2_5 input#choice_2_5_2 {
  width: 26px;
  height: 26px;
  border: 0 !important;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 fieldset#field_2_5 label {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 fieldset#field_2_5 a {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-sup .gform_body.gform-body fieldset#field_2_5 {
  width: 35%;
}

main#main-contact .form-sup .gform_footer.top_label {
  position: absolute;
  right: 25px;
  bottom: 25px;
}

main#main-contact .form-sup .gform_footer.top_label input#gform_submit_button_2 {
  margin: 0;
  padding: 10px 29px 11px 27px;
  border-radius: 25px;
  background-color: #233746;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
  color: #80CC69;
}

main#main-contact .form-sup .box-icon {
  padding: 40px 25px 30px;
  background-color: #1cbadb;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

main#main-contact .form-sup .box-icon:before {
  position: absolute;
  content: "";
  background: #233746;
  width: 14px;
  height: 140px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -8px;
}

main#main-contact .form-sup .box-icon h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  color: #233746;
  margin-bottom: 25px;
}

main#main-contact .form-sup .box-icon .images img {
  margin: 5px 7px;
}

main#main-contact .form-contact {
  background: #f5f5f5;
  padding: 100px 0px;
}

main#main-contact .form-contact .box-title {
  max-width: 810px;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
}

main#main-contact .form-contact .box-title h2 {
  font-family: Quicksand;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.38;
  color: #233746;
  margin-bottom: 0;
  padding-right: 35px;
  margin-right: 25px;
  position: relative;
}

main#main-contact .form-contact .box-title h2:before {
  position: absolute;
  content: "";
  background: #233746;
  width: 7px;
  height: 50px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

main#main-contact .form-contact .box-title p {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
  margin-bottom: 0;
  max-width: 224px;
}

main#main-contact .form-contact div#gform_wrapper_3 {
  max-width: 810px;
  margin: auto;
}

main#main-contact .form-contact div#gform_wrapper_3 .gform_body.gform-body div#gform_fields_3 .gfield input {
  border: 0;
  padding: 23px 25px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-contact div#gform_wrapper_3 .gform_body.gform-body div#gform_fields_3 .gfield select#input_3_9 {
  border: 0;
  padding: 23px 25px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-contact div#gform_wrapper_3 .gform_body.gform-body div#gform_fields_3 .gfield textarea#input_3_6 {
  border: 0;
  padding: 23px 25px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
  height: 65px;
}

main#main-contact .form-contact div#gform_wrapper_3 .gform_body.gform-body div#gform_fields_3 .gfield .ginput_container.ginput_container_checkbox .gchoice {
  margin: 9px 0px;
}

main#main-contact .form-contact div#gform_wrapper_3 .gform_body.gform-body div#gform_fields_3 .gfield .ginput_container.ginput_container_checkbox .gchoice input {
  width: 26px;
  height: 26px;
  border: 0 !important;
}

main#main-contact .form-contact div#gform_wrapper_3 .gform_body.gform-body div#gform_fields_3 .gfield .ginput_container.ginput_container_checkbox .gchoice label {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
  margin-left: 5px;
}

main#main-contact .form-contact div#gform_wrapper_3 .gform_body.gform-body div#gform_fields_3 .gfield .ginput_container.ginput_container_checkbox .gchoice a {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  color: #233746;
}

main#main-contact .form-contact div#gform_wrapper_3 div#field_3_8 {
  padding: 20px 0px;
}

main#main-contact .form-contact div#gform_wrapper_3 div#field_3_8 div#input_3_8 {
  float: right;
}

main#main-contact .form-contact div#gform_wrapper_3 fieldset#field_3_10 {
  padding: 15px 0px 0px;
}

main#main-contact .form-contact .gform_footer.top_label {
  position: relative;
  justify-content: flex-end;
  text-align: right;
}

main#main-contact .form-contact .gform_footer.top_label:after {
  position: absolute;
  content: "";
  background: #233746;
  width: 650px;
  height: 10px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

main#main-contact .form-contact .gform_footer.top_label input#gform_submit_button_3 {
  margin: 0;
  padding: 10px 29px 11px 27px;
  border-radius: 25px;
  background-color: #233746;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
  color: #80CC69;
}

main#main-contact .footer-v2 {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/White-bg@2x.png);
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0px 60px;
}

main#main-contact .footer-v2 .flex-main {
  display: flex;
  justify-content: space-between;
}

main#main-contact .footer-v2 .flex-main .left {
  width: 30%;
}

main#main-contact .footer-v2 .flex-main .left h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.38;
  color: #233746;
  margin-bottom: 20px;
}

main#main-contact .footer-v2 .flex-main .left .bg {
  background: #fff;
  padding: 35px 50px;
  border-radius: 25px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

main#main-contact .footer-v2 .flex-main .left .bg p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.39;
  color: #233746;
  margin-bottom: 0px;
}

main#main-contact .footer-v2 .flex-main .left .bg p em {
  color: #1cbadb;
  font-weight: bold;
  font-style: inherit;
}

main#main-contact .footer-v2 .flex-main .right {
  width: 60%;
}

main#main-contact .footer-v2 .flex-main .right h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.38;
  color: #233746;
  margin-bottom: 20px;
}

main#main-contact .footer-v2 .flex-main .right .box {
  width: 47%;
  float: left;
  background: #fff;
  padding: 35px 50px;
  border-radius: 25px;
  margin: 0px 8px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

main#main-contact .footer-v2 .flex-main .right .box p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.39;
  color: #233746;
  margin: 0;
}

main#main-contact .footer-v2 .flex-main .right .box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #1cbadb;
  line-height: 1.39;
}

@media only screen and (max-width: 1199px) {
  main#main-contact .form-sup {
    margin: 50px 50px !important;
    margin-bottom: 50px !important;
  }
  main#main-contact .form-sup .box-title h2 {
    max-width: 710px;
  }
  main#main-contact .footer-v2 .flex-main .right .box {
    padding: 30px 20px;
  }
  main#main-contact .footer-v2 .flex-main .left .bg {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 1100px) {
  main#main-contact .form-sup .box-icon {
    position: inherit;
  }
  main#main-contact .form-sup .box-icon:before {
    display: none;
  }
  main#main-contact .form-sup .box-subtitle {
    display: none;
  }
  main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 {
    width: 100% !important;
    margin: 25px 0px;
    padding-left: 0 !important;
  }
  main#main-contact .form-sup .gform_footer.top_label {
    position: inherit;
  }
  main#main-contact .form-sup .form-sup .box-title h2 {
    left: 0;
    max-width: 100%;
    padding: 0;
    margin-top: 18px;
  }
}
@media only screen and (max-width: 1100px) {
  main#main-contact .form-sup {
    margin: 50px 50px !important;
    margin-bottom: 50px !important;
  }
  main#main-contact .form-sup .box-title h2 {
    left: 0;
    max-width: 100%;
    padding: 0;
    margin-top: 18px;
  }
  main#main-contact .footer-v2 .flex-main .right h2 {
    font-size: 23px;
  }
  main#main-contact .footer-v2 .flex-main .right .box p {
    font-size: 18px;
  }
  main#main-contact .footer-v2 .flex-main .left h2 {
    font-size: 23px;
  }
  main#main-contact .footer-v2 .flex-main .left .bg p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  main#main-contact .footer-v2 .flex-main {
    display: initial;
  }
  main#main-contact .footer-v2 .flex-main .left {
    width: 100%;
    margin-bottom: 50px;
  }
  main#main-contact .footer-v2 .flex-main .right {
    width: 100%;
  }
  main#main-contact .footer-v2 .flex-main .right .box {
    width: 100%;
    margin-bottom: 30px;
    margin: 10px 0px 10px 0px;
  }
  main#main-contact .form-contact div#gform_wrapper_3 {
    max-width: 100%;
    padding: 0px 30px;
  }
}
@media only screen and (max-width: 767px) {
  main#main-contact .form-sup .box-icon:before {
    display: none;
  }
  main#main-contact .banner-content {
    padding-bottom: 100px;
  }
  main#main-contact .banner-content:after {
    display: none;
  }
  main#main-contact .banner-content .flexx .text {
    margin-bottom: 65px;
  }
  main#main-contact .banner-content .flexx .images {
    display: none;
    position: inherit;
    right: 0;
    top: 0;
  }
  main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 {
    display: inherit;
  }
  main#main-contact .form-sup .gform_body.gform-body div#gform_fields_2 .gfield {
    width: 100% !important;
    margin-bottom: 25px;
  }
  main#main-contact .form-contact {
    padding: 60px 0px 30px;
  }
  main#main-contact .form-contact .box-title {
    padding: 0 20px;
    display: block;
    margin-bottom: 25px;
  }
  main#main-contact .form-contact .box-title h2 {
    position: relative;
    margin-bottom: 18px;
  }
  main#main-contact .form-contact .box-title h2:before {
    display: none;
  }
  main#main-contact .form-contact .gform_footer.top_label {
    text-align: center;
  }
  main#main-contact .form-contact .gform_footer.top_label:after {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  main#main-contact .form-contact div#gform_wrapper_3 div#field_3_8 div#input_3_8 {
    float: left;
  }
}
@media only screen and (max-width: 480px) {
  main#main-contact .form-sup {
    padding: 30px 20px;
    margin: 50px 20px !important;
    margin-bottom: 50px !important;
  }
  main#main-contact .form-sup .box-icon:before {
    right: -5px;
  }
  main#main-contact .form-contact div#gform_wrapper_3 {
    max-width: 100%;
    padding: 0px 20px;
  }
}
.page-template-page_contact section#newsletter {
  display: none;
}

.page-template-page_contact .footer-top {
  display: none !important;
}

/*single */
.single-post #header {
  position: absolute;
  width: 100%;
}

#main-single {
  background: url(https://cptest.com.au/raven/wp-content/uploads/2021/08/Group-15.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 70%;
  padding-top: 200px;
}

#main-single .post-details .post-details__header h1 {
  max-width: 845px;
  margin: 0 auto;
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  margin-bottom: 25px;
}

#main-single .post-details .post-details__header .box-image-banner {
  position: relative;
}

#main-single .post-details .post-details__header .box-image-banner .post-details__photo {
  padding-right: 120px;
}
#main-single .post-details .post-details__header .box-image-banner .post-details__photo img {
  display: block;
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-single .post-details .post-details__header .box-image-banner .box-social {
  position: absolute;
  right: 0;
  top: -38px;
}

#main-single .post-details .post-details__header .box-image-banner .box-social h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.22;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  text-align: center;
  margin-bottom: 0;
}

#main-single .post-details .post-details__header .box-image-banner .box-social .images {
  background-color: #233746;
  padding: 10px 20px;
}

#main-single .post-details .post-details__header .box-image-banner .box-social .images a {
  display: block;
  text-align: center;
  padding: 10px 0;
}

#main-single .post-details .post-details__header .date-category {
  max-width: 845px;
  margin: 0 auto;
  display: flex;
  position: relative;
  /* margin-left: -20px; */
  margin-top: 20px;
  margin-bottom: 30px;
}

#main-single .post-details .post-details__header .date-category p {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: left;
  color: #bebebe;
  margin-left: -170px;
}

#main-single .post-details .post-details__header .date-category a {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #EB6C0E;
  position: relative;
  margin-left: 12px;
  padding-left: 16px;
}

#main-single .post-details .post-details__header .date-category a:before {
  width: 5px;
  height: 28px;
  content: "";
  background: #EB6C0E;
  position: absolute;
  border-radius: 30px;
  left: 0;
  top: 5px;
}

#main-single .post-details .entry-content {
  max-width: 845px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
}

#main-single .post-details .entry-content p {
  max-width: 845px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  margin-bottom: 20px;
}

#main-single .post-details .entry-content img {
  margin: 30px 0;
  display: block;
  width: 100%;
}

#main-single .post-details .entry-content h2 {
  max-width: 845px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

#main-single .post-details .entry-content h3 {
  max-width: 845px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

#main-single .box-main-maxim {
  background-color: #f5f5f5;
  padding: 150px 0;
  position: relative;
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/08/Group-74-e1627894696532.png);
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
  background-size: 30%;
}

#main-single .box-main-maxim:before {
  content: "";
  height: 60px;
  margin: 0 auto;
  background-image: linear-gradient(to top left, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

#main-single .box-main-maxim:after {
  height: 60px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, #f5f5f5, #f5f5f5 50%, #fff 50%, #fff);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

#main-single .box-main-maxim .box {
  max-width: 865px;
  z-index: 99;
  position: relative;
}

#main-single .box-main-maxim .box h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  margin-bottom: 60px;
}

#main-single .box-main-maxim .box span {
  font-size: 30px;
  font-weight: bold;
  color: #EB6C0E;
}

#main-single .box-video .text-content-video {
  padding-top: 20px;
  padding-bottom: 45px;
}

#main-single .box-video .text-content-video p {
  max-width: 845px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: #233746;
  margin-bottom: 20px;
}

#main-single .box-video .text-content-video h3 {
  max-width: 845px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: #EB6C0E;
  margin-bottom: 20px;
}

#main-single .box-video .box-video-popup img {
  margin: 0 auto;
  display: block;
  margin-bottom: 65px;
}

#main-single .box-video .box-video-popup .box-wrap {
  position: relative;
}

#main-single .box-video .box-video-popup .box-wrap .icon-video-play {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: 0;
  right: 0;
}

#main-single .box-video .box-video-popup .box-wrap .icon-video-play img {
  margin: 0;
  display: block;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .single-post #header button.toggle-menu span {
    background-color: #233746 !important;
  }
  .single-post #header button.toggle-menu.active span {
    background-color: #fff !important;
  }
  #main-single .post-details .post-details__header .box-image-banner {
    position: relative;
  }
  #main-single .post-details .post-details__header .box-image-banner .post-details__photo {
    padding-right: 0;
  }
  #main-single .post-details .post-details__header .box-image-banner .post-details__photo img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #main-single .post-details .post-details__header .box-image-banner .box-social {
    position: relative;
    right: 0;
    top: 0;
    padding-left: 39px;
  }
  #main-single .post-details .post-details__header .box-image-banner .box-social h2 {
    text-align: left;
  }
  #main-single .post-details .post-details__header .box-image-banner .box-social .images {
    display: flex;
    max-width: 202px;
  }
  #main-single .post-details .post-details__header .box-image-banner .box-social .images a {
    padding: 0 10px;
  }
  #main-single .post-details .post-details__header .date-category {
    margin-bottom: 8px;
  }
  #main-single .post-details .post-details__header .date-category p {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  #main-single .post-details .post-details__header .box-image-banner .box-social {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  #main-single {
    padding-top: 150px;
  }
  #main-single .post-details .post-details__header h1 {
    font-size: 45px;
  }
  #main-single .post-details .post-details__header .box-image-banner .box-social {
    padding-left: 0px;
  }
  #main-single .box-main-maxim {
    padding: 100px 0;
  }
  #main-single .box-main-maxim:before {
    height: 30px;
  }
  #main-single .box-main-maxim:after {
    height: 30px;
  }
  #main-single .box-main-maxim .box h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  #main-single .box-main-maxim .box span {
    font-size: 25px;
  }
  #main-single .box-video .box-video-popup .box-wrap .icon-video-play img {
    max-width: 50px;
  }
}
/* end single */
/* category */
main.main-category .tabs-content-main {
  padding: 150px 0px 0px;
  position: relative;
}

main.main-category .tabs-content-main:before {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/08/Group-15-1.png);
  background-size: cover;
  padding: 0;
  position: absolute;
  content: "";
  width: 684px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  top: -19px;
  z-index: -1;
  right: 5px;
}

main.main-category .tabs-content-main .tab-box {
  background-color: #bebebe;
  max-width: 1410px;
  margin: 0px auto 20px;
  margin-bottom: 140px;
  display: flex;
}

main.main-category .tabs-content-main .tab-box p.text {
  background-color: #233746;
  margin-bottom: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 68px;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  padding: 0 40px;
  margin-right: 20px;
}

main.main-category .tabs-content-main .tab-box ul.tabs {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

main.main-category .tabs-content-main .tab-box ul.tabs li {
  display: inline-block;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 28px;
  color: #233746;
  padding: 20px 35px;
  position: relative;
}

main.main-category .tabs-content-main .tab-box ul.tabs li:hover {
  color: #fff;
}

main.main-category .tabs-content-main .tab-box ul.tabs li.current {
  color: #fff;
}

main.main-category .tabs-content-main .tab-box ul.tabs li.tab-link.current:before {
  position: absolute;
  content: "";
  background: #1cbadb;
  width: 80px;
  height: 15px;
  border-radius: 25px;
  bottom: -6px;
  margin: auto;
  left: 0;
  right: 0;
}

main.main-category .tabs-content-main .tab-main .tab-content {
  display: none;
}

main.main-category .tabs-content-main .tab-main .tab-content.current {
  display: inherit;
}

main.main-category .tabs-content-main .tab-main .tab-content.fades {
  opacity: 0;
  transition: opacity 0.5s linear;
}

main.main-category .tabs-content-main .tab-main .tab-content.fades.in {
  opacity: 1;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top {
  max-width: 1410px;
  z-index: 1;
  margin: auto;
  padding: 0px 20px;
  position: relative;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex {
  display: flex;
  justify-content: space-between;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .left {
  width: 25%;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .left h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 50px;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .left p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: #233746;
  padding-bottom: 30px;
  margin-bottom: 0;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right {
  width: 65%;
  position: relative;
  margin-bottom: -90px;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right img {
  width: 70%;
  min-height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title {
  background: #fff;
  padding: 50px 40px 20px;
  max-width: 405px;
  position: absolute;
  right: 0px;
  bottom: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.44);
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title:before {
  content: "";
  height: 42px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  top: -42px;
  left: 0;
  right: 0;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  color: #233746;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 28px;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title .categorys a {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
  position: relative;
  padding-left: 15px;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title .categorys a:before {
  position: absolute;
  content: "";
  background: #EB6C0E;
  width: 7px;
  height: 23px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 0;
  margin: 20px 0px 20px;
  color: #233746;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title .btn span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #bebebe;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title .btn a.loadmore {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #1cbadb;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title .btn a.loadmore:before {
  position: absolute;
  content: "";
  background: #1cbadb;
  width: 133px;
  height: 20px;
  border-radius: 25px;
  bottom: 0;
  margin: auto;
  left: -18px;
  top: 71px;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom {
  background-color: #f5f5f5;
  padding: 160px 0px 60px;
  position: relative;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom:before {
  content: "";
  height: 48px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom right, #fff, #fff 50%, #F5F5F5 50%, #F5F5F5);
  position: absolute;
  top: 0;
  left: -18px;
  right: 0;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text {
  max-width: 1410px;
  margin: auto;
  padding: 0px 20px;
  display: flex;
  flex-wrap: wrap;
}

main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box {
  padding: 0px 17px 100px;
  width: 25%;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .box__inner {
  position: relative;
  height: 100%;
  background-color: #fff;
  padding-bottom: 50px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .box__photo {
  position: relative;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .box__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .title {
  padding: 30px 30px 20px;
  position: relative;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .title:before {
  content: "";
  height: 42px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  top: -42px;
  left: 0;
  right: 0;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  color: #233746;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 28px;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .title p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 0;
  margin: 20px 0px 20px;
  color: #233746;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .title .categorys a {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
  position: relative;
  padding-left: 15px;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box .title .categorys a:before {
  position: absolute;
  content: "";
  background: #EB6C0E;
  width: 7px;
  height: 23px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box div.btn {
  position: absolute;
  bottom: -10px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box div.btn:after {
  content: "";
  position: absolute;
  background: #1cbadb;
  width: 130px;
  height: 20px;
  border-radius: 25px;
  bottom: 0;
  left: -5px;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box div.btn span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #bebebe;
}
main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box div.btn a.loadmore {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #1cbadb;
}

main.main-category .section-text-in {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Rectangle-28.png);
  background-size: cover;
  padding: 45px 0;
  background-position: left;
  position: relative;
}

main.main-category .section-text-in .flexs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main.main-category .section-text-in .flexs .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
}

main.main-category .section-text-in .flexs .click a {
  margin: 0;
  padding: 14px 41px 13px 37px;
  border-radius: 25px;
  background-color: #80CC69;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #233746;
}

main.main-category .section-posts-main .box-flex {
  justify-content: space-between;
}

main.main-category .section-posts-main .box-flex .box {
  display: flex;
  align-items: center;
}

main.main-category .container {
  max-width: 1410px;
  padding: 0px 35px !important;
}

main.main-category .section-posts-main {
  padding: 80px 0px;
}

main.main-category .section-posts-main .posts-lex {
  display: flex;
  justify-content: space-between;
}

main.main-category .section-posts-main .posts-lex .box {
  padding: 0px 15px;
  position: relative;
  width: 50%;
}

main.main-category .section-posts-main .posts-lex .box img {
  width: 65%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}

main.main-category .section-posts-main .posts-lex .box .title {
  background: #fff;
  padding: 30px 35px 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.44);
  position: absolute;
  bottom: 0;
  right: 40px;
  max-width: 340px;
}

main.main-category .section-posts-main .posts-lex .box .title:before {
  content: "";
  height: 42px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  top: -42px;
  left: 0;
  right: 0;
}

main.main-category .section-posts-main .posts-lex .box .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  color: #233746;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 28px;
}

main.main-category .section-posts-main .posts-lex .box .title .categorys a {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
  position: relative;
  padding-left: 15px;
}

main.main-category .section-posts-main .posts-lex .box .title .categorys a:before {
  position: absolute;
  content: "";
  background: #EB6C0E;
  width: 7px;
  height: 23px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

main.main-category .section-posts-main .posts-lex .box .title p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 0;
  margin: 20px 0px 20px;
  color: #233746;
}

main.main-category .section-posts-main .posts-lex .box .title .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main.main-category .section-posts-main .posts-lex .box .title .btn span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #bebebe;
}

main.main-category .section-posts-main .posts-lex .box .title .btn a.loadmore {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #1cbadb;
}

main.main-category .section-posts-main .posts-lex .box .title .btn a.loadmore:before {
  position: absolute;
  content: "";
  background: #1cbadb;
  width: 133px;
  height: 20px;
  border-radius: 25px;
  bottom: 0;
  margin: auto;
  left: -18px;
  top: 71px;
}

main.main-category .section-banner-content img {
  width: 100%;
}

main.main-category .section-banner-content .box {
  padding: 0px 15px;
  position: relative;
}

main.main-category .section-banner-content .box .title {
  background-color: #233746;
  padding: 45px 55px 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.44);
  position: absolute;
  bottom: 0;
  right: 0px;
  max-width: 670px;
}

main.main-category .section-banner-content .box .title:before {
  content: "";
  height: 40px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, transparent, transparent 50%, #233746 50%, #233746);
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
}

main.main-category .section-banner-content .box .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 45px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 35px;
  line-height: 50px;
}

main.main-category .section-banner-content .box .title .categorys a {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
  position: relative;
  padding-left: 15px;
}

main.main-category .section-banner-content .box .title .categorys a:before {
  position: absolute;
  content: "";
  background: #EB6C0E;
  width: 7px;
  height: 23px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

main.main-category .section-banner-content .box .title p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 0;
  margin: 30px 0px 35px;
  color: #fff;
  width: 335px;
}

main.main-category .section-banner-content .box .title .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main.main-category .section-banner-content .box .title .btn span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #bebebe;
}

main.main-category .section-banner-content .box .title .btn a.loadmore {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #1cbadb;
}

main.main-category .section-banner-content .box .title .btn a.loadmore:before {
  position: absolute;
  content: "";
  background: #1cbadb;
  width: 133px;
  height: 20px;
  border-radius: 25px;
  bottom: 0;
  margin: auto;
  left: -18px;
  top: 71px;
}

main.main-category #section-posts-main .posts-lex .title {
  right: 26px;
  max-width: 285px;
}

@media only screen and (max-width: 1440px) {
  main.main-category .section-banner-content .img-fluid img {
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 1199px) {
  .page-template-page_raven_category #header button.toggle-menu span {
    background-color: #233746 !important;
  }
  .page-template-page_raven_category #header button.toggle-menu.active span {
    background-color: #fff !important;
  }
  main.main-category .tabs-content-main .tab-main .right img {
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main.main-category .tabs-content-main .tab-main .tab-content .tab-bottom .section-text .box {
    width: 50%;
    float: left;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 1060px) {
  main.main-category .tabs-content-main .tab-box {
    display: block;
    margin-bottom: 80px;
  }
  main.main-category .tabs-content-main .tab-box p.text {
    text-align: center;
    margin: 0;
    padding: 0 20px;
  }
  main.main-category .tabs-content-main .tab-box ul.tabs {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  main.main-category .tab-main .tab-content .tab-top .flex {
    display: initial !important;
  }
  main.main-category .tab-main .tab-content .tab-top .flex .left {
    width: 100% !important;
  }
  main.main-category .tab-main .tab-content .tab-top .flex .right {
    width: 100% !important;
  }
  main.main-category .tab-main .tab-content .tab-top .flex .right img {
    height: auto !important;
  }
  main.main-category .section-posts-main .posts-lex {
    display: initial;
  }
  main.main-category .section-posts-main .posts-lex .box {
    margin-bottom: 30px;
    width: 100%;
  }
  main.main-category .section-posts-main .posts-lex .box .title {
    right: 15px;
    max-width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right img {
    width: 100%;
  }
  main.main-category .tabs-content-main .tab-main .tab-content .tab-top .flex .right .title {
    right: 0;
    max-width: 100%;
    position: inherit;
    padding: 50px 20px 20px;
    width: 100%;
  }
  main.main-category .section-posts-main {
    padding: 40px 0px;
  }
  main.main-category .section-posts-main .posts-lex .box img {
    width: 100%;
  }
  main.main-category .section-posts-main .posts-lex .box .title {
    right: 0 !important;
    max-width: 100% !important;
    position: inherit;
    padding: 50px 20px 20px;
    width: 100%;
  }
  main.main-category .section-posts-main .posts-lex .box .title h2 {
    font-size: 24px;
  }
  main.main-category .section-posts-main .posts-lex .box .title p {
    font-size: 16px;
  }
  main.main-category .section-posts-main .posts-lex .box .title .btn a.loadmore {
    font-size: 18px;
  }
  main.main-category .tab-bottom .section-text .box {
    padding: 0 !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    float: none !important;
  }
  main.main-category .tab-bottom .section-text .box .title {
    padding: 30px 20px 20px !important;
  }
  main.main-category .tab-bottom .section-text .box .title h2 {
    font-size: 24px;
  }
  main.main-category .tab-bottom .section-text .box .title p {
    font-size: 16px;
  }
  main.main-category .tab-bottom .section-text .box .title .btn a.loadmore {
    font-size: 18px;
  }
  main.main-category .container {
    padding: 0px 20px !important;
  }
  main.main-category main.main-category .section-posts-main .posts-lex .box {
    padding: 0;
  }
  main.main-category .section-banner-content .img-fluid img {
    height: 300px;
  }
  main.main-category .section-banner-content .box {
    padding: 0;
    position: relative;
  }
  main.main-category .section-banner-content .box .title {
    position: inherit;
    padding: 45px 20px 20px;
    max-width: 100%;
  }
  main.main-category .section-banner-content .box .title h2 {
    font-size: 35px;
  }
  main.main-category .section-banner-content .box .title p {
    width: auto;
  }
  main.main-category .section-text-in .flexs {
    display: initial !important;
  }
  main.main-category .section-text-in .flexs .title {
    margin-bottom: 50px !important;
  }
  main.main-category .tabs-content-main .tab-box ul.tabs li {
    display: block !important;
  }
  main.main-category .tabs-content-main .tab-main .title:before {
    height: 42px !important;
  }
  main.main-category .section-posts-main .posts-lex .box .title:before {
    height: 42px !important;
  }
  main.main-category .tabs-content-main .tab-box ul.tabs li.tab-link.current:before {
    display: none;
  }
}
/* end category */
/* Faq */
main#main-faq .banner-content {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Path-269.jpg);
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px;
}

main#main-faq .banner-content .flexx {
  position: relative;
}

main#main-faq .banner-content .flexx .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  color: #ffffff;
}

main#main-faq .banner-content .flexx .text p {
  font-family: Quicksand;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #EB6C0E;
}

main#main-faq .banner-content .flexx .images {
  position: absolute;
  right: 0;
  top: -70px;
}

main#main-faq .banner-content .flexx .images img {
  width: 300px;
}

.section-enter-your {
  position: relative;
  padding: 60px 0 160px;
}

.section-enter-your:after {
  content: "";
  position: absolute;
  top: -100px;
  right: 0;
  width: 500px;
  height: 470px;
  padding: 0;
  background-image: url(../svg/shape-pattern-gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0;
  z-index: 1;
}

.section-enter-your .title {
  position: relative;
  z-index: 99;
}

.section-enter-your .title h2 {
  font-family: Quicksand;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #233746;
  margin-bottom: 20px;
}

.section-enter-your .title form {
  position: relative;
}
.section-enter-your .title form ::-webkit-input-placeholder {
  color: #233746;
}
.section-enter-your .title form ::-moz-placeholder {
  color: #233746;
}
.section-enter-your .title form :-ms-input-placeholder {
  color: #233746;
}
.section-enter-your .title form :-moz-placeholder {
  color: #233746;
}

.section-enter-your .title form input.form-control {
  width: 100%;
  border-radius: 44px;
  background-color: #f5f5f5;
  border: 0;
  padding: 20px 90px 20px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #233746;
  line-height: 1;
}

.section-enter-your .title form button.btn.btn-default {
  position: absolute;
  right: 20px;
  bottom: 0;
  top: 0;
  width: 77px;
  height: 100%;
  border: 0;
  padding: 0;
  margin: auto;
  color: #233746;
  background-color: transparent;
  background-image: url(../svg/search-black.png);
  background-repeat: no-repeat;
  background-size: 34px auto;
  background-position: center;
}

.section-faq-content .title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #233746;
  line-height: 35px;
  border-bottom: 2px solid #233746;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.section-faq-content .box {
  border-bottom: 2px solid #f5f5f5;
  display: inline-block;
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.section-faq-content .box .left {
  width: 20%;
  float: left;
}

.section-faq-content .box .left h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #233746;
  margin: 0;
}

.section-faq-content .box .right {
  width: 80%;
  float: right;
}

.section-faq-content .box .right p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  margin: 0;
}

.section-faq-bottom .title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #233746;
  line-height: 35px;
  border-bottom: 2px solid #233746;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.section-faq-bottom .post {
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.section-faq-bottom .post h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #233746;
  margin-bottom: 20px;
}

.section-faq-bottom .post p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  max-width: 1020px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  main#main-faq .banner-content {
    padding: 150px 0px;
  }
  main#main-faq .banner-content .flexx .text {
    margin-bottom: 80px;
  }
  main#main-faq .banner-content .flexx .text p {
    font-size: 25px;
  }
  main#main-faq .banner-content .flexx .text h2 {
    font-size: 50px;
  }
  main#main-faq .banner-content .flexx .images {
    position: inherit;
    right: 0;
    top: 0;
  }
  .section-faq-content .title h2 {
    font-size: 24px;
  }
  .section-faq-content .box {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .section-faq-content .box .left {
    width: 100%;
    margin-bottom: 10px;
  }
  .section-faq-content .box .left h3 {
    font-size: 18px;
  }
  .section-faq-content .box .right {
    width: 100%;
  }
  .section-faq-content .box .right p {
    font-size: 16px;
  }
  .section-faq-bottom {
    padding: 40px 0px;
  }
  .section-faq-bottom .title h2 {
    font-size: 24px;
  }
  .section-faq-bottom .post h3 {
    font-size: 18px;
  }
  .section-faq-bottom .post P {
    font-size: 16px;
  }
}
/* end Faq */
/* panther */
main#main-partners .banner-content {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/07/Path-269.jpg);
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px;
}

main#main-partners .banner-content .flexx {
  position: relative;
}

main#main-partners .banner-content .flexx .text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  color: #ffffff;
}

main#main-partners .banner-content .flexx .text p {
  font-family: Quicksand;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #EB6C0E;
}

main#main-partners .banner-content .flexx .images {
  position: absolute;
  right: 0;
  top: -70px;
}

main#main-partners .banner-content .flexx .images img {
  width: 300px;
}

main#main-partners .section-subtitle {
  padding: 100px 0px 170px;
  position: relative;
}

main#main-partners .section-subtitle:after {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to top right, #f5f5f5, #f5f5f5 50%, transparent 50%, transparent);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-partners .section-subtitle:before {
  background-image: url(https://cptest.com.au/raven/wp-content/uploads/2021/08/Group-15-1.png);
  background-size: cover;
  padding: 0;
  position: absolute;
  content: "";
  width: 616px;
  height: 577px;
  background-repeat: no-repeat;
  background-position: center;
  top: 38px;
  z-index: -1;
  right: 3px;
}

main#main-partners .section-subtitle .post-details h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 35px;
  font-weight: bold;
}

main#main-partners .section-subtitle .post-details p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  margin-bottom: 0;
  max-width: 700px;
}

main#main-partners .section-box-content {
  padding: 80px 0px 130px;
  position: relative;
  overflow: hidden;
}

main#main-partners .section-box-content .ig {
  position: absolute;
  right: -160px;
  bottom: 217px;
  z-index: -1;
}

main#main-partners .section-box-content .ig1 {
  position: absolute;
  bottom: -330px;
  -webkit-transform: rotate(58deg);
          transform: rotate(58deg);
}

main#main-partners .section-box-content:after {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to top right, #f5f5f5, #f5f5f5 50%, transparent 50%, transparent);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-partners .section-box-content .flex-tl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  margin: auto;
}

main#main-partners .section-box-content .flex-tl .images {
  width: 25%;
}

main#main-partners .section-box-content .flex-tl .images img {
  width: 100%;
}

main#main-partners .section-box-content .flex-tl .title {
  width: 60%;
}

main#main-partners .section-box-content .flex-tl .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #233746;
  margin-bottom: 35px;
  font-weight: bold;
}

main#main-partners .section-box-content .flex-tl .title p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #233746;
  margin-bottom: 95px;
}

main#main-partners .section-box-content .flex-tl .title a {
  margin: 0;
  line-height: 1;
  padding: 14px 40px;
  border-radius: 25px;
  background-color: #EB6C0E;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
}

main#main-partners .section-box-content.s1 {
  background-color: #F5F5F5;
  position: relative;
  padding: 70px 0px 150px;
}

main#main-partners .section-box-content.s1:after {
  height: 70px;
  margin: 0 auto;
  background-image: linear-gradient(to top left, #fff, #fff 50%, transparent 50%, transparent);
  position: absolute;
  bottom: 0;
  left: -18px;
  right: 0;
  content: "";
}

main#main-partners .section-box-content.s:after {
  display: none;
}

@media only screen and (max-width: 767px) {
  main#main-partners .banner-content {
    padding: 150px 0px;
  }
  main#main-partners .banner-content .flexx .text {
    margin-bottom: 80px;
  }
  main#main-partners .banner-content .flexx .text p {
    font-size: 25px;
  }
  main#main-partners .banner-content .flexx .text h2 {
    font-size: 50px;
  }
  main#main-partners .banner-content .flexx .images {
    position: inherit;
    right: 0;
    top: 0;
  }
  main#main-partners .section-box-content {
    padding: 50px 0px 80px;
  }
  main#main-partners .section-box-content .ig1 {
    display: none;
  }
  main#main-partners .section-box-content .ig {
    display: none;
  }
  main#main-partners .section-box-content .flex-tl {
    display: initial;
  }
  main#main-partners .section-box-content .flex-tl .images {
    width: 50%;
    margin: auto;
  }
  main#main-partners .section-box-content .flex-tl .title {
    width: 100%;
    padding: 40px 0px;
    z-index: 999;
    position: relative;
  }
  main#main-partners .section-box-content .flex-tl .title p {
    margin-bottom: 40px;
    font-size: 16px;
  }
  main#main-partners .section-box-content .flex-tl .title h2 {
    font-size: 32px;
    margin-bottom: 26px;
  }
  main#main-partners .section-box-content.s1 {
    padding: 70px 0px 70px;
  }
  main#main-partners .section-box-content.s {
    padding: 50px 0px 50px;
  }
}
/* end panther */
.search-results #main {
  padding-top: 141px;
}

.search-results #main .section-posts {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hover */
footer#footer .footer-bottom .box-copyright a:hover {
  color: #EB6C0E;
}

main#main-contact input#gform_submit_button_3:hover {
  background-color: #EB6C0E !important;
  color: #fff !important;
}

main#main-contact .form-sup .gform_footer.top_label input#gform_submit_button_2:hover {
  background-color: #EB6C0E !important;
  color: #fff !important;
}

#main .banner-connent .box-flex .text .bottom a:hover {
  background-color: #80CC69;
}

#main .carousel-content .box-title a:hover {
  color: #EB6C0E !important;
}

#main .about-content .text-flex .left a:hover {
  background-color: #80CC69;
}

#main .section-box-top .section-fl .title a:hover {
  background-color: #EB6C0E !important;
}

#main .section-box-bottom .text a:hover {
  background-color: #80CC69 !important;
}

#main .section-line .box-line .box.box1 a:hover {
  background-color: #80CC69 !important;
}

#main .section-line .box-line .box.box2 a:hover {
  background-color: #1cbadb !important;
}

#main .plant-content-main a:hover {
  background-color: #EB6C0E !important;
}

#newsletter input#gform_submit_button_2:hover {
  background-color: #EB6C0E !important;
  color: #fff !important;
}

main#main-about .section-bg-content .line6:after:hover {
  background-color: #EB6C0E !important;
  color: #fff !important;
}

main#main-about .ourteam-content-main .ourteam-flex .box a:hover {
  color: #EB6C0E !important;
}

main#main-news .powering-content .text-flex .left a:hover {
  background: #1cbadb !important;
}

main#main-news .box-main-bg .btn a:hover {
  background-color: #EB6C0E !important;
}

main#main-news .section-bg-main .box-flex a:hover {
  background: #1cbadb !important;
}

main#main-news .section-heading .bt a:hover {
  background: #1cbadb !important;
}

.section-text-in .click a:hover {
  background: #1cbadb !important;
  color: #fff !important;
}

.section-box-content .flex-tl a:hover {
  background: #1cbadb !important;
}

footer#footer .item-footer ul li a:hover {
  background: #1cbadb !important;
  color: #fff !important;
}

/* Hover */
@media screen and (max-width: 767px) {
  main#main-about .section-bg-content .box-main {
    padding: 0 !important;
  }
  main#main-about .section-bg-content .box-main .positions {
    position: initial !important;
    -webkit-transform: initial !important;
            transform: initial !important;
    margin-bottom: 20px !important;
  }
}
section.section-posts .post-item .post-item__photo img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.section-posts .post-item .post-item__photo a {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
  position: relative;
  padding-left: 0;
  padding: 20px 0px 12px;
  display: block;
}

section.section-posts .post-item p.post-item__title.h2 {
  margin-bottom: 15px;
}

section.section-posts .post-item p.post-item__title.h2 a {
  font-family: "Quicksand", sans-serif;
  font-size: 23px;
  color: #233746;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 16px !important;
}

section.section-posts .post-item p.post-item__title.h2 p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 0;
  margin: 20px 0px 20px;
  color: #233746;
}

section.section-posts .post-item a.button-link.button--yellow {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #1cbadb;
  padding: 0px 0px 55px;
  display: block;
}

.post-pagination.d-flex.align-items-center.justify-content-center {
  padding: 0px 0px 50px;
}

.post-pagination.d-flex.align-items-center.justify-content-center .nav-next a {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #000;
}

.post-pagination.d-flex.align-items-center.justify-content-center p {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #000;
}

/** END POST TEMPLATE **/
/** frame-e **/
.frame-e {
  position: relative;
}
.frame-e img {
  display: block;
}
.frame-e img.frame {
  position: relative;
  z-index: 10;
}
.frame-e img:not(.frame) {
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/** END frame-e **/
/** section-separator **/
.section-separator {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100;
}
.section-separator.top {
  top: 0;
}
.section-separator.bottom {
  bottom: 0;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.section-separator.bottom-2 {
  bottom: 0;
}
@media (max-width: 767.98px) {
  .section-separator svg {
    height: 50px;
  }
}

/** END section-separator **/
/** PAGE TITLE **/
#page-title {
  position: relative;
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#page-title h1 {
  margin-bottom: 10px;
  font-size: 60px;
  color: #fff;
}
#page-title p {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  color: #EB6C0E;
}
#page-title span.span-text {
  color: #ffffff;
  display: block;
  padding: 10px 0;
  width: 65%;
}
#page-title div.container {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#page-title div.photo {
  max-width: 336px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 110;
}
@media (min-width: 1200px) {
  #page-title div.photo {
    bottom: -50px;
  }
}
@media (max-width: 1199.98px) {
  #page-title {
    height: 530px;
  }
  #page-title div.photo {
    width: 236px;
  }
}
@media (max-width: 767.98px) {
  #page-title {
    height: 430px;
  }
  #page-title h1 {
    font-size: 50px;
  }
  #page-title p {
    font-size: 24px;
  }
  #page-title div.photo {
    width: 136px;
  }
}

/** END PAGE TITLE **/
/** TEMPLATE FLEXIBLE **/
body.page-template-page_flexible #newsletter {
  padding: 0;
}

section.section-text {
  padding: 100px 0;
}

main > section.section-text:nth-child(1) {
  padding-top: 200px;
}

section.s-flexible {
  position: relative;
  padding: 60px 0 160px;
  font-size: 18px;
  overflow: hidden;
}
section.s-flexible:before {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
section.s-flexible h2, section.s-flexible .h2 {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #233746;
}
section.s-flexible h2 p, section.s-flexible .h2 p {
  line-height: inherit;
  font-weight: inherit;
}
section.s-flexible h3, section.s-flexible .h3 {
  font-size: 30px;
  color: #EB6C0E;
  font-weight: 700;
}
section.s-flexible p {
  line-height: 24px;
  font-weight: 300;
}
section.s-flexible p:last-child {
  margin-bottom: 0;
}
section.s-flexible div.container {
  position: relative;
  z-index: 10;
}
section.s-flexible.s-odd {
  background-color: #F5F5F5;
}
section.s-flexible.s-odd:before {
  background-image: url(../svg/shape-pattern-white.svg);
}
section.s-flexible.s-even:before {
  background-image: url(../svg/shape-pattern-gray.svg);
}
section.s-flexible.s-even .section-separator svg {
  fill: #F5F5F5 !important;
}
section.s-flexible:last-child {
  padding-bottom: 60px;
}
section.s-flexible:last-child .section-separator {
  display: none;
}
@media (max-width: 767.98px) {
  section.s-flexible {
    padding: 50px 0 100px;
  }
}

/** END TEMPLATE FLEXIBLE **/
/** s-quote-text **/
section.s-quote-text:before {
  content: "";
  top: 50%;
  right: 160px;
  -webkit-transform: rotate(-300deg);
          transform: rotate(-300deg);
}
section.s-quote-text p {
  margin-bottom: 20px;
}
section.s-quote-text p.author {
  margin-bottom: 0;
  font-size: 30px;
  color: #EB6C0E;
}
section.s-quote-text .inner {
  max-width: 700px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  section.s-quote-text {
    padding-top: 160px;
    padding-bottom: 260px;
  }
  section.s-quote-text:before {
    width: 600px;
    height: 564px;
    margin-top: -282px;
  }
}
@media (max-width: 767.98px) {
  section.s-quote-text:before {
    width: 300px;
    height: 282px;
    right: 100px;
    margin-top: -141px;
  }
}

/** END s-quote-text **/
/** s-text-photo **/
section.s-text-photo:before {
  content: "";
  width: 700px;
  height: 658px;
}
section.s-text-photo a.button-primary {
  margin-top: 60px;
}
section.s-text-photo ul.photos {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
section.s-text-photo ul.photos > li {
  width: 50%;
  padding: 0 10px 20px;
}
section.s-text-photo ul.photos > li img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.s-text-photo ul.photos.two-columns > li img {
  height: 492px;
}
section.s-text-photo.layout-text-photo:before {
  bottom: -390px;
  left: -50px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
section.s-text-photo.layout-photo-text:before {
  bottom: -115px;
  left: -200px;
  -webkit-transform: rotate(-150deg);
          transform: rotate(-150deg);
}
@media (min-width: 992px) {
  section.s-text-photo div.row.main-row {
    margin-left: -30px;
    margin-right: -30px;
  }
  section.s-text-photo div.row.main-row > div {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  section.s-text-photo div.row.main-row {
    margin-left: -60px;
    margin-right: -60px;
  }
  section.s-text-photo div.row.main-row > div {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 991.98px) {
  section.s-text-photo div.row.main-row > div:nth-child(1) {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  section.s-text-photo ul.photos > li img {
    height: 180px;
  }
  section.s-text-photo ul.photos.two-columns > li {
    width: 100%;
  }
  section.s-text-photo ul.photos.two-columns > li img {
    height: 360px;
  }
}

/** END s-text-photo **/
/** s-photo **/
section.s-photo:before {
  content: "";
  width: 700px;
  height: 658px;
  bottom: -290px;
  right: 50px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
section.s-photo div.container {
  max-width: 1200px;
}
section.s-photo div.photo {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
section.s-photo div.photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/** END s-photo **/
/** s-two-columns **/
section.s-two-columns:before {
  content: "";
  width: 700px;
  height: 658px;
  bottom: -390px;
  left: -260px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
section.s-two-columns div.row.main-row > div {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  section.s-two-columns div.row.main-row {
    margin-left: -30px;
    margin-right: -30px;
  }
  section.s-two-columns div.row.main-row > div {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  section.s-two-columns div.row.main-row {
    margin-left: -60px;
    margin-right: -60px;
  }
  section.s-two-columns div.row.main-row > div {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/** END s-two-columns **/
/** s-icons **/
section.s-icons:before {
  content: "";
  width: 700px;
  height: 658px;
}
section.s-icons div.item {
  text-align: center;
}
section.s-icons div.item .item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 145px;
  margin-bottom: 40px;
}
section.s-icons div.item .item__icon img {
  width: auto;
  max-height: 100%;
}
section.s-icons div.item .item__title {
  margin-bottom: 20px;
}
section.s-icons.layout-stack:before {
  bottom: -370px;
  left: 50%;
  margin-left: -350px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
section.s-icons.layout-stack h2 {
  margin-bottom: 80px;
}
section.s-icons.layout-stack div.item-grid > div {
  margin-bottom: 60px;
}
section.s-icons:not(.layout-stack) a.button-primary {
  margin-top: 60px;
}
section.s-icons:not(.layout-stack) div.item .item__icon {
  margin-bottom: 20px;
}
section.s-icons:not(.layout-stack) div.item-grid > div {
  margin-bottom: 40px;
}
section.s-icons.layout-text-icon:before {
  top: 50%;
  left: -460px;
  margin-top: -329px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
section.s-icons.layout-icon-text:before {
  bottom: -360px;
  right: 200px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media (max-width: 991.98px) {
  section.s-icons div.row.main-row > div:nth-child(1) {
    margin-bottom: 40px;
  }
}

/** END s-icons **/
/** footer update **/
#footer .item-footer ul.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding-left: 120px;
  margin-top: 22px;
}
#footer .item-footer ul.socials li {
  margin-left: 5px;
  font-size: 22px;
  font-weight: 700;
}
#footer .item-footer ul.socials li a img {
  width: 28px;
  height: auto;
}
#footer .item-footer ul.socials li a:hover {
  background: transparent !important;
}
#footer .item-footer ul.socials li:first-child {
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/** END footer update **/
/** fix about timeline **/
@media (min-width: 1251px) {
  main#main-about .section-bg-content .wt .section-box:nth-child(odd) div.box-main.item1 {
    order: 3;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(odd) div.box-main.item2 {
    order: 2;
  }
  main#main-about .section-bg-content .wt .section-box:nth-child(odd) div.box-main.item3 {
    order: 1;
  }
}
/** END fix about timeline **/
/** mk-section **/
.mk-section {
  font-family: "Montserrat", sans-serif;
  position: relative;
  font-size: 18px;
  font-weight: 300;
}
.mk-section h2, .mk-section h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
.mk-section h2 {
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 46px;
}
.mk-section h3 {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 34px;
}
.mk-section p {
  line-height: 24px;
}
.mk-section strong {
  font-weight: 600;
}

/** END mk-section **/
/** mk-intro **/
#mk-intro {
  padding: 100px 0;
}
#mk-intro .mk-intro__video {
  position: relative;
  cursor: pointer;
}
#mk-intro .mk-intro__video > div,
#mk-intro .mk-intro__video > iframe {
  position: relative;
  z-index: 1;
}
#mk-intro .mk-intro__video > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
@media (min-width: 992px) {
  #mk-intro .mk-intro__text {
    padding-right: 100px;
  }
}

/** END mk-intro **/
/** mk-downloads **/
.download-block {
  margin-bottom: 40px;
}
.download-block h3 {
  padding-bottom: 10px;
  border-bottom: 2px solid #233746;
}
.download-block ul.menu li {
  border-bottom: 2px solid #F5F5F5;
}
.download-block ul.menu li a {
  display: block;
  padding: 15px 0;
  color: inherit;
}
.download-block ul.menu li a span {
  display: block;
}
.download-block ul.menu li a span.icon {
  font-weight: 600;
}
.download-block ul.menu li a:hover {
  color: #EB6C0E;
}
@media (min-width: 768px) {
  .download-block ul.menu li a {
    position: relative;
    padding-right: 100px;
  }
  .download-block ul.menu li a span.icon {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

#mk-downloads {
  padding-bottom: 100px;
}
#mk-downloads h2 {
  margin-bottom: 60px;
}
#mk-downloads .mk-downloads__links ul.menu li {
  margin-bottom: 10px;
}
#mk-downloads .mk-downloads__links ul.menu li a {
  font-size: 25px;
  font-weight: 600;
  color: inherit;
}
#mk-downloads .mk-downloads__links ul.menu li a:hover {
  color: #EB6C0E;
}
@media (min-width: 992px) {
  #mk-downloads .col-lg-9 {
    padding-right: 115px;
  }
}

/** END mk-downloads **/
/** mk-contact **/
#mk-contact {
  background-color: #f5f5f5;
  padding-top: 50px;
}
#mk-contact h3 {
  color: #EB6C0E;
}
#mk-contact ul.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 60px;
}
#mk-contact ul.socials li {
  margin-right: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 25px;
  font-weight: 700;
}
#mk-contact ul.socials li:first-child {
  margin-right: 16px;
}
#mk-contact ul.menu {
  margin-bottom: 20px;
}
#mk-contact ul.menu li a {
  color: inherit;
}
#mk-contact ul.menu li > strong:nth-child(1) {
  display: inline-block;
  min-width: 30px;
}
#mk-contact + #newsletter {
  padding: 100px 0;
}
@media (min-width: 768px) {
  #mk-contact .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (min-width: 1200px) {
  #mk-contact .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

/** END mk-contact **/
/** latest-news **/
.post-block {
  position: relative;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  padding-top: 70px;
}
.post-block .post-block__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
}
.post-block .post-block__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-block .post-block__text {
  font-family: "Montserrat", sans-serif;
  position: relative;
  width: 70%;
  max-width: 300px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.44);
  font-size: 16px;
}
.post-block .post-block__text:before {
  content: "";
  width: 100%;
  height: 50px;
  background-color: #fff;
  box-shadow: -4px -5px 10px -5px rgba(0, 0, 0, 0.44);
  position: absolute;
  top: -21px;
  left: 0;
  -webkit-transform: skewY(8deg);
          transform: skewY(8deg);
  z-index: 1;
}
.post-block .post-block__text .inner {
  position: relative;
  height: 100%;
  background-color: #fff;
  padding: 15px 25px 80px;
  z-index: 2;
}
.post-block .post-block__text p {
  font-weight: 300;
  line-height: 22px;
}
.post-block .post-block__text p.title {
  font-family: "Quicksand", sans-serif;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
.post-block .post-block__text p.title a {
  color: inherit;
}
.post-block .post-block__text a.category {
  position: relative;
  display: inline-block;
  padding-left: 23px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #EB6C0E;
  font-weight: 500;
}
.post-block .post-block__text a.category:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 16px;
  margin-top: -8px;
  background-color: #EB6C0E;
  border-radius: 20px;
}
.post-block .post-block__text ul.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 25px 25px;
}
.post-block .post-block__text ul.meta li {
  color: #BEBEBE;
  font-weight: 500;
}
.post-block .post-block__text ul.meta li a.more {
  position: relative;
  color: #1CBADB;
  font-weight: 700;
}
.post-block .post-block__text ul.meta li a.more:after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: 145px;
  height: 20px;
  background-color: #1CBADB;
  border-radius: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 575.98px) {
  .post-block {
    display: block;
    padding-top: 0;
  }
  .post-block .post-block__photo {
    position: relative;
    width: 100%;
    height: 260px;
  }
  .post-block .post-block__text {
    width: 100%;
    max-width: 100%;
    padding-top: 15px;
  }
  .post-block .post-block__text:before {
    display: none;
  }
}

#latest-news {
  position: relative;
  padding: 150px 0 50px;
}
#latest-news div.row {
  margin-left: -20px;
  margin-right: -20px;
}
#latest-news div.row > div {
  padding: 0 20px 40px;
}

/** END latest-news **/
/** s-news **/
.s-news .news-content-box {
  background-image: url(/wp-content/uploads/2021/07/Rectangle-28.png);
  background-size: cover;
  padding: 100px 0px 60px;
  background-position: left;
}

.s-news .news-content-box .wt {
  padding: 0px 80px;
}

.s-news .news-content-box .wt .news-fl {
  display: flex;
  align-items: center;
}

.s-news .news-content-box .wt .news-fl .box {
  width: 38%;
  float: left;
}

.s-news .news-content-box .wt .news-fl .box h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  line-height: 1.1;
  margin: 0;
  padding-bottom: 55px;
}
.s-news .news-content-box .wt .news-fl .box h2 a {
  color: inherit;
}

.s-news .news-content-box .wt .news-fl .box p {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
  border-bottom: 1px solid #707070;
  padding-bottom: 12px;
}

.s-news .news-content-box .wt .news-fl .box p a {
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
}

.s-news .news-content-box .wt .news-fl .box a.loadmore {
  margin: 0;
  padding: 14px 45px 13px 45px;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  border-radius: 25px;
  background-color: #fff;
  color: #233746;
  display: inline-block;
  width: auto;
  margin-top: 60px;
}

.s-news .news-content-box .wt .news-fl .images {
  width: 55%;
  position: relative;
}

.s-news .news-content-box .wt .news-fl .images img {
  height: 550px;
  width: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f5f5f5;
}

.s-news .news-content-box .wt .news-fl .images:nth-child(2) {
  padding-right: 35px;
}

.s-news .news-content-box .wt .news-fl .images .title {
  background: #fff;
  padding: 50px 40px 20px;
  max-width: 350px;
  float: right;
  position: absolute;
  right: 37px;
  bottom: 0;
  padding-top: 27px;
}
.s-news .news-content-box .wt .news-fl .images .title a {
  color: inherit;
}

.s-news .news-content-box .wt .news-fl .images .title:before {
  content: "";
  height: 35px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom left, transparent, transparent 50%, #fff 50%, #fff);
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
}

.s-news .news-content-box .wt .news-fl .images .title h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  color: #233746;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 120%;
}

.s-news .news-content-box .wt .news-fl .images .title .category {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
  position: relative;
  padding-left: 15px;
}

.s-news .news-content-box .wt .news-fl .images .title .category a {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #EB6C0E;
}

.s-news .news-content-box .wt .news-fl .images .title .category::before {
  position: absolute;
  content: "";
  background: #EB6C0E;
  width: 7px;
  height: 23px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

.s-news .news-content-box .wt .news-fl .images .title p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 0;
  margin: 20px 0px 35px;
  color: #233746;
}

.s-news .news-content-box .wt .news-fl .images .title a.loadmore {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #1cbadb;
}

.s-news .news-content-box .wt .news-fl .images .title a.loadmore::before {
  position: absolute;
  content: "";
  background: #1cbadb;
  width: 133px;
  height: 20px;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -18px;
  top: 71px;
}

.s-news .news-content-box .box a.loadmore:hover {
  background: #1cbadb !important;
  color: #fff !important;
}

@media (max-width: 991px) {
  .s-news .news-content-box .wt .news-fl {
    display: block;
    align-items: center;
  }
  .s-news .news-content-box .wt .news-fl .box {
    width: 100%;
    float: none;
  }
  .s-news .news-content-box .wt .news-fl .box a.loadmore {
    padding: 0;
    width: 180px;
    height: 55px;
    text-align: center;
    line-height: 55px;
  }
  .s-news .news-content-box .wt .news-fl .images {
    width: 100%;
    position: relative;
    margin-top: 60px;
  }
}
@media (max-width: 800px) {
  .s-news .news-content-box .wt {
    padding: 0 20px;
  }
  .s-news .news-content-box .wt .news-fl {
    display: block;
  }
  .s-news .news-content-box .wt .news-fl .images {
    width: 100%;
  }
  .s-news .news-content-box .wt .news-fl .images img {
    width: 100%;
  }
  .s-news .news-content-box .wt .news-fl .images .title {
    position: relative;
    right: inherit;
    width: 100%;
    max-width: 100%;
    float: none;
    margin-bottom: 50px;
  }
  .s-news .news-content-box .wt .news-fl .images .title:before {
    display: none;
  }
  .s-news .news-content-box .wt .news-fl .images:nth-child(2) {
    padding-right: 0px;
  }
  .s-news .news-content-box .wt .news-fl .box {
    width: 100%;
    margin-bottom: 50px;
  }
}
/** END s-news **/
/** s-featured-in **/
.s-featured-in .featured-content {
  padding: 15px 0px;
}

.s-featured-in .featured-content .wt {
  padding: 0px 80px;
}

.s-featured-in .featured-content .wt .featured-flex ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
}

.s-featured-in .featured-content .wt .featured-flex ul li {
  width: 10%;
}

.s-featured-in .featured-content .wt .featured-flex ul li:first-child {
  width: 164px;
}

.s-featured-in .featured-content .wt .featured-flex ul li.nth {
  width: 200px;
}

.s-featured-in .featured-content .wt .featured-flex ul li:nth-child(9) a {
  padding: 10px 40px 10px 40px;
  border-radius: 25px;
  background-color: #80CC69;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
}

.s-featured-in .featured-content .wt .featured-flex ul li a {
  display: block;
}

.s-featured-in .featured-content .wt .featured-flex ul li p {
  font-family: "Nevaeh", sans-serif;
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.83;
  color: #233746;
}

.s-featured-in .featured-content .featured-flex ul li:nth-child(9) a {
  padding: 10px 22px 10px 20px !important;
}

.s-featured-in .featured-content .featured-flex ul li:nth-child(9) a:hover {
  background-color: #EB6C0E !important;
}

@media (max-width: 1399px) {
  .s-featured-in .featured-content .wt {
    padding: 0 20px;
  }
  .s-featured-in .featured-content .wt .featured-flex ul li p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .s-featured-in .featured-content .wt {
    padding: 0 20px;
  }
  .s-featured-in .featured-content .wt .featured-flex ul li {
    width: 20%;
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .s-featured-in .featured-content .wt .featured-flex ul {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
  }
  .s-featured-in .featured-content .wt .featured-flex ul li {
    width: 30%;
    margin: 8px;
  }
}
/** END s-featured-in **/
/** s-form **/
div.gform_wrapper.light-style_wrapper {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
}
div.gform_wrapper.light-style_wrapper form ::-webkit-input-placeholder {
  color: #233746;
}
div.gform_wrapper.light-style_wrapper form ::-moz-placeholder {
  color: #233746;
}
div.gform_wrapper.light-style_wrapper form :-ms-input-placeholder {
  color: #233746;
}
div.gform_wrapper.light-style_wrapper form :-moz-placeholder {
  color: #233746;
}
div.gform_wrapper.light-style_wrapper form input[type=text],
div.gform_wrapper.light-style_wrapper form input[type=email],
div.gform_wrapper.light-style_wrapper form textarea,
div.gform_wrapper.light-style_wrapper form select {
  display: block;
  width: 100%;
  height: 68px;
  padding: 0 25px;
  border: 0;
  background-color: #fff;
  font-size: 18px;
  outline: none;
}
div.gform_wrapper.light-style_wrapper form textarea {
  padding: 20px 25px;
  resize: vertical;
}
div.gform_wrapper.light-style_wrapper form input[type=submit] {
  display: inline-block;
  min-width: 132px;
  background-color: #233746;
  border: 0;
  padding: 0 20px;
  border-radius: 25px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #80cc69;
  line-height: 44px;
  text-align: center;
}
div.gform_wrapper.light-style_wrapper form input[type=submit]:hover {
  background-color: #eb6c0e;
  color: #fff;
}
div.gform_wrapper.light-style_wrapper .gform_fields {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
div.gform_wrapper.light-style_wrapper .gfield_label {
  font-size: 18px;
}
div.gform_wrapper.light-style_wrapper .ginput_container_select,
div.gform_wrapper.light-style_wrapper .ginput_address_country {
  position: relative;
}
div.gform_wrapper.light-style_wrapper .ginput_container_select:after,
div.gform_wrapper.light-style_wrapper .ginput_address_country:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #233746;
}
div.gform_wrapper.light-style_wrapper .ginput_container_select select,
div.gform_wrapper.light-style_wrapper .ginput_address_country select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
div.gform_wrapper.light-style_wrapper .ginput_container_address {
  margin: 0;
}
div.gform_wrapper.light-style_wrapper .ginput_container_address > span {
  margin: 0 !important;
}
div.gform_wrapper.light-style_wrapper .gfield_checkbox label,
div.gform_wrapper.light-style_wrapper .gfield_radio label {
  cursor: pointer;
  font-size: 18px;
}
div.gform_wrapper.light-style_wrapper .gform_footer {
  position: relative;
  justify-content: flex-end;
  margin: 20px 0 0;
  padding: 0;
}
div.gform_wrapper.light-style_wrapper .gform_footer:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: calc(100% - 162px);
  height: 10px;
  background-color: #233746;
  border-radius: 25px;
}
@media (min-width: 641px) {
  div.gform_wrapper.light-style_wrapper .ginput_container_address {
    margin: 0 -10px;
  }
  div.gform_wrapper.light-style_wrapper .ginput_container_address > span {
    width: 33.333%;
    flex: auto;
    padding: 0 10px;
  }
}
@media (max-width: 640px) {
  div.gform_wrapper.light-style_wrapper .ginput_container_address > span {
    padding: 0;
  }
  div.gform_wrapper.light-style_wrapper .ginput_container_address > span:not(:last-child) {
    margin-bottom: 20px !important;
  }
}

.s-form {
  background-color: #f5f5f5;
  padding: 100px 0;
}
.s-form .container {
  max-width: 840px;
}
.s-form__text {
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
}
.s-form__text h2, .s-form__text h3 {
  margin-bottom: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
.s-form__text h2 {
  font-size: 40px;
}
.s-form__text h3 {
  font-size: 30px;
}
.s-form__text p {
  line-height: 24px;
}
.s-form__text p:last-child {
  margin-bottom: 0;
}
/** END s-form **/
/** s-cta **/
.s-cta {
  padding: 50px 0;
}
.s-cta .container {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.s-cta .container:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 20px;
  right: 20px;
  height: 10px;
  background-color: #233746;
  border-radius: 25px;
}
.s-cta__text {
  padding: 10px 0;
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
.s-cta__text p {
  margin-bottom: 0;
  line-height: 1.1;
}
.s-cta__button > a {
  display: inline-block;
  background-color: #eb6c0e;
  border-radius: 25px;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
}
.s-cta__button > a:hover {
  background-color: #80cc69;
}

/** END s-cta **/
main#main-about .ourteam-content-main .ourteam-flex .box > a {
  display: inline-block;
  white-space: nowrap;
}

@media (min-width: 601px) {
  main#main-about .ourteam-content-main .ourteam-flex .box {
    position: relative;
    padding-bottom: 30px;
  }
  main#main-about .ourteam-content-main .ourteam-flex .box > a {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#g-series .container,
#s-series .container {
  max-width: 100%;
  padding: 0;
}
#g-series .row,
#s-series .row {
  display: block;
  margin: 0;
}
#g-series .row > div,
#s-series .row > div {
  width: 100%;
  flex: none;
  padding: 0;
}
#g-series .row > div:first-child,
#s-series .row > div:first-child {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
#g-series .row > div:first-child iframe,
#s-series .row > div:first-child iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#g-series .row > div:last-child,
#s-series .row > div:last-child {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  text-align: center;
}

/** Google Translate **/
div.change-language select {
  display: block;
  border: 1px solid #32373c;
  border-radius: 20px;
  padding: 5px 20px;
  background: transparent;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #32373c;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (min-width: 1200px) {
  div.change-language {
    position: absolute;
    top: -30px;
    right: 20px;
    margin: 0;
  }
}
@media (min-width: 1400px) {
  div.change-language {
    right: 140px;
  }
}
@media (max-width: 1199.98px) {
  div.change-language {
    margin-right: 16px;
  }
  div.change-language select {
    padding: 4px 16px;
    font-size: 12px;
  }
}

body.header-light div.change-language select {
  border-color: #fff;
  color: #fff;
}
body.header-light .is-sticky div.change-language select {
  border-color: #32373c;
  color: #32373c;
}

/** END Google Translate **/
/** cft **/
.cft {
  background-color: #F5F5F5;
  padding: 120px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-align: center;
  overflow: hidden;
}
.cft h2 {
  margin-bottom: 15px;
  font-family: "Quicksand", sans-serif;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}
.cft p:last-child {
  margin-bottom: 0;
}
.cft .cft-item {
  position: relative;
}
.cft .cft-item .subtitle {
  margin-bottom: 0;
  font-size: 15px;
  color: #EB6C0E;
  font-weight: 700;
  text-transform: uppercase;
}
.cft .cft-item .icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}
.cft .cft-item .icons > li {
  margin: 0 5px 10px;
}
.cft .cft-item .icons > li img {
  display: block;
  max-width: 56px;
  height: auto;
}
.cft .cft-item--3 h2 {
  color: #EB6C0E;
}
.cft .cft-item--4 h2 {
  color: #1CBADB;
}
.cft .cft-item--5 h2 {
  color: #80CC69;
}
.cft__heading {
  max-width: 500px;
  margin: 0 auto 100px;
}
.cft__items > .shape {
  display: none;
}
@media (min-width: 992px) {
  .cft .container {
    max-width: 1010px;
  }
  .cft .cft-item {
    max-width: 300px;
    box-sizing: content-box;
  }
  .cft .cft-item .shape,
.cft .cft-item .subtitle {
    display: none;
  }
  .cft .cft-item--1, .cft .cft-item--2 {
    position: absolute;
    top: 150px;
  }
  .cft .cft-item--4, .cft .cft-item--5 {
    padding: 30px 30px 0;
  }
  .cft .cft-item--1 {
    left: 16px;
  }
  .cft .cft-item--2 {
    right: 0;
  }
  .cft .cft-item--3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .cft__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }
  .cft__items:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 238px;
    height: 46px;
    background-image: url(../svg/logo-black.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .cft__items > .shape {
    display: block;
    width: 100%;
  }
  .cft__items > .shape img {
    display: block;
    margin: 0 auto;
  }
  .cft__items > .shape--1 {
    padding-left: 15px;
  }
  .cft__items > .shape--1 img {
    width: 744px;
  }
  .cft__items > .shape--2 img {
    width: 453px;
  }
}
@media (min-width: 1200px) {
  .cft .container {
    max-width: 1170px;
  }
  .cft .cft-item {
    max-width: 350px;
  }
  .cft .cft-item--1, .cft .cft-item--2 {
    top: 180px;
  }
  .cft .cft-item--4, .cft .cft-item--5 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .cft__items > .shape--1 {
    padding-left: 16px;
  }
  .cft__items > .shape--1 img {
    width: 876px;
  }
  .cft__items > .shape--2 img {
    width: 533px;
  }
}
@media (max-width: 991.98px) {
  .cft {
    padding: 80px 0;
  }
  .cft h2 {
    font-size: 24px;
  }
  .cft .cft-item {
    max-width: 320px;
    margin: 0 auto 40px;
  }
  .cft .cft-item .shape {
    position: relative;
    margin-bottom: 20px;
  }
  .cft .cft-item .shape > img {
    display: block;
    max-width: none;
    margin: 0 auto;
  }
  .cft .cft-item--1 .shape {
    right: -83px;
  }
  .cft .cft-item--2 .shape {
    left: -78px;
  }
  .cft .cft-item--3 .shape {
    left: -57px;
  }
  .cft .cft-item--4 .shape {
    left: 0;
  }
  .cft .cft-item--5 {
    margin-bottom: 0;
  }
  .cft .cft-item--5 .shape {
    left: 1px;
  }
  .cft__heading {
    margin-bottom: 80px;
  }
}

/** END cft **/
