* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: none;
}


/* Root stylings */
:root {
  --Vietnamfont: "Be Vietnam Pro", sans-serif;
  --Archivofont: "Archivo", sans-serif;
  ;
  --Orange: #F7941E;
  --Black: #000000;
  --Peachcolor: #F6F5F0;
  --greycolor: #F1F5F6;
  --textcolor: #000;
/*   --textcolor: rgba(0, 0, 0, 0.60); */


}

/* Defaults fonts */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: Amigos;
  src: url('https://kangaroovoyage.com.au//wp-content/themes/kangaroo/assets/fonts/Amigos.otf');
}

/* Container width */
.container {
  max-width: 90%;
}

/* Default Headings */
h1 {
  font-size: 60px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 25px;
}

/* header */

/* Header */
.header {
  position: absolute;
  top: 0;
  z-index: 3;
  width: 100%;
  padding-top: 10px;
}

.header .logo-header img {
  width: 120px;
}

.header .menu-large {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .menu-large ul {
  display: flex;
  justify-content: center;
}

.header .menu-large ul li:not(:last-child) {
  margin-right: 60px;
}

.header .menu-large ul li a {
  text-decoration: none;
  color: #fff;
  font-family: var(--Archivofont);
  font-size: 18px;
}

.header .menu-large ul li a:hover{
  color: var(--Orange);
}

.fa.fa-bars {
  color: #fff;
  font-size: 25px;
}

.header .header-cta {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}

.header .header-cta a {
  text-decoration: none;
  background-color: #fff;
  padding: 18px 25px;
  color: var(--Orange);
  font-family: var(--Archivofont);
  font-size: 18px;
  border-radius: 20px;
}

.header .header-cta a:hover{
  background-color: var(--Orange);
  color: #fff;
}

header.header.sticky-header {
  position: fixed;
  width: 100%;
  background: #FFF;
  padding: 10px 0;
  z-index: 99999;
  backdrop-filter: blur(10px);
  animation: slideDown 0.50s ease-out;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

header.header.sticky-header .menu-large ul li a {
  color: var(--Black);
}

header.header.sticky-header .logo-header img {
  width: 70px;
}

header.header.sticky-header .header-cta a {
  text-decoration: none;
  background-color: var(--Orange);
  padding: 12px 15px;
  color: #fff;
  font-family: var(--Archivofont);
  font-size: 16px;
  border-radius: 15px;
  border: 1px solid var(--Orange);
}

header.header.sticky-header .fa.fa-bars {
  color: #000;
  font-size: 25px;
}

header.header.sticky-header .header-cta a:hover{
  background-color: #fff;
  color: var(--Orange);
}

/* banner */

.banner-section .slide {
  position: relative;
  height: 100vh;
}

.banner-section .slide .banner-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.banner-section .slide .banner-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner-section .carousel-control-prev {
  display: none;
}

.banner-section .carousel-control-next {
  display: none;
}

.banner-section .carousel-indicators [data-bs-target] {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.banner-section .carousel-indicators {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
  width: fit-content;
  transform: rotate(90deg);
  bottom: unset;
  left: unset;
  opacity: 1;
}

.banner-section .carousel-indicators .active {
  background-color: var(--Orange);
}

.banner-section .slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-section .slide::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(216 211 211 / 20%);
  z-index: 2;
}

.banner-section .slide h1 {
  position: relative;
  text-align: center;
  padding: 0 10%;
  color: #fff;
  font-family: var(--Vietnamfont);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  text-shadow: 0px 1px 4px #000;
  z-index: 3;
}


/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}


.pb-block {
  margin: 70px 0px;
}

/* Form section */

.form-section-wrapper {
  position: relative;
  margin-top: -5%;
  z-index: 3;
}

.form-section-wrapper .form-box-inner {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.25);
  padding: 50px 60px;
}

.form-section-wrapper .form-box-inner ul {
  display: flex;
  justify-content: center;
}

.form-section-wrapper .form-box-inner ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-section-wrapper .form-box-inner ul li:not(:last-child) {
  padding-right: 50px;
  padding-left: 50px;
  border-right: 2px solid rgba(0, 0, 0, 0.60);
}

.form-section-wrapper .form-box-inner ul li:first-child {
  padding-left: 0px;
}

.form-section-wrapper .form-box-inner ul li:last-child {
  padding-left: 30px;
}

.form-section-wrapper .form-box-inner ul li label {
  color: #283039;
  font-family: var(--Archivofont);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.form-section-wrapper .form-box-inner ul li input {
  border: none;
  font-family: var(--Archivofont);
  color: var(--textcolor);
}

.form-section-wrapper .form-box-inner ul li .cta-contact-form {
  display: flex;
  align-items: center;
}

.form-section-wrapper .form-box-inner ul li .cta-contact-form a {
  padding: 18px 25px;
  text-decoration: none;
  background-color: var(--Orange);
  color: #fff;
  font-family: var(--Archivofont);
  border-radius: 20px;
  border: 1px solid var(--Orange);
}

.form-section-wrapper .form-box-inner ul li .cta-contact-form a:hover{
  background-color: #fff;
  color: var(--Orange);
}

.form-section-wrapper .form-box-inner ul li .cta-contact-form .wpcf7-spinner{
	display: none;
}

.wpcf7-response-output {
    color: #f7941e;
    width: fit-content;
    margin: 30px auto 0 auto !important;
	font-family: var(--Archivofont);
}

.wpcf7-not-valid-tip{
	font-family: var(--Archivofont);
	margin-top: 20px;
}

/* About Section */
.about-us-wrapper h2 {
  font-family: var(--Archivofont);
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.about-us-wrapper p {
  color: var(--textcolor);
  font-family: var(--Archivofont);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 10px;
	text-align:justify;
}

.cta-about a {
  padding: 15px 18px;
  border: 2px solid var(--Orange);
  color: var(--Orange);
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  font-family: var(--Archivofont);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cta-about a:hover{
  background-color: var(--Orange);
  color: #fff;
}

/* FAQ Section */
.faq-tabs-wrapper h2 {
  text-align: center;
  font-family: var(--Archivofont);
  margin-bottom: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.faq-tabs-wrapper .accordion-item {
  margin-bottom: 20px;
  background-color: var(--greycolor);
  border: none;
  border-radius: 10px;
}

.faq-tabs-wrapper .accordion-item h2 {
  margin-bottom: 0;
}

.faq-tabs-wrapper .accordion-item h4 {
  font-size: 18px;
}

.faq-tabs-wrapper .accordion-button {
  background-color: var(--greycolor);
}

.faq-tabs-wrapper .accordion-button {
  border-radius: 10px;
}

.faq-tabs-wrapper .accordion-item:first-of-type .accordion-button {
  border-radius: 10px;
}

.faq-tabs-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 10px;
}

.faq-tabs-wrapper .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq-tabs-wrapper .accordion-button:not(.collapsed) {
  color: var(--Black);
}

.faq-tabs-wrapper .accordion-button:not(.collapsed)::after{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(0deg);
}

.faq-tabs-wrapper .accordion-button:focus {
  box-shadow: none;
}

.faq-tabs-wrapper .accordion-item .accordion-body p {
  font-size: 16px;
  color: var(--textcolor);
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
  font-family: var(--Archivofont);
	text-align:justify;
}

/* Service section */

.our-section-wrapper h2 {
  text-align: center;
  font-family: var(--Archivofont);
  margin-bottom: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.service-slide {
  position: relative;
  width: 200px;
  height: 400px;
  border-radius: 20px;
  margin-left: auto;
  transition: 0.5s all;
  margin-right: 20px;
}

.service-slide::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  z-index: 2;
  border-radius: 20px;
  opacity: 0.4;
}

.service-slide .slide-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.service-slide .slide-bg-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.service-slide:hover {
  width: 400px;
}

/* .service-slide:hover .slide-content {
  align-items: flex-start;
  top: 30%;
} */

.service-slide:hover .slide-content h3 {
  text-align: left;
}

.service-slide:hover .slide-content p {
  display: block;
}

.service-slide:hover .slide-content .cta-slide {
  display: flex;
}

.service-slide .slide-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 40%;
  font-family: var(--Archivofont);
  padding: 0 10%;
}

.service-slide .slide-content h3 {
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  z-index: 2;
  font-size: 25px;
}

.service-slide .slide-content p {
  display: none;
  color: #fff;
  padding: 20px 0px;
  text-transform: capitalize;
  line-height: 20px;
  z-index: 2;
}

.service-slide .slide-content .cta-slide {
  display: none;
  padding: 10px 10px;
  background-color: var(--Orange);
  border-radius: 10px;
  z-index: 2;
}

.service-slide .slide-content .cta-slide a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.slick-dots {
  bottom: -45px;
}

.accordion-service-wrapper{
	display: flex;
}

.container-panel {
  display: flex;
  width: 100%;
}

.panel {
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
	background-size: cover;
  height: 80vh;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  flex: 2;
  margin: 10px;
  position: relative;
  transition: flex 0.4s ease-in;
  padding: 20px;
}

.panel:before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0.5;
	background: #000;
	border-radius: 20px;
}


.panel h3 {
  position: absolute;
  font-size: 22px;
  top: 50%;
  left: 0px;
  margin: 0;
  opacity: 1;
  font-family: var(--Archivofont);
  font-weight: 700;
  padding: 0 20px;
}

.panel p{
  position: absolute;
  font-size: 16px;
  line-height: 22px;
  top: 60%;
  left: 20px;
  margin: 0;
  opacity: 0;
  font-family: var(--Archivofont);
	padding: 0 20px 0 0;
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  transition: opacity 0.3s ease-in 0.5s;
}

.panel.active h3 br{
	display: none;
} 

.panel.active p{
  opacity: 1;
  transition: opacity 0.2s ease-in 0.2s;
}

@media (max-width: 480px) {
  .container-panel {
    width: 100vw;
  }

  .panel:nth-of-type(4),
  .panel:nth-of-type(5) {
    display: none;
  }
}

.service-section-large-screen h2{
	text-align: center;
    font-family: var(--Archivofont);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	margin-bottom: 40px;
}


/* .slick-slide{
  width: 200px;
}

.slick-slide:hover{
  width: 400px;
} */

/* Packages section */
.regular-packages-wrapper h2 {
  text-align: left;
  font-family: var(--Archivofont);
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.regular-packages-wrapper p {
  font-family: var(--Archivofont);
  font-size: 16px;
  line-height: 30px;
}

.regular-packages-wrapper .cta-all {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.regular-packages-wrapper .cta-all a {
  padding: 10px;
  text-decoration: none;
  border: 1px solid #212121;
  color: var(--textcolor);
  font-family: var(--Archivofont);
}

.regular-packages-wrapper .cta-all a:hover {
  background-color: var(--textcolor);
  color: #fff;
}

.regular-packages-wrapper .package-card {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 10px;
}

.regular-packages-wrapper .package-card .package-card-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
}

.regular-packages-wrapper .package-card .package-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px !important;
}

.regular-packages-wrapper .package-card .rating-pacakge {
  position: absolute;
  z-index: 4;
  display: flex;
  justify-content: end;
  width: 100%;
}

.regular-packages-wrapper .package-card .rating-pacakge span {
  border-radius: 10px;
  background: #FFF;
  padding: 4px;
  margin: 10px;
  font-family: var(--Archivofont);
  font-size: 18px;
}

.regular-packages-wrapper .package-card .rating-pacakge span img {
  margin-right: 2px;
}

.regular-packages-wrapper .package-card .package-info {
  position: absolute;
  width: 100%;
  bottom: 5%;
  padding: 0 10px;
	z-index: 4;
}

.regular-packages-wrapper .package-card .package-info h4 {
  color: #fff;
  font-family: var(--Archivofont);
  font-size: 22px;
  line-height: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.regular-packages-wrapper .package-card .package-info h4 span{
	font-size: 20px;
}

.regular-packages-wrapper .package-card .package-info h2 {
  color: #fff;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-size: 35px !important;
  margin-bottom: 0;
}

.regular-packages-wrapper .package-card .package-info h2 span{
	font-size: 18px;
}

.regular-packages-wrapper .package-card .package-info .cta-package {
  margin-top: 20px;
}

.regular-packages-wrapper .package-card .package-info .cta-package a {
  padding: 20px 10px;
  background-color: #fff;
  width: 100%;
  text-decoration: none;
  color: var(--Orange);
  font-family: var(--Archivofont);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 20px;
}

.regular-packages-wrapper .package-card .package-info .cta-package a:hover{
	 background-color: var(--Orange);
     color: #fff;
}

.regular-packages-wrapper .package-card .package-info .cta-package a img {
  margin-left: 8px;
  width: 20px;
}

/* Our core values section */

.our-core-values-wrappper .heading-text h2 {
  text-align: center;
  font-family: var(--Archivofont);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.our-core-values-wrappper .heading-text p {
  color: #000;
  text-align: center;
  font-family: var(--Archivofont);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 1px;
  padding: 20px 20%;
  color: var(--textcolor);
}

.our-core-values-wrappper ul {
  display: flex;
  margin-top: 80px;
}

.our-core-values-wrappper ul li{
	padding: 0 5px;
}

.our-core-values-wrappper ul li .core-values-box {
  text-align: center;
}

.our-core-values-wrappper ul li .core-values-box .image-wrap-box {
  height: 130px;
  width: 130px;
  margin: 0 auto 30px auto;
}

.our-core-values-wrappper ul li .core-values-box .image-wrap-box img {
  width: 100%;
  height: 100%;
}

.our-core-values-wrappper ul li .core-values-box h6 {
  text-align: center;
  font-family: var(--Archivofont);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.our-core-values-wrappper ul li .core-values-box p {
  text-align: center;
  font-family: var(--Archivofont);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
  margin-top: 10px;
  color: var(--textcolor);
}

/* Benefits of Joining */
.benefits-of-joining-wrapper h2 {
  text-align: center;
  font-family: var(--Archivofont);
  margin-bottom: 50px;
  font-weight: 600;
}

.benefits-of-joining-wrapper ul li:not(:last-child) {
  margin-bottom: 20px;
}

.benefits-of-joining-wrapper ul li:nth-child(1) span {
  padding: 5px;
  border-radius: 20px;
  background: #4363CA;
  width: 50px;
  display: block;
  color: #fff;
  text-align: center;
  font-family: var(--Archivofont);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.benefits-of-joining-wrapper ul li:nth-child(2) span {
  padding: 5px;
  border-radius: 20px;
  background: rgba(67, 99, 202, 0.50);
  width: 50px;
  display: block;
  color: #fff;
  text-align: center;
  font-family: var(--Archivofont);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.benefits-of-joining-wrapper ul li:nth-child(3) span {
  padding: 5px;
  border-radius: 20px;
  background: rgba(213, 102, 16, 0.50);
  width: 50px;
  display: block;
  color: #fff;
  text-align: center;
  font-family: var(--Archivofont);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.benefits-of-joining-wrapper ul li h6 {
  color: #283039;
  font-family: var(--Archivofont);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.benefits-of-joining-wrapper ul li p {
  font-family: var(--Archivofont);
  color: var(--textcolor);
  font-style: normal;
  font-weight: 300;
  line-height: 35px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* Ask for query */

.query-section-wrapper {
  min-height: 800px;
  max-height: 100%;
  background-image: url(../images/bg-image-query-section.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.query-section-wrapper .solution-query-card-wrapper-box {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(5px);
}

.query-section-wrapper .solution-query-card-wrapper-box h5 {
  font-family: var(--Archivofont);
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  text-transform: capitalize;
}

.query-section-wrapper .solution-query-card-wrapper-box p{
  font-family: var(--Archivofont);
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  text-transform: capitalize;
}

.query-section-wrapper .solution-query-card-wrapper-box p b{
	font-weight: 800;
}

.query-section-wrapper .solution-query-card-wrapper-box h5 b {
  font-weight: 800;
}

.query-section-wrapper .solution-query-card-wrapper-box ul {
  display: flex;
  margin-top: 45px;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li {
  display: flex;
  align-items: center;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li:not(:last-child){
   margin-right: 30px;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li .cta-query a {
  padding: 12px 50px;
  text-decoration: none;
  background-color: var(--Orange);
  color: #fff;
  font-family: var(--Archivofont);
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-size: 20px;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li .call_us-link-query {
  display: flex;
  align-items: center;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li .call_us-link-query img {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li .call_us-link-query p {
  color: #000;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: var(--Archivofont);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li .call_us-link-query a {
  color: #000;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: var(--Archivofont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

/* travel-reviews section  */
.travel-reviews-wrapper h2 {
  text-align: center;
  font-family: var(--Archivofont);
  margin-bottom: 50px;
  font-weight: 600;
}

.travel-reviews-wrapper .review-slide {
  border-radius: 34px;
  background-color: var(--greycolor);
  height: 440px;
  padding: 40px;
}

.travel-reviews-wrapper .review-slide img {
  height: 60px;
  width: 60px;
  margin-left: auto;
}

.travel-reviews-wrapper .review-slide h5 {
  font-size: 25px;
  font-family: var(--Archivofont);
  font-weight: 600;
}

.travel-reviews-wrapper .review-slide h6 {
  color: rgba(0, 0, 0, 0.60);
  font-family: var(--Archivofont);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}

.travel-reviews-wrapper .review-slide p {
  color: #000;
  font-family: var(--Archivofont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.8px;
  margin-top: 20px;
	text-align:justify;
}

.travel-reviews-wrapper .owl-carousel .owl-nav.disabled {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
}

.travel-reviews-wrapper .owl-carousel .owl-nav.disabled .owl-prev {
  left: -6%;
  position: absolute;
  width: 55px;
  height: 40px;
  background-color: #000;
  border-radius: 10px;
}

.travel-reviews-wrapper .owl-carousel .owl-nav.disabled .owl-prev span {
  font-size: 40px;
  position: relative;
  top: -5px;
  color: #fff;	
}

.travel-reviews-wrapper .owl-carousel .owl-nav.disabled .owl-prev:hover {
  background-color: var(--Orange);
  color: #fff;
}

.travel-reviews-wrapper .owl-carousel .owl-nav.disabled .owl-next span {
  font-size: 40px;
  position: relative;
  top: -5px;
  color: #fff;	
}

.travel-reviews-wrapper .owl-carousel .owl-nav.disabled .owl-next {
  right: -6%;
  position: absolute;
  width: 55px;
  height: 40px;
  background-color: #000;
  border-radius: 10px;
}

.travel-reviews-wrapper .owl-carousel .owl-nav.disabled .owl-next:hover {
  background-color: var(--Orange);
  color: #fff;
}

/* Location section */
.location-section-wrapper h2 {
  text-align: center;
  font-family: var(--Archivofont);
  margin-bottom: 50px;
  font-weight: 600;
}

.location-section-wrapper .nav-pills .nav-link.active {
  background-color: var(--greycolor);
}

.location-section-wrapper h3 {
  color: #000;
  text-align: left;
  font-family: var(--Archivofont);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.location-section-wrapper ul {
  text-align: left;
  margin-top: 20px;
}

.location-section-wrapper ul li {
  margin-bottom: 20px;
}

.location-section-wrapper ul li a {
	width:fit-content;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.location-section-wrapper ul li a img {
  width: 20px;
  height: 20px;
}

.location-section-wrapper ul li a p {
  margin-left: 10px;
  color: var(--Black);
  text-decoration: none;
  font-size: 16px;
  font-family: var(--Archivofont);
  line-height: 30px;
}

.location-section-wrapper .tab-content {
  width: 100%;
  height: 100%;
}

.location-section-wrapper .tab-pane {
  height: 100%;
}

.location-section-wrapper .tab-pane .map-location {
  height: 100%;
}

/* Contact Section */
.contact-form-section-wrapper {
  height: 100%;
  position: relative;
}

.contact-form-section-wrapper .bg-image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.contact-form-section-wrapper .bg-image img {
  width: 100%;
  height: 100%;
}

.contact-form-section-wrapper::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(7.5px);
  z-index: 1;
}

.contact-form-section-wrapper .form-box-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 60px 120px;
  background: rgba(0, 0, 0, 0.80);
  backdrop-filter: blur(5px);
}

.contact-form-section-wrapper .form-box-inner h2 {
  text-align: center;
  color: #FFF;
  font-family: var(--Archivofont);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 60px;
}

.contact-form-section-wrapper .form-box-inner input[type="text"] {
  width: 100%;
  height: 50px;
  background-color: var(--greycolor);
  border: none;
  padding-left: 19px;
  font-family: var(--Archivofont);
}

.contact-form-section-wrapper .form-box-inner input[type="text"]::placeholder {
  font-family: var(--Archivofont);
}

.contact-form-section-wrapper .form-box-inner input[type="email"] {
  width: 100%;
  height: 50px;
  background-color: var(--greycolor);
  border: none;
  padding-left: 19px;
  font-family: var(--Archivofont);
}

.contact-form-section-wrapper .form-box-inner input[type="email"]::placeholder {
  font-family: var(--Archivofont);
}

.contact-form-section-wrapper .form-box-inner input[type="tel"] {
  width: 100%;
  height: 50px;
  background-color: var(--greycolor);
  border: none;
  padding-left: 19px;
  font-family: var(--Archivofont);
}

.contact-form-section-wrapper .form-box-inner input[type="tel"]::placeholder {
  font-family: var(--Archivofont);
}

.contact-form-section-wrapper .form-box-inner textarea {
  height: 100%;
  width: 100%;
  font-family: var(--Archivofont);
  padding: 15px 0 0 15px;
}

.contact-form-section-wrapper .form-box-inner textarea::placeholder {
  font-family: var(--Archivofont);
/*   padding: 15px; */
}

.contact-form-section-wrapper .form-box-inner input[type="submit"] {
  padding: 20px 26px 20px 32px;
  border-radius: 20px;
  border: none;
  background-color: var(--Orange);
  font-size: 20px;
  font-family: var(--Archivofont);
  color: #fff;
}

.contact-form-section-wrapper .form-box-inner input[type="submit"]:hover{
  background-color: #fff;
  color: var(--Orange);
}

/* Footer Section */

footer {
  padding-top: 24px;
}

footer .footer-menu {
  height: 100%;
}

footer .footer-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

footer .footer-menu ul li:not(:last-child) {
  margin-right: 80px;
}

footer .footer-menu ul li a {
  text-decoration: none;
  font-family: var(--Archivofont);
  color: var(--Black);
}

footer .footer-social-icons ul {
  display: flex;
}

footer .footer-social-icons ul li:not(:last-child) {
  margin-right: 20px;
}

footer p {
  margin-bottom: 0;
  font-family: var(--Archivofont);
}
.footer-menu {
    display: flex;
    flex-direction: row-reverse;
	justify-content: center;
}
.form-section-wrapper .form-box-inner ul li input {
    width: 100%;
}

.cta-contact-form input {
    padding: 15px;
    border-radius: 15px;
    color: #fff;
    background-color:  var(--Orange);
    border: 2px solid var(--Orange);
}

.cta-contact-form input:hover{
     color: var(--Orange);
     background-color: #fff;

}
.wpcf7-response-output {
    color: #f7941e;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    color: #f7941e;
    border: 1px solid #f7941e;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner{
    color: #fff;
    }

.wpcf7-form p{
	height: 100%;
}

/* POPUP */

.modal{
	z-index:99999;
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-header{
	border-bottom: 0;
}

.modal-dialog {
    max-width: 80%;
    margin: 1.75rem auto;
}

.modal-content{
	border: 2px solid #F7941E;
}

.modal-body{
	padding: 2rem 60px;
	border-radius: 15px;
}

#exampleModalLabel{
	display: none;
}

.modal-body h2{
	font-family: var(--Archivofont);
	font-weight: 700;
	font-size: 60px;
	margin-top: 10px;
}

.modal-body h3{
	font-family: var(--Archivofont);
	color: #F7941E;
	font-size: 35px;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 700;
}

.modal-body h6{
	font-family: var(--Archivofont);
	font-weight: 600;
}

.modal-body ul{
	margin: 30px 0px;
}

.modal-body ul li{
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
}

.modal-body ul li img{
	width: 15px;
	object-fit: contain;
}

.modal-body ul li p{
	font-family: var(--Archivofont);
	margin-left: 10px;
	color: #000;
	font-size: 18px;
}
.modal-body ul li {
	font-family: var(--Archivofont);
	margin-left: 10px;
	color: #000;
	font-size: 18px;
	line-height:30px;
}

.modal-body .cta-popup-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.modal-body .cta-popup-wrapper .cta-popup a{
	display: flex;
	align-items: center;
	padding: 15px 15px;
	background-color: var(--Orange);
	font-family: var(--Archivofont);
	text-decoration: none;
	color: #fff;
    font-size: 18px;
	border-radius: 15px;
}

.modal-body .cta-popup-wrapper a img{
	margin-left: 10px;
}

.modal-body .popup-image{
	position: relative;
}

.modal-body .popup-image img{
	border-radius: 20px;
}

.modal-body .popup-image .popup-badge{
	position: absolute;
	top: -10%;
	left: -10%;
	background-color: var(--Orange);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	color: #fff;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border: 2px solid #fff;
}

.modal-body .popup-image .popup-badge h4{
	font-family: var(--Archivofont);
	font-size: 30px;
	font-weight: 700;
}

.modal-body .popup-image .popup-badge p{
	font-family: var(--Archivofont);
	font-size: 18px;
}
/* .modal-body li:before {
    margin-right: 5px;
    color: #F7941E;
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
} */

.modal-body li:before {
    margin-right: 0px;
    color: #fff;
    background: #F7941E;
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    padding: 0px;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
	position: absolute;
    left: -15px;
}

.wpcf7-not-valid {
    border: 2px solid red!important;
}
.wpcf7-response-output,span.wpcf7-not-valid-tip {
    display: none;
}
form.wpcf7-form.sent .wpcf7-response-output {
    display:block;
}

.modal-open-noscroll {
    overflow: hidden;
}

.price-popup {
	width: 100%;
}

.package-card{
	position: relative;
}

.package-card::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: url(https://kangaroovoyage.com.au/wp-content/uploads/2024/02/package-overlay.png);
	opacity: 1;
	border-radius: 12px;
	z-index: 4;
}

.query-section-wrapper .solution-query-card-wrapper-box ul li .cta-query a:hover{
	background: #fff;
	color: var(--Orange);
}

header.header.sticky-header .menu-large ul li a:hover{
	color: var(--Orange);
}

.menu a:hover{
	color: var(--Orange);
}

.wpcf7-spinner{
	display: none !important;
}

.modal-body .popup-image{
		height: 100%;
	}
	
.modal-body .popup-image img {
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}


