:root {
  --text-dark: #0e0e0e;
  --paragraph-text: #999;
  --primary: #fa6741;
  --white: white;
  --primary-light: #f8f3f2;
  --black: #222;
  --g2v-white: #f3f6fa;
  --gray: #e9e9e9;
  --light-gray: #f9f9fa;
  --g2v-blue: #1c3f60;
  --secondary-yellow: #ffbb4a;
  --great-title: #eee;
  --white-50: #ffffff80;
  --dark-gray-50: #afafaf80;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-commerce-commerceaddtocartform {
  margin: 0 0 15px;
}

.w-commerce-commerceaddtocartoptionpillgroup {
  margin-bottom: 10px;
  display: flex;
}

.w-commerce-commerceaddtocartoptionpill {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 10px;
  padding: 8px 15px;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #000;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartquantityinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commercebuynowbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  margin-top: 10px;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.w-commerce-commercebuynowbutton.w--ecommerce-buy-now-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-commerce-commercecartwrapper {
  display: inline-block;
  position: relative;
}

.w-commerce-commercecartopenlink {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartopenlinkicon {
  margin-right: 8px;
}

.w-commerce-commercecartopenlinkcount {
  color: #3898ec;
  text-align: center;
  background-color: #fff;
  border-radius: 9px;
  min-width: 18px;
  height: 18px;
  margin-left: 8px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.w-commerce-commercecartcontainerwrapper {
  z-index: 1001;
  background-color: #000c;
  position: fixed;
  inset: 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% auto auto 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% 0 auto auto;
}

.w-commerce-commercecartcontainer {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  overflow: auto;
  box-shadow: 0 5px 25px #00000040;
}

.w-commerce-commercecartheader {
  border-bottom: 1px solid #e6e6e6;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: relative;
}

.w-commerce-commercecartheading {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.w-commerce-commercecartcloselink {
  width: 16px;
  height: 16px;
}

.w-commerce-commercecartformwrapper {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.w-commerce-commercecartform {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecartlist {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 12px 24px;
  overflow: auto;
}

.w-commerce-commercecartitem {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.w-commerce-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.w-commerce-commercecartiteminfo {
  flex-direction: column;
  flex: 1;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
}

.w-commerce-commercecartproductname {
  font-weight: 700;
}

.w-commerce-commercecartoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecartquantity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecartquantity::placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecartfooter {
  border-top: 1px solid #e6e6e6;
  flex-direction: column;
  flex: none;
  padding: 16px 24px 24px;
  display: flex;
}

.w-commerce-commercecartlineitem {
  flex: none;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  display: flex;
}

.w-commerce-commercecartordervalue {
  font-weight: 700;
}

.w-commerce-commercecartapplepaybutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  height: 38px;
  min-height: 30px;
  margin-bottom: 8px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartapplepayicon {
  width: 100%;
  height: 50%;
  min-height: 20px;
}

.w-commerce-commercecartquickcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 38px;
  margin-bottom: 8px;
  padding: 0 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercequickcheckoutgoogleicon, .w-commerce-commercequickcheckoutmicrosofticon {
  margin-right: 8px;
  display: block;
}

.w-commerce-commercecartcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecartemptystate {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.w-commerce-commercecarterrorstate {
  background-color: #ffdede;
  flex: none;
  margin: 0 24px 24px;
  padding: 10px;
}

.w-commerce-commercecheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercelayoutcontainer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.w-commerce-commercelayoutmain {
  flex: 0 800px;
  margin-right: 20px;
}

.w-commerce-commercecheckoutorderitemswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutblockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 20px;
}

.w-commerce-commercecheckoutorderitemslist {
  margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
  margin-bottom: 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.w-commerce-commerceboldtextblock {
  font-weight: 700;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
  white-space: pre-wrap;
  display: flex;
}

.w-commerce-commercecheckoutorderitemoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecheckoutcustomerinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutlabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutemailinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutemailinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingaddresswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutshippingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutrow {
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.w-commerce-commercecheckoutcolumn {
  flex: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.w-commerce-commercecheckoutshippingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingmethodslist {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.w-commerce-commercecheckoutshippingmethoditem {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 0;
  padding: 16px;
  font-weight: 400;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
  flex-direction: column;
  flex-grow: 1;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 64px 16px;
}

.w-commerce-commercecheckoutpaymentinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutcardnumber {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardnumber::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:focus, .w-commerce-commercecheckoutcardnumber.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardexpirationdate::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:focus, .w-commerce-commercecheckoutcardexpirationdate.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardsecuritycode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:focus, .w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingaddresstogglewrapper {
  flex-direction: row;
  display: flex;
}

.w-commerce-commercecheckoutbillingaddresstogglecheckbox {
  margin-top: 4px;
}

.w-commerce-commercecheckoutbillingaddresstogglelabel {
  margin-left: 8px;
  font-weight: 400;
}

.w-commerce-commercecheckoutbillingaddresswrapper {
  margin-top: 16px;
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutbillingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercelayoutsidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 20px;
}

.w-commerce-commercecheckoutordersummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem, .w-commerce-commercecheckoutordersummaryextraitemslistitem {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}

.w-commerce-commercecheckoutsummarytotal {
  font-weight: 700;
}

.w-commerce-commercecheckoutplaceorderbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 3px;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-commerce-commerceorderconfirmationcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryitem, .w-commerce-commercecheckoutsummarylabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
  margin-right: .33em;
}

.w-commerce-commercecheckoutshippingsummarywrapper, .w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercepaypalcheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercepaypalcheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

@media screen and (max-width: 767px) {
  .w-commerce-commercelayoutcontainer {
    flex-direction: column;
    align-items: stretch;
  }

  .w-commerce-commercelayoutmain {
    flex-basis: auto;
    margin-right: 0;
  }

  .w-commerce-commercelayoutsidebar {
    flex-basis: auto;
  }
}

@media screen and (max-width: 479px) {
  .w-commerce-commerceaddtocartquantityinput {
    font-size: 16px;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-modal {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-leftDropdown, .w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    display: flex;
    position: fixed;
    inset: 0;
  }

  .w-commerce-commercecartquantity, .w-commerce-commercecheckoutemailinput, .w-commerce-commercecheckoutshippingfullname, .w-commerce-commercecheckoutshippingstreetaddress, .w-commerce-commercecheckoutshippingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    flex-direction: column;
  }

  .w-commerce-commercecheckoutshippingcity, .w-commerce-commercecheckoutshippingstateprovince, .w-commerce-commercecheckoutshippingzippostalcode, .w-commerce-commercecheckoutshippingcountryselector, .w-commerce-commercecheckoutcardnumber, .w-commerce-commercecheckoutcardexpirationdate, .w-commerce-commercecheckoutcardsecuritycode, .w-commerce-commercecheckoutbillingfullname, .w-commerce-commercecheckoutbillingstreetaddress, .w-commerce-commercecheckoutbillingstreetaddressoptional, .w-commerce-commercecheckoutbillingcity, .w-commerce-commercecheckoutbillingstateprovince, .w-commerce-commercecheckoutbillingzippostalcode, .w-commerce-commercecheckoutbillingcountryselector {
    font-size: 16px;
  }
}

body {
  color: var(--text-dark);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Mukta, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
}

h2 {
  color: var(--text-dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Mukta, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2em;
}

h3 {
  color: var(--text-dark);
  text-transform: capitalize;
  margin-top: 10px;
  font-family: Mukta, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
}

h4 {
  color: var(--text-dark);
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Mukta, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}

h5 {
  color: var(--text-dark);
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Mukta, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Allura, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
}

p {
  color: var(--paragraph-text);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  align-items: center;
  font-family: Mukta, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--text-dark);
}

ul {
  margin-top: 10px;
  padding-left: 0;
}

li {
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: capitalize;
  align-items: center;
  margin-bottom: 15px;
  font-family: Mukta, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  display: flex;
}

label {
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  display: block;
}

blockquote {
  text-align: center;
  background-image: url('../images/Quotes_1Quotes.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 23px;
  border-left: 1px #000;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 30px 20px 10px;
  font-family: Lato, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.section {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.light-background {
  background-color: var(--primary-light);
  display: none;
}

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.banner-our-team {
  background-image: linear-gradient(#00000040, #00000040), url('../images/cristina-gottardi-wndpWTiDuT0-unsplash-1-1-1-1-1.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
}

.section.without-bottom-spacing {
  background-color: var(--white);
  padding-bottom: 0;
  display: none;
}

.section.banner-faq {
  background-image: linear-gradient(#00000040, #00000040), url('../images/david-marcu-78A265wPiO4-unsplash-1-1-1-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
}

.section.about-us-banner {
  background-image: linear-gradient(to top, #0000004d, #0000), url('../images/david-marcu-78A265wPiO4-unsplash-1-1-1-1.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
}

.section.blue-background {
  background-color: var(--black);
}

.section.landing-banner {
  background-color: var(--black);
  background-image: url('../images/—Pngtree—palm-leaves-shadow-effect_6258754-3-1.png'), url('../images/—Pngtree—palm-leaves-shadow-effect_6258754-1-2.png');
  background-position: 100% 0, 0 30%;
  background-repeat: no-repeat, no-repeat;
  background-size: 240px, 330px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.without-top-spacing {
  background-color: var(--white);
}

.section.category {
  justify-content: center;
  align-items: center;
  min-height: 450px;
  display: flex;
  overflow: hidden;
}

.section.without-spacing {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

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

.section.contact-us-banner {
  background-color: var(--g2v-white);
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/cristina-gottardi-wndpWTiDuT0-unsplash-1-1-1-1-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
}

.section.services-banner {
  z-index: 100;
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/kym-ellis-RPT3AjdXlZc-unsplash-1-1-1-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
  overflow: visible;
}

.section.tours-banner {
  background-image: linear-gradient(#0006, #0006), url('../images/cristina-gottardi-wndpWTiDuT0-unsplash-1-1-1-1-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
}

.section.destination-banner {
  background-image: linear-gradient(to right, #0000004d 66%, #0000), url('../images/kym-ellis-RPT3AjdXlZc-unsplash-1-1-1-1.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
}

.section.shop-page {
  background-color: #0000;
  position: static;
}

.section.shop-banner {
  z-index: 100;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 450px;
  padding-top: 140px;
  display: flex;
  overflow: hidden;
}

.section.tours-banner {
  z-index: 100;
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/cristina-gottardi-wndpWTiDuT0-unsplash-1-1-1-1-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
  overflow: visible;
}

.section.about-us-home-3 {
  z-index: 10;
  margin-top: -10px;
  padding-top: 20px;
  padding-bottom: 0;
}

.base-container {
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container.align-left {
  align-items: flex-start;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.grid-system {
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-title {
  background-color: var(--primary);
  color: var(--white);
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  background-color: var(--primary);
  border-left-style: solid;
  border-left-color: #7c7c7c;
  width: 24%;
  margin-top: 0;
}

.grid-description {
  border-bottom: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-system-image {
  max-width: 80%;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  margin-top: 50px;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.spasing-system-image-mobile {
  max-width: 70%;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.gray-style-guide {
  background-color: var(--gray);
  width: 75px;
  height: 75px;
}

.color-wrapper {
  margin-right: 30px;
}

.colors-wrapper {
  margin-right: 60px;
}

.text-dark-style-guide {
  background-color: var(--text-dark);
  width: 75px;
  height: 75px;
}

.black-style-guide {
  background-color: var(--black);
  color: var(--black);
  width: 75px;
  height: 75px;
}

.colors-container {
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.light-gray-style-guide {
  background-color: var(--light-gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.color-container {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.primary-light-style-guide {
  background-color: var(--primary-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 48%;
  margin-bottom: 30px;
  margin-right: 40px;
  display: flex;
}

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h1-tablet {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 70px;
}

.h2-tablet {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.h1-mobile {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 55px;
}

.h2-mobile {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 30px;
}

.h3-mobile {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 28px;
}

.h3-tablet, .h4-tablet, .h5-tablet, .h6-tablet, .h4-mobile, .h6-mobile {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-body-wrapper.last-child {
  margin-right: 0;
}

.primary-button {
  border: 1px solid var(--g2v-blue);
  background-color: var(--g2v-blue);
  color: var(--g2v-white);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 10px;
  padding: 15px 40px;
  font-family: Mukta, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  transition: all .3s;
  display: inline-block;
}

.primary-button:hover {
  background-color: var(--white);
  opacity: 1;
  color: var(--g2v-blue);
}

.primary-button.serch-button {
  margin-left: auto;
  margin-right: auto;
}

.primary-button.search-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 154px;
  height: 56px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.primary-button.full-width-coming-soon {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 100%;
}

.primary-button.search-button-shop {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 56px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 1px -1px 10px #0000001a;
}

.primary-button.shop-details {
  width: 100%;
}

.primary-button.order-summary {
  width: 100%;
  margin-left: 10px;
}

.style-guide-div {
  width: 100%;
  margin-top: 50px;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.grid-header {
  width: 100%;
  margin-top: 60px;
}

.link-wrapper {
  width: 50%;
  margin-top: 20px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-dropdown-icon {
  font-size: 16px;
  display: none;
}

.body {
  font-size: 20px;
}

.tablet-menu {
  display: none;
}

.style-guide-banner-section {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  min-height: 450px;
  display: flex;
}

.logo-mobile {
  padding-left: 0;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #5e5e5e80;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--text-dark);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  z-index: 10;
  color: var(--g2v-white);
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa brands 400", sans-serif;
  font-size: 24px;
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-paragraph.last-item {
  margin-right: 0;
}

.licensing-font-title {
  color: #5e5e5e80;
  text-transform: uppercase;
  font-weight: 400;
}

.licensing-icons-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border-radius: 100px;
  min-width: 280px;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 10px 10px 10px 20px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.2em;
}

.password-input:focus {
  border: 1px solid var(--text-dark);
}

.password-input::placeholder {
  color: #0e0e0e66;
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  z-index: 10;
  justify-content: center;
  display: flex;
  position: fixed;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 510px;
  display: flex;
}

.coming-soon-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 690px;
  margin-left: 0;
  margin-right: 40px;
  display: flex;
}

.changelog-heading {
  margin-bottom: 20px;
}

.coming-soon-form {
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--gray);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  min-width: 300px;
  height: 50.3906px;
  margin-bottom: 0;
}

.coming-soon-input:focus {
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary) transparent var(--primary) var(--primary);
}

.coming-soon-input::placeholder {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.coming-soon-heading {
  margin-top: 60px;
}

.blog-grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.blog-grid-collection-list {
  grid-column-gap: 27px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.blog-grid-image-link {
  min-width: 100%;
  overflow: hidden;
}

.blog-grid-image {
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.blog-grid-item-date {
  margin-top: 0;
  margin-bottom: 10px;
}

.blog-grid-item {
  border-radius: 10px;
  width: 31.5%;
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 5px 20px #0000000f;
}

.blog-grid-item-title {
  color: var(--text-dark);
  font-family: Bitter, serif;
  font-size: 24px;
  font-weight: 700;
}

.blog-grid-item-description {
  margin-top: 0;
  margin-bottom: 15px;
}

.blog-post-title {
  letter-spacing: 0;
  transition: color .3s;
}

.blog-post-title:hover {
  color: var(--primary);
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: center;
  display: flex;
}

.blog-sidebar-post-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  margin-bottom: 10px;
  padding: 5px 8px;
  transition: all .3s;
  display: inline-block;
}

.blog-sidebar-post-category:hover {
  background-color: var(--white);
  color: var(--primary);
}

.blog-template-wrapper {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-image {
  object-fit: cover;
  width: 100%;
  max-height: 680px;
  margin-bottom: 20px;
}

.blog-template-date {
  margin-top: 30px;
  margin-bottom: 40px;
  font-weight: 700;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.prev-post-arrow {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.next-post-arrow {
  color: var(--text-dark);
  margin-bottom: 0;
  margin-left: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-prev-button {
  flex: 1;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.blog-template-pagination-link {
  align-items: center;
  width: auto;
  display: flex;
}

.blog-template-next {
  text-align: right;
}

.footer {
  background-color: var(--g2v-white);
  text-align: center;
  background-image: url('../images/PNG-Footer-1.png');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto 400px;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

.footer-rights-wrapper {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-rights {
  color: #ffffffb3;
  font-family: Lato, sans-serif;
  font-size: 14px;
}

.footer-copyright {
  color: #ffffffb3;
  text-align: center;
  letter-spacing: 0;
  text-transform: capitalize;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: .2px;
  margin-right: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

.footer-copyright-link:hover {
  color: var(--primary);
}

.body-with-background {
  background-color: var(--light-gray);
}

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrapper.category-section, .section-title-wrapper.video-content-wrap {
  margin-bottom: 30px;
}

.section-title-wrapper.about-us-wrapper {
  text-align: left;
  max-width: 100%;
  margin-bottom: 0;
}

.section-title-wrapper.about-us-home-2 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-top: 80px;
  margin-bottom: 0;
  display: flex;
}

.team-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.team-card-image {
  color: var(--primary);
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  height: 310px;
}

.team-card-content-wrapper {
  background-color: var(--primary-light);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 30px;
}

.team-member-position {
  color: #525252;
  margin-bottom: 20px;
  font-size: 18px;
}

.team-social-links-wrapper {
  grid-column-gap: 20px;
  justify-content: center;
  display: flex;
}

.team-social-icon {
  color: var(--primary);
  font-family: "Fa brands 400", sans-serif;
  font-size: 20px;
}

.process-item-wrapper {
  align-items: center;
  display: flex;
}

.process-image-wrapper, .process-content {
  width: 45%;
}

.process-content.reverse {
  width: 80%;
  padding-right: 70px;
}

.process-number-wrapper {
  flex: 1;
  max-width: 20%;
  padding-left: 70px;
  padding-right: 70px;
}

.process-number-wrapper.reverse {
  flex: none;
  min-width: 20%;
  max-width: none;
  padding-left: 0;
}

.process-number {
  color: var(--g2v-blue);
  font-size: 66px;
  line-height: 1;
}

.process-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.style-guide-button-wrapper {
  width: 47%;
}

.style-guide-button-wrapper.last-child {
  margin-right: 0;
}

.text-button-icon {
  margin-top: 4px;
  margin-left: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.process-image {
  object-fit: cover;
  width: 480px;
  height: 320px;
}

.process-content-wrapper {
  align-items: center;
  width: 55%;
  display: flex;
}

.paragraph-large {
  color: var(--text-dark);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 18px;
  line-height: 1.5em;
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  display: flex;
}

.text-white {
  color: var(--white);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.banner-description {
  text-align: center;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.banner-description.text-orange {
  color: var(--primary);
}

.section-ttile-description {
  text-align: center;
  margin-top: 20px;
}

.services-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.workflow-profile-photo {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.workflow-profile-description {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.workflow-profile-wrapper {
  flex-direction: row;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.workflow-profile-photo-wrapper {
  width: 80px;
  height: 80px;
}

.workflow-profile-name {
  margin-bottom: 0;
  font-size: 18px;
}

.play-button {
  z-index: 5;
  background-color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  display: flex;
}

.accordion-item {
  background-color: var(--white);
  width: 100%;
  margin-bottom: 15px;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 0 20px #0000000f;
}

.accordion-shevron-icon {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-wrap {
  width: 50%;
  margin-right: 15px;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-title {
  text-transform: none;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.mb-30 {
  margin-bottom: 30px;
}

.light-background {
  background-color: var(--light-gray);
}

.pricing-features-wrapper {
  display: flex;
}

.pricing-features-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 75%;
  display: grid;
}

.pricing-features-links-wrap {
  flex-direction: column;
  justify-content: space-around;
  width: 25%;
  padding-left: 70px;
}

.pricing-features-item {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.pricing-features-icon {
  background-color: var(--white);
  color: var(--secondary-yellow);
  text-align: center;
  border-radius: 50px;
  min-width: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 20px;
  padding: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.pricing-features-links-list {
  grid-column-gap: 0px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  margin-top: 20px;
  display: grid;
}

.link-with-icon {
  color: var(--g2v-blue);
  align-items: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  transition: color .3s;
  display: block;
}

.contacts-location-wrap {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--g2v-blue);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.paragraph {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.adress-cards-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 40px;
  display: grid;
}

.adress-card {
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 10px;
  display: flex;
}

.contact-3-inputs-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contacts-3-form {
  text-align: center;
}

.footer-social-icons-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.white-text {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
  display: block;
}

.white-text.mb-15 {
  color: var(--g2v-blue);
  flex-wrap: nowrap;
  justify-content: space-around;
  margin-top: 0;
  display: flex;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.footer-brand {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins, sans-serif;
}

.footer-social-icon {
  color: var(--g2v-blue);
  margin-right: 30px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}

.footer-social-icon:hover {
  color: var(--g2v-white);
}

.footer-links-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 15%;
  margin-left: 30px;
  display: flex;
}

.footer-links-wrapper.travel-news {
  flex-wrap: wrap;
  flex: 1;
  align-items: stretch;
  width: auto;
  overflow: hidden;
}

.footer-logo {
  background-color: var(--g2v-white);
  width: 174.391px;
  height: 40px;
}

.search-wrap-input {
  color: var(--paragraph-text);
  background-color: #0000;
  border: 1px solid #0000;
  height: 60px;
  margin-bottom: 0;
  padding: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
}

.search-wrap-input:focus {
  border-style: none;
}

.search-desktop {
  z-index: 1000;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.search-close-button {
  cursor: pointer;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  inset: 50px 50px auto auto;
}

.search-bottom-line {
  background-color: var(--primary);
  width: 100%;
  height: 3px;
  margin-bottom: 20px;
  display: flex;
}

.search-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  display: flex;
}

.search-shop-con {
  z-index: 100;
  cursor: pointer;
  align-items: center;
  margin-left: 10px;
  display: flex;
  position: relative;
}

.navbar-search-icon {
  color: var(--text-dark);
  cursor: pointer;
  padding: 12px 10px 10px;
  font-family: "Fa solid 900", sans-serif;
}

.without-top-spacing {
  padding-top: 0;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  font-size: 18px;
  transition: all .3s;
}

.search-link:hover {
  opacity: .7;
}

.search-input {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  height: 56px;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 16px 22px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
}

.search-input:focus {
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary) transparent var(--primary) var(--primary);
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

.search-section {
  margin-top: 140px;
  margin-bottom: 60px;
}

.footer-logo-wrapper {
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
  display: flex;
}

.footer-brand-description {
  color: var(--g2v-blue);
  text-align: left;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.list-item-circle {
  background-color: var(--g2v-blue);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 15px;
  display: block;
}

.dark-gray-style-guide {
  background-color: var(--secondary-yellow);
  width: 75px;
  height: 75px;
}

.headings-container {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper {
  margin-top: 20px;
}

.service-list-item {
  position: relative;
}

.primary-button-white {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  letter-spacing: .5px;
  align-items: center;
  padding: 16px 22px;
  font-weight: 400;
  line-height: 1.2;
  transition: all .2s;
}

.primary-button-white:hover {
  color: var(--white);
  background-color: #0000;
}

.style-guide-content-wrapper {
  display: flex;
}

.about-1-clients-grid {
  grid-column-gap: 40px;
  grid-row-gap: 80px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.about-1-customer-image {
  filter: saturate(0%);
  transition: filter .3s;
}

.about-1-customer-image:hover {
  opacity: 1;
  filter: saturate();
}

.testimonials-slider {
  background-color: #0000;
  justify-content: center;
  height: auto;
  padding-bottom: 40px;
  position: relative;
}

.testimonials-slider-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-right: 15px;
  display: block;
}

.testimonials-slider-mask {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}

.slider-nav-active-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 120px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3px;
  padding-left: 5px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.slider-nav-active-wrapper.product-card {
  padding-left: 41px;
}

.slider-nav-active-item {
  z-index: 10;
  background-color: var(--primary);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: relative;
}

.slide-3 {
  max-height: 580px;
}

.slide-1 {
  border: 1px solid var(--great-title);
  width: 450px;
  height: auto;
  margin-right: 30px;
  padding: 40px 30px;
  transition: box-shadow .2s;
  box-shadow: 1px 1px 10px #0000000d;
}

.slide-1:hover {
  box-shadow: 1px 1px 10px #0003;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.section-with-blue-background {
  background-image: url('../images/img-8.png'), linear-gradient(#000000a6, #000000a6), url('../images/gaetano-cessati-mlGM03fKONE-unsplash-1-1-1-1.jpg');
  background-position: 100% 100%, 0 0, 50%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: auto 330px, auto, cover;
  background-attachment: scroll, scroll, fixed;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 400px;
  display: flex;
}

.about-3-form-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.about-3-form {
  align-items: stretch;
  margin-top: 15px;
  display: flex;
}

.portfolio-tab-link {
  text-transform: uppercase;
  background-color: #0000;
  padding: 20px 30px;
  font-weight: 700;
}

.portfolio-tab-link.w--current {
  color: var(--primary);
  background-color: #0000;
}

.portfolio-tab-link.all-projects {
  flex: 1;
}

.portfolio-tab-link.last-child {
  order: 1;
}

.tabs-menu {
  justify-content: space-between;
  display: flex;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.nav-menu-shadow-overlay {
  align-items: center;
  display: flex;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.landing-banner-image {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.landing-performance-grid {
  grid-column-gap: 120px;
  grid-row-gap: 60px;
  width: 100%;
}

.landing-progress-bar-wrapper {
  margin-top: 20px;
}

.landing-progress-bar-gray-line {
  background-color: var(--primary-light);
  border-radius: 10px;
  width: 100%;
  height: 15px;
}

.landing-progress-bar-95 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 95%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-number {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  inset: auto 0% 35px auto;
}

.landing-progress-bar-92 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 92%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-100 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 100%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-88 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 88%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-features-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.landing-feature-icon {
  color: var(--white);
  background-color: #fff3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.landing-feature-item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.landing-inner-pages-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.landing-inner-page-item {
  background-color: var(--primary);
  text-align: center;
  width: 100%;
  padding: 6px;
}

.landing-inner-page-image {
  box-shadow: 0 0 30px 0 var(--primary-light);
  object-fit: cover;
  object-position: 50% 0%;
}

.landing-page-image-hover {
  filter: grayscale();
  object-fit: cover;
  object-position: 50% 0%;
  display: none;
}

.landing-inner-page-image-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.landing-inner-page-icon {
  z-index: 10;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  display: flex;
  position: absolute;
}

.landing-inner-page-overlay {
  z-index: 1;
  background-color: #fff3;
  position: absolute;
  inset: 0%;
}

.landing-banner-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  margin-bottom: 60px;
  display: flex;
}

.megamenu-dropdown-wrapper {
  justify-content: center;
  display: flex;
}

.megamenu-dropdown-wrap {
  width: 50%;
}

.landing-home-pages-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.landing-download-block-wrapper {
  background-color: var(--primary);
  background-image: url('../images/Frame-47.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 80px 75px 200px;
  display: flex;
  box-shadow: 0 0 30px #0f5cfa4d;
}

.download-button-icon {
  margin-top: 4px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
}

.mb-20 {
  margin-bottom: 20px;
}

.play-button-icon {
  z-index: 7;
  margin-left: 4px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  position: relative;
}

.play-button-hover {
  z-index: 10;
  border: 3px solid var(--white);
  border-radius: 50%;
  width: 94px;
  height: 94px;
  transition: all .3s;
  position: absolute;
  transform: scale(.85);
}

.play-button-hover:hover {
  transform: scale(1);
}

.home-banner-description {
  color: #fff;
  margin-top: 20px;
}

.banner-slider-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1020px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.right-arrow-slider {
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.left-arrow-slider {
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.home-banner-section {
  height: 100vh;
}

.home-banner-slider {
  background-color: #0000;
  width: 100vw;
  height: 100%;
  position: relative;
}

.home-slide-1 {
  width: 100vw;
  position: sticky;
  overflow: hidden;
}

.home-slide-buttons-wrapper {
  grid-column-gap: 30px;
  margin-top: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-slide-2 {
  width: 100vw;
  position: sticky;
}

.home-banner-title {
  color: var(--white);
  font-family: Mukta, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
}

.home-slide-3 {
  width: 100vw;
  position: sticky;
}

.contacts-3-location-wrapper {
  flex-direction: column;
  margin-bottom: 20px;
  display: flex;
}

.home-video-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  display: none;
}

.home-blog-wrapper {
  grid-column-gap: 30px;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.home-blog-collection-item {
  background-color: var(--white);
  border-radius: 10px;
  width: 33.33%;
  overflow: hidden;
  box-shadow: 0 0 30px #0000001a;
}

.home-blog-image {
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.home-blog-content-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 40px;
  display: flex;
}

.home-blog-image-link {
  width: 100%;
  overflow: hidden;
}

.home-blog-collection-list-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.home-blog-collection-list {
  grid-column-gap: 30px;
  align-items: stretch;
  display: flex;
}

.navbar-fixed {
  background-color: #0000;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-fixed:hover {
  background-color: var(--g2v-white);
}

.icon-3 {
  font-size: 15px;
  font-weight: 700;
}

.map {
  height: 500px;
}

.location-map-image {
  z-index: 8;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.location-map-wrapper {
  justify-content: center;
  align-items: center;
  position: relative;
}

.location-map-wrapper.home-page {
  width: 100%;
  max-width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-2 {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.portfolio-grid-tabs {
  width: 100%;
}

.about-us-img {
  object-fit: cover;
  position: absolute;
}

.about-us-img._1 {
  z-index: 2;
  border-radius: 10px;
  width: 350px;
  inset: 0% 0% auto;
}

.about-us-img._5 {
  z-index: 4;
  border-radius: 10px;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-us-img._3 {
  z-index: 1;
  border-radius: 10px;
  width: 300px;
  inset: 30% 4% 0% auto;
}

.about-us-img._4 {
  z-index: 5;
  border-radius: 10px;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-us-img._2 {
  z-index: 3;
  border-radius: 10px;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.home-5-our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-banner-arrow-right {
  border: 1px solid var(--white-50);
  color: var(--primary-light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: flex;
  inset: 0% 3% 0% auto;
}

.home-9-banner-arrow-right:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.home-9-banner-arrow-left {
  border: 1px solid var(--white-50);
  color: var(--primary-light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: flex;
  inset: 0% auto 0% 3%;
}

.home-9-banner-arrow-left:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.blog-details-link-title {
  letter-spacing: 0;
}

.home-9-team-member-wrap {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.about-7-features-image {
  z-index: -1;
  color: #d1523ccc;
  margin-top: -106px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 120px;
  line-height: 1em;
  position: relative;
}

.search {
  align-items: center;
  width: 100%;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins, sans-serif;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.secondary-button-item {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--light-gray);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 15px 40px;
  line-height: 1.15;
  transition: all .3s;
  display: inline-block;
}

.secondary-button-item:hover {
  background-color: var(--white);
  opacity: 1;
  color: var(--black);
}

.primary-button-item-white {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  width: auto;
  padding: 15px 40px;
  font-size: 15px;
  line-height: 1.15;
}

.primary-button-item-white:hover {
  color: var(--text-dark);
}

.nav-item-title-2 {
  color: var(--text-dark);
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Mukta, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.nav-dropdown-line-2 {
  z-index: 9999;
  border-radius: 100px;
  width: 4px;
  height: 4px;
  position: absolute;
  inset: auto auto auto -8%;
}

.nav-dropdown-list-2 {
  z-index: 100;
  background-color: #fff;
  border: 1px solid #0000002e;
  padding: 15px 20px;
  font-family: Open Sans, sans-serif;
}

.nav-dropdown-list-2.w--open {
  width: 280px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-dropdown-list-2.dropdown-mini-menu {
  width: 180px;
}

.nav-dropdown-link-wrapper-2 {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  transition: padding-left .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link-wrapper-2:hover {
  padding-left: 20px;
  padding-right: 10px;
}

.nav-dropdown-link-2 {
  color: var(--paragraph-text);
  letter-spacing: 0;
  text-transform: capitalize;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  font-size: 17px;
  font-weight: 400;
}

.nav-dropdown-link-2.w--current {
  color: var(--paragraph-text);
  font-size: 17px;
}

.nav-dropdown-2 {
  justify-content: center;
  align-items: center;
}

.nav-dropdown-toggle-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 17px 20px;
  display: flex;
  overflow: hidden;
}

.yellow-strip {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.span-arrow {
  flex-direction: column;
  padding-left: 5px;
  font-family: "Fa solid 900", sans-serif;
}

.link-home {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 17px;
  display: inline-block;
}

.link-home-text {
  z-index: 100;
  color: var(--g2v-blue);
  letter-spacing: 0;
  text-transform: capitalize;
  flex-direction: column;
  font-size: 17px;
  font-weight: 500;
  transition-property: opacity;
  transition-duration: .3s;
  position: relative;
}

.link-home-text:hover {
  opacity: .5;
  color: var(--text-dark);
}

.link-home-text.w--current {
  color: var(--g2v-blue);
  font-size: 17px;
  font-weight: 500;
  transition-duration: 0s;
}

.stepi-1 {
  height: 40px;
}

.nav-link-menu {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  padding: 17px 20px;
  display: flex;
  overflow: hidden;
}

.stepi-2 {
  height: 60px;
  display: none;
}

.stepi-3 {
  height: 40px;
  display: block;
  position: absolute;
  inset: 0%;
}

.paragraph-white {
  color: var(--g2v-blue);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 400;
}

.footer-contact-link {
  color: #1c3f6080;
  letter-spacing: 0;
  text-transform: lowercase;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 400;
}

.footer-contact-link:hover {
  color: var(--g2v-blue);
}

.useful-links {
  color: #1c3f6080;
  letter-spacing: 0;
  text-transform: capitalize;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 400;
  display: flex;
}

.useful-links:hover {
  color: var(--g2v-blue);
}

.useful-links.w--current {
  color: #1c3f6080;
}

.useful-links.w--current:hover {
  color: var(--g2v-blue);
}

.useful-links-span {
  color: var(--g2v-blue);
  margin-right: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 8px;
}

.div-block-8 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 40px;
}

.cart-popup-image {
  object-fit: cover;
  height: 60px;
}

.cart-popup-price {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
}

.cart-popup-remove-button {
  transition: opacity .2s;
}

.cart-popup-remove-button:hover {
  opacity: .7;
}

.shop-popup-cart-quantity {
  background-color: #0000;
  border-style: none none solid;
  border-bottom-color: #e9e9e9;
  border-radius: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
}

.shop-popup-cart-quantity:focus {
  border-bottom-color: #222;
}

.cart-popup-total-price {
  color: var(--text-dark);
  font-family: Mukta, sans-serif;
  font-size: 15px;
}

.cart-item {
  align-items: center;
}

.cart-empty-state {
  color: #222;
  background-color: #0000;
  padding: 60px 30px 80px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.cart-button {
  z-index: 2;
  background-color: #0000;
  padding: 0 5px;
}

.shop-popup-checkout-button {
  border: 1px solid var(--primary);
  color: var(--g2v-blue);
  background-color: #0000;
  padding: 10px 30px;
  line-height: 1.8em;
  transition: background-color .2s;
}

.shop-popup-checkout-button:hover {
  border-color: var(--g2v-white);
  background-color: var(--g2v-blue);
  color: var(--white);
}

.cart-popup-product-title {
  color: #000;
  font-size: 15px;
}

.error-state {
  color: #000;
  text-align: center;
  background-color: #ffe8e6;
  margin-top: 20px;
  line-height: 1em;
}

.error-state.cart {
  letter-spacing: 0;
  margin-top: 0;
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.cart-footer {
  border-top-style: none;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.cart-popup-subtotal {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
}

.cart-list {
  padding-left: 30px;
  padding-right: 30px;
}

.cart-header {
  border-bottom-style: none;
  padding-top: 24px;
  padding-left: 30px;
  padding-right: 30px;
}

.cart-line-item {
  margin-bottom: 20px;
}

.cart-icon {
  color: var(--text-dark);
}

.text-banner-span {
  color: var(--g2v-white);
  font-family: Belinda, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.circle-orange {
  background-image: linear-gradient(257deg, var(--g2v-blue), #6c8399 70%, var(--g2v-white));
  color: var(--g2v-white);
  cursor: grab;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 700;
  display: none;
  transform: rotate(25deg);
}

.circle-orange-wraper {
  border: 1px solid var(--g2v-white);
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  height: 50%;
  padding-left: 35px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.travel-news-wrap {
  text-align: left;
  justify-content: space-between;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.collection-list-wrapper-2 {
  flex-direction: row;
  display: flex;
}

.collection-list-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.travel-image {
  object-fit: cover;
  width: 120px;
  height: 120px;
}

.lightbox-link {
  flex: none;
  justify-content: center;
  width: 120px;
  height: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cursor-circle {
  background-color: var(--g2v-blue);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.zoom-span {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 400;
  display: flex;
}

.cursor-wrapper {
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.collection-item-2 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.travel-news {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.blog-content-wrap {
  text-align: left;
  flex-flow: column wrap;
  padding-left: 20px;
}

.blog-body-text {
  color: var(--g2v-blue);
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.footer-blog-name {
  color: #1c3f6080;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 22px;
  transition: color .3s;
}

.footer-blog-name:hover {
  color: var(--g2v-blue);
}

.footer-link-blog {
  letter-spacing: 0;
}

.left-arrow-11, .right-arrow-11, .slide-nav-12 {
  display: none;
}

.slider {
  background-color: #0000;
  align-items: stretch;
  width: 100%;
}

.mask-3 {
  width: 100%;
  margin-top: 30px;
}

.orange-text {
  color: var(--g2v-blue);
  margin-left: 3px;
}

.slide-6 {
  width: 100%;
}

.base-subscribe-container {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.orange-text-h6 {
  color: var(--g2v-white);
}

.primary-subscribe-button {
  background-color: var(--g2v-blue);
  color: var(--white);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 0 100px 100px 0;
  width: 156px;
  min-width: auto;
  padding: 18px 24px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 15px;
  line-height: 1.15;
  transition: background-color .5s;
}

.primary-subscribe-button:hover {
  background-color: var(--g2v-white);
  color: var(--g2v-blue);
}

.subscribe-form {
  border: 1px solid var(--white);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  width: 360px;
  height: 54px;
  margin-bottom: 0;
  padding: 16px 20px 17px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 15px;
  line-height: 1;
}

.subscribe-form:focus {
  border-style: solid;
  border-color: var(--primary) transparent var(--primary) var(--primary);
}

.subscribe-form::placeholder {
  color: var(--paragraph-text);
}

.subscribe-text {
  letter-spacing: 0;
  text-transform: none;
}

.collection-item-3 {
  background-image: linear-gradient(to bottom, #00000059 53%, transparent 77%, transparent 96%, var(--white));
  height: 100vh;
}

.subscrabe-for-travel-wrapper {
  justify-content: space-between;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.primary-button-item-gradient {
  background-color: var(--g2v-blue);
  color: var(--white);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #0000;
  border-radius: 100px;
  width: auto;
  padding: 15px 40px;
  font-size: 15px;
  line-height: 1.15;
  transition: color .3s;
  position: absolute;
}

.primary-button-item-gradient:hover {
  color: var(--white);
  background-image: none;
}

.collection-image {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100vw;
  height: 100vh;
}

.collection-image-wrap {
  z-index: -10;
  align-items: flex-start;
  position: absolute;
  overflow: hidden;
}

.collection-list-wrapper-3 {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.clouds-img {
  object-fit: cover;
  width: 100vw;
  height: 200px;
  position: absolute;
  inset: auto 0% 0%;
}

.subheading-orange {
  color: var(--g2v-white);
  flex-direction: column;
  align-items: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 30px;
  display: flex;
}

.image-discont {
  background-image: linear-gradient(to bottom, transparent, var(--white));
  opacity: .15;
  position: absolute;
  inset: -14% -2% auto auto;
}

.discont-wrap {
  justify-content: center;
  align-items: center;
  display: none;
  position: relative;
}

.discont-wrap.left-alignment {
  text-align: left;
  justify-content: flex-start;
}

.grid-deals-discount {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.orange-shadow {
  box-shadow: 0 0 40px 0 var(--g2v-blue);
  color: var(--g2v-blue);
  position: absolute;
  inset: 0%;
}

.primary-button-item-black {
  border: 1px solid var(--white);
  background-color: var(--text-dark);
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  justify-content: center;
  width: auto;
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.15;
}

.primary-button-item-black:hover {
  color: var(--white);
}

.primary-button-item-black.add-to-card {
  background-color: var(--g2v-blue);
  color: var(--g2v-white);
  letter-spacing: 3px;
  border-color: #0000;
  border-radius: 10px 10px 0 0;
  flex-direction: column-reverse;
  place-content: flex-end;
  width: 100%;
  font-family: Mukta, sans-serif;
  transition: background-color .35s;
}

.primary-button-item-black.add-to-card:hover {
  background-color: var(--text-dark);
}

.primary-button-item-black.discount-add-to-card {
  background-color: var(--g2v-blue);
  color: var(--g2v-white);
  letter-spacing: 3px;
  border-color: #0000;
  border-radius: 0;
  justify-content: space-around;
  width: 100%;
  font-family: Mukta, sans-serif;
  transition: background-color .35s;
}

.primary-button-item-black.discount-add-to-card:hover {
  background-color: var(--text-dark);
}

.product-image-1 {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.product-image-2 {
  object-fit: cover;
  border-radius: 10px;
  width: 100vw;
  height: 320px;
}

.product-image-3, .product-image-4 {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.travel-item {
  justify-content: center;
  align-items: center;
  position: relative;
}

.tour-information-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(to top, #000000b3, #0000 81%);
  border-radius: 10px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.tour-price {
  color: var(--g2v-white);
  font-size: 22px;
}

.tour-name {
  color: var(--g2v-white);
  letter-spacing: 0;
  text-transform: none;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 20px;
  font-weight: 400;
}

.tour-name:hover {
  color: var(--primary);
}

.tour-details {
  color: var(--paragraph-text);
  width: 60%;
  margin-bottom: 0;
}

.main-button-white {
  border: 1px solid var(--white);
  background-color: var(--g2v-blue);
  color: var(--g2v-white);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  width: auto;
  margin-bottom: 10px;
  padding: 15px 40px;
  line-height: 1.15;
  transition-property: all;
}

.main-button-white:hover {
  background-color: var(--g2v-white);
  color: var(--g2v-blue);
}

.main-button-white.orange-hover {
  border-color: var(--dark-gray-50);
  background-color: var(--g2v-white);
  color: var(--text-dark);
  letter-spacing: 3px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  transition: opacity .2s, all .3s;
}

.main-button-white.orange-hover:hover {
  background-color: var(--g2v-blue);
  color: var(--g2v-white);
  border-color: #afafaf00;
}

.main-button-white.popular-tours {
  border-color: var(--dark-gray-50);
  letter-spacing: 3px;
  margin-left: auto;
  margin-right: auto;
  font-family: Mukta, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition-duration: .3s;
}

.main-button-white.popular-tours:hover {
  background-color: var(--g2v-blue);
  border-color: #afafaf00;
}

.main-button-white.subscribe-2 {
  background-color: var(--g2v-white);
  color: var(--g2v-blue);
  letter-spacing: 3px;
  border-color: #0000;
  padding-left: 45px;
  padding-right: 45px;
}

.add-to-cart-2 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.default-state {
  margin-bottom: 0;
}

.field-label-on-card {
  font-family: Open Sans, sans-serif;
  display: none;
}

.out-of-stock-state {
  text-align: center;
  background-color: #fff;
  margin-top: 0;
}

.error-message {
  font-family: Open Sans, sans-serif;
  line-height: 1.5em;
}

.shop-overlay {
  background-image: linear-gradient(#000 16%, #0000 100%, #0000000d);
  border-radius: 10px;
  justify-content: center;
  align-items: flex-start;
  height: 200px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.text-block-2 {
  font-family: Open Sans, sans-serif;
}

.buy-now-button {
  font-family: "Fa solid 900", sans-serif;
}

.heading-3 {
  color: var(--g2v-blue);
}

.collection-list-4 {
  justify-content: center;
  align-items: center;
}

.image-discont-2 {
  width: auto;
  height: auto;
  position: absolute;
  inset: -16% -31% auto auto;
}

.categories-slider {
  background-color: var(--g2v-white);
  justify-content: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slide-tour-item {
  width: 320px;
  margin-left: 5px;
  margin-right: 5px;
}

.left-arrow-12 {
  justify-content: flex-start;
  align-items: center;
  height: 50%;
  inset: 0% auto auto 0%;
}

.image-category {
  object-fit: cover;
  border-radius: 8000px;
  width: 200px;
  min-height: 200px;
}

.content-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 10px;
  display: flex;
}

.content-info {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.category-name {
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0;
  text-transform: capitalize;
  padding-top: 30px;
  font-size: 24px;
  display: flex;
}

.category-name:hover {
  color: var(--primary);
}

.product-category {
  color: var(--g2v-blue);
}

.slide-nav-13 {
  display: none;
}

.category-icon {
  background-image: linear-gradient(to bottom, var(--primary), #f39f67b8);
  color: var(--g2v-white);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 15px;
}

.category-icon.detail-page {
  color: var(--g2v-white);
  padding-top: 8px;
  display: block;
}

.category-icon.destination {
  background-image: linear-gradient(to bottom, var(--white), #777777b8);
  padding-top: 8px;
  display: block;
}

.post-details {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 25px;
}

.image-tour-wrapper {
  position: relative;
}

.circle-categories {
  background-image: linear-gradient(61deg, var(--g2v-blue) 49%, var(--g2v-white) 100%, var(--g2v-white));
  cursor: grab;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.text-categories-span {
  color: var(--white);
  text-align: center;
  letter-spacing: 0;
  text-transform: capitalize;
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.arrow-right-item {
  color: var(--primary);
  transition: opacity .3s;
  inset: 0% 0% 0% auto;
}

.arrow-right-item:hover {
  opacity: .5;
}

.arrow-left-item {
  color: var(--g2v-blue);
  transition: opacity .3s;
  inset: 0% auto 0% 0%;
}

.arrow-left-item:hover {
  opacity: .5;
}

.categorymask {
  width: 100%;
  overflow: hidden;
}

.right-arrow-12 {
  height: 50%;
  inset: 0% 0% auto auto;
}

.image-discont-3 {
  position: absolute;
  inset: -17% -3% auto auto;
}

.popular-wrap-tours {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  padding-top: 15px;
}

.popular-item-tours {
  background-color: var(--white);
  border-radius: 10px;
  height: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.collection-list-6 {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: flex;
}

.info-horizontal {
  border-bottom: 1px solid var(--dark-gray-50);
  justify-content: space-around;
  width: 100%;
  display: flex;
}

.info-vertical {
  flex-direction: column;
  align-items: center;
  padding: 30px;
  display: flex;
}

.info-icon {
  color: var(--secondary-yellow);
  padding-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
}

.info-text-post {
  font-family: Mukta, sans-serif;
  font-size: 13px;
}

.info-item {
  flex: 1;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.info-item.central-item {
  border-right: 1px solid var(--dark-gray-50);
  border-left: 1px solid var(--dark-gray-50);
}

.collection-tour-item {
  flex: none;
  width: 300px;
  height: 100%;
  margin-left: 15px;
  margin-right: 15px;
  display: inline;
}

.info-icon-wrap {
  font-family: Mukta, sans-serif;
  font-size: 13px;
}

.popular-price {
  color: var(--g2v-blue);
  padding-right: 0;
}

.price-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.add-to-cart-popular-tours {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tour-description {
  text-align: center;
  margin-bottom: 30px;
}

.general-container {
  align-items: flex-start;
  width: 100%;
  max-width: 1720px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  overflow: hidden;
}

.image-popular-tours {
  object-fit: cover;
  width: 100vw;
  height: 240px;
}

.all-tours-wrap {
  flex: none;
}

.image-tour-link {
  position: relative;
  overflow: hidden;
}

.section-subscribe {
  background-image: url('../images/Group-184.png'), linear-gradient(212deg, var(--g2v-blue) 23%, var(--g2v-white));
  text-align: center;
  background-position: 0%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  display: flex;
}

.subscribe-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.reviews-slider {
  background-color: #0000;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding-bottom: 40px;
  display: flex;
  overflow: hidden;
}

.arrow-icon {
  margin-left: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.travel-category-item {
  justify-content: center;
  align-items: center;
  position: relative;
}

.category-link {
  color: var(--g2v-white);
  margin-top: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.category-link:hover {
  color: var(--white);
}

.grid-category-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1720px;
  display: grid;
}

.grid-category-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 320px;
}

.category-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.collection-list-wrapper-4 {
  object-position: 50% 0%;
  width: 100vw;
  height: 450px;
  position: absolute;
  inset: 0%;
}

.overlay {
  background-image: linear-gradient(#00000026, #00000026);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.category-image-wrap {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.price-wrapper {
  justify-content: space-between;
  margin-top: 5px;
  display: flex;
}

.tour-price-category {
  color: var(--g2v-white);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 18px;
}

.div-block-15 {
  display: flex;
}

.banner-title-category-item {
  z-index: 10;
  color: var(--white);
  text-align: center;
}

.feedback-item-wrap {
  background-image: url('../images/Quotes-1_1Quotes (1).png');
  background-position: 90% 0;
  background-repeat: no-repeat;
  background-size: auto 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.feedback-intro {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.estimates-of-the-wrapper {
  margin-bottom: 20px;
}

.contact-details-wrapper {
  margin-top: 30px;
  display: flex;
}

.contact-image {
  background-image: url('../images/adult-1851571_640-1-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.contact-image.item-2 {
  background-image: url('../images/young-attractive-woman-smiling-feeling-healthy-hair-flying-wind-1-1.jpg');
}

.contact-image.item-3 {
  background-image: url('../images/handsome-young-man-with-new-stylish-haircut-1-1.jpg');
}

.contact-image.item-4 {
  background-image: url('../images/girl-2.jpg');
}

.contact-image.item-5 {
  background-image: url('../images/Man-1-2.jpg');
}

.contact-image.item-6 {
  background-image: url('../images/girl-1-2.jpg');
}

.star-icon {
  color: var(--secondary-yellow);
  font-family: "Fa solid 900", sans-serif;
  font-size: 15px;
}

.star-icon-wrap {
  margin-right: 5px;
  display: inline-block;
}

.image-discont-4 {
  position: absolute;
  inset: -4% auto auto 20%;
}

.slide-nav-15 {
  display: none;
}

.testimonials-item-mask {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  overflow: hidden;
}

.slide-7 {
  width: 300px;
  margin-right: 20px;
}

.orange-spelling {
  color: var(--g2v-blue);
  letter-spacing: 0;
  text-transform: none;
  font-family: Allura, sans-serif;
  font-weight: 400;
  display: block;
}

.video-content {
  width: 450px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.play-wrapper {
  color: var(--g2v-blue);
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 20%;
  display: flex;
  position: absolute;
}

.last-minutes {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  display: none;
}

.last-minutes-list {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: flex;
}

.last-minutes-item {
  flex: none;
  height: 100%;
  display: inline;
  position: relative;
}

.last-minutes-wrapper {
  flex: none;
  justify-content: flex-start;
  overflow: auto;
}

.last-minutes-image {
  object-fit: cover;
  width: 341px;
  height: 500px;
  display: inline-block;
}

.info-discount {
  background-image: linear-gradient(360deg, #000, #0000);
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0%;
}

.discount-card {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.discount-text {
  color: var(--white);
  font-family: Mukta, sans-serif;
  font-size: 15px;
}

.discount-offer-wrap {
  background-image: linear-gradient(65deg, var(--g2v-blue) 45%, var(--g2v-white));
  border-radius: 100px;
  margin-top: 15px;
  margin-right: 15px;
  padding: 5px 17px;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.special-offer-info {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  position: absolute;
  top: auto;
  bottom: 56px;
  right: auto;
}

.special-tour-details {
  color: var(--white-50);
  width: 100%;
  margin-bottom: 0;
}

.great-title {
  color: var(--great-title);
  letter-spacing: 20px;
  font-size: 90px;
}

.big-title-wrap {
  justify-content: center;
  padding-top: 40px;
  display: flex;
}

.great-title-wrapper {
  letter-spacing: 5px;
  margin-top: 0;
  margin-bottom: -17px;
}

.subtitle-banner {
  color: var(--g2v-white);
  margin-top: 0;
  margin-bottom: 0;
}

.suction-benefits {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.about-us-content {
  color: var(--g2v-blue);
  text-align: left;
  width: 90%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.discont-wrap-about-us {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.image-discont-about-us {
  position: absolute;
  inset: -1px auto auto -2%;
}

.large-base-container {
  width: 100%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.our-preferences {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.our-preferences-wrap {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  display: flex;
  position: relative;
}

.advantages-text-item {
  color: var(--white);
}

.number-of-benefits {
  color: var(--white);
  text-align: center;
  font-family: Mukta, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3em;
}

.benefits-wrapper {
  justify-content: center;
  align-items: flex-end;
  height: 65px;
  display: flex;
  overflow: hidden;
}

.testimonials-slider-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.image-wrapper {
  width: auto;
  margin-right: 15px;
}

.reviews-wrapper {
  flex: 1;
}

.position {
  color: var(--text-dark);
  margin-top: 0;
}

.icon-container {
  justify-content: flex-start;
  display: flex;
}

.reviews-body-text {
  padding-top: 20px;
  padding-bottom: 40px;
}

.orange-line {
  background-color: var(--g2v-blue);
  justify-content: flex-start;
  width: 100%;
  height: 3px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.reviwer-socials {
  color: var(--text-dark);
  font-family: "Fa brands 400", sans-serif;
  font-size: 20px;
}

.reviwer-socials:hover {
  color: var(--primary);
}

.grid-services {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.grid-services.bottom-space {
  padding-bottom: 10px;
}

.button-read-more {
  color: var(--g2v-blue);
  background-color: #0000;
  padding: 10px 0 5px;
  display: inline-block;
}

.button-read-more:hover {
  color: var(--g2v-blue);
  font-weight: 800;
}

.read-more-wrap {
  position: relative;
}

.read-more-line {
  background-color: var(--g2v-blue);
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.image-discont-service {
  background-image: linear-gradient(to bottom, transparent, var(--white));
  opacity: .15;
  position: absolute;
  inset: 0% 11% auto auto;
}

.services-icon {
  background-color: var(--g2v-white);
  width: auto;
  height: 150px;
  margin-bottom: 10px;
}

.slider-nav-aboyt-us {
  opacity: .4;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-size: 14px;
  display: none;
}

.slider-nav-active-wrapper-about-us {
  justify-content: flex-start;
  align-items: center;
  width: 80px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3px;
  padding-left: 9px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.about-us-slider-arrow {
  width: 50px;
  height: 30px;
  inset: auto auto 0%;
}

.about-us-slider-arrow.right {
  justify-content: center;
  display: flex;
  inset: auto 44% 0% auto;
}

.about-us-slider-arrow.left {
  justify-content: center;
  display: flex;
  inset: auto auto 0% 44%;
}

.left-arrow-icon-item {
  color: var(--dark-gray-50);
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: "Fa solid 900", sans-serif;
  font-size: 24px;
  line-height: 1;
  transition: color .2s;
  display: flex;
}

.left-arrow-icon-item:hover {
  color: var(--primary);
}

.right-arrow-icon-item {
  color: var(--dark-gray-50);
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: "Fa solid 900", sans-serif;
  font-size: 24px;
  line-height: 1;
  transition: color .2s;
  display: flex;
  transform: rotate(180deg);
}

.right-arrow-icon-item:hover {
  color: var(--primary);
}

.image-discont-about-us-item {
  position: absolute;
  inset: -17% 20% auto auto;
}

.stepi-3-coming-soon {
  height: 40px;
}

.orange-text-coming-soon {
  color: var(--g2v-blue);
  font-family: Allura, sans-serif;
  display: block;
}

.image-discont-team {
  background-image: linear-gradient(to bottom, transparent, var(--white));
  opacity: .15;
  position: absolute;
  inset: -14% 18% auto auto;
}

.team-video {
  background-image: url('../images/happy-couple-laughing-traveling-summer-by-sea-man-woman-wearing-sunglasses-2-1-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 0 1px 30px #0000003b;
}

.team-video:hover {
  opacity: 1;
}

.tourist-video-content {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
}

.body-2 {
  background-color: var(--g2v-white);
  background-image: url('../images/PNG-3-1.png');
  background-position: 84%;
  background-repeat: no-repeat;
  background-size: auto 450px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.address {
  color: var(--g2v-blue);
  margin-top: 0;
  margin-bottom: 0;
}

.address-link {
  color: var(--g2v-blue);
  letter-spacing: 0;
  text-transform: none;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.address-link:hover {
  color: var(--g2v-blue);
  font-weight: 700;
}

.office-image {
  background-image: url('../images/marcin-nowak-iXqTqC-f6jI-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 220px;
  margin-bottom: 20px;
}

.office-image.photo-item-2 {
  background-image: url('../images/bastien-nvs-SprV1eqNrqM-unsplash-1.jpg');
}

.office-image.photo-item-3 {
  background-image: url('../images/nik-shuliahin-L4JWn8HHJ30-unsplash.jpg');
}

.map-section {
  position: relative;
}

.image-discont-contact-us {
  background-image: linear-gradient(to bottom, transparent, var(--white));
  opacity: .15;
  position: absolute;
  inset: -10% -10% auto auto;
}

.contact-us-form {
  background-color: var(--white);
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.contact-us-input {
  border: 1px solid var(--great-title);
  background-color: var(--white);
  border-radius: 5px;
  height: auto;
  margin-top: 10px;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 16px 18px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  line-height: 1.2em;
  transition: all .2s;
}

.contact-us-input:focus {
  border: 1px solid var(--primary);
}

.contact-us-input::placeholder {
  color: var(--paragraph-text);
}

.contact-us-input.select-input {
  color: var(--paragraph-text);
  margin-right: 0;
}

.contacts-textarea-contact-us {
  border: 1px solid var(--great-title);
  border-radius: 5px;
  min-height: 200px;
  margin-bottom: 50px;
  padding: 16px 18px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  line-height: 1.2em;
}

.contacts-textarea-contact-us:focus {
  border: 1px solid var(--primary);
}

.contacts-textarea-contact-us::placeholder {
  color: var(--paragraph-text);
}

.contacts-icon-footer {
  color: var(--g2v-blue);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.image-discont-2-contact-us {
  filter: invert(500%);
  width: auto;
  height: auto;
  position: absolute;
  inset: -6% 60px auto auto;
}

.orange-text-h2 {
  color: var(--primary);
}

.section-with-color {
  background-color: var(--primary-light);
  background-image: linear-gradient(#00000080, #00000080), url('../images/cristina-gottardi-wndpWTiDuT0-unsplash-1-1-1-1-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  margin-bottom: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.div-block-16 {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.map-icon {
  color: var(--primary);
  font-family: "Fa solid 900", sans-serif;
  font-size: 25px;
}

.map-icon.icon-3 {
  font-size: 20px;
}

.map-icon.icon-1 {
  font-size: 22px;
}

.icon-map-1 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  bottom: 6%;
  left: -28%;
}

.icon-map-2 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  top: 13%;
  left: 2%;
}

.icon-map-3 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 21% 28% auto auto;
}

.image-discont-3-services {
  position: absolute;
  inset: -17% 15% auto auto;
}

.discont-tours-image {
  object-fit: cover;
  width: 100vw;
  height: 240px;
}

.grid {
  grid-column-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding-top: 10px;
}

.pricing-item-wrapper {
  background-color: #d2d2d24d;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.pricing-item-wrapper.main-item {
  background-color: var(--white);
  box-shadow: 0 1px 10px #00000029;
}

.pricing-table-name {
  border-bottom: 1px dashed var(--paragraph-text);
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
  display: flex;
}

.corporate {
  text-align: center;
  letter-spacing: 3px;
  font-family: Mukta, sans-serif;
  font-weight: 700;
}

.pricing-info {
  padding-top: 25px;
  padding-bottom: 10px;
}

.orange-price-item {
  color: var(--primary);
  justify-content: center;
  font-family: Mukta, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2em;
  display: flex;
}

.list-item-2 {
  border-bottom: 1px dashed var(--paragraph-text);
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}

.list-item-2.last-item {
  border-bottom-color: #0000;
}

.list-benefits {
  text-align: center;
  letter-spacing: 0;
  margin-top: 15px;
  margin-bottom: 15px;
}

.list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.discont-services-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.tour-collection-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding-top: 20px;
}

.tours-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1720px;
  display: grid;
}

.travel-tours-category-item {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-height: 330px;
  position: relative;
  overflow: hidden;
}

.shop-overlay-wrapper {
  background-image: linear-gradient(#000 16%, #0000 100%, #0000000d);
  border-radius: 10px;
  justify-content: center;
  align-items: flex-end;
  height: 200px;
  display: none;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.image-7 {
  object-fit: cover;
  height: 100%;
}

.content-blog-intro {
  background-color: var(--white);
  flex-direction: column;
  min-height: 280px;
  padding: 20px 30px 30px;
  display: flex;
}

.h1-blog-details {
  margin-top: 20px;
}

.blog-grid-collection-categoty {
  grid-column-gap: 27px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.rich-text-block {
  color: var(--text-dark);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.rich-text-block h2, .rich-text-block h4 {
  margin-top: 20px;
}

.destination-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: auto;
}

.grid-category-destination {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch start;
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: grid;
}

.destination-item {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.image-8 {
  object-fit: cover;
  height: 100%;
}

.category-destination-link {
  color: var(--white);
  margin-top: 10px;
}

.category-destination-link:hover {
  color: var(--primary);
}

.destination-info-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(to top, #000000b3, #0000 81%);
  border-radius: 10px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.section-blog-posts {
  background-color: var(--white);
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.discount-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.discount-image-2 {
  object-fit: cover;
  border-radius: 10px;
  width: 100vw;
  height: 320px;
}

.discount-image-3, .discount-image-4 {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.discount-image-5 {
  object-fit: cover;
  border-radius: 10px;
  width: 100vw;
  height: 320px;
}

.discount-image-6, .discount-image-7, .discount-image-8 {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.reviews-discont-slider {
  background-color: #0000;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding-bottom: 5px;
  display: flex;
  overflow: hidden;
}

.big-title-wrap-discont {
  justify-content: center;
  padding-top: 20px;
  display: flex;
}

.image-9 {
  height: 40px;
}

.image-10 {
  width: 800px;
}

.pricing-capabilities-text {
  color: var(--text-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Mukta, sans-serif;
  font-weight: 700;
}

.shop-wrapper {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  padding-top: 15px;
}

.collection-shop-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.collection-shop-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column wrap;
  justify-content: flex-start;
  width: 310px;
  height: 100%;
  display: flex;
}

.shop-item-tours {
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 30px #0000001a;
}

.image-shop-link {
  position: relative;
  overflow: hidden;
}

.shop-item-name {
  color: var(--white);
  letter-spacing: 0;
  font-size: 20px;
}

.star-shop-icon {
  color: var(--secondary-yellow);
  font-family: "Fa solid 900", sans-serif;
  font-size: 15px;
}

.rating {
  letter-spacing: 0;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
}

.info-tour-wrap {
  z-index: 1;
  background-image: linear-gradient(to top, #000, #0000);
  padding: 15px;
  position: absolute;
  inset: auto 0% 0%;
}

.rating-wrapper {
  align-items: center;
  display: flex;
}

.where-to-container {
  z-index: 100;
  width: 100%;
  max-width: 800px;
  position: absolute;
  inset: auto auto 0%;
  transform: translate(0, 50%);
}

.search-shop {
  align-items: center;
  width: 100%;
  display: flex;
}

.search-input-shop {
  border: 1px solid #0000;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  height: 56px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px 22px 16px 30px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  box-shadow: 0 1px 10px #0000001a;
}

.search-input-shop:focus {
  border: 1px solid #0000;
}

.discount-shop-offer {
  color: var(--white);
  letter-spacing: 0;
  text-transform: capitalize;
  background-image: linear-gradient(65deg, #f89334, #f5472a);
  border-radius: 100px;
  margin-top: 15px;
  margin-right: 15px;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 400;
  position: absolute;
  inset: 0% 0% auto auto;
}

.collection-list-wrapper-5 {
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.collection-item-7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.shop-image {
  object-fit: cover;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.error-message-2 {
  font-family: Open Sans, sans-serif;
}

.info-shop-item {
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.info-shop-text-post {
  font-family: Mukta, sans-serif;
  font-size: 18px;
}

.info-shop-icon-wrap {
  font-family: Mukta, sans-serif;
  font-size: 13px;
}

.info-icon-shop {
  color: var(--secondary-yellow);
  padding-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.shop-intro.with-borders {
  border-right: 1px solid var(--dark-gray-50);
  margin-right: 40px;
}

.dark-ovarlay {
  z-index: 1;
  background-image: linear-gradient(#00000040, #00000040);
  line-height: 10px;
  position: absolute;
  inset: 0%;
}

.shop-details-subtitle {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1em;
}

.buy-now-button-2 {
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fcf9f6;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 10px 30px;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8em;
  display: flex;
}

.shop-card-old-price {
  color: #999;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 400;
  text-decoration: line-through;
}

.quantity {
  color: #000;
  background-color: #0000;
  border-color: #0000 #0000 #e9e9e9;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-radius: 0;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  padding-bottom: 12px;
  padding-left: 5px;
  padding-right: 5px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.quantity:focus {
  border-bottom-color: #e9e9e9;
}

.shop-details-price-wrapper {
  grid-column-gap: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.shop-details-content-block {
  grid-row-gap: 20px;
  text-align: center;
  background-color: #0000;
  border-radius: 10px;
  flex-direction: column;
  padding: 4px 30px 30px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  position: relative;
  box-shadow: 0 1px 30px 1px #00000026;
}

.default-state-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.grid-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.tour-details-wrap {
  margin-top: 60px;
}

.tabs-menu-4 {
  background-color: var(--g2v-blue);
  width: 100%;
  display: flex;
}

.tabs-shop-content {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.tab-item {
  background-color: var(--g2v-blue);
  color: var(--g2v-blue);
  justify-content: center;
  padding: 25px;
  display: flex;
}

.tab-item.w--current {
  background-color: var(--g2v-blue);
  color: var(--g2v-blue);
}

.tab-item.w--current:active, .tab-item.w--current:focus {
  color: var(--g2v-blue);
}

.tab-item.first-child.w--current {
  background-color: var(--g2v-blue);
  color: var(--g2v-blue);
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 25px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.tab-item.first-child.w--current:hover {
  transform: translate(0);
}

.text-block-4 {
  justify-content: center;
  display: flex;
}

.text-block-5 {
  color: var(--g2v-white);
  justify-content: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  display: flex;
}

.text-block-5:hover, .text-block-5:active, .text-block-5:focus {
  color: var(--g2v-white);
}

.text-block-5:focus-visible {
  color: var(--g2v-white);
}

.text-block-5[data-wf-focus-visible] {
  color: var(--g2v-white);
}

.tabs-content-3 {
  margin-top: 20px;
}

.tour-details-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: sticky;
}

.info-tour-details {
  width: 67%;
  padding-right: 40px;
}

.sticky-wrapper {
  border-radius: 10px;
  align-items: flex-start;
  width: 33%;
  position: sticky;
  top: 220px;
}

.itinerary-item-wrap {
  width: 100%;
  margin-right: 15px;
}

.itinerary {
  margin-top: 60px;
  margin-bottom: 30px;
}

.shop-details-image-lightbox {
  width: 100%;
  height: 100%;
}

.shop-details-left-arrow-icon {
  color: var(--primary);
  font-family: "Fa solid 900", sans-serif;
  font-size: 12px;
}

.shop-details-slider {
  background-color: #0000;
  border: 1px solid #e9e9e9;
  height: 350px;
}

.slider-nav-active-item-2 {
  z-index: 10;
  background-color: #ffce10;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: relative;
}

.slider-nav-active-item-2.products {
  background-color: var(--primary);
}

.shop-details-right-arrow-icon {
  color: var(--primary);
  font-family: "Fa solid 900", sans-serif;
  font-size: 12px;
}

.shop-details-slide-nav {
  filter: invert();
  width: 120px;
  height: 30px;
  font-size: 14px;
}

.shop-details-right-arrow {
  background-color: #fff;
  border: 1px #e9e9e9;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  display: flex;
}

.shop-details-left-arrow {
  background-color: #fff;
  border: 1px #e9e9e9;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 20px;
  display: flex;
}

.shop-details-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-travel-detail {
  background-color: var(--g2v-white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.type-trip {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  display: block;
}

.text-wrapper {
  z-index: 10;
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.image-card {
  background-color: var(--g2v-blue);
  object-fit: cover;
  width: 100%;
  position: absolute;
  inset: -40px 0% 0%;
}

.image-card-item-2, .image-card-item3 {
  object-fit: cover;
  display: none;
  position: absolute;
  inset: -40px 0% 0%;
}

.shop-banner-title {
  z-index: 10;
  text-align: center;
  position: relative;
}

.checkout-form {
  text-align: left;
  justify-content: space-around;
  align-items: flex-start;
  padding-top: 160px;
  padding-bottom: 80px;
  display: flex;
}

.order-summary {
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 160px;
}

.text-block-item, .field-lable, .country, .quantity-text {
  font-family: Open Sans, sans-serif;
}

.billing-address-toggle {
  align-items: flex-start;
}

.checkbox-label, .country-name, .subtotal, .text-block-7, .text-block-8, .text-block-9, .text-block-10, .text-block-quantity, .text-block-price, .text-block-13, .text-block-14, .country-item {
  font-family: Open Sans, sans-serif;
}

.container-6 {
  position: relative;
}

.checkout-container {
  background-color: var(--white);
  flex-direction: column;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.home-banner-section-item-2 {
  height: 100vh;
  position: relative;
}

.hidden-home-2 {
  border-top: 1px solid var(--white-50);
  justify-content: space-around;
  min-width: 10%;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 12px;
  display: none;
  inset: 0% auto 0% 0%;
  transform: rotate(90deg);
}

.hidden-home-1 {
  display: none;
  inset: 0% auto 0% 0%;
  transform: rotate(90deg);
}

.minimenu-dropdown-wrap {
  width: 100%;
}

.home-features-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 30px;
  width: 100%;
  display: flex;
}

.round-wrap {
  background-color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  transform: translate(0, -45px);
  box-shadow: 1px 1px 20px #0000001a;
}

.heading-2 {
  display: block;
}

.tour-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  min-height: 150px;
}

.why-travel-with-us-wrap-item {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  width: 25%;
  height: auto;
  overflow: hidden;
  box-shadow: 0 0 30px #0000001a;
}

.travel-image-wrap {
  justify-content: center;
  align-items: center;
  height: 150px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.travel-content-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  padding: 25px;
  display: flex;
  position: relative;
}

.big-round {
  border: .5px solid var(--primary);
  opacity: 0;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  position: absolute;
}

.big-round-2 {
  border: .2px solid var(--primary);
  opacity: 0;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  position: absolute;
}

.hot-tour-item {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 750px;
  padding-bottom: 170px;
  display: flex;
}

.hidden-home-2-news {
  border-top: 1px solid var(--white-50);
  justify-content: space-around;
  min-width: 10%;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 12px;
  display: none;
  inset: 0% auto 0% 0%;
  transform: rotate(90deg);
}

.hot-tour-wrapp {
  width: 100vw;
  overflow: hidden;
}

.collection-image-our-news {
  object-fit: cover;
  object-position: 40% 50%;
  width: 100vw;
  height: 600px;
}

.hot-banner-slider {
  background-color: #0000;
  width: 100vw;
  height: 100%;
  position: relative;
}

.home-9-tab-image {
  object-fit: cover;
  object-position: 50% 39%;
  border-radius: 20px;
  width: 50%;
  height: 360px;
}

.home-9-tab-link-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 22px;
}

.home-9-tab-link {
  grid-row-gap: 15px;
  opacity: .7;
  color: #0d2342;
  background-color: #0000;
  border-left: 1px solid #a8acb5;
  flex-direction: column;
  justify-content: center;
  width: 180px;
  padding: 20px 40px;
  display: flex;
}

.home-9-tab-link.w--current {
  opacity: 1;
  color: #fff;
  box-shadow: 0 0 30px #0f5cfa1a;
}

.home-9-tab-link.first-child {
  border-left-style: none;
}

.home-9-tab-link.first-child.w--current {
  background-image: linear-gradient(315deg, #ff3427, #fc7c31 83%);
  border-left-style: none;
  border-radius: 20px;
}

.home-9-tab-link.color-child {
  border-left-style: none;
}

.home-9-tab-link.color-child.w--current {
  background-image: linear-gradient(315deg, #ff3427, #fc7c31 83%);
  border-left-style: none;
  border-radius: 20px;
}

.home-9-tab-buttons-wrapper {
  grid-column-gap: 30px;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.home-9-tabs-content {
  width: 100%;
}

.base-container-2 {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.home-9-tab-content {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 50%;
  display: flex;
}

.home-9-tabs {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.home-9-tabs-menu {
  text-align: center;
  border-radius: 20px;
  margin-bottom: 40px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 30px #0f5cfa26;
}

.home-9-tab-pane {
  grid-column-gap: 40px;
  align-items: center;
  display: flex;
}

.section-2 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.section-2.light-background {
  background-color: #faf8f8;
}

.image-discont-home-2 {
  position: absolute;
  inset: -17% -3% auto auto;
}

.image-meet-our-guides {
  width: auto;
  height: auto;
  position: absolute;
  inset: -5% auto auto -40%;
}

.people-wrapper {
  width: 320px;
  margin-left: 5px;
  margin-right: 5px;
}

.our-guides-slider {
  background-color: var(--white);
  justify-content: center;
  width: 100%;
  height: auto;
  margin-top: 30px;
  overflow: hidden;
}

.home-9-team-member-photo {
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
}

.paragraph-2 {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0;
}

.home-9-team-social-icons-wrapper {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  box-shadow: 0 0 30px #0f5cfa26;
}

.team-slider-social-icon {
  color: var(--primary);
  margin-right: 20px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 16px;
  transition: all .2s;
}

.team-slider-social-icon:hover {
  color: var(--text-dark);
}

.team-slider-social-icon.last-child {
  margin-right: 0;
}

.top-image-wrapp {
  position: relative;
  overflow: hidden;
}

.orange-text-h-1 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(-65deg, #ff1a12, #ff733a);
  -webkit-background-clip: text;
  background-clip: text;
}

.base-container-3 {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container-3.home-19-blog-slider-con {
  max-width: 1280px;
  display: block;
}

.section-3 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-3.section-with-grey-background {
  background-color: var(--primary-light);
}

.home-5-about-us-container {
  justify-content: space-between;
  display: flex;
  position: relative;
}

.home-5-about-us-description {
  margin-top: 30px;
  margin-bottom: 50px;
}

.home-5-about-us-left-block {
  justify-content: flex-end;
  width: 55%;
  height: 660px;
  display: flex;
  position: sticky;
}

.home-5-about-us-right-block {
  align-items: center;
  width: 45%;
  padding-left: 40px;
  padding-right: 5%;
  display: flex;
}

.home-5-about-us-left-images {
  width: 100%;
  max-width: 1000px;
  height: 100%;
}

.left-alignment-container {
  text-align: left;
  max-width: 740px;
  margin-right: auto;
}

.image-left-alignment {
  background-image: linear-gradient(to bottom, transparent, var(--white));
  opacity: .15;
  position: absolute;
  inset: -14% 0% auto auto;
}

.feature-item-tours {
  justify-content: center;
  align-items: center;
  height: 200px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-item-tours:hover {
  background-image: linear-gradient(#0f5cfa80, #0f5cfa80), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.image-discont-home-item-3 {
  position: absolute;
  inset: -17% -3% auto auto;
}

.home-19-arrow-right {
  display: none;
}

.home-19-blog-slider {
  background-color: #0000;
  height: auto;
}

.slider-blog-nav-active-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4px;
  padding-left: 35px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.home-19-blog-pagination {
  display: none;
  bottom: -50px;
}

.home-19-mask-slider-wrap {
  overflow: hidden;
}

.home-19-arrow-left {
  display: none;
}

.slider-nav-active-item-3 {
  z-index: 10;
  background-color: #0f5cfa;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: relative;
}

.home-19-slide {
  border-radius: 10px;
  width: 320px;
  margin-right: 15px;
  overflow: hidden;
}

.home-19-general-blog-wrapper {
  display: flex;
  overflow: hidden;
}

.home-3-blog-collection {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.home-3-blog-item {
  background-color: var(--white);
  box-shadow: none;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.arrow-left-home-3 {
  border: 1px solid var(--white-50);
  color: var(--primary-light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: none;
  inset: 0% auto 0% 3%;
}

.arrow-left-home-3:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.arrow-right-home-3 {
  border: 1px solid var(--white-50);
  color: var(--primary-light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: none;
  inset: 0% 3% 0% auto;
}

.arrow-right-home-3:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.home-2-video-wrapp {
  z-index: 100;
  width: 70%;
  margin-bottom: -200px;
}

.video-home-3 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 70%;
  padding-bottom: 10px;
  display: flex;
}

.about-us-content-home-2 {
  color: var(--great-title);
  text-align: center;
  width: 70%;
  margin-top: 10px;
  margin-bottom: 30px;
}

.video-overlay {
  background-color: #03030366;
  position: absolute;
  inset: 0%;
}

.orange-spelling-home-3 {
  color: var(--primary);
  letter-spacing: 0;
  text-transform: none;
  font-family: Allura, sans-serif;
  font-weight: 400;
  display: block;
}

.discont-wrap-home-2 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.home-video-wrapper-item-2 {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 10px #0000004d;
}

.home-video-wrapper-item-2:hover {
  opacity: 1;
}

.video-container {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.image-11 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-agenda-day {
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.home-18-accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.home-18-accordion-content-wrapper {
  width: 100%;
  margin-left: 180px;
}

.home-18-accordion-list-content {
  margin-top: 10px;
  margin-bottom: 0;
}

.home-accordion-toggle-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.home-18-accordion-wrapper {
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

.home-18-speaker-position {
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  line-height: 1em;
}

.home-18-accordion-title {
  margin-top: 0;
  margin-bottom: 0;
}

.home-18-speaker-photo {
  object-fit: cover;
  border-radius: 100px;
  width: 54px;
  height: 54px;
  margin-right: 20px;
}

.home-agenda-date {
  font-size: 14px;
  font-weight: 400;
}

.home-18-accordion-icon {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.home-agenda-tab-link {
  color: #222;
  text-align: center;
  background-color: #fff;
  width: 25%;
  padding: 20px 30px;
  transition-property: all;
}

.home-agenda-tab-link:hover {
  background-color: var(--primary-light);
  opacity: 1;
  border-radius: 20px;
}

.home-agenda-tab-link.w--current {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(320deg, #fd421d, #fa882c);
  border-radius: 20px;
  width: 25%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-agenda-tab-link.w--current:hover {
  opacity: 1;
}

.home-18-speaker-name {
  padding-right: 2px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
}

.home-18-speaker-wrapper {
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.home-agenda-accordion-item {
  border-bottom: 1px solid var(--primary);
  background-color: #0000;
  width: 100%;
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 20px;
  padding-right: 30px;
  position: static;
  overflow: hidden;
}

.home-18-photo {
  object-fit: cover;
  border-radius: 100px;
  width: 64px;
  height: 63px;
}

.base-container-4 {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

.home-18-social-icon {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.home-18-social-icon:hover {
  background-color: var(--text-dark);
  opacity: 1;
  color: var(--white);
  border-color: #0000;
}

.home-18-speaker-socials {
  grid-column-gap: 10px;
  margin-left: 30px;
  display: flex;
}

.home-agenda-accordion-list {
  background-color: #0000;
  justify-content: flex-end;
  display: flex;
  position: static;
  overflow: hidden;
}

.home-agenda-accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
}

.home-18-image-block {
  justify-content: center;
  width: 180px;
  display: flex;
}

.div-block-21 {
  display: flex;
}

.title-orange {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.img-home-3 {
  position: absolute;
  inset: 2% 20% auto auto;
}

.image-discont-home-3 {
  position: absolute;
  inset: 2% -17% auto auto;
}

.details-travel {
  margin-top: 20px;
}

.footer-copyright-licensing {
  color: #ffffffb3;
  text-align: center;
  letter-spacing: 0;
  text-transform: capitalize;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.footer-copyright-licensing:hover, .footer-copyright-licensing.w--current:hover {
  color: var(--primary);
}

.home-video-wrapper-item {
  color: var(--g2v-blue);
  background-color: #0000;
  background-image: url('../images/LostUzbekistan-Thumbnail.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 0 1px 30px #0000003b;
}

.home-video-wrapper-item:hover {
  opacity: 1;
}

.text-white-for-lp {
  color: var(--white);
}

.icons-wrap {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.buy-now-webflow-icon {
  margin-right: 8px;
}

.buy-now-fixed {
  z-index: 1000;
  background-color: var(--white);
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 12px auto;
  box-shadow: 0 0 3px #0000001a;
}

.more-templates {
  z-index: 1000;
  background-color: var(--white);
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 141px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 48px auto;
  box-shadow: 0 0 3px #0000001a;
}

.body-3 {
  background-color: var(--g2v-white);
}

.heading-4, .heading-5 {
  color: var(--g2v-blue);
}

.image-12 {
  width: 27%;
  height: 120px;
}

.text-span-2 {
  font-size: 20px;
}

.text-block-15 {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.body-4, .body-5 {
  background-color: var(--g2v-white);
}

.paragraph-3 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.heading-6 {
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.text-block-16 {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.heading-7 {
  color: var(--text-dark);
  text-align: center;
}

.rich-text-block-2 {
  text-align: left;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.rich-text-block-3 {
  color: var(--text-dark);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.rich-text-block-4, .rich-text-block-5 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.image-13 {
  color: var(--g2v-blue);
}

.image-14 {
  display: block;
}

.image-15 {
  padding-bottom: 10px;
}

.image-16, .collection-item-8, .lightbox-link-2, .collection-list-8 {
  display: block;
}

.custom-lightbox {
  z-index: 99999;
  background-color: #0e0e0ecc;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.lightbox-tour-name {
  color: var(--g2v-white);
  margin-top: 10px;
}

.collection-list-wrapper-6, .collection-list-9 {
  display: flex;
}

.image-17 {
  margin-top: 10px;
  margin-right: 10px;
}

.closed-model {
  color: var(--g2v-blue);
  position: fixed;
  inset: 5% 5% auto auto;
}

.image-18 {
  margin-bottom: 10px;
}

.text-block-17 {
  margin-bottom: 20px;
}

.rich-text-block-6, .heading-1---desktop, .heading-2---desktop, .heading-3---desktop, .heading-4---desktop, .heading-5---desktop, .heading-6---desktop, .heading-14, .heading-15, .heading-16 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.heading-17 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
}

.heading-18, .heading-19, .heading-20, .heading-21 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.paragraph-4 {
  color: var(--text-dark);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.heading-22, .heading-23, .heading-24 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.link {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.heading-25, .list-item-3, .list-2, .list-item-4, .list-item-5, .list-item-6, .text-block-18, .text-block-19, .text-block-20, .text-block-21 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.heading-26 {
  color: var(--g2v-white);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.link-2 {
  color: var(--g2v-white);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 24px;
}

.link-2:hover {
  color: var(--primary);
}

.paragraph-5 {
  color: var(--g2v-blue);
}

.paragraph-6 {
  color: var(--g2v-blue);
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.rich-text-block-7 {
  text-align: center;
}

.form-block-2 {
  border: 1px solid #000;
  border-radius: 0;
}

.text-field-1 {
  background-color: var(--g2v-white);
  border-radius: 10px;
  margin-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.text-fe {
  background-color: var(--g2v-white);
  border-radius: 10px;
}

.submit-button {
  background-color: var(--g2v-blue);
  border: 1px solid #000;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.field-label-subsribe {
  color: var(--g2v-blue);
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 5px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.form {
  align-items: center;
  display: flex;
}

.field-label-2 {
  color: var(--g2v-blue);
}

.form-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
}

.field-label-3 {
  margin-bottom: 0;
}

.form-2 {
  align-items: center;
  display: flex;
}

.field-label-4, .text-field-2, .text-field-3 {
  margin-bottom: 0;
}

.submit-button-2 {
  background-color: var(--g2v-white);
  color: var(--g2v-blue);
  border-radius: 10px;
  margin-left: 20px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
}

.heading-27 {
  color: var(--g2v-white);
}

.block_top-wrap {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.testimonials1_slider-mask {
  width: 28rem;
  overflow: visible;
}

.testimonials1_arrow {
  color: #24292e;
  background-color: #151d534d;
  border: 1px solid #e1e4e8;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  transition: background-color .1s ease-out;
  display: flex;
  position: absolute;
  inset: auto auto -5rem 0%;
}

.testimonials1_arrow:hover {
  background-color: #f6f8fa;
}

.testimonials1_arrow.right {
  background-color: #151d53;
  left: 4.5rem;
}

.testimonials1_arrow-icon {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.block-profile-img {
  object-fit: contain;
  width: 120px;
  height: 64px;
  margin-right: 24px;
}

.testimonials1_client-details {
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: center start;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
}

.testimonials1_client-image-wrapper {
  border-radius: 50%;
  flex: none;
  margin-right: 1rem;
  overflow: hidden;
}

.testimonials1_component {
  background-color: #0000;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.block-date {
  color: #626e96;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.5;
}

.testimonials1_client-image {
  object-fit: cover;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonials1_slider-nav {
  display: none;
}

.icone-plateform-review {
  width: 40px;
  margin-left: 0;
  position: relative;
  left: 8rem;
  right: 0%;
}

.testimonials1_slide {
  max-width: 28rem;
  margin-right: 2rem;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.page-padding {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.testimonials1_client-line {
  background-color: #e1e4e8;
  width: 1.25px;
  height: 1.25rem;
  margin-left: .75rem;
  margin-right: .75rem;
}

.testimonials1_content {
  background-color: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 20rem;
  padding: 2rem;
  display: flex;
}

.testimonials1_client-wrapper {
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: center start;
  margin-top: 2rem;
  display: flex;
}

.custom-code-section {
  justify-content: center;
  align-items: center;
  display: none;
}

.html-embed {
  background-color: var(--g2v-white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  display: flex;
}

.button-add-to-cart {
  background-color: var(--g2v-blue);
  color: var(--g2v-white);
  border-radius: 10px;
  padding-left: 60px;
  padding-right: 60px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 18px;
  transition: background-color .35s;
}

.button-add-to-cart:hover {
  background-color: var(--great-title);
  color: var(--g2v-blue);
}

.heading-28 {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.tab-pane-tab-1-2 {
  margin-top: 100px;
}

.section-4 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.product-detail-box {
  text-align: left;
}

.product-pag-rich-text-block {
  text-align: left;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.field-label-5 {
  color: var(--g2v-blue);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 18px;
  display: none;
}

.default-state-3 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.quantity-2 {
  color: var(--g2v-blue);
  text-align: center;
  font-weight: 700;
  display: none;
}

.form-block-4 {
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.form-3 {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.submit-button-3 {
  background-color: var(--g2v-blue);
  color: var(--g2v-white);
}

.section-5 {
  margin-top: 100px;
  margin-bottom: 20px;
}

.image-19 {
  padding-bottom: 20px;
}

.passenger-information {
  background-color: var(--white);
  border: 1px solid #e6e6e6;
  padding: 20px;
}

.apple-pay {
  border-radius: 20px;
}

.customer-info-2 {
  display: none;
}

.tabs-menu-5 {
  flex-direction: row;
  display: flex;
}

.tabs {
  background-color: #0000;
  margin-left: 140px;
  margin-right: 140px;
  display: inline;
}

.tab-link-tab-1 {
  border: 1px solid var(--g2v-white);
  background-color: var(--white);
}

.tab-link-tab-1.w--current, .tab-link-tab-2 {
  background-color: var(--white);
}

.tab-link-tab-2.w--current {
  border: 1px solid var(--g2v-white);
  background-color: var(--white);
  border-radius: 0;
}

.block-header {
  margin-top: 10px;
  margin-left: 10px;
}

.html-embed-2 {
  justify-content: space-around;
  display: flex;
}

.container-7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.block-content, .block-header-2, .block-content-2, .block-header-3, .block-header-4, .block-content-3, .block-header-5, .block-content-4, .block-header-6, .block-content-5, .web-payments {
  margin-left: 10px;
}

.container-8 {
  display: inline;
}

.div-block-22 {
  flex: 0 auto;
  display: block;
}

.div-block-23 {
  justify-content: center;
  display: block;
}

.heading-29 {
  color: var(--g2v-blue);
  padding-right: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
  display: block;
}

.tab-link-tab-3, .tab-link-tab-3.w--current {
  background-color: var(--white);
}

.div-block-24 {
  justify-content: center;
  display: flex;
}

.container-9 {
  display: inline;
}

.rich-text-block-8 {
  text-align: left;
}

.rich-text-block-9 {
  color: var(--text-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-25 {
  margin-left: 20px;
  margin-right: 20px;
}

.rich-text-block-10 {
  text-align: center;
}

.div-block-26 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.link-3 {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 25px;
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 130px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 35px;
  }

  blockquote {
    background-image: url('../images/Quotes_1Quotes.png');
    background-size: auto 25px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.banner-our-team, .section.banner-faq, .section.about-us-banner {
    padding-top: 170px;
  }

  .section.landing-banner {
    background-position: 100% 0, 0 30%;
    background-size: 250px, 400px;
  }

  .section.top-padding-spacing {
    padding-top: 65px;
  }

  .section.contact-us-banner, .section.services-banner, .section.tours-banner, .section.destination-banner {
    padding-top: 170px;
  }

  .section.shop-banner {
    justify-content: center;
    align-items: center;
    padding-top: 170px;
  }

  .section.tours-banner {
    padding-top: 170px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .coming-soon-page-wrap {
    background-position: 137% 100%;
    background-size: auto 650px;
  }

  .coming-soon-heading {
    font-size: 110px;
    line-height: 1.1em;
  }

  .blog-grid-collection-list {
    grid-column-gap: 30px;
  }

  .blog-grid-image {
    height: 320px;
  }

  .prev-post-arrow, .next-post-arrow {
    color: var(--text-dark);
  }

  .section-title-wrapper {
    margin-bottom: 60px;
  }

  .section-title-wrapper.video-content-wrap, .section-title-wrapper.about-us-wrapper {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .section-title-wrapper.about-us-home-2 {
    margin-top: 130px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
  }

  .banner-title-wrapper {
    margin-top: 0;
  }

  .banner-title-wrapper.faq {
    max-width: 950px;
  }

  .play-button {
    box-shadow: 0 1px 30px #0003;
  }

  .adress-cards-wrapper {
    margin-top: 0;
  }

  .adress-card {
    padding: 15px;
  }

  .without-top-spacing {
    padding-top: 0;
  }

  .search-section {
    margin-top: 160px;
    margin-bottom: 100px;
  }

  .about-1-clients-grid {
    grid-row-gap: 100px;
  }

  .testimonials-slider-mask {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .slide-1 {
    width: 370px;
  }

  .section-with-blue-background {
    background-image: url('../images/img-8.png'), linear-gradient(to bottom, null, null), url('../images/gaetano-cessati-mlGM03fKONE-unsplash-1-1-1-1.jpg');
    background-size: auto 430px, auto, cover;
    height: 500px;
  }

  .landing-inner-pages-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .landing-banner-title-wrapper {
    max-width: 810px;
  }

  .home-banner-title {
    font-size: 130px;
  }

  .home-video-container {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title, .section-title-center {
    margin-bottom: 70px;
  }

  .about-us-img._3 {
    width: 340px;
  }

  .about-us-img._4 {
    width: 280px;
  }

  .about-us-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .blog-details-link-title {
    letter-spacing: 0;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-7-features-image {
    margin-top: -115px;
    font-size: 135px;
  }

  .nav-dropdown-toggle-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .circle-orange {
    top: -22px;
    right: 18%;
  }

  .circle-orange-wraper {
    width: 60%;
    padding-bottom: 105px;
  }

  .discont-wrap {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
  }

  .grid-deals-discount {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .product-image-1 {
    height: 670px;
  }

  .tour-details {
    width: 70%;
  }

  .slide-tour-item {
    width: 380px;
  }

  .image-category {
    width: 220px;
    min-height: 220px;
  }

  .circle-categories {
    width: 80px;
    height: 80px;
  }

  .image-discont-3 {
    top: -17%;
    right: 1%;
  }

  .collection-tour-item {
    width: 360px;
  }

  .grid-category-item {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-category-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 400px;
  }

  .category-image {
    object-position: 50% 0%;
  }

  .overlay {
    height: 120%;
  }

  .category-image-wrap {
    height: 400px;
  }

  .feedback-intro {
    width: 350px;
  }

  .image-discont-4 {
    top: 0%;
    left: -10%;
  }

  .slide-7 {
    width: 360px;
  }

  .orange-spelling {
    display: flex;
  }

  .video-content {
    text-align: left;
    padding-right: 100px;
  }

  .play-wrapper {
    width: 0%;
    inset: auto;
  }

  .last-minutes-wrapper {
    overflow: hidden;
  }

  .last-minutes-image {
    width: 430px;
    height: 750px;
  }

  .discount-offer-wrap {
    margin-top: 30px;
    margin-right: 30px;
  }

  .great-title {
    font-size: 130px;
  }

  .big-title-wrap {
    padding-top: 60px;
  }

  .suction-benefits {
    height: 300px;
  }

  .about-us-content {
    text-align: left;
    padding-right: 100px;
  }

  .discont-wrap-about-us {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
  }

  .image-discont-about-us {
    top: 0%;
    left: -10%;
  }

  .our-preferences {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .image-discont-service {
    right: 16%;
  }

  .about-us-slider-arrow.right {
    right: 45%;
  }

  .about-us-slider-arrow.left {
    left: 45%;
  }

  .image-discont-about-us-item {
    top: -4%;
    right: 24%;
  }

  .image-discont-team {
    top: 0%;
    right: 21%;
  }

  .team-video {
    justify-content: flex-start;
  }

  .tourist-video-content {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .body-2 {
    background-position: 85%;
    background-size: auto 500px;
  }

  .office-image {
    height: 245px;
  }

  .image-discont-contact-us {
    top: 6%;
    right: -5%;
  }

  .section-with-color {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .image-discont-3-services {
    top: -5%;
    right: 19%;
  }

  .grid {
    grid-column-gap: 30px;
    padding-top: 30px;
  }

  .discont-services-wrap {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .tour-collection-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .tours-item {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .content-blog-intro {
    min-height: 250px;
  }

  .h1-blog-details {
    font-size: 100px;
  }

  .blog-grid-collection-categoty {
    grid-column-gap: 30px;
  }

  .destination-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-category-destination {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .destination-item {
    min-height: 470px;
  }

  .section-blog-posts {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .discount-image, .discount-image-7 {
    height: 670px;
  }

  .collection-shop-item {
    width: 370px;
  }

  .discount-shop-offer {
    margin-top: 30px;
    margin-right: 30px;
  }

  .collection-item-7 {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .info-shop-item {
    justify-content: flex-start;
    width: 100%;
  }

  .info-shop-text-post, .info-shop-icon-wrap, .info-icon-shop {
    font-size: 18px;
  }

  .shop-intro.with-borders {
    border-right: 1px solid var(--dark-gray-50);
    flex-direction: column;
    justify-content: center;
  }

  .dark-ovarlay {
    z-index: 1;
    color: #0e0e0e1a;
    position: absolute;
    inset: 0%;
  }

  .shop-details-content-block {
    padding-top: 15px;
  }

  .grid-item {
    grid-column-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }

  .sticky-wrapper {
    z-index: 50;
    height: 500px;
  }

  .section-travel-detail {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .hot-tour-item {
    height: 805px;
  }

  .home-9-tab-image {
    object-position: 50% 30%;
  }

  .home-9-tab-pane {
    grid-column-gap: 60px;
  }

  .section-2 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .image-discont-home-2 {
    top: -17%;
    right: 1%;
  }

  .people-wrapper {
    width: 380px;
  }

  .base-container-3.home-19-blog-slider-con {
    max-width: 1200px;
  }

  .section-3 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .left-alignment-container {
    margin-bottom: 60px;
  }

  .image-left-alignment {
    top: 4%;
  }

  .image-discont-home-item-3 {
    top: -17%;
    right: 1%;
  }

  .home-19-arrow-right {
    z-index: 999999;
    display: block;
    inset: 0% -5% 0% auto;
  }

  .home-19-blog-slider {
    border: 1px solid #eef4f8;
  }

  .home-19-blog-pagination {
    display: none;
  }

  .home-19-arrow-left {
    display: block;
    inset: 0% auto 0% -5%;
  }

  .home-19-slide {
    width: 380px;
  }

  .discont-wrap-home-2 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .img-home-3 {
    right: 24%;
  }

  .image-discont-home-3 {
    top: 10%;
  }

  .text-white-for-lp {
    font-size: 100px;
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .section.landing-banner {
    background-position: 100% 0, 0 20%;
    background-size: 300px, 500px;
  }

  .coming-soon-page-wrap {
    background-position: 119% 100%;
    background-size: auto 700px;
  }

  .footer-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .testimonials-slider-mask {
    max-width: 1410px;
  }

  .slide-1 {
    width: 440px;
  }

  .about-us-img._1 {
    width: 380px;
  }

  .about-us-img._3 {
    width: 400px;
  }

  .about-us-img._4 {
    width: 300px;
  }

  .about-us-img._2 {
    width: 390px;
  }

  .home-5-our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .about-7-features-image {
    height: 140px;
  }

  .circle-orange-wraper {
    width: 64%;
  }

  .subscrabe-for-travel-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .tour-details {
    width: 66%;
  }

  .categories-slider {
    width: 100%;
  }

  .left-arrow-12 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .collection-list-5 {
    flex-direction: row;
    display: flex;
  }

  .arrow-left-item {
    height: 25px;
  }

  .last-minutes-image {
    width: 480px;
  }

  .grid-category-destination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center stretch;
    display: grid;
  }

  .hot-tour-item {
    height: 890px;
  }

  .our-guides-slider {
    width: 100%;
  }

  .home-9-team-member-photo {
    width: 220px;
    height: 220px;
  }

  .home-9-team-social-icons-wrapper {
    width: 220px;
    height: 50px;
    top: 171px;
  }

  .home-5-about-us-container {
    grid-column-gap: 40px;
  }

  .image-left-alignment {
    right: 6%;
  }

  .home-19-arrow-right {
    right: -7%;
  }

  .home-19-arrow-left {
    left: -7%;
  }

  .home-video-wrapper-item-2, .home-video-wrapper-item {
    height: 500px;
  }
}

@media screen and (min-width: 1920px) {
  .section.landing-banner {
    background-position: 100% 0, 0 10%;
    background-size: 400px, 600px;
  }

  .nav-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .coming-soon-page-wrap {
    background-position: 200% 100%;
    background-size: auto 700px;
  }

  .footer {
    background-position: 3% 100%;
    background-size: auto 550px;
  }

  .testimonials-slider-mask {
    max-width: 1720px;
  }

  .slide-1 {
    width: 543px;
  }

  .about-us-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-us-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-us-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .circle-orange-wraper {
    width: 73%;
  }

  .collection-item-3 {
    width: 100vw;
    overflow: hidden;
  }

  .collection-image {
    display: inline;
  }

  .collection-list-3 {
    width: 100vw;
    overflow: hidden;
  }

  .clouds-img {
    height: auto;
  }

  .collection-product-2 {
    width: 100%;
    max-width: 100%;
  }

  .product-image-1 {
    height: 930px;
  }

  .product-image-2, .product-image-3, .product-image-4 {
    height: 450px;
  }

  .tour-details {
    width: 50%;
  }

  .collection-tour-item {
    width: 400px;
  }

  .last-minutes-image {
    width: 640px;
  }

  .about-us-slider-arrow.right {
    right: 46%;
  }

  .about-us-slider-arrow.left {
    left: 46%;
  }

  .body-2 {
    background-position: 81%;
    background-size: auto 650px;
    justify-content: center;
    display: flex;
  }

  .discount-image {
    height: 930px;
  }

  .discount-image-2, .discount-image-3, .discount-image-4, .discount-image-5, .discount-image-6 {
    height: 450px;
  }

  .discount-image-7 {
    height: 930px;
  }

  .discount-image-8 {
    height: 450px;
  }

  .collection-shop-list {
    flex-direction: row;
  }

  .collection-shop-item {
    flex-wrap: wrap;
    align-content: space-around;
  }

  .shop-item-tours {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .hot-tour-item {
    height: 1050px;
  }

  .collection-image-our-news {
    height: 800px;
  }

  .home-5-about-us-right-block {
    padding-right: 10%;
  }

  .image-left-alignment {
    top: 0%;
    right: 24%;
  }

  .home-2-video-wrapp {
    margin-bottom: -400px;
  }

  .about-us-content-home-2 {
    width: 60%;
  }

  .home-video-wrapper-item-2 {
    height: 650px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 70px;
  }

  .section.banner-our-team, .section.banner-faq {
    min-height: 300px;
    padding-top: 140px;
  }

  .section.about-us-banner {
    min-height: 380px;
    padding-top: 140px;
  }

  .section.landing-banner {
    background-size: 300px, 350px;
  }

  .section.category {
    min-height: 300px;
  }

  .section.contact-us-banner, .section.services-banner, .section.tours-banner, .section.destination-banner, .section.shop-banner, .section.tours-banner {
    min-height: 380px;
    padding-top: 140px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-system-image {
    width: 75%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .colors-wrapper {
    margin-right: 40px;
  }

  .colors-container {
    flex-wrap: wrap;
  }

  .headings-typography-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .style-guide-body-wrapper {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-container {
    padding: 10px 15px;
  }

  .nav-menu {
    background-color: #0000;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    position: absolute;
    inset: 0% auto auto 0%;
    overflow: visible;
  }

  .menu-button {
    text-align: right;
    margin-left: 10px;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-dropdown-icon {
    display: block;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 13px;
    display: flex;
  }

  .close-menu-button.w--open {
    background-color: #0000;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-close-icon {
    align-self: stretch;
    max-width: 60%;
  }

  .style-guide-banner-section {
    min-height: 300px;
  }

  .licensing-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-top: 250px;
  }

  .coming-soon-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-heading {
    text-align: center;
  }

  .blog-grid-collection-list {
    grid-column-gap: 30px;
    column-count: 2;
  }

  .blog-grid-item {
    width: 47.5%;
  }

  .blog-template-wrapper {
    padding: 40px;
  }

  .blog-template-date {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .footer {
    background-position: 98% 100%;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .section-title-wrapper.about-us-home-2 {
    margin-top: 60px;
  }

  .team-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .process-content.reverse {
    padding-right: 40px;
  }

  .process-number-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .process-image {
    object-fit: cover;
    width: 100%;
    display: block;
  }

  .services-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-features-wrapper {
    flex-wrap: wrap;
  }

  .pricing-features-wrap {
    width: 100%;
  }

  .pricing-features-links-wrap {
    text-align: center;
    width: 100%;
    margin-top: 60px;
    padding-left: 0;
  }

  .pricing-features-links-list {
    grid-column-gap: 40px;
    text-align: left;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 0;
    padding-left: 60px;
  }

  .capabilities-heading {
    margin-bottom: 30px;
    font-size: 32px;
  }

  .adress-cards-wrapper {
    margin-top: 30px;
  }

  .contact-3-inputs-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .footer-social-icons-wrapper {
    margin-top: 10px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
  }

  .white-text.mb-15 {
    flex: 0 auto;
    display: block;
  }

  .footer-brand-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 50%;
    margin-bottom: 50px;
  }

  .footer-links-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    width: 35%;
    margin-left: 0;
  }

  .footer-links-wrapper.travel-news {
    flex: 0 auto;
    margin-left: 0;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

  .search-shop-con {
    display: none;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .search-section {
    margin-bottom: 40px;
  }

  .footer-logo-wrapper {
    padding-right: 0;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .primary-button-white:hover {
    opacity: 1;
  }

  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .about-1-clients-grid {
    grid-column-gap: 30px;
    grid-row-gap: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .testimonials-slider-image.photo-1, .testimonials-slider-image.photo-2, .testimonials-slider-image.photo-3, .testimonials-slider-image.photo-4, .testimonials-slider-image.photo-5, .testimonials-slider-image.photo-6 {
    width: 70px;
    height: 70px;
  }

  .testimonials-slider-mask {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .slide-1 {
    width: 330px;
  }

  .section-with-blue-background {
    background-image: url('../images/img-8.png'), linear-gradient(#000000a6, #000000a6), url('../images/gaetano-cessati-mlGM03fKONE-unsplash-1-1-1-1.jpg');
    background-position: 160% 100%, 0 0, 50%;
  }

  .portfolio-tab-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-tab-link.all-projects {
    padding-left: 0;
  }

  .portfolio-tab-link.last-child {
    padding-right: 0;
  }

  .nav-menu-shadow-overlay {
    background-color: var(--white);
    flex-direction: column;
    align-items: stretch;
    width: 320px;
    height: 100vh;
    box-shadow: 0 0 30px #00000026;
  }

  .landing-banner-image {
    max-width: 95%;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 60px;
  }

  .landing-features-grid, .landing-inner-pages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-performance-item-title {
    max-width: 220px;
    font-size: 18px;
  }

  .megamenu-dropdown-wrapper {
    flex-direction: column;
  }

  .landing-home-pages-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .landing-download-block-wrapper {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
  }

  .landing-download-block-wrap {
    text-align: center;
    margin-bottom: 40px;
  }

  .banner-slider-container {
    text-align: center;
  }

  .home-banner-section {
    padding-top: 60px;
  }

  .home-slide-buttons-wrapper {
    margin-top: 40px;
  }

  .home-banner-title {
    font-size: 70px;
  }

  .home-video-container {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .home-blog-collection-item {
    width: 47%;
  }

  .home-blog-collection-list {
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar-fixed {
    background-color: var(--white);
    height: auto;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-us-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-us-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-us-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-us-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-us-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .home-9-banner-arrow-right.arrow-home-2, .home-9-banner-arrow-right.arrow-home-3 {
    inset: auto 3% 20% auto;
  }

  .home-9-banner-arrow-left.arrow-home-2, .home-9-banner-arrow-left.arrow-home-3 {
    inset: auto auto 20% 3%;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    border-bottom: 1px solid #f1f2f3;
    border-right: 1px solid #f1f2f3;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .nav-item-title-2 {
    color: var(--text-dark);
    margin-top: 7px;
    margin-bottom: 7px;
    font-size: 17px;
  }

  .nav-dropdown-line-2.mini-menu {
    left: -5%;
  }

  .nav-dropdown-list-2 {
    border-style: none;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 40px;
    position: static;
  }

  .nav-dropdown-list-2.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15px;
    display: flex;
    position: static;
  }

  .nav-dropdown-link-wrapper-2 {
    justify-content: flex-start;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper-2:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link-2 {
    padding: 5px 0;
    transition-property: padding-left;
  }

  .nav-dropdown-link-2:hover {
    padding-left: 20px;
  }

  .nav-dropdown-2 {
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding-left: 15px;
    transition: opacity .5s;
    display: block;
    overflow: hidden;
  }

  .nav-dropdown-toggle-2 {
    justify-content: space-around;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    display: flex;
  }

  .yellow-strip, .span-arrow {
    display: none;
  }

  .link-home-text {
    color: var(--text-dark);
    margin-top: 7px;
    margin-bottom: 7px;
    font-size: 17px;
  }

  .link-home-text.contact-us {
    text-align: left;
    width: 100%;
  }

  .stepi-1 {
    display: none;
  }

  .nav-link-menu {
    justify-content: space-around;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    display: flex;
  }

  .stepi-2 {
    height: 40px;
    display: block;
  }

  .stepi-3 {
    display: none;
  }

  .useful-links, .useful-links.w--current {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .div-block-8 {
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    padding-bottom: 0;
  }

  .cart-item {
    align-items: center;
  }

  .cart-button {
    padding-right: 15px;
  }

  .cart-footer {
    border-top-style: none;
  }

  .cart-header {
    border-bottom-style: none;
  }

  .circle-orange-wraper {
    width: 55%;
    padding-bottom: 110px;
    padding-left: 0;
  }

  .collection-list-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .blog-content-wrap {
    width: 70%;
  }

  .subscribe-form {
    width: 300px;
  }

  .subscrabe-for-travel-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
  }

  .collection-list-3 {
    justify-content: center;
    align-items: center;
  }

  .clouds-img {
    bottom: 5%;
  }

  .grid-deals-discount {
    grid-template-columns: 1fr 1fr;
  }

  .tour-details {
    width: 100%;
  }

  .main-button-white.subscribe-2 {
    margin-top: 15px;
  }

  .shop-overlay {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .slide-tour-item {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }

  .image-discont-3 {
    top: -17%;
  }

  .collection-tour-item {
    width: 340px;
  }

  .general-container {
    overflow: auto;
  }

  .section-subscribe {
    background-position: 98% 90%, 0 0;
    height: 200px;
  }

  .subscribe-wrap {
    flex-direction: column;
  }

  .reviews-slider {
    justify-content: flex-start;
  }

  .grid-category-item {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid-category-wrapper {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .feedback-intro {
    width: 320px;
  }

  .image-discont-4 {
    left: 5%;
  }

  .testimonials-item-mask {
    overflow: hidden;
  }

  .slide-7 {
    width: 330px;
  }

  .text-item-body {
    padding-right: 10px;
  }

  .last-minutes-wrapper {
    justify-content: flex-start;
  }

  .last-minutes-image {
    width: 385px;
  }

  .great-title {
    letter-spacing: 15px;
  }

  .subtitle-banner {
    margin-top: 0;
    margin-bottom: 0;
  }

  .about-us-content {
    width: 100%;
  }

  .image-discont-about-us {
    height: 90px;
    top: -8%;
  }

  .our-preferences {
    grid-template-columns: 1fr 1fr;
  }

  .image-wrapper {
    margin-right: 5px;
  }

  .about-us-slider-arrow {
    display: none;
  }

  .about-us-slider-arrow.right {
    right: 43%;
  }

  .about-us-slider-arrow.left {
    left: 43%;
  }

  .stepi-3-coming-soon {
    display: none;
  }

  .team-video {
    width: 80%;
    height: 400px;
  }

  .tourist-video-content {
    grid-column-gap: 15px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .body-2 {
    background-position: 50% 17%;
    background-size: auto 300px;
  }

  .office-image {
    height: 160px;
  }

  .contact-us-input.last-child {
    margin-right: 0;
  }

  .image-discont-3-services {
    top: -17%;
  }

  .grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-table-name {
    padding-bottom: 10px;
  }

  .tour-collection-wrapper {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .tours-item {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .shop-overlay-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .content-blog-intro {
    min-height: 250px;
  }

  .blog-grid-collection-categoty {
    grid-column-gap: 30px;
    column-count: 2;
  }

  .destination-wrapper {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .grid-category-destination {
    grid-column-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .section-blog-posts {
    padding-top: 80px;
  }

  .reviews-discont-slider {
    justify-content: flex-start;
  }

  .collection-shop-item {
    width: 350px;
  }

  .where-to-container {
    width: 80%;
  }

  .search-input-shop:focus {
    border: 1px solid var(--primary);
  }

  .shop-details-content-block {
    margin-bottom: 60px;
    padding-top: 7px;
  }

  .tour-details-wrap {
    margin-top: 40px;
  }

  .tour-details-wrapper {
    flex-direction: column-reverse;
  }

  .info-tour-details {
    width: 100%;
    padding-right: 0;
  }

  .sticky-wrapper {
    width: 100%;
    position: static;
    top: 20px;
  }

  .itinerary {
    margin-top: 40px;
  }

  .image-card {
    width: 100%;
    display: none;
  }

  .image-card-item-2 {
    width: 100%;
    display: block;
    top: -43px;
  }

  .image-card-item3 {
    display: none;
    top: -43px;
  }

  .checkout-form {
    padding-top: 140px;
  }

  .home-banner-section-item-2 {
    padding-top: 60px;
  }

  .hidden-home-2 {
    width: 130px;
    inset: 20% 0% auto;
    transform: rotate(180deg);
  }

  .home-features-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-features-wrapper.home-2 {
    grid-row-gap: 10px;
  }

  .why-travel-with-us-wrap-item {
    width: 47%;
  }

  .hot-tour-item {
    height: 730px;
  }

  .hidden-home-2-news {
    width: 130px;
  }

  .collection-list-hot-tours {
    justify-content: center;
    align-items: center;
  }

  .collection-image-our-news {
    height: 500px;
  }

  .home-9-tab-image {
    width: 45%;
    height: 400px;
  }

  .home-9-tab-content {
    width: 55%;
  }

  .image-discont-home-2 {
    top: -17%;
  }

  .people-wrapper {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }

  .our-guides-slider {
    margin-top: 20px;
  }

  .home-5-about-us-container {
    grid-row-gap: 60px;
    flex-direction: column-reverse;
    display: flex;
  }

  .home-5-about-us-right-content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    display: flex;
  }

  .home-5-about-us-description {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .home-5-about-us-left-block {
    width: 100%;
  }

  .home-5-about-us-right-block {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .left-alignment-container {
    max-width: 560px;
  }

  .feature-item-tours {
    flex-wrap: wrap;
  }

  .image-discont-home-item-3 {
    top: -17%;
  }

  .home-19-slide {
    width: 360px;
    margin-right: 18px;
  }

  .home-2-video-wrapp, .video-home-3 {
    width: 80%;
  }

  .about-us-content-home-2 {
    width: 100%;
  }

  .home-video-wrapper-item-2 {
    height: 400px;
  }

  .home-18-speaker-position {
    display: block;
  }

  .home-video-wrapper-item {
    width: 80%;
    height: 400px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 28px;
  }

  blockquote {
    font-size: 18px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.banner-our-team, .section.banner-faq, .section.about-us-banner {
    padding-top: 120px;
  }

  .section.landing-banner {
    background-size: 250px, 300px;
  }

  .section.top-padding-spacing {
    padding-top: 30px;
  }

  .section.contact-us-banner, .section.services-banner, .section.tours-banner, .section.destination-banner, .section.shop-banner, .section.tours-banner {
    padding-top: 120px;
  }

  .section.about-us-home-3 {
    padding-top: 40px;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    margin-top: 15px;
    margin-right: 0;
  }

  .colors-container {
    margin-top: 0;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .h1-tablet {
    font-size: 55px;
  }

  .style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-div {
    margin-top: 35px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .grid-header {
    width: 100%;
    margin-top: 35px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-paragraph.last-item {
    margin-bottom: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .password-image {
    width: 100px;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-wrapper {
    margin-left: 0%;
    padding-top: 100px;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-page-wrap {
    background-position: 50% 0;
    background-size: auto 400px;
  }

  .blog-grid-collection-list {
    column-count: 1;
  }

  .blog-grid-item {
    width: 100%;
  }

  .blog-template-wrapper {
    padding: 20px 15px;
  }

  .footer {
    background-size: auto 270px;
    padding-top: 80px;
  }

  .footer-rights-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper {
    margin-bottom: 30px;
  }

  .section-title-wrapper.category-section, .section-title-wrapper.video-content-wrap {
    margin-bottom: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-item-wrapper {
    flex-wrap: wrap;
  }

  .process-item-wrapper.reverse {
    flex-wrap: wrap-reverse;
  }

  .process-image-wrapper, .process-content {
    width: 100%;
  }

  .process-content.reverse {
    width: 100%;
    padding-right: 0;
  }

  .process-number-wrapper {
    flex: none;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .process-number {
    margin-top: 14px;
    margin-bottom: 0;
  }

  .process-paragraph {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .style-guide-button-wrapper.last-child {
    margin-bottom: 0;
  }

  .process-content-wrapper {
    flex-wrap: wrap;
    width: 100%;
  }

  .services-wrapper {
    column-count: 1;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .workflow-profile-wrapper {
    margin-top: 20px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .pricing-features-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    padding-left: 60px;
    padding-right: 60px;
  }

  .pricing-features-links-list {
    justify-items: start;
    padding-left: 0;
  }

  .capabilities-heading {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .adress-cards-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .adress-card {
    padding-bottom: 20px;
  }

  .contact-3-inputs-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-social-icons-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
  }

  .footer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-section {
    margin-top: 120px;
  }

  .footer-logo-wrapper {
    align-items: flex-start;
    width: 100%;
  }

  .about-1-clients-grid {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-slider-mask {
    max-width: 568px;
  }

  .slide-1 {
    width: 100%;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .section-with-blue-background {
    background-image: url('../images/img-8.png'), linear-gradient(#000000a6, #000000a6), url('../images/gaetano-cessati-mlGM03fKONE-unsplash-1-1-1-1.jpg');
    background-position: 220% 100%, 0 0, 50%;
    background-size: auto 280px, auto, cover;
  }

  .about-3-form-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-3-form {
    flex-wrap: wrap;
  }

  .portfolio-tab-link {
    padding: 10px;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .landing-features-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr;
  }

  .landing-home-pages-wrapper {
    grid-row-gap: 40px;
  }

  .landing-download-block-wrap {
    margin-bottom: 30px;
  }

  .banner-slider-container {
    padding-bottom: 60px;
  }

  .home-banner-title {
    font-size: 55px;
  }

  .contacts-3-location-wrapper {
    margin-bottom: 15px;
  }

  .home-blog-collection-item {
    width: 100%;
  }

  .home-blog-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .map {
    height: 320px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-2 {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-us-img {
    width: 100%;
    max-height: 420px;
  }

  .about-us-img._1, .about-us-img._5, .about-us-img._3, .about-us-img._4, .about-us-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .home-5-our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-banner-arrow-right {
    inset: auto 3% 10% auto;
  }

  .home-9-banner-arrow-left {
    inset: auto auto 10% 3%;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .nav-dropdown-toggle-2, .nav-link-menu {
    width: 99%;
  }

  .circle-orange-wraper {
    padding-bottom: 140px;
  }

  .cursor-wrapper {
    background-image: linear-gradient(322deg, #00000080, #fff0 64%);
    justify-content: flex-end;
    align-items: flex-end;
  }

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

  .mask-3 {
    margin-top: 20px;
  }

  .subscrabe-for-travel-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-deals-discount {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .primary-button-item-black.add-to-card {
    border-radius: 0 0 10px 10px;
  }

  .product-image-1, .product-image-2, .product-image-3, .product-image-4 {
    height: 300px;
  }

  .travel-item {
    align-items: flex-end;
  }

  .tour-information-wrap {
    background-image: linear-gradient(to top, #101010 21%, #0000 61%);
    padding-bottom: 80px;
  }

  .tour-details {
    display: none;
  }

  .main-button-white.subscribe-2 {
    margin-top: 5px;
  }

  .shop-overlay {
    background-image: none;
    align-items: flex-end;
    height: 80px;
    inset: auto 0% 0%;
  }

  .slide-tour-item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .content-wrap {
    padding-top: 20px;
  }

  .categorymask {
    padding-left: 0;
    padding-right: 0;
  }

  .info-vertical {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .collection-tour-item {
    width: 508px;
  }

  .image-popular-tours {
    width: 100vw;
  }

  .section-subscribe {
    background-image: linear-gradient(to top, var(--g2v-blue) 21%, var(--g2v-white));
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    height: 250px;
  }

  .travel-category-item {
    align-items: flex-end;
  }

  .grid-category-item, .grid-category-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .category-image-wrap {
    height: 300px;
  }

  .feedback-intro {
    width: 440px;
  }

  .image-discont-4 {
    top: -9%;
    left: -2%;
  }

  .slide-7 {
    width: 460px;
    margin-right: 40px;
  }

  .text-item-body {
    padding-right: 0;
  }

  .last-minutes-image {
    width: 568px;
  }

  .great-title {
    font-size: 45px;
  }

  .big-title-wrap {
    padding-top: 20px;
  }

  .great-title-wrapper {
    margin-bottom: -10px;
  }

  .image-discont-about-us {
    top: -7%;
  }

  .grid-services {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .about-us-slider-arrow.right {
    right: 40%;
  }

  .about-us-slider-arrow.left {
    left: 40%;
  }

  .team-video {
    width: 90%;
    height: 350px;
  }

  .body-2 {
    background-position: 50% 15%;
    background-size: auto 270px;
  }

  .office-image {
    height: 250px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .section-with-color {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .discont-tours-image {
    width: 100vw;
  }

  .grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 60px;
    padding-right: 60px;
  }

  .pricing-info {
    padding-bottom: 0;
  }

  .tour-collection-wrapper, .tours-item {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .travel-tours-category-item {
    align-items: flex-end;
  }

  .shop-overlay-wrapper {
    background-image: none;
    align-items: flex-end;
    height: 80px;
    inset: auto 0% 0%;
  }

  .content-blog-intro {
    min-height: auto;
  }

  .h1-blog-details {
    margin-top: 10px;
  }

  .blog-grid-collection-categoty {
    column-count: 1;
  }

  .destination-wrapper, .grid-category-destination {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .destination-item {
    align-items: flex-end;
    min-height: 350px;
  }

  .destination-info-wrap {
    background-image: linear-gradient(to top, #101010, #0000 61%);
  }

  .section-blog-posts {
    padding-bottom: 60px;
  }

  .discount-image, .discount-image-2, .discount-image-3, .discount-image-4, .discount-image-5, .discount-image-6, .discount-image-7, .discount-image-8 {
    height: 300px;
  }

  .big-title-wrap-discont {
    padding-top: 20px;
  }

  .pricing-capabilities-text {
    justify-content: center;
    display: flex;
  }

  .collection-shop-item {
    width: 100%;
  }

  .shop-intro.with-borders {
    margin-right: 10px;
  }

  .shop-details-content-block {
    padding-top: 27px;
  }

  .tour-details-wrapper {
    flex-wrap: wrap;
  }

  .info-tour-details {
    width: 100%;
    padding-right: 0;
  }

  .sticky-wrapper {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    top: 0;
  }

  .itinerary-item-wrap {
    width: 100%;
    margin-right: 0;
  }

  .section-travel-detail {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .text-wrapper {
    padding-bottom: 20px;
  }

  .image-card {
    display: block;
    top: -45px;
  }

  .image-card-item-2, .image-card-item3 {
    display: none;
  }

  .home-features-wrapper {
    grid-row-gap: 10px;
  }

  .why-travel-with-us-wrap-item {
    width: 100%;
  }

  .travel-image-wrap {
    align-items: center;
    height: 200px;
  }

  .travel-content-wrapper {
    min-height: 140px;
  }

  .hot-tour-item {
    height: 690px;
  }

  .hidden-home-2-news {
    display: none;
  }

  .collection-image-our-news {
    object-position: 70% 50%;
  }

  .home-9-tab-image {
    object-position: 50% 28%;
    width: 100%;
    height: 280px;
  }

  .home-9-tab-link {
    border-top: 1px solid #a8acb5;
    border-left-style: none;
    width: 100%;
  }

  .home-9-tab-link.first-child {
    border-top-style: none;
  }

  .home-9-tab-link.first-child.w--current {
    width: 100%;
  }

  .home-9-tab-link.color-child {
    border-top-style: none;
  }

  .home-9-tab-link.color-child.w--current {
    width: 100%;
  }

  .home-9-tab-content {
    grid-row-gap: 0px;
    width: 100%;
  }

  .home-9-tabs-menu {
    flex-direction: column;
    width: 100%;
  }

  .home-9-tab-pane {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .people-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-5-about-us-right-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-5-about-us-left-block {
    flex-direction: column;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .home-5-about-us-right-block {
    padding-left: 0;
    padding-right: 0;
  }

  .home-5-about-us-left-images {
    grid-row-gap: 15px;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .left-alignment-container {
    margin-bottom: 30px;
  }

  .image-left-alignment {
    top: -5%;
    right: 10%;
  }

  .feature-item-tours {
    height: 160px;
    margin-left: 0;
    margin-right: 0;
  }

  .home-19-slide {
    width: 538px;
    margin-right: 15px;
  }

  .home-3-blog-collection {
    width: 538px;
  }

  .home-3-blog-item {
    width: 100%;
  }

  .arrow-left-home-3 {
    inset: auto auto 10% 3%;
  }

  .arrow-right-home-3 {
    inset: auto 3% 10% auto;
  }

  .home-2-video-wrapp, .video-home-3 {
    width: 90%;
  }

  .home-video-wrapper-item-2 {
    height: 350px;
  }

  .home-18-accordion-content-wrapper {
    margin-left: 140px;
  }

  .home-18-accordion-wrapper {
    width: 100%;
  }

  .home-18-speaker-photo {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .home-agenda-tab-link {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-agenda-tab-link.w--current {
    width: 100%;
  }

  .home-18-speaker-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-agenda-accordion-item {
    padding-top: 0;
  }

  .home-18-speaker-socials {
    margin-top: 15px;
    margin-left: 0;
  }

  .home-18-image-block {
    width: 140px;
  }

  .home-video-wrapper-item {
    width: 90%;
    height: 350px;
  }

  .link-block-licensing {
    width: 100%;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .testimonials1_slider-mask {
    width: 100%;
  }

  .testimonials1_slide {
    width: auto;
    max-width: none;
    margin-right: 1.25rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .testimonials1_client-wrapper {
    grid-auto-flow: row;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  .section.landing-banner {
    background-position: 100% 5%, 0 70%;
    background-size: 160px, 180px;
  }

  .section.shop-page {
    padding-top: 160px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .primary-button.search-button {
    border-radius: 100px;
    width: 100%;
    margin-top: 0;
  }

  .primary-button.full-width-coming-soon {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }

  .primary-button.search-button-shop {
    border-radius: 100px;
    width: 100%;
    margin-top: 0;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
  }

  .license-link {
    margin-right: 15px;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-wrapper {
    padding-top: 60px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon-input {
    border-radius: 100px;
    min-width: auto;
    margin-bottom: 20px;
  }

  .coming-soon-input:focus {
    border-right-color: var(--primary);
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .blog-sidebar-post-category {
    margin-bottom: 20px;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .footer-rights-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-rights {
    margin-bottom: 10px;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .section-title-wrapper.video-content-wrap, .section-title-wrapper.about-us-wrapper, .section-title-wrapper.about-us-home-2 {
    max-width: 330px;
  }

  .pricing-features-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-features-links-wrap {
    margin-top: 40px;
  }

  .pricing-features-icon {
    margin-right: 15px;
  }

  .pricing-features-links-list {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-social-icons-wrapper {
    text-align: left;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-wrapper {
    text-align: left;
    margin-bottom: 10px;
  }

  .white-text {
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer-brand-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .footer-social-icon {
    margin-right: 20px;
  }

  .footer-links-wrapper {
    text-align: left;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-links-wrapper.travel-news {
    width: 100%;
    height: 770px;
  }

  .search-input {
    border-radius: 100px;
  }

  .footer-logo-wrapper {
    text-align: left;
    align-items: center;
  }

  .footer-brand-description {
    text-align: center;
  }

  .testimonials-slider-mask {
    max-width: 350px;
    margin-top: 0;
  }

  .slide-1 {
    padding: 30px 20px;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .section-with-blue-background {
    background-image: linear-gradient(#000000a6, #000000a6), url('../images/gaetano-cessati-mlGM03fKONE-unsplash-1-1-1-1.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
  }

  .about-3-form-wrapper {
    text-align: center;
  }

  .about-3-form {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .portfolio-tab-link {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-tab-link.last-child {
    padding-left: 0;
  }

  .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-icon {
    margin-bottom: 10px;
  }

  .home-slide-buttons-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 15px;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .home-5-our-services-wrap, .home-9-team-member-wrap {
    width: 100%;
  }

  .about-7-features-image {
    font-size: 80px;
  }

  .search {
    flex-direction: column;
  }

  .primary-button-item-white {
    justify-content: space-between;
  }

  .useful-links {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
  }

  .useful-links.w--current {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .div-block-8 {
    flex-direction: row;
    width: 100%;
  }

  .cart-button {
    padding-right: 10px;
  }

  .collection-list-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
  }

  .travel-image {
    width: 330px;
    height: 200px;
  }

  .lightbox-link {
    width: 330px;
    height: auto;
  }

  .collection-item-2 {
    flex-direction: column;
  }

  .blog-content-wrap {
    flex-direction: column;
    margin-top: 15px;
    padding-left: 0;
  }

  .mask-3, .slide-6 {
    height: auto;
  }

  .primary-subscribe-button {
    justify-content: space-between;
  }

  .subscribe-form {
    width: 100%;
  }

  .primary-button-item-gradient {
    justify-content: space-between;
  }

  .clouds-img {
    height: 170px;
    bottom: 6%;
  }

  .grid-deals-discount {
    grid-template-columns: 1fr;
  }

  .primary-button-item-black {
    justify-content: space-between;
  }

  .product-image-1, .product-image-2, .product-image-3, .product-image-4 {
    height: 330px;
  }

  .main-button-white {
    justify-content: space-between;
  }

  .image-discont-2 {
    right: -8%;
  }

  .brand-2 {
    padding-left: 0;
  }

  .arrow-right-item {
    right: -10%;
  }

  .arrow-left-item {
    left: -10%;
  }

  .image-discont-3 {
    top: -14%;
    right: 0%;
  }

  .collection-tour-item {
    width: 300px;
  }

  .section-subscribe {
    background-image: linear-gradient(to top, var(--g2v-blue) 38%, var(--g2v-white));
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .grid-category-item, .grid-category-wrapper {
    grid-template-columns: 1fr;
  }

  .category-image {
    height: 300px;
  }

  .category-image-wrap {
    height: 330px;
  }

  .feedback-intro {
    width: 260px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-discont-4 {
    top: -13%;
  }

  .slide-7 {
    width: 260px;
    margin-right: 100px;
  }

  .video-content {
    width: 330px;
  }

  .last-minutes-image {
    width: 360px;
  }

  .great-title {
    letter-spacing: 5px;
  }

  .our-preferences {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .reviews-body-text {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .about-us-slider-arrow.right {
    right: 35%;
  }

  .about-us-slider-arrow.left {
    left: 35%;
  }

  .image-discont-about-us-item {
    top: -14%;
    right: 0%;
  }

  .team-video {
    width: 100%;
    height: 330px;
  }

  .body-2 {
    background-size: auto 250px;
  }

  .image-discont-2-contact-us {
    right: -8%;
  }

  .image-discont-3-services {
    top: -14%;
    right: 0%;
  }

  .grid {
    padding-left: 0;
    padding-right: 0;
  }

  .tour-collection-wrapper, .tours-item, .destination-wrapper, .grid-category-destination {
    grid-template-columns: 1fr;
  }

  .discount-image, .discount-image-2, .discount-image-3, .discount-image-4, .discount-image-5, .discount-image-6, .discount-image-7, .discount-image-8 {
    height: 330px;
  }

  .pricing-capabilities-text {
    justify-content: flex-start;
  }

  .where-to-container {
    width: 95%;
    transform: translate(0, 80%);
  }

  .search-shop {
    flex-direction: column;
  }

  .search-input-shop {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .search-input-shop:focus {
    border-color: #0000;
  }

  .shop-intro.with-borders {
    border-right-color: #0000;
    margin-right: 0;
  }

  .shop-intro.last {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .shop-details-content-block {
    padding-top: 30px;
  }

  .grid-item {
    grid-template-columns: 1fr 1fr;
  }

  .tour-details-wrap {
    margin-top: 20px;
  }

  .tabs-menu-4 {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .tab-item, .tab-item.w--current, .tab-item.first-child.w--current {
    width: 100%;
  }

  .sticky-wrapper {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .itinerary {
    margin-top: 20px;
  }

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

  .image-card {
    height: 130px;
    display: none;
  }

  .image-card-item-2 {
    display: none;
  }

  .image-card-item3 {
    width: 110%;
    display: block;
    top: -46px;
  }

  .checkout-form {
    padding-top: 120px;
  }

  .travel-image-wrap {
    height: 160px;
  }

  .travel-content-wrapper {
    min-height: 160px;
  }

  .hot-tour-item {
    height: 700px;
  }

  .image-discont-home-2 {
    top: -14%;
    right: 0%;
  }

  .image-meet-our-guides {
    right: -8%;
  }

  .home-5-about-us-right-content {
    text-align: center;
    align-items: center;
  }

  .home-5-about-us-left-images {
    padding-left: 10px;
    padding-right: 10px;
  }

  .left-alignment-container {
    text-align: center;
  }

  .feature-item-tours {
    height: 200px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .image-discont-home-item-3 {
    top: -14%;
    right: 0%;
  }

  .home-19-mask-slider-wrap {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .home-19-slide {
    width: 330px;
  }

  .home-3-blog-collection, .home-2-video-wrapp, .video-home-3 {
    width: 100%;
  }

  .about-us-content-home-2 {
    margin-bottom: 15px;
  }

  .home-video-wrapper-item-2 {
    width: 100%;
    height: 330px;
  }

  .home-18-accordion-content-wrapper, .home-18-accordion-list-content {
    margin-left: 0;
  }

  .home-18-accordion-wrapper {
    padding-top: 0;
  }

  .home-agenda-tab-link, .home-agenda-tab-link.w--current {
    width: auto;
  }

  .home-agenda-accordion-item {
    margin-bottom: 0;
    padding-top: 20px;
    padding-right: 0;
  }

  .home-18-image-block {
    display: none;
  }

  .img-home-3 {
    top: -14%;
    right: 0%;
  }

  .image-discont-home-3 {
    top: -10%;
    right: 0%;
  }

  .footer-copyright-licensing {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .home-video-wrapper-item {
    width: 100%;
    height: 330px;
  }

  .field-label-subsribe {
    color: var(--g2v-white);
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .block-profile-img {
    width: 100px;
    height: auto;
    margin-right: 10px;
  }

  .testimonials1_client-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .icone-plateform-review {
    width: 30px;
    position: static;
  }

  .testimonials1_slide {
    width: 90%;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials1_client-line {
    display: none;
  }

  .testimonials1_content {
    padding: 1.25rem;
  }

  .section-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-19 {
    padding-bottom: 10px;
  }
}

#w-node-b85a340c-b7d4-4cc1-a064-0f1ad1ca4aeb-21fc9a36, #w-node-_0f1d500a-0143-374a-8966-58bc33193f2b-21fc9a36, #w-node-_069968d1-609d-ffc6-f81e-da8387500418-21fc9a36, #w-node-_7de331ad-7654-fd7d-0dcb-79041ec76e74-21fc9a36, #w-node-_99c98312-855b-9718-0bd5-51beade1bd3a-21fc9a36, #w-node-c0e6734a-e38e-9c6f-999b-5ef1c0bcf1b9-c0bcf173, #w-node-c0e6734a-e38e-9c6f-999b-5ef1c0bcf1ca-c0bcf173, #w-node-c0e6734a-e38e-9c6f-999b-5ef1c0bcf1db-c0bcf173 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7738e0bd-210e-f1e4-10c1-f2629c789340-88fc9a4e {
  justify-self: center;
}

#w-node-_9fe47650-173f-ee6e-2796-c17ee88d8e2a-e88d8e21, #w-node-_9fe47650-173f-ee6e-2796-c17ee88d8e32-e88d8e21, #w-node-_9fe47650-173f-ee6e-2796-c17ee88d8e3a-e88d8e21, #w-node-d77dc4a5-b497-0f07-61b4-a9ee920df915-e4fc9a5c, #w-node-_2e694576-bf6c-4c85-ce14-9cc25c8ee065-e4fc9a5c, #w-node-_610e15b9-b45c-b6e2-816c-eb999cf0f053-e4fc9a5c, #w-node-_56aa9928-639b-5566-ce3e-0ba813ce8873-0efc9a7e, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-29fc9aa7, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-29fc9aa7, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-29fc9aa7, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-29fc9aa7, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-29fc9aa7, #w-node-b830aba6-668b-37aa-0bf5-73d1943ff779-29fc9aa7, #w-node-c706860d-d724-fa4f-4e58-ef3866dde3c9-29fc9aa7, #w-node-_765cebc8-d929-9a20-3343-8bcb8e7c2632-29fc9aa7, #w-node-_70d76200-f6d2-c507-6028-3faffdd9788c-29fc9aa7, #w-node-dfccffe7-797c-e605-9bad-23173e66525c-c1fc9abe, #w-node-_26ce1b3c-1746-bd49-3c05-0f698bcf6a95-c1fc9abe, #w-node-_7951b648-eb09-6734-0c27-d8c64c53227e-c1fc9abe, #w-node-ba44132a-4689-445f-455c-b8ba6d433174-c1fc9abe, #w-node-_7614b8ad-7fc7-b5ca-edff-450a26b9a454-c1fc9abe, #w-node-_97f193f8-ec97-35b6-c3fe-ca884b5c83f4-c1fc9abe, #w-node-_200b9e62-1152-f206-6f67-ffc1f1ff9df1-c1fc9abe, #w-node-_4126be51-806b-a316-2a1c-bdc6491ea64f-c1fc9abe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7abfa6b3-40c4-1e83-ec00-5b406661e8ee-c1fc9abe {
  justify-self: center;
}

#w-node-_6a078d37-a03b-58b0-5746-bd390040e948-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-34fc9aef, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-34fc9aef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-b85a340c-b7d4-4cc1-a064-0f1ad1ca4aeb-21fc9a36 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_7de331ad-7654-fd7d-0dcb-79041ec76e74-21fc9a36 {
    grid-column: span 2 / span 2;
  }

  #w-node-afe9bb4e-82ae-2958-aa5c-82c29d88a312-0efc9a7e, #w-node-efd270f9-0119-da14-5ddb-b945783c84ad-0efc9a7e, #w-node-b42efe76-3123-4a65-4db0-56f11b5e872d-0efc9a7e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d1dbf15c-cabd-7bd7-274d-299cd6ef6ff0-4efc9b06, #w-node-f14b45f1-a1fe-de5f-6f82-5c40c3da6147-4efc9b06, #w-node-_7841c8be-94b9-b6a4-654c-709dd24668d2-4efc9b06, #w-node-fc0c3bbd-af15-79c5-ea28-7e6212f7c4bf-4efc9b06 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b42efe76-3123-4a65-4db0-56f11b5e872d-0efc9a7e, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc29-29fc9aa7, #w-node-_22c11afd-023c-6c02-e345-d10fd79eaa19-29fc9aa7, #w-node-_22eb58bf-2616-296b-7ab1-12874825134d-29fc9aa7, #w-node-d7287ff5-60c2-fdc1-9f3d-d8ccf9f5fc22-29fc9aa7, #w-node-_74645ee1-3ccd-a428-844a-73dffad8c98d-29fc9aa7, #w-node-_314ca1d5-a72e-1085-bf8e-b129bfea0e7d-29fc9aa7, #w-node-_53e37325-6cf0-0dd2-0b78-8888f819787e-29fc9aa7, #w-node-f0e19788-9099-39ab-b8fd-079cc3ad48cc-29fc9aa7, #w-node-ff7bc092-b3d6-63a9-4cf3-1e224fc37822-29fc9aa7, #w-node-_9a1620ce-95c7-6a9a-ec01-5c1822e0627d-29fc9aa7, #w-node-cd35bb33-e701-e7fe-737a-0f833fe152d3-29fc9aa7, #w-node-_0dcd0e89-601d-c39d-147e-51bb7a0408f4-29fc9aa7, #w-node-_3b93dc6a-54ee-6d91-fb32-c2e8467870f5-29fc9aa7, #w-node-_67f073b7-d1fc-0f4e-954c-70ee8739c63b-29fc9aa7, #w-node-_62251900-931d-b11f-e0e6-ed972eae04a5-29fc9aa7, #w-node-b687cb24-0887-b204-397b-ca7a6c6c51d6-29fc9aa7, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc39-29fc9aa7, #w-node-_21d1088a-36a3-9a6d-eecc-bcb3e7393bd5-29fc9aa7, #w-node-dff7df50-84bd-e9ec-6843-6857e5a4342d-29fc9aa7, #w-node-_9dbd50fc-2f32-066e-873b-33a046e67aae-29fc9aa7, #w-node-_81137a6f-9e91-10c0-6377-f2b780875b1e-29fc9aa7, #w-node-ddb202d9-c5c1-6b03-da03-a290bd9b9170-29fc9aa7, #w-node-cd5fe97f-a587-c75e-2201-0402c66577bc-29fc9aa7, #w-node-_73e482a4-5bcc-6fe4-d3a4-4487f85e3404-29fc9aa7, #w-node-_1c889af7-5479-9272-65a0-b36c994dad25-29fc9aa7, #w-node-_32637048-1c13-a2ad-08e3-4e5aeaa1d9a2-29fc9aa7, #w-node-afc8b41f-aef5-384b-1d4d-3d6c70c8a2c6-29fc9aa7, #w-node-df3fce0d-19ca-50ad-2882-bb0c4c9f2751-29fc9aa7, #w-node-_5c162f35-a97b-2dca-1e6d-d5428bab6b57-29fc9aa7, #w-node-_909e830f-d418-9d97-74be-8ce3202314cb-29fc9aa7, #w-node-_0c0dd1cc-78e5-ee87-7e16-15d295162cbd-29fc9aa7, #w-node-af7f800f-e8d2-3943-9e56-ac91e2137a82-29fc9aa7, #w-node-_58ab4807-1e38-c14a-9a0b-49fc2cc7cf27-29fc9aa7, #w-node-_81d968af-0a9c-e930-b2db-8dbc71700146-29fc9aa7, #w-node-_7afa59bd-1663-f68f-a86b-4a3856a7ee0a-29fc9aa7, #w-node-_882c12ac-91ac-ab15-4b39-071bc6d25634-29fc9aa7, #w-node-_7239d2db-3ff6-97cd-3531-27f9b9c6ea99-29fc9aa7, #w-node-aba5466b-6ffc-c4ff-1783-43a52705e2f9-29fc9aa7, #w-node-_0274fded-ddd4-6be6-73ea-27d752b016f2-29fc9aa7, #w-node-_051738a6-eff4-6243-45b4-8ca56453012c-29fc9aa7, #w-node-_637846b5-2023-3281-26a2-de89a29dc474-29fc9aa7, #w-node-_4771a904-687d-3980-b130-539b92d074c7-29fc9aa7, #w-node-d2d993b5-62e9-ceb5-287a-4e83802f289f-29fc9aa7, #w-node-_9210c52b-a107-ba66-7812-0d853b90acb3-29fc9aa7, #w-node-e32fb235-927d-0d60-1a85-5f48572c0c4b-29fc9aa7, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-29fc9aa7, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-29fc9aa7, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-29fc9aa7, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-29fc9aa7, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-29fc9aa7, #w-node-b830aba6-668b-37aa-0bf5-73d1943ff779-29fc9aa7, #w-node-c706860d-d724-fa4f-4e58-ef3866dde3c9-29fc9aa7, #w-node-_765cebc8-d929-9a20-3343-8bcb8e7c2632-29fc9aa7, #w-node-_70d76200-f6d2-c507-6028-3faffdd9788c-29fc9aa7, #w-node-_3fd5f60e-139a-98b4-e267-65377008ba5e-29fc9aa7, #w-node-_699ad192-1b39-830a-ffaf-aeab3e0b1067-29fc9aa7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fc0c3bbd-af15-79c5-ea28-7e6212f7c4bf-4efc9b06 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Belinda';
  src: url('../fonts/belinda.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}