@charset 'UTF-8';
@charset "UTF-8";
@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
-ms-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
-ms-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes wobble {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
-ms-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
-ms-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
-ms-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
-ms-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
-ms-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
-ms-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
-ms-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
-ms-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
-ms-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
-ms-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
-ms-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
-ms-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
-ms-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
-ms-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
-ms-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
-ms-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
-ms-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
-ms-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
-ms-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
-ms-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
-ms-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
-ms-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
 :root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.3333333333%}.col-2{flex:0 0 auto;width:16.6666666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.3333333333%}.col-5{flex:0 0 auto;width:41.6666666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.3333333333%}.col-8{flex:0 0 auto;width:66.6666666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.3333333333%}.col-11{flex:0 0 auto;width:91.6666666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.3333333333%}.col-sm-2{flex:0 0 auto;width:16.6666666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.3333333333%}.col-sm-5{flex:0 0 auto;width:41.6666666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.3333333333%}.col-sm-8{flex:0 0 auto;width:66.6666666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.3333333333%}.col-sm-11{flex:0 0 auto;width:91.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.3333333333%}.col-md-2{flex:0 0 auto;width:16.6666666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.3333333333%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.3333333333%}.col-md-11{flex:0 0 auto;width:91.6666666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.3333333333%}.col-lg-2{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-5{flex:0 0 auto;width:41.6666666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.3333333333%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-11{flex:0 0 auto;width:91.6666666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.3333333333%}.col-xl-2{flex:0 0 auto;width:16.6666666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.3333333333%}.col-xl-5{flex:0 0 auto;width:41.6666666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.3333333333%}.col-xl-8{flex:0 0 auto;width:66.6666666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.3333333333%}.col-xl-11{flex:0 0 auto;width:91.6666666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.3333333333%}.col-xxl-2{flex:0 0 auto;width:16.6666666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.3333333333%}.col-xxl-5{flex:0 0 auto;width:41.6666666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.3333333333%}.col-xxl-8{flex:0 0 auto;width:66.6666666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.3333333333%}.col-xxl-11{flex:0 0 auto;width:91.6666666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754;padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545;padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu{top:0;right:auto;left:100%}.dropend .dropdown-menu[data-bs-popper]{margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu{top:0;right:100%;left:auto}.dropstart .dropdown-menu[data-bs-popper]{margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:last-of-type{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid #d8d8d8;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1040;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.offcanvas-backdrop::before{position:fixed;top:0;left:0;z-index:1039;width:100vw;height:100vh;content:"";background-color:rgba(0,0,0,.5)}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}@font-face{font-family:boxicons;font-weight:400;font-style:normal;src:url(//asturguias.com/wp-content/themes/astrip/assets/fonts/boxicons.eot);src:url(//asturguias.com/wp-content/themes/astrip/assets/fonts/boxicons.eot) format('embedded-opentype'),url(//asturguias.com/wp-content/themes/astrip/assets/fonts/boxicons.woff2) format('woff2'),url(//asturguias.com/wp-content/themes/astrip/assets/fonts/boxicons.woff) format('woff'),url(//asturguias.com/wp-content/themes/astrip/assets/fonts/boxicons.ttf) format('truetype'),url(//asturguias.com/wp-content/themes/astrip/assets/fonts/boxicons.svg?#boxicons) format('svg')}.bx{font-family:boxicons!important;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;display:inline-block;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bx-ul{margin-left:2em;padding-left:0;list-style:none}.bx-ul>li{position:relative}.bx-ul .bx{font-size:inherit;line-height:inherit;position:absolute;left:-2em;width:2em;text-align:center}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@keyframes burst{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}}@-webkit-keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@keyframes flashing{0%{opacity:1}45%{opacity:0}90%{opacity:1}}@-webkit-keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@keyframes fade-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}}@-webkit-keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@keyframes fade-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}}@-webkit-keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@keyframes fade-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0}}@-webkit-keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@keyframes fade-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,10deg)}40%,60%,80%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,-10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,-10deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,10deg)}40%,60%,80%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bx-spin{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-spin-hover:hover{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.bx-tada{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-tada-hover:hover{-webkit-animation:tada 1.5s ease infinite;animation:tada 1.5s ease infinite}.bx-flashing{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-flashing-hover:hover{-webkit-animation:flashing 1.5s infinite linear;animation:flashing 1.5s infinite linear}.bx-burst{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-burst-hover:hover{-webkit-animation:burst 1.5s infinite linear;animation:burst 1.5s infinite linear}.bx-fade-up{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-up-hover:hover{-webkit-animation:fade-up 1.5s infinite linear;animation:fade-up 1.5s infinite linear}.bx-fade-down{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-down-hover:hover{-webkit-animation:fade-down 1.5s infinite linear;animation:fade-down 1.5s infinite linear}.bx-fade-left{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-left-hover:hover{-webkit-animation:fade-left 1.5s infinite linear;animation:fade-left 1.5s infinite linear}.bx-fade-right{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}.bx-fade-right-hover:hover{-webkit-animation:fade-right 1.5s infinite linear;animation:fade-right 1.5s infinite linear}.bx-xs{font-size:1rem!important}.bx-sm{font-size:1.55rem!important}.bx-md{font-size:2.25rem!important}.bx-lg{font-size:3rem!important}.bx-fw{font-size:1.2857142857em;line-height:.8em;width:1.2857142857em;height:.8em;margin-top:-.2em!important;vertical-align:middle}.bx-pull-left{float:left;margin-right:.3em!important}.bx-pull-right{float:right;margin-left:.3em!important}.bx-rotate-90{transform:rotate(90deg)}.bx-rotate-180{transform:rotate(180deg)}.bx-rotate-270{transform:rotate(270deg)}.bx-flip-horizontal{transform:scaleX(-1)}.bx-flip-vertical{transform:scaleY(-1)}.bx-border{padding:.25em;border:.07em solid rgba(0,0,0,.1);border-radius:.25em}.bx-border-circle{padding:.25em;border:.07em solid rgba(0,0,0,.1);border-radius:50%}.bxl-500px:before{content:"\e900"}.bxl-adobe:before{content:"\e901"}.bxl-airbnb:before{content:"\e902"}.bxl-algolia:before{content:"\e903"}.bxl-amazon:before{content:"\e904"}.bxl-android:before{content:"\e905"}.bxl-angular:before{content:"\e906"}.bxl-apple:before{content:"\e907"}.bxl-audible:before{content:"\e908"}.bxl-aws:before{content:"\e909"}.bxl-baidu:before{content:"\e90a"}.bxl-behance:before{content:"\e90b"}.bxl-bing:before{content:"\e90c"}.bxl-bitcoin:before{content:"\e90d"}.bxl-blender:before{content:"\e90e"}.bxl-blogger:before{content:"\e90f"}.bxl-bootstrap:before{content:"\e910"}.bxl-chrome:before{content:"\e911"}.bxl-codepen:before{content:"\e912"}.bxl-c-plus-plus:before{content:"\e913"}.bxl-creative-commons:before{content:"\e914"}.bxl-css3:before{content:"\e915"}.bxl-dAstripmotion:before{content:"\e916"}.bxl-deviantart:before{content:"\e917"}.bxl-dev-to:before{content:"\e918"}.bxl-digg:before{content:"\e919"}.bxl-digitalocean:before{content:"\e91a"}.bxl-discord:before{content:"\e91b"}.bxl-discord-alt:before{content:"\e91c"}.bxl-discourse:before{content:"\e91d"}.bxl-django:before{content:"\e91e"}.bxl-docker:before{content:"\e91f"}.bxl-dribbble:before{content:"\e920"}.bxl-dropbox:before{content:"\e921"}.bxl-drupal:before{content:"\e922"}.bxl-ebay:before{content:"\e923"}.bxl-edge:before{content:"\e924"}.bxl-etsy:before{content:"\e925"}.bxl-facebook:before{content:"\e926"}.bxl-facebook-circle:before{content:"\e927"}.bxl-facebook-square:before{content:"\e928"}.bxl-figma:before{content:"\e929"}.bxl-firebase:before{content:"\e92a"}.bxl-firefox:before{content:"\e92b"}.bxl-flickr:before{content:"\e92c"}.bxl-flickr-square:before{content:"\e92d"}.bxl-flutter:before{content:"\e92e"}.bxl-foursquare:before{content:"\e92f"}.bxl-git:before{content:"\e930"}.bxl-github:before{content:"\e931"}.bxl-gitlab:before{content:"\e932"}.bxl-google:before{content:"\e933"}.bxl-google-cloud:before{content:"\e934"}.bxl-google-plus:before{content:"\e935"}.bxl-google-plus-circle:before{content:"\e936"}.bxl-html5:before{content:"\e937"}.bxl-imdb:before{content:"\e938"}.bxl-instagram:before{content:"\e939"}.bxl-instagram-alt:before{content:"\e93a"}.bxl-internet-explorer:before{content:"\e93b"}.bxl-invision:before{content:"\e93c"}.bxl-javascript:before{content:"\e93d"}.bxl-joomla:before{content:"\e93e"}.bxl-jquery:before{content:"\e93f"}.bxl-jsfiddle:before{content:"\e940"}.bxl-kickstarter:before{content:"\e941"}.bxl-kubernetes:before{content:"\e942"}.bxl-less:before{content:"\e943"}.bxl-linkedin:before{content:"\e944"}.bxl-linkedin-square:before{content:"\e945"}.bxl-magento:before{content:"\e946"}.bxl-mailchimp:before{content:"\e947"}.bxl-markdown:before{content:"\e948"}.bxl-mastercard:before{content:"\e949"}.bxl-mastodon:before{content:"\e94a"}.bxl-medium:before{content:"\e94b"}.bxl-medium-old:before{content:"\e94c"}.bxl-medium-square:before{content:"\e94d"}.bxl-messenger:before{content:"\e94e"}.bxl-microsoft:before{content:"\e94f"}.bxl-microsoft-teams:before{content:"\e950"}.bxl-nodejs:before{content:"\e951"}.bxl-ok-ru:before{content:"\e952"}.bxl-opera:before{content:"\e953"}.bxl-patreon:before{content:"\e954"}.bxl-paypal:before{content:"\e955"}.bxl-periscope:before{content:"\e956"}.bxl-php:before{content:"\e957"}.bxl-pinterest:before{content:"\e958"}.bxl-pinterest-alt:before{content:"\e959"}.bxl-play-store:before{content:"\e95a"}.bxl-pocket:before{content:"\e95b"}.bxl-product-hunt:before{content:"\e95c"}.bxl-python:before{content:"\e95d"}.bxl-quora:before{content:"\e95e"}.bxl-react:before{content:"\e95f"}.bxl-redbubble:before{content:"\e960"}.bxl-reddit:before{content:"\e961"}.bxl-redux:before{content:"\e962"}.bxl-sass:before{content:"\e963"}.bxl-shopify:before{content:"\e964"}.bxl-sketch:before{content:"\e965"}.bxl-skype:before{content:"\e966"}.bxl-slack:before{content:"\e967"}.bxl-slack-old:before{content:"\e968"}.bxl-snapchat:before{content:"\e969"}.bxl-soundcloud:before{content:"\e96a"}.bxl-spotify:before{content:"\e96b"}.bxl-spring-boot:before{content:"\e96c"}.bxl-squarespace:before{content:"\e96d"}.bxl-stack-overflow:before{content:"\e96e"}.bxl-steam:before{content:"\e96f"}.bxl-stripe:before{content:"\e970"}.bxl-tailwind-css:before{content:"\e971"}.bxl-telegram:before{content:"\e972"}.bxl-tiktok:before{content:"\e973"}.bxl-trello:before{content:"\e974"}.bxl-trip-advisor:before{content:"\e975"}.bxl-tumblr:before{content:"\e976"}.bxl-tux:before{content:"\e977"}.bxl-twitch:before{content:"\e978"}.bxl-twitter:before{content:"\e979"}.bxl-unity:before{content:"\e97a"}.bxl-unsplash:before{content:"\e97b"}.bxl-vimeo:before{content:"\e97c"}.bxl-visa:before{content:"\e97d"}.bxl-visual-studio:before{content:"\e97e"}.bxl-vk:before{content:"\e97f"}.bxl-vuejs:before{content:"\e980"}.bxl-whatsapp:before{content:"\e981"}.bxl-whatsapp-square:before{content:"\e982"}.bxl-wikipedia:before{content:"\e983"}.bxl-windows:before{content:"\e984"}.bxl-wix:before{content:"\e985"}.bxl-wordpress:before{content:"\e986"}.bxl-yahoo:before{content:"\e987"}.bxl-yelp:before{content:"\e988"}.bxl-youtube:before{content:"\e989"}.bxl-zoom:before{content:"\e98a"}.bxs-add-to-queue:before{content:"\e98b"}.bxs-adjust:before{content:"\e98c"}.bxs-adjust-alt:before{content:"\e98d"}.bxs-alarm:before{content:"\e98e"}.bxs-alarm-add:before{content:"\e98f"}.bxs-alarm-exclamation:before{content:"\e990"}.bxs-alarm-off:before{content:"\e991"}.bxs-alarm-snooze:before{content:"\e992"}.bxs-album:before{content:"\e993"}.bxs-ambulance:before{content:"\e994"}.bxs-analyse:before{content:"\e995"}.bxs-angry:before{content:"\e996"}.bxs-arch:before{content:"\e997"}.bxs-archive:before{content:"\e998"}.bxs-archive-in:before{content:"\e999"}.bxs-archive-out:before{content:"\e99a"}.bxs-area:before{content:"\e99b"}.bxs-arrow-from-bottom:before{content:"\e99c"}.bxs-arrow-from-left:before{content:"\e99d"}.bxs-arrow-from-right:before{content:"\e99e"}.bxs-arrow-from-top:before{content:"\e99f"}.bxs-arrow-to-bottom:before{content:"\e9a0"}.bxs-arrow-to-left:before{content:"\e9a1"}.bxs-arrow-to-right:before{content:"\e9a2"}.bxs-arrow-to-top:before{content:"\e9a3"}.bxs-award:before{content:"\e9a4"}.bxs-baby-carriage:before{content:"\e9a5"}.bxs-backpack:before{content:"\e9a6"}.bxs-badge:before{content:"\e9a7"}.bxs-badge-check:before{content:"\e9a8"}.bxs-badge-dollar:before{content:"\e9a9"}.bxs-ball:before{content:"\e9aa"}.bxs-band-aid:before{content:"\e9ab"}.bxs-bank:before{content:"\e9ac"}.bxs-bar-chart-alt-2:before{content:"\e9ad"}.bxs-bar-chart-square:before{content:"\e9ae"}.bxs-barcode:before{content:"\e9af"}.bxs-baseball:before{content:"\e9b0"}.bxs-basket:before{content:"\e9b1"}.bxs-basketball:before{content:"\e9b2"}.bxs-bath:before{content:"\e9b3"}.bxs-battery:before{content:"\e9b4"}.bxs-battery-charging:before{content:"\e9b5"}.bxs-battery-full:before{content:"\e9b6"}.bxs-battery-low:before{content:"\e9b7"}.bxs-bed:before{content:"\e9b8"}.bxs-been-here:before{content:"\e9b9"}.bxs-beer:before{content:"\e9ba"}.bxs-bell:before{content:"\e9bb"}.bxs-bell-minus:before{content:"\e9bc"}.bxs-bell-off:before{content:"\e9bd"}.bxs-bell-plus:before{content:"\e9be"}.bxs-bell-ring:before{content:"\e9bf"}.bxs-bible:before{content:"\e9c0"}.bxs-binoculars:before{content:"\e9c1"}.bxs-blanket:before{content:"\e9c2"}.bxs-bolt:before{content:"\e9c3"}.bxs-bolt-circle:before{content:"\e9c4"}.bxs-bomb:before{content:"\e9c5"}.bxs-bone:before{content:"\e9c6"}.bxs-bong:before{content:"\e9c7"}.bxs-book:before{content:"\e9c8"}.bxs-book-add:before{content:"\e9c9"}.bxs-book-alt:before{content:"\e9ca"}.bxs-book-bookmark:before{content:"\e9cb"}.bxs-book-content:before{content:"\e9cc"}.bxs-book-heart:before{content:"\e9cd"}.bxs-bookmark:before{content:"\e9ce"}.bxs-bookmark-alt:before{content:"\e9cf"}.bxs-bookmark-alt-minus:before{content:"\e9d0"}.bxs-bookmark-alt-plus:before{content:"\e9d1"}.bxs-bookmark-heart:before{content:"\e9d2"}.bxs-bookmark-minus:before{content:"\e9d3"}.bxs-bookmark-plus:before{content:"\e9d4"}.bxs-bookmarks:before{content:"\e9d5"}.bxs-bookmark-star:before{content:"\e9d6"}.bxs-book-open:before{content:"\e9d7"}.bxs-book-reader:before{content:"\e9d8"}.bxs-bot:before{content:"\e9d9"}.bxs-bowling-ball:before{content:"\e9da"}.bxs-box:before{content:"\e9db"}.bxs-brain:before{content:"\e9dc"}.bxs-briefcase:before{content:"\e9dd"}.bxs-briefcase-alt:before{content:"\e9de"}.bxs-briefcase-alt-2:before{content:"\e9df"}.bxs-brightness:before{content:"\e9e0"}.bxs-brightness-half:before{content:"\e9e1"}.bxs-brush:before{content:"\e9e2"}.bxs-brush-alt:before{content:"\e9e3"}.bxs-bug:before{content:"\e9e4"}.bxs-bug-alt:before{content:"\e9e5"}.bxs-building:before{content:"\e9e6"}.bxs-building-house:before{content:"\e9e7"}.bxs-buildings:before{content:"\e9e8"}.bxs-bulb:before{content:"\e9e9"}.bxs-bullseye:before{content:"\e9ea"}.bxs-buoy:before{content:"\e9eb"}.bxs-bus:before{content:"\e9ec"}.bxs-business:before{content:"\e9ed"}.bxs-bus-school:before{content:"\e9ee"}.bxs-cabinet:before{content:"\e9ef"}.bxs-cake:before{content:"\e9f0"}.bxs-calculator:before{content:"\e9f1"}.bxs-calendar:before{content:"\e9f2"}.bxs-calendar-alt:before{content:"\e9f3"}.bxs-calendar-check:before{content:"\e9f4"}.bxs-calendar-edit:before{content:"\e9f5"}.bxs-calendar-event:before{content:"\e9f6"}.bxs-calendar-exclamation:before{content:"\e9f7"}.bxs-calendar-heart:before{content:"\e9f8"}.bxs-calendar-minus:before{content:"\e9f9"}.bxs-calendar-plus:before{content:"\e9fa"}.bxs-calendar-star:before{content:"\e9fb"}.bxs-calendar-week:before{content:"\e9fc"}.bxs-calendar-x:before{content:"\e9fd"}.bxs-camera:before{content:"\e9fe"}.bxs-camera-home:before{content:"\e9ff"}.bxs-camera-movie:before{content:"\ea00"}.bxs-camera-off:before{content:"\ea01"}.bxs-camera-plus:before{content:"\ea02"}.bxs-capsule:before{content:"\ea03"}.bxs-captions:before{content:"\ea04"}.bxs-car:before{content:"\ea05"}.bxs-car-battery:before{content:"\ea06"}.bxs-car-crash:before{content:"\ea07"}.bxs-card:before{content:"\ea08"}.bxs-caret-down-circle:before{content:"\ea09"}.bxs-caret-down-square:before{content:"\ea0a"}.bxs-caret-left-circle:before{content:"\ea0b"}.bxs-caret-left-square:before{content:"\ea0c"}.bxs-caret-right-circle:before{content:"\ea0d"}.bxs-caret-right-square:before{content:"\ea0e"}.bxs-caret-up-circle:before{content:"\ea0f"}.bxs-caret-up-square:before{content:"\ea10"}.bxs-car-garage:before{content:"\ea11"}.bxs-car-mechanic:before{content:"\ea12"}.bxs-carousel:before{content:"\ea13"}.bxs-cart:before{content:"\ea14"}.bxs-cart-add:before{content:"\ea15"}.bxs-cart-alt:before{content:"\ea16"}.bxs-cart-download:before{content:"\ea17"}.bxs-car-wash:before{content:"\ea18"}.bxs-category:before{content:"\ea19"}.bxs-category-alt:before{content:"\ea1a"}.bxs-cctv:before{content:"\ea1b"}.bxs-certification:before{content:"\ea1c"}.bxs-chalkboard:before{content:"\ea1d"}.bxs-chart:before{content:"\ea1e"}.bxs-chat:before{content:"\ea1f"}.bxs-checkbox:before{content:"\ea20"}.bxs-checkbox-checked:before{content:"\ea21"}.bxs-checkbox-minus:before{content:"\ea22"}.bxs-check-circle:before{content:"\ea23"}.bxs-check-shield:before{content:"\ea24"}.bxs-check-square:before{content:"\ea25"}.bxs-chess:before{content:"\ea26"}.bxs-chevron-down:before{content:"\ea27"}.bxs-chevron-down-circle:before{content:"\ea28"}.bxs-chevron-down-square:before{content:"\ea29"}.bxs-chevron-left:before{content:"\ea2a"}.bxs-chevron-left-circle:before{content:"\ea2b"}.bxs-chevron-left-square:before{content:"\ea2c"}.bxs-chevron-right:before{content:"\ea2d"}.bxs-chevron-right-circle:before{content:"\ea2e"}.bxs-chevron-right-square:before{content:"\ea2f"}.bxs-chevrons-down:before{content:"\ea30"}.bxs-chevrons-left:before{content:"\ea31"}.bxs-chevrons-right:before{content:"\ea32"}.bxs-chevrons-up:before{content:"\ea33"}.bxs-chevron-up:before{content:"\ea34"}.bxs-chevron-up-circle:before{content:"\ea35"}.bxs-chevron-up-square:before{content:"\ea36"}.bxs-chip:before{content:"\ea37"}.bxs-church:before{content:"\ea38"}.bxs-circle:before{content:"\ea39"}.bxs-city:before{content:"\ea3a"}.bxs-clinic:before{content:"\ea3b"}.bxs-cloud:before{content:"\ea3c"}.bxs-cloud-download:before{content:"\ea3d"}.bxs-cloud-lightning:before{content:"\ea3e"}.bxs-cloud-rain:before{content:"\ea3f"}.bxs-cloud-upload:before{content:"\ea40"}.bxs-coffee:before{content:"\ea41"}.bxs-coffee-alt:before{content:"\ea42"}.bxs-coffee-togo:before{content:"\ea43"}.bxs-cog:before{content:"\ea44"}.bxs-coin:before{content:"\ea45"}.bxs-coin-stack:before{content:"\ea46"}.bxs-collection:before{content:"\ea47"}.bxs-color-fill:before{content:"\ea48"}.bxs-comment:before{content:"\ea49"}.bxs-comment-add:before{content:"\ea4a"}.bxs-comment-check:before{content:"\ea4b"}.bxs-comment-detail:before{content:"\ea4c"}.bxs-comment-dots:before{content:"\ea4d"}.bxs-comment-edit:before{content:"\ea4e"}.bxs-comment-error:before{content:"\ea4f"}.bxs-comment-minus:before{content:"\ea50"}.bxs-comment-x:before{content:"\ea51"}.bxs-compass:before{content:"\ea52"}.bxs-component:before{content:"\ea53"}.bxs-confused:before{content:"\ea54"}.bxs-contact:before{content:"\ea55"}.bxs-conversation:before{content:"\ea56"}.bxs-cookie:before{content:"\ea57"}.bxs-cool:before{content:"\ea58"}.bxs-copy:before{content:"\ea59"}.bxs-copy-alt:before{content:"\ea5a"}.bxs-copyright:before{content:"\ea5b"}.bxs-coupon:before{content:"\ea5c"}.bxs-credit-card:before{content:"\ea5d"}.bxs-credit-card-alt:before{content:"\ea5e"}.bxs-credit-card-front:before{content:"\ea5f"}.bxs-crop:before{content:"\ea60"}.bxs-crown:before{content:"\ea61"}.bxs-cube:before{content:"\ea62"}.bxs-cube-alt:before{content:"\ea63"}.bxs-cuboid:before{content:"\ea64"}.bxs-customize:before{content:"\ea65"}.bxs-cylinder:before{content:"\ea66"}.bxs-dashboard:before{content:"\ea67"}.bxs-data:before{content:"\ea68"}.bxs-detail:before{content:"\ea69"}.bxs-devices:before{content:"\ea6a"}.bxs-diamond:before{content:"\ea6b"}.bxs-dice-1:before{content:"\ea6c"}.bxs-dice-2:before{content:"\ea6d"}.bxs-dice-3:before{content:"\ea6e"}.bxs-dice-4:before{content:"\ea6f"}.bxs-dice-5:before{content:"\ea70"}.bxs-dice-6:before{content:"\ea71"}.bxs-direction-left:before{content:"\ea72"}.bxs-direction-right:before{content:"\ea73"}.bxs-directions:before{content:"\ea74"}.bxs-disc:before{content:"\ea75"}.bxs-discount:before{content:"\ea76"}.bxs-dish:before{content:"\ea77"}.bxs-dislike:before{content:"\ea78"}.bxs-dizzy:before{content:"\ea79"}.bxs-dock-bottom:before{content:"\ea7a"}.bxs-dock-left:before{content:"\ea7b"}.bxs-dock-right:before{content:"\ea7c"}.bxs-dock-top:before{content:"\ea7d"}.bxs-dollar-circle:before{content:"\ea7e"}.bxs-donate-blood:before{content:"\ea7f"}.bxs-donate-heart:before{content:"\ea80"}.bxs-door-open:before{content:"\ea81"}.bxs-doughnut-chart:before{content:"\ea82"}.bxs-down-arrow:before{content:"\ea83"}.bxs-down-arrow-alt:before{content:"\ea84"}.bxs-down-arrow-circle:before{content:"\ea85"}.bxs-down-arrow-square:before{content:"\ea86"}.bxs-download:before{content:"\ea87"}.bxs-downvote:before{content:"\ea88"}.bxs-drink:before{content:"\ea89"}.bxs-droplet:before{content:"\ea8a"}.bxs-droplet-half:before{content:"\ea8b"}.bxs-dryer:before{content:"\ea8c"}.bxs-duplicate:before{content:"\ea8d"}.bxs-edit:before{content:"\ea8e"}.bxs-edit-alt:before{content:"\ea8f"}.bxs-edit-location:before{content:"\ea90"}.bxs-eject:before{content:"\ea91"}.bxs-envelope:before{content:"\ea92"}.bxs-envelope-open:before{content:"\ea93"}.bxs-eraser:before{content:"\ea94"}.bxs-error:before{content:"\ea95"}.bxs-error-alt:before{content:"\ea96"}.bxs-error-circle:before{content:"\ea97"}.bxs-ev-station:before{content:"\ea98"}.bxs-exit:before{content:"\ea99"}.bxs-extension:before{content:"\ea9a"}.bxs-eyedropper:before{content:"\ea9b"}.bxs-face:before{content:"\ea9c"}.bxs-face-mask:before{content:"\ea9d"}.bxs-factory:before{content:"\ea9e"}.bxs-fast-forward-circle:before{content:"\ea9f"}.bxs-file:before{content:"\eaa0"}.bxs-file-archive:before{content:"\eaa1"}.bxs-file-blank:before{content:"\eaa2"}.bxs-file-css:before{content:"\eaa3"}.bxs-file-doc:before{content:"\eaa4"}.bxs-file-export:before{content:"\eaa5"}.bxs-file-find:before{content:"\eaa6"}.bxs-file-gif:before{content:"\eaa7"}.bxs-file-html:before{content:"\eaa8"}.bxs-file-image:before{content:"\eaa9"}.bxs-file-import:before{content:"\eaaa"}.bxs-file-jpg:before{content:"\eaab"}.bxs-file-js:before{content:"\eaac"}.bxs-file-json:before{content:"\eaad"}.bxs-file-md:before{content:"\eaae"}.bxs-file-pdf:before{content:"\eaaf"}.bxs-file-plus:before{content:"\eab0"}.bxs-file-png:before{content:"\eab1"}.bxs-file-txt:before{content:"\eab2"}.bxs-film:before{content:"\eab3"}.bxs-filter-alt:before{content:"\eab4"}.bxs-first-aid:before{content:"\eab5"}.bxs-flag:before{content:"\eab6"}.bxs-flag-alt:before{content:"\eab7"}.bxs-flag-checkered:before{content:"\eab8"}.bxs-flame:before{content:"\eab9"}.bxs-flask:before{content:"\eaba"}.bxs-florist:before{content:"\eabb"}.bxs-folder:before{content:"\eabc"}.bxs-folder-minus:before{content:"\eabd"}.bxs-folder-open:before{content:"\eabe"}.bxs-folder-plus:before{content:"\eabf"}.bxs-food-menu:before{content:"\eac0"}.bxs-fridge:before{content:"\eac1"}.bxs-game:before{content:"\eac2"}.bxs-gas-pump:before{content:"\eac3"}.bxs-ghost:before{content:"\eac4"}.bxs-gift:before{content:"\eac5"}.bxs-graduation:before{content:"\eac6"}.bxs-grid:before{content:"\eac7"}.bxs-grid-alt:before{content:"\eac8"}.bxs-group:before{content:"\eac9"}.bxs-guitar-amp:before{content:"\eaca"}.bxs-hand:before{content:"\eacb"}.bxs-hand-down:before{content:"\eacc"}.bxs-hand-left:before{content:"\eacd"}.bxs-hand-right:before{content:"\eace"}.bxs-hand-up:before{content:"\eacf"}.bxs-happy:before{content:"\ead0"}.bxs-happy-alt:before{content:"\ead1"}.bxs-happy-beaming:before{content:"\ead2"}.bxs-happy-heart-eyes:before{content:"\ead3"}.bxs-hdd:before{content:"\ead4"}.bxs-heart:before{content:"\ead5"}.bxs-heart-circle:before{content:"\ead6"}.bxs-heart-square:before{content:"\ead7"}.bxs-help-circle:before{content:"\ead8"}.bxs-hide:before{content:"\ead9"}.bxs-home:before{content:"\eada"}.bxs-home-circle:before{content:"\eadb"}.bxs-home-heart:before{content:"\eadc"}.bxs-home-smile:before{content:"\eadd"}.bxs-hot:before{content:"\eade"}.bxs-hotel:before{content:"\eadf"}.bxs-hourglass:before{content:"\eae0"}.bxs-hourglass-bottom:before{content:"\eae1"}.bxs-hourglass-top:before{content:"\eae2"}.bxs-id-card:before{content:"\eae3"}.bxs-image:before{content:"\eae4"}.bxs-image-add:before{content:"\eae5"}.bxs-image-alt:before{content:"\eae6"}.bxs-inbox:before{content:"\eae7"}.bxs-info-circle:before{content:"\eae8"}.bxs-info-square:before{content:"\eae9"}.bxs-institution:before{content:"\eaea"}.bxs-joystick:before{content:"\eaeb"}.bxs-joystick-alt:before{content:"\eaec"}.bxs-joystick-button:before{content:"\eaed"}.bxs-key:before{content:"\eaee"}.bxs-keyboard:before{content:"\eaef"}.bxs-label:before{content:"\eaf0"}.bxs-landmark:before{content:"\eaf1"}.bxs-landscape:before{content:"\eaf2"}.bxs-laugh:before{content:"\eaf3"}.bxs-layer:before{content:"\eaf4"}.bxs-layer-minus:before{content:"\eaf5"}.bxs-layer-plus:before{content:"\eaf6"}.bxs-layout:before{content:"\eaf7"}.bxs-left-arrow:before{content:"\eaf8"}.bxs-left-arrow-alt:before{content:"\eaf9"}.bxs-left-arrow-circle:before{content:"\eafa"}.bxs-left-arrow-square:before{content:"\eafb"}.bxs-left-down-arrow-circle:before{content:"\eafc"}.bxs-left-top-arrow-circle:before{content:"\eafd"}.bxs-like:before{content:"\eafe"}.bxs-location-plus:before{content:"\eaff"}.bxs-lock:before{content:"\eb00"}.bxs-lock-alt:before{content:"\eb01"}.bxs-lock-open:before{content:"\eb02"}.bxs-lock-open-alt:before{content:"\eb03"}.bxs-log-in:before{content:"\eb04"}.bxs-log-in-circle:before{content:"\eb05"}.bxs-log-out:before{content:"\eb06"}.bxs-log-out-circle:before{content:"\eb07"}.bxs-low-vision:before{content:"\eb08"}.bxs-magic-wand:before{content:"\eb09"}.bxs-magnet:before{content:"\eb0a"}.bxs-map:before{content:"\eb0b"}.bxs-map-alt:before{content:"\eb0c"}.bxs-map-pin:before{content:"\eb0d"}.bxs-mask:before{content:"\eb0e"}.bxs-medal:before{content:"\eb0f"}.bxs-megaphone:before{content:"\eb10"}.bxs-meh:before{content:"\eb11"}.bxs-meh-alt:before{content:"\eb12"}.bxs-meh-blank:before{content:"\eb13"}.bxs-memory-card:before{content:"\eb14"}.bxs-message:before{content:"\eb15"}.bxs-message-add:before{content:"\eb16"}.bxs-message-alt:before{content:"\eb17"}.bxs-message-alt-add:before{content:"\eb18"}.bxs-message-alt-check:before{content:"\eb19"}.bxs-message-alt-detail:before{content:"\eb1a"}.bxs-message-alt-dots:before{content:"\eb1b"}.bxs-message-alt-edit:before{content:"\eb1c"}.bxs-message-alt-error:before{content:"\eb1d"}.bxs-message-alt-minus:before{content:"\eb1e"}.bxs-message-alt-x:before{content:"\eb1f"}.bxs-message-check:before{content:"\eb20"}.bxs-message-detail:before{content:"\eb21"}.bxs-message-dots:before{content:"\eb22"}.bxs-message-edit:before{content:"\eb23"}.bxs-message-error:before{content:"\eb24"}.bxs-message-minus:before{content:"\eb25"}.bxs-message-rounded:before{content:"\eb26"}.bxs-message-rounded-add:before{content:"\eb27"}.bxs-message-rounded-check:before{content:"\eb28"}.bxs-message-rounded-detail:before{content:"\eb29"}.bxs-message-rounded-dots:before{content:"\eb2a"}.bxs-message-rounded-edit:before{content:"\eb2b"}.bxs-message-rounded-error:before{content:"\eb2c"}.bxs-message-rounded-minus:before{content:"\eb2d"}.bxs-message-rounded-x:before{content:"\eb2e"}.bxs-message-square:before{content:"\eb2f"}.bxs-message-square-add:before{content:"\eb30"}.bxs-message-square-check:before{content:"\eb31"}.bxs-message-square-detail:before{content:"\eb32"}.bxs-message-square-dots:before{content:"\eb33"}.bxs-message-square-edit:before{content:"\eb34"}.bxs-message-square-error:before{content:"\eb35"}.bxs-message-square-minus:before{content:"\eb36"}.bxs-message-square-x:before{content:"\eb37"}.bxs-message-x:before{content:"\eb38"}.bxs-meteor:before{content:"\eb39"}.bxs-microchip:before{content:"\eb3a"}.bxs-microphone:before{content:"\eb3b"}.bxs-microphone-alt:before{content:"\eb3c"}.bxs-microphone-off:before{content:"\eb3d"}.bxs-minus-circle:before{content:"\eb3e"}.bxs-minus-square:before{content:"\eb3f"}.bxs-mobile:before{content:"\eb40"}.bxs-mobile-vibration:before{content:"\eb41"}.bxs-moon:before{content:"\eb42"}.bxs-mouse:before{content:"\eb43"}.bxs-mouse-alt:before{content:"\eb44"}.bxs-movie:before{content:"\eb45"}.bxs-movie-play:before{content:"\eb46"}.bxs-music:before{content:"\eb47"}.bxs-navigation:before{content:"\eb48"}.bxs-network-chart:before{content:"\eb49"}.bxs-news:before{content:"\eb4a"}.bxs-no-entry:before{content:"\eb4b"}.bxs-note:before{content:"\eb4c"}.bxs-notepad:before{content:"\eb4d"}.bxs-notification:before{content:"\eb4e"}.bxs-notification-off:before{content:"\eb4f"}.bxs-offer:before{content:"\eb50"}.bxs-package:before{content:"\eb51"}.bxs-paint:before{content:"\eb52"}.bxs-paint-roll:before{content:"\eb53"}.bxs-palette:before{content:"\eb54"}.bxs-paper-plane:before{content:"\eb55"}.bxs-parking:before{content:"\eb56"}.bxs-paste:before{content:"\eb57"}.bxs-pen:before{content:"\eb58"}.bxs-pencil:before{content:"\eb59"}.bxs-phone:before{content:"\eb5a"}.bxs-phone-call:before{content:"\eb5b"}.bxs-phone-incoming:before{content:"\eb5c"}.bxs-phone-off:before{content:"\eb5d"}.bxs-phone-outgoing:before{content:"\eb5e"}.bxs-photo-album:before{content:"\eb5f"}.bxs-piano:before{content:"\eb60"}.bxs-pie-chart:before{content:"\eb61"}.bxs-pie-chart-alt:before{content:"\eb62"}.bxs-pie-chart-alt-2:before{content:"\eb63"}.bxs-pin:before{content:"\eb64"}.bxs-pizza:before{content:"\eb65"}.bxs-plane:before{content:"\eb66"}.bxs-plane-alt:before{content:"\eb67"}.bxs-plane-land:before{content:"\eb68"}.bxs-planet:before{content:"\eb69"}.bxs-plane-take-off:before{content:"\eb6a"}.bxs-playlist:before{content:"\eb6b"}.bxs-plug:before{content:"\eb6c"}.bxs-plus-circle:before{content:"\eb6d"}.bxs-plus-square:before{content:"\eb6e"}.bxs-pointer:before{content:"\eb6f"}.bxs-polygon:before{content:"\eb70"}.bxs-printer:before{content:"\eb71"}.bxs-purchase-tag:before{content:"\eb72"}.bxs-purchase-tag-alt:before{content:"\eb73"}.bxs-pyramid:before{content:"\eb74"}.bxs-quote-alt-left:before{content:"\eb75"}.bxs-quote-alt-right:before{content:"\eb76"}.bxs-quote-left:before{content:"\eb77"}.bxs-quote-right:before{content:"\eb78"}.bxs-quote-single-left:before{content:"\eb79"}.bxs-quote-single-right:before{content:"\eb7a"}.bxs-radiation:before{content:"\eb7b"}.bxs-radio:before{content:"\eb7c"}.bxs-receipt:before{content:"\eb7d"}.bxs-rectangle:before{content:"\eb7e"}.bxs-registered:before{content:"\eb7f"}.bxs-rename:before{content:"\eb80"}.bxs-report:before{content:"\eb81"}.bxs-rewind-circle:before{content:"\eb82"}.bxs-right-arrow:before{content:"\eb83"}.bxs-right-arrow-alt:before{content:"\eb84"}.bxs-right-arrow-circle:before{content:"\eb85"}.bxs-right-arrow-square:before{content:"\eb86"}.bxs-right-down-arrow-circle:before{content:"\eb87"}.bxs-right-top-arrow-circle:before{content:"\eb88"}.bxs-rocket:before{content:"\eb89"}.bxs-ruler:before{content:"\eb8a"}.bxs-sad:before{content:"\eb8b"}.bxs-save:before{content:"\eb8c"}.bxs-school:before{content:"\eb8d"}.bxs-search:before{content:"\eb8e"}.bxs-search-alt-2:before{content:"\eb8f"}.bxs-select-multiple:before{content:"\eb90"}.bxs-send:before{content:"\eb91"}.bxs-server:before{content:"\eb92"}.bxs-shapes:before{content:"\eb93"}.bxs-share:before{content:"\eb94"}.bxs-share-alt:before{content:"\eb95"}.bxs-shield:before{content:"\eb96"}.bxs-shield-alt-2:before{content:"\eb97"}.bxs-shield-x:before{content:"\eb98"}.bxs-ship:before{content:"\eb99"}.bxs-shocked:before{content:"\eb9a"}.bxs-shopping-bag:before{content:"\eb9b"}.bxs-shopping-bag-alt:before{content:"\eb9c"}.bxs-shopping-bags:before{content:"\eb9d"}.bxs-show:before{content:"\eb9e"}.bxs-skip-next-circle:before{content:"\eb9f"}.bxs-skip-previous-circle:before{content:"\eba0"}.bxs-skull:before{content:"\eba1"}.bxs-sleepy:before{content:"\eba2"}.bxs-slideshow:before{content:"\eba3"}.bxs-smile:before{content:"\eba4"}.bxs-sort-alt:before{content:"\eba5"}.bxs-spa:before{content:"\eba6"}.bxs-speaker:before{content:"\eba7"}.bxs-spray-can:before{content:"\eba8"}.bxs-spreadsheet:before{content:"\eba9"}.bxs-square:before{content:"\ebaa"}.bxs-square-rounded:before{content:"\ebab"}.bxs-star:before{content:"\ebac"}.bxs-star-half:before{content:"\ebad"}.bxs-sticker:before{content:"\ebae"}.bxs-stopwatch:before{content:"\ebaf"}.bxs-store:before{content:"\ebb0"}.bxs-store-alt:before{content:"\ebb1"}.bxs-sun:before{content:"\ebb2"}.bxs-tachometer:before{content:"\ebb3"}.bxs-tag:before{content:"\ebb4"}.bxs-tag-alt:before{content:"\ebb5"}.bxs-tag-x:before{content:"\ebb6"}.bxs-taxi:before{content:"\ebb7"}.bxs-tennis-ball:before{content:"\ebb8"}.bxs-terminal:before{content:"\ebb9"}.bxs-thermometer:before{content:"\ebba"}.bxs-time:before{content:"\ebbb"}.bxs-time-five:before{content:"\ebbc"}.bxs-timer:before{content:"\ebbd"}.bxs-tired:before{content:"\ebbe"}.bxs-toggle-left:before{content:"\ebbf"}.bxs-toggle-right:before{content:"\ebc0"}.bxs-tone:before{content:"\ebc1"}.bxs-torch:before{content:"\ebc2"}.bxs-to-top:before{content:"\ebc3"}.bxs-traffic:before{content:"\ebc4"}.bxs-traffic-barrier:before{content:"\ebc5"}.bxs-traffic-cone:before{content:"\ebc6"}.bxs-train:before{content:"\ebc7"}.bxs-trash:before{content:"\ebc8"}.bxs-trash-alt:before{content:"\ebc9"}.bxs-tree:before{content:"\ebca"}.bxs-trophy:before{content:"\ebcb"}.bxs-truck:before{content:"\ebcc"}.bxs-t-shirt:before{content:"\ebcd"}.bxs-tv:before{content:"\ebce"}.bxs-up-arrow:before{content:"\ebcf"}.bxs-up-arrow-alt:before{content:"\ebd0"}.bxs-up-arrow-circle:before{content:"\ebd1"}.bxs-up-arrow-square:before{content:"\ebd2"}.bxs-upside-down:before{content:"\ebd3"}.bxs-upvote:before{content:"\ebd4"}.bxs-user:before{content:"\ebd5"}.bxs-user-account:before{content:"\ebd6"}.bxs-user-badge:before{content:"\ebd7"}.bxs-user-check:before{content:"\ebd8"}.bxs-user-circle:before{content:"\ebd9"}.bxs-user-detail:before{content:"\ebda"}.bxs-user-minus:before{content:"\ebdb"}.bxs-user-pin:before{content:"\ebdc"}.bxs-user-plus:before{content:"\ebdd"}.bxs-user-rectangle:before{content:"\ebde"}.bxs-user-voice:before{content:"\ebdf"}.bxs-user-x:before{content:"\ebe0"}.bxs-vector:before{content:"\ebe1"}.bxs-vial:before{content:"\ebe2"}.bxs-video:before{content:"\ebe3"}.bxs-video-off:before{content:"\ebe4"}.bxs-video-plus:before{content:"\ebe5"}.bxs-video-recording:before{content:"\ebe6"}.bxs-videos:before{content:"\ebe7"}.bxs-virus:before{content:"\ebe8"}.bxs-virus-block:before{content:"\ebe9"}.bxs-volume:before{content:"\ebea"}.bxs-volume-full:before{content:"\ebeb"}.bxs-volume-low:before{content:"\ebec"}.bxs-volume-mute:before{content:"\ebed"}.bxs-wallet:before{content:"\ebee"}.bxs-wallet-alt:before{content:"\ebef"}.bxs-washer:before{content:"\ebf0"}.bxs-watch:before{content:"\ebf1"}.bxs-watch-alt:before{content:"\ebf2"}.bxs-webcam:before{content:"\ebf3"}.bxs-widget:before{content:"\ebf4"}.bxs-window-alt:before{content:"\ebf5"}.bxs-wine:before{content:"\ebf6"}.bxs-wink-smile:before{content:"\ebf7"}.bxs-wink-tongue:before{content:"\ebf8"}.bxs-wrench:before{content:"\ebf9"}.bxs-x-circle:before{content:"\ebfa"}.bxs-x-square:before{content:"\ebfb"}.bxs-yin-yang:before{content:"\ebfc"}.bxs-zap:before{content:"\ebfd"}.bxs-zoom-in:before{content:"\ebfe"}.bxs-zoom-out:before{content:"\ebff"}.bx-abacus:before{content:"\ec00"}.bx-accessibility:before{content:"\ec01"}.bx-add-to-queue:before{content:"\ec02"}.bx-adjust:before{content:"\ec03"}.bx-alarm:before{content:"\ec04"}.bx-alarm-add:before{content:"\ec05"}.bx-alarm-exclamation:before{content:"\ec06"}.bx-alarm-off:before{content:"\ec07"}.bx-alarm-snooze:before{content:"\ec08"}.bx-album:before{content:"\ec09"}.bx-align-justify:before{content:"\ec0a"}.bx-align-left:before{content:"\ec0b"}.bx-align-middle:before{content:"\ec0c"}.bx-align-right:before{content:"\ec0d"}.bx-analyse:before{content:"\ec0e"}.bx-anchor:before{content:"\ec0f"}.bx-angry:before{content:"\ec10"}.bx-aperture:before{content:"\ec11"}.bx-arch:before{content:"\ec12"}.bx-archive:before{content:"\ec13"}.bx-archive-in:before{content:"\ec14"}.bx-archive-out:before{content:"\ec15"}.bx-area:before{content:"\ec16"}.bx-arrow-back:before{content:"\ec17"}.bx-arrow-from-bottom:before{content:"\ec18"}.bx-arrow-from-left:before{content:"\ec19"}.bx-arrow-from-right:before{content:"\ec1a"}.bx-arrow-from-top:before{content:"\ec1b"}.bx-arrow-to-bottom:before{content:"\ec1c"}.bx-arrow-to-left:before{content:"\ec1d"}.bx-arrow-to-right:before{content:"\ec1e"}.bx-arrow-to-top:before{content:"\ec1f"}.bx-at:before{content:"\ec20"}.bx-atom:before{content:"\ec21"}.bx-award:before{content:"\ec22"}.bx-badge:before{content:"\ec23"}.bx-badge-check:before{content:"\ec24"}.bx-ball:before{content:"\ec25"}.bx-band-aid:before{content:"\ec26"}.bx-bar-chart:before{content:"\ec27"}.bx-bar-chart-alt:before{content:"\ec28"}.bx-bar-chart-alt-2:before{content:"\ec29"}.bx-bar-chart-square:before{content:"\ec2a"}.bx-barcode:before{content:"\ec2b"}.bx-barcode-reader:before{content:"\ec2c"}.bx-baseball:before{content:"\ec2d"}.bx-basket:before{content:"\ec2e"}.bx-basketball:before{content:"\ec2f"}.bx-bath:before{content:"\ec30"}.bx-battery:before{content:"\ec31"}.bx-bed:before{content:"\ec32"}.bx-been-here:before{content:"\ec33"}.bx-beer:before{content:"\ec34"}.bx-bell:before{content:"\ec35"}.bx-bell-minus:before{content:"\ec36"}.bx-bell-off:before{content:"\ec37"}.bx-bell-plus:before{content:"\ec38"}.bx-bible:before{content:"\ec39"}.bx-bitcoin:before{content:"\ec3a"}.bx-blanket:before{content:"\ec3b"}.bx-block:before{content:"\ec3c"}.bx-bluetooth:before{content:"\ec3d"}.bx-body:before{content:"\ec3e"}.bx-bold:before{content:"\ec3f"}.bx-bolt-circle:before{content:"\ec40"}.bx-bomb:before{content:"\ec41"}.bx-bone:before{content:"\ec42"}.bx-bong:before{content:"\ec43"}.bx-book:before{content:"\ec44"}.bx-book-add:before{content:"\ec45"}.bx-book-alt:before{content:"\ec46"}.bx-book-bookmark:before{content:"\ec47"}.bx-book-content:before{content:"\ec48"}.bx-book-heart:before{content:"\ec49"}.bx-bookmark:before{content:"\ec4a"}.bx-bookmark-alt:before{content:"\ec4b"}.bx-bookmark-alt-minus:before{content:"\ec4c"}.bx-bookmark-alt-plus:before{content:"\ec4d"}.bx-bookmark-heart:before{content:"\ec4e"}.bx-bookmark-minus:before{content:"\ec4f"}.bx-bookmark-plus:before{content:"\ec50"}.bx-bookmarks:before{content:"\ec51"}.bx-book-open:before{content:"\ec52"}.bx-book-reader:before{content:"\ec53"}.bx-border-all:before{content:"\ec54"}.bx-border-bottom:before{content:"\ec55"}.bx-border-inner:before{content:"\ec56"}.bx-border-left:before{content:"\ec57"}.bx-border-none:before{content:"\ec58"}.bx-border-outer:before{content:"\ec59"}.bx-border-radius:before{content:"\ec5a"}.bx-border-right:before{content:"\ec5b"}.bx-border-top:before{content:"\ec5c"}.bx-bot:before{content:"\ec5d"}.bx-bowling-ball:before{content:"\ec5e"}.bx-box:before{content:"\ec5f"}.bx-bracket:before{content:"\ec60"}.bx-braille:before{content:"\ec61"}.bx-brain:before{content:"\ec62"}.bx-briefcase:before{content:"\ec63"}.bx-briefcase-alt:before{content:"\ec64"}.bx-briefcase-alt-2:before{content:"\ec65"}.bx-brightness:before{content:"\ec66"}.bx-brightness-half:before{content:"\ec67"}.bx-broadcast:before{content:"\ec68"}.bx-brush:before{content:"\ec69"}.bx-brush-alt:before{content:"\ec6a"}.bx-bug:before{content:"\ec6b"}.bx-bug-alt:before{content:"\ec6c"}.bx-building:before{content:"\ec6d"}.bx-building-house:before{content:"\ec6e"}.bx-buildings:before{content:"\ec6f"}.bx-bulb:before{content:"\ec70"}.bx-bullseye:before{content:"\ec71"}.bx-buoy:before{content:"\ec72"}.bx-bus:before{content:"\ec73"}.bx-bus-school:before{content:"\ec74"}.bx-cabinet:before{content:"\ec75"}.bx-cake:before{content:"\ec76"}.bx-calculator:before{content:"\ec77"}.bx-calendar:before{content:"\ec78"}.bx-calendar-alt:before{content:"\ec79"}.bx-calendar-check:before{content:"\ec7a"}.bx-calendar-edit:before{content:"\ec7b"}.bx-calendar-event:before{content:"\ec7c"}.bx-calendar-exclamation:before{content:"\ec7d"}.bx-calendar-heart:before{content:"\ec7e"}.bx-calendar-minus:before{content:"\ec7f"}.bx-calendar-plus:before{content:"\ec80"}.bx-calendar-star:before{content:"\ec81"}.bx-calendar-week:before{content:"\ec82"}.bx-calendar-x:before{content:"\ec83"}.bx-camera:before{content:"\ec84"}.bx-camera-home:before{content:"\ec85"}.bx-camera-movie:before{content:"\ec86"}.bx-camera-off:before{content:"\ec87"}.bx-capsule:before{content:"\ec88"}.bx-captions:before{content:"\ec89"}.bx-car:before{content:"\ec8a"}.bx-card:before{content:"\ec8b"}.bx-caret-down:before{content:"\ec8c"}.bx-caret-down-circle:before{content:"\ec8d"}.bx-caret-down-square:before{content:"\ec8e"}.bx-caret-left:before{content:"\ec8f"}.bx-caret-left-circle:before{content:"\ec90"}.bx-caret-left-square:before{content:"\ec91"}.bx-caret-right:before{content:"\ec92"}.bx-caret-right-circle:before{content:"\ec93"}.bx-caret-right-square:before{content:"\ec94"}.bx-caret-up:before{content:"\ec95"}.bx-caret-up-circle:before{content:"\ec96"}.bx-caret-up-square:before{content:"\ec97"}.bx-carousel:before{content:"\ec98"}.bx-cart:before{content:"\ec99"}.bx-cart-alt:before{content:"\ec9a"}.bx-cast:before{content:"\ec9b"}.bx-category:before{content:"\ec9c"}.bx-category-alt:before{content:"\ec9d"}.bx-cctv:before{content:"\ec9e"}.bx-certification:before{content:"\ec9f"}.bx-chair:before{content:"\eca0"}.bx-chalkboard:before{content:"\eca1"}.bx-chart:before{content:"\eca2"}.bx-chat:before{content:"\eca3"}.bx-check:before{content:"\eca4"}.bx-checkbox:before{content:"\eca5"}.bx-checkbox-checked:before{content:"\eca6"}.bx-checkbox-minus:before{content:"\eca7"}.bx-checkbox-square:before{content:"\eca8"}.bx-check-circle:before{content:"\eca9"}.bx-check-double:before{content:"\ecaa"}.bx-check-shield:before{content:"\ecab"}.bx-check-square:before{content:"\ecac"}.bx-chevron-down:before{content:"\ecad"}.bx-chevron-down-circle:before{content:"\ecae"}.bx-chevron-down-square:before{content:"\ecaf"}.bx-chevron-left:before{content:"\ecb0"}.bx-chevron-left-circle:before{content:"\ecb1"}.bx-chevron-left-square:before{content:"\ecb2"}.bx-chevron-right:before{content:"\ecb3"}.bx-chevron-right-circle:before{content:"\ecb4"}.bx-chevron-right-square:before{content:"\ecb5"}.bx-chevrons-down:before{content:"\ecb6"}.bx-chevrons-left:before{content:"\ecb7"}.bx-chevrons-right:before{content:"\ecb8"}.bx-chevrons-up:before{content:"\ecb9"}.bx-chevron-up:before{content:"\ecba"}.bx-chevron-up-circle:before{content:"\ecbb"}.bx-chevron-up-square:before{content:"\ecbc"}.bx-chip:before{content:"\ecbd"}.bx-church:before{content:"\ecbe"}.bx-circle:before{content:"\ecbf"}.bx-clinic:before{content:"\ecc0"}.bx-clipboard:before{content:"\ecc1"}.bx-closet:before{content:"\ecc2"}.bx-cloud:before{content:"\ecc3"}.bx-cloud-download:before{content:"\ecc4"}.bx-cloud-drizzle:before{content:"\ecc5"}.bx-cloud-lightning:before{content:"\ecc6"}.bx-cloud-light-rain:before{content:"\ecc7"}.bx-cloud-rain:before{content:"\ecc8"}.bx-cloud-snow:before{content:"\ecc9"}.bx-cloud-upload:before{content:"\ecca"}.bx-code:before{content:"\eccb"}.bx-code-alt:before{content:"\eccc"}.bx-code-block:before{content:"\eccd"}.bx-code-curly:before{content:"\ecce"}.bx-coffee:before{content:"\eccf"}.bx-coffee-togo:before{content:"\ecd0"}.bx-cog:before{content:"\ecd1"}.bx-coin:before{content:"\ecd2"}.bx-coin-stack:before{content:"\ecd3"}.bx-collapse:before{content:"\ecd4"}.bx-collection:before{content:"\ecd5"}.bx-color-fill:before{content:"\ecd6"}.bx-columns:before{content:"\ecd7"}.bx-command:before{content:"\ecd8"}.bx-comment:before{content:"\ecd9"}.bx-comment-add:before{content:"\ecda"}.bx-comment-check:before{content:"\ecdb"}.bx-comment-detail:before{content:"\ecdc"}.bx-comment-dots:before{content:"\ecdd"}.bx-comment-edit:before{content:"\ecde"}.bx-comment-error:before{content:"\ecdf"}.bx-comment-minus:before{content:"\ece0"}.bx-comment-x:before{content:"\ece1"}.bx-compass:before{content:"\ece2"}.bx-confused:before{content:"\ece3"}.bx-conversation:before{content:"\ece4"}.bx-cookie:before{content:"\ece5"}.bx-cool:before{content:"\ece6"}.bx-copy:before{content:"\ece7"}.bx-copy-alt:before{content:"\ece8"}.bx-copyright:before{content:"\ece9"}.bx-credit-card:before{content:"\ecea"}.bx-credit-card-alt:before{content:"\eceb"}.bx-credit-card-front:before{content:"\ecec"}.bx-crop:before{content:"\eced"}.bx-crosshair:before{content:"\ecee"}.bx-crown:before{content:"\ecef"}.bx-cube:before{content:"\ecf0"}.bx-cube-alt:before{content:"\ecf1"}.bx-cuboid:before{content:"\ecf2"}.bx-current-location:before{content:"\ecf3"}.bx-customize:before{content:"\ecf4"}.bx-cut:before{content:"\ecf5"}.bx-cycling:before{content:"\ecf6"}.bx-cylinder:before{content:"\ecf7"}.bx-data:before{content:"\ecf8"}.bx-desktop:before{content:"\ecf9"}.bx-detail:before{content:"\ecfa"}.bx-devices:before{content:"\ecfb"}.bx-dialpad:before{content:"\ecfc"}.bx-dialpad-alt:before{content:"\ecfd"}.bx-diamond:before{content:"\ecfe"}.bx-dice-1:before{content:"\ecff"}.bx-dice-2:before{content:"\ed00"}.bx-dice-3:before{content:"\ed01"}.bx-dice-4:before{content:"\ed02"}.bx-dice-5:before{content:"\ed03"}.bx-dice-6:before{content:"\ed04"}.bx-directions:before{content:"\ed05"}.bx-disc:before{content:"\ed06"}.bx-dish:before{content:"\ed07"}.bx-dislike:before{content:"\ed08"}.bx-dizzy:before{content:"\ed09"}.bx-dna:before{content:"\ed0a"}.bx-dock-bottom:before{content:"\ed0b"}.bx-dock-left:before{content:"\ed0c"}.bx-dock-right:before{content:"\ed0d"}.bx-dock-top:before{content:"\ed0e"}.bx-dollar:before{content:"\ed0f"}.bx-dollar-circle:before{content:"\ed10"}.bx-donate-blood:before{content:"\ed11"}.bx-donate-heart:before{content:"\ed12"}.bx-door-open:before{content:"\ed13"}.bx-dots-horizontal:before{content:"\ed14"}.bx-dots-horizontal-rounded:before{content:"\ed15"}.bx-dots-vertical:before{content:"\ed16"}.bx-dots-vertical-rounded:before{content:"\ed17"}.bx-doughnut-chart:before{content:"\ed18"}.bx-down-arrow:before{content:"\ed19"}.bx-down-arrow-alt:before{content:"\ed1a"}.bx-down-arrow-circle:before{content:"\ed1b"}.bx-download:before{content:"\ed1c"}.bx-downvote:before{content:"\ed1d"}.bx-drink:before{content:"\ed1e"}.bx-droplet:before{content:"\ed1f"}.bx-dumbbell:before{content:"\ed20"}.bx-duplicate:before{content:"\ed21"}.bx-edit:before{content:"\ed22"}.bx-edit-alt:before{content:"\ed23"}.bx-envelope:before{content:"\ed24"}.bx-envelope-open:before{content:"\ed25"}.bx-equalizer:before{content:"\ed26"}.bx-eraser:before{content:"\ed27"}.bx-error:before{content:"\ed28"}.bx-error-alt:before{content:"\ed29"}.bx-error-circle:before{content:"\ed2a"}.bx-euro:before{content:"\ed2b"}.bx-exclude:before{content:"\ed2c"}.bx-exit:before{content:"\ed2d"}.bx-exit-fullscreen:before{content:"\ed2e"}.bx-expand:before{content:"\ed2f"}.bx-expand-alt:before{content:"\ed30"}.bx-export:before{content:"\ed31"}.bx-extension:before{content:"\ed32"}.bx-face:before{content:"\ed33"}.bx-fast-forward:before{content:"\ed34"}.bx-fast-forward-circle:before{content:"\ed35"}.bx-female:before{content:"\ed36"}.bx-female-sign:before{content:"\ed37"}.bx-file:before{content:"\ed38"}.bx-file-blank:before{content:"\ed39"}.bx-file-find:before{content:"\ed3a"}.bx-film:before{content:"\ed3b"}.bx-filter:before{content:"\ed3c"}.bx-filter-alt:before{content:"\ed3d"}.bx-fingerprint:before{content:"\ed3e"}.bx-first-aid:before{content:"\ed3f"}.bx-first-page:before{content:"\ed40"}.bx-flag:before{content:"\ed41"}.bx-folder:before{content:"\ed42"}.bx-folder-minus:before{content:"\ed43"}.bx-folder-open:before{content:"\ed44"}.bx-folder-plus:before{content:"\ed45"}.bx-font:before{content:"\ed46"}.bx-font-color:before{content:"\ed47"}.bx-font-family:before{content:"\ed48"}.bx-font-size:before{content:"\ed49"}.bx-food-menu:before{content:"\ed4a"}.bx-food-tag:before{content:"\ed4b"}.bx-football:before{content:"\ed4c"}.bx-fridge:before{content:"\ed4d"}.bx-fullscreen:before{content:"\ed4e"}.bx-game:before{content:"\ed4f"}.bx-gas-pump:before{content:"\ed50"}.bx-ghost:before{content:"\ed51"}.bx-gift:before{content:"\ed52"}.bx-git-branch:before{content:"\ed53"}.bx-git-commit:before{content:"\ed54"}.bx-git-compare:before{content:"\ed55"}.bx-git-merge:before{content:"\ed56"}.bx-git-pull-request:before{content:"\ed57"}.bx-git-repo-forked:before{content:"\ed58"}.bx-glasses:before{content:"\ed59"}.bx-glasses-alt:before{content:"\ed5a"}.bx-globe:before{content:"\ed5b"}.bx-globe-alt:before{content:"\ed5c"}.bx-grid:before{content:"\ed5d"}.bx-grid-alt:before{content:"\ed5e"}.bx-grid-horizontal:before{content:"\ed5f"}.bx-grid-small:before{content:"\ed60"}.bx-grid-vertical:before{content:"\ed61"}.bx-group:before{content:"\ed62"}.bx-handicap:before{content:"\ed63"}.bx-happy:before{content:"\ed64"}.bx-happy-alt:before{content:"\ed65"}.bx-happy-beaming:before{content:"\ed66"}.bx-happy-heart-eyes:before{content:"\ed67"}.bx-hash:before{content:"\ed68"}.bx-hdd:before{content:"\ed69"}.bx-heading:before{content:"\ed6a"}.bx-headphone:before{content:"\ed6b"}.bx-health:before{content:"\ed6c"}.bx-heart:before{content:"\ed6d"}.bx-heart-circle:before{content:"\ed6e"}.bx-heart-square:before{content:"\ed6f"}.bx-help-circle:before{content:"\ed70"}.bx-hide:before{content:"\ed71"}.bx-highlight:before{content:"\ed72"}.bx-history:before{content:"\ed73"}.bx-hive:before{content:"\ed74"}.bx-home:before{content:"\ed75"}.bx-home-alt:before{content:"\ed76"}.bx-home-circle:before{content:"\ed77"}.bx-home-heart:before{content:"\ed78"}.bx-home-smile:before{content:"\ed79"}.bx-horizontal-center:before{content:"\ed7a"}.bx-hotel:before{content:"\ed7b"}.bx-hourglass:before{content:"\ed7c"}.bx-id-card:before{content:"\ed7d"}.bx-image:before{content:"\ed7e"}.bx-image-add:before{content:"\ed7f"}.bx-image-alt:before{content:"\ed80"}.bx-images:before{content:"\ed81"}.bx-import:before{content:"\ed82"}.bx-infinite:before{content:"\ed83"}.bx-info-circle:before{content:"\ed84"}.bx-info-square:before{content:"\ed85"}.bx-intersect:before{content:"\ed86"}.bx-italic:before{content:"\ed87"}.bx-joystick:before{content:"\ed88"}.bx-joystick-alt:before{content:"\ed89"}.bx-joystick-button:before{content:"\ed8a"}.bx-key:before{content:"\ed8b"}.bx-label:before{content:"\ed8c"}.bx-landscape:before{content:"\ed8d"}.bx-laptop:before{content:"\ed8e"}.bx-last-page:before{content:"\ed8f"}.bx-laugh:before{content:"\ed90"}.bx-layer:before{content:"\ed91"}.bx-layer-minus:before{content:"\ed92"}.bx-layer-plus:before{content:"\ed93"}.bx-layout:before{content:"\ed94"}.bx-left-arrow:before{content:"\ed95"}.bx-left-arrow-alt:before{content:"\ed96"}.bx-left-arrow-circle:before{content:"\ed97"}.bx-left-down-arrow-circle:before{content:"\ed98"}.bx-left-indent:before{content:"\ed99"}.bx-left-top-arrow-circle:before{content:"\ed9a"}.bx-library:before{content:"\ed9b"}.bx-like:before{content:"\ed9c"}.bx-line-chart:before{content:"\ed9d"}.bx-line-chart-down:before{content:"\ed9e"}.bx-link:before{content:"\ed9f"}.bx-link-alt:before{content:"\eda0"}.bx-link-external:before{content:"\eda1"}.bx-lira:before{content:"\eda2"}.bx-list-check:before{content:"\eda3"}.bx-list-minus:before{content:"\eda4"}.bx-list-ol:before{content:"\eda5"}.bx-list-plus:before{content:"\eda6"}.bx-list-ul:before{content:"\eda7"}.bx-loader:before{content:"\eda8"}.bx-loader-alt:before{content:"\eda9"}.bx-loader-circle:before{content:"\edaa"}.bx-location-plus:before{content:"\edab"}.bx-lock:before{content:"\edac"}.bx-lock-alt:before{content:"\edad"}.bx-lock-open:before{content:"\edae"}.bx-lock-open-alt:before{content:"\edaf"}.bx-log-in:before{content:"\edb0"}.bx-log-in-circle:before{content:"\edb1"}.bx-log-out:before{content:"\edb2"}.bx-log-out-circle:before{content:"\edb3"}.bx-low-vision:before{content:"\edb4"}.bx-magnet:before{content:"\edb5"}.bx-mail-send:before{content:"\edb6"}.bx-male:before{content:"\edb7"}.bx-male-sign:before{content:"\edb8"}.bx-map:before{content:"\edb9"}.bx-map-alt:before{content:"\edba"}.bx-map-pin:before{content:"\edbb"}.bx-mask:before{content:"\edbc"}.bx-medal:before{content:"\edbd"}.bx-meh:before{content:"\edbe"}.bx-meh-alt:before{content:"\edbf"}.bx-meh-blank:before{content:"\edc0"}.bx-memory-card:before{content:"\edc1"}.bx-menu:before{content:"\edc2"}.bx-menu-alt-left:before{content:"\edc3"}.bx-menu-alt-right:before{content:"\edc4"}.bx-merge:before{content:"\edc5"}.bx-message:before{content:"\edc6"}.bx-message-add:before{content:"\edc7"}.bx-message-alt:before{content:"\edc8"}.bx-message-alt-add:before{content:"\edc9"}.bx-message-alt-check:before{content:"\edca"}.bx-message-alt-detail:before{content:"\edcb"}.bx-message-alt-dots:before{content:"\edcc"}.bx-message-alt-edit:before{content:"\edcd"}.bx-message-alt-error:before{content:"\edce"}.bx-message-alt-minus:before{content:"\edcf"}.bx-message-alt-x:before{content:"\edd0"}.bx-message-check:before{content:"\edd1"}.bx-message-detail:before{content:"\edd2"}.bx-message-dots:before{content:"\edd3"}.bx-message-edit:before{content:"\edd4"}.bx-message-error:before{content:"\edd5"}.bx-message-minus:before{content:"\edd6"}.bx-message-rounded:before{content:"\edd7"}.bx-message-rounded-add:before{content:"\edd8"}.bx-message-rounded-check:before{content:"\edd9"}.bx-message-rounded-detail:before{content:"\edda"}.bx-message-rounded-dots:before{content:"\eddb"}.bx-message-rounded-edit:before{content:"\eddc"}.bx-message-rounded-error:before{content:"\eddd"}.bx-message-rounded-minus:before{content:"\edde"}.bx-message-rounded-x:before{content:"\eddf"}.bx-message-square:before{content:"\ede0"}.bx-message-square-add:before{content:"\ede1"}.bx-message-square-check:before{content:"\ede2"}.bx-message-square-detail:before{content:"\ede3"}.bx-message-square-dots:before{content:"\ede4"}.bx-message-square-edit:before{content:"\ede5"}.bx-message-square-error:before{content:"\ede6"}.bx-message-square-minus:before{content:"\ede7"}.bx-message-square-x:before{content:"\ede8"}.bx-message-x:before{content:"\ede9"}.bx-meteor:before{content:"\edea"}.bx-microchip:before{content:"\edeb"}.bx-microphone:before{content:"\edec"}.bx-microphone-off:before{content:"\eded"}.bx-minus:before{content:"\edee"}.bx-minus-back:before{content:"\edef"}.bx-minus-circle:before{content:"\edf0"}.bx-minus-front:before{content:"\edf1"}.bx-mobile:before{content:"\edf2"}.bx-mobile-alt:before{content:"\edf3"}.bx-mobile-landscape:before{content:"\edf4"}.bx-mobile-vibration:before{content:"\edf5"}.bx-money:before{content:"\edf6"}.bx-moon:before{content:"\edf7"}.bx-mouse:before{content:"\edf8"}.bx-mouse-alt:before{content:"\edf9"}.bx-move:before{content:"\edfa"}.bx-move-horizontal:before{content:"\edfb"}.bx-move-vertical:before{content:"\edfc"}.bx-movie:before{content:"\edfd"}.bx-movie-play:before{content:"\edfe"}.bx-music:before{content:"\edff"}.bx-navigation:before{content:"\ee00"}.bx-network-chart:before{content:"\ee01"}.bx-news:before{content:"\ee02"}.bx-no-entry:before{content:"\ee03"}.bx-note:before{content:"\ee04"}.bx-notepad:before{content:"\ee05"}.bx-notification:before{content:"\ee06"}.bx-notification-off:before{content:"\ee07"}.bx-outline:before{content:"\ee08"}.bx-package:before{content:"\ee09"}.bx-paint:before{content:"\ee0a"}.bx-paint-roll:before{content:"\ee0b"}.bx-palette:before{content:"\ee0c"}.bx-paperclip:before{content:"\ee0d"}.bx-paper-plane:before{content:"\ee0e"}.bx-paragraph:before{content:"\ee0f"}.bx-paste:before{content:"\ee10"}.bx-pause:before{content:"\ee11"}.bx-pause-circle:before{content:"\ee12"}.bx-pen:before{content:"\ee13"}.bx-pencil:before{content:"\ee14"}.bx-phone:before{content:"\ee15"}.bx-phone-call:before{content:"\ee16"}.bx-phone-incoming:before{content:"\ee17"}.bx-phone-off:before{content:"\ee18"}.bx-phone-outgoing:before{content:"\ee19"}.bx-photo-album:before{content:"\ee1a"}.bx-pie-chart:before{content:"\ee1b"}.bx-pie-chart-alt:before{content:"\ee1c"}.bx-pie-chart-alt-2:before{content:"\ee1d"}.bx-pin:before{content:"\ee1e"}.bx-planet:before{content:"\ee1f"}.bx-play:before{content:"\ee20"}.bx-play-circle:before{content:"\ee21"}.bx-plug:before{content:"\ee22"}.bx-plus:before{content:"\ee23"}.bx-plus-circle:before{content:"\ee24"}.bx-plus-medical:before{content:"\ee25"}.bx-podcast:before{content:"\ee26"}.bx-pointer:before{content:"\ee27"}.bx-poll:before{content:"\ee28"}.bx-polygon:before{content:"\ee29"}.bx-pound:before{content:"\ee2a"}.bx-power-off:before{content:"\ee2b"}.bx-printer:before{content:"\ee2c"}.bx-pulse:before{content:"\ee2d"}.bx-purchase-tag:before{content:"\ee2e"}.bx-purchase-tag-alt:before{content:"\ee2f"}.bx-pyramid:before{content:"\ee30"}.bx-qr:before{content:"\ee31"}.bx-qr-scan:before{content:"\ee32"}.bx-question-mark:before{content:"\ee33"}.bx-radar:before{content:"\ee34"}.bx-radio:before{content:"\ee35"}.bx-radio-circle:before{content:"\ee36"}.bx-radio-circle-marked:before{content:"\ee37"}.bx-receipt:before{content:"\ee38"}.bx-rectangle:before{content:"\ee39"}.bx-recycle:before{content:"\ee3a"}.bx-redo:before{content:"\ee3b"}.bx-refresh:before{content:"\ee3c"}.bx-registered:before{content:"\ee3d"}.bx-rename:before{content:"\ee3e"}.bx-repeat:before{content:"\ee3f"}.bx-reply:before{content:"\ee40"}.bx-reply-all:before{content:"\ee41"}.bx-repost:before{content:"\ee42"}.bx-reset:before{content:"\ee43"}.bx-restaurant:before{content:"\ee44"}.bx-revision:before{content:"\ee45"}.bx-rewind:before{content:"\ee46"}.bx-rewind-circle:before{content:"\ee47"}.bx-right-arrow:before{content:"\ee48"}.bx-right-arrow-alt:before{content:"\ee49"}.bx-right-arrow-circle:before{content:"\ee4a"}.bx-right-down-arrow-circle:before{content:"\ee4b"}.bx-right-indent:before{content:"\ee4c"}.bx-right-top-arrow-circle:before{content:"\ee4d"}.bx-rocket:before{content:"\ee4e"}.bx-rotate-left:before{content:"\ee4f"}.bx-rotate-right:before{content:"\ee50"}.bx-rss:before{content:"\ee51"}.bx-ruble:before{content:"\ee52"}.bx-ruler:before{content:"\ee53"}.bx-run:before{content:"\ee54"}.bx-rupee:before{content:"\ee55"}.bx-sad:before{content:"\ee56"}.bx-save:before{content:"\ee57"}.bx-scan:before{content:"\ee58"}.bx-screenshot:before{content:"\ee59"}.bx-search:before{content:"\ee5a"}.bx-search-alt:before{content:"\ee5b"}.bx-search-alt-2:before{content:"\ee5c"}.bx-selection:before{content:"\ee5d"}.bx-select-multiple:before{content:"\ee5e"}.bx-send:before{content:"\ee5f"}.bx-server:before{content:"\ee60"}.bx-shape-circle:before{content:"\ee61"}.bx-shape-polygon:before{content:"\ee62"}.bx-shape-square:before{content:"\ee63"}.bx-shape-triangle:before{content:"\ee64"}.bx-share:before{content:"\ee65"}.bx-share-alt:before{content:"\ee66"}.bx-shekel:before{content:"\ee67"}.bx-shield:before{content:"\ee68"}.bx-shield-alt:before{content:"\ee69"}.bx-shield-alt-2:before{content:"\ee6a"}.bx-shield-quarter:before{content:"\ee6b"}.bx-shield-x:before{content:"\ee6c"}.bx-shocked:before{content:"\ee6d"}.bx-shopping-bag:before{content:"\ee6e"}.bx-show:before{content:"\ee6f"}.bx-show-alt:before{content:"\ee70"}.bx-shuffle:before{content:"\ee71"}.bx-sidebar:before{content:"\ee72"}.bx-sitemap:before{content:"\ee73"}.bx-skip-next:before{content:"\ee74"}.bx-skip-next-circle:before{content:"\ee75"}.bx-skip-previous:before{content:"\ee76"}.bx-skip-previous-circle:before{content:"\ee77"}.bx-sleepy:before{content:"\ee78"}.bx-slider:before{content:"\ee79"}.bx-slider-alt:before{content:"\ee7a"}.bx-slideshow:before{content:"\ee7b"}.bx-smile:before{content:"\ee7c"}.bx-sort:before{content:"\ee7d"}.bx-sort-alt-2:before{content:"\ee7e"}.bx-sort-a-z:before{content:"\ee7f"}.bx-sort-down:before{content:"\ee80"}.bx-sort-up:before{content:"\ee81"}.bx-sort-z-a:before{content:"\ee82"}.bx-spa:before{content:"\ee83"}.bx-space-bar:before{content:"\ee84"}.bx-speaker:before{content:"\ee85"}.bx-spray-can:before{content:"\ee86"}.bx-spreadsheet:before{content:"\ee87"}.bx-square:before{content:"\ee88"}.bx-square-rounded:before{content:"\ee89"}.bx-star:before{content:"\ee8a"}.bx-station:before{content:"\ee8b"}.bx-stats:before{content:"\ee8c"}.bx-sticker:before{content:"\ee8d"}.bx-stop:before{content:"\ee8e"}.bx-stop-circle:before{content:"\ee8f"}.bx-stopwatch:before{content:"\ee90"}.bx-store:before{content:"\ee91"}.bx-store-alt:before{content:"\ee92"}.bx-street-view:before{content:"\ee93"}.bx-strikethrough:before{content:"\ee94"}.bx-subdirectory-left:before{content:"\ee95"}.bx-subdirectory-right:before{content:"\ee96"}.bx-sun:before{content:"\ee97"}.bx-support:before{content:"\ee98"}.bx-swim:before{content:"\ee99"}.bx-sync:before{content:"\ee9a"}.bx-tab:before{content:"\ee9b"}.bx-table:before{content:"\ee9c"}.bx-tachometer:before{content:"\ee9d"}.bx-tag:before{content:"\ee9e"}.bx-tag-alt:before{content:"\ee9f"}.bx-target-lock:before{content:"\eea0"}.bx-task:before{content:"\eea1"}.bx-task-x:before{content:"\eea2"}.bx-taxi:before{content:"\eea3"}.bx-tennis-ball:before{content:"\eea4"}.bx-terminal:before{content:"\eea5"}.bx-test-tube:before{content:"\eea6"}.bx-text:before{content:"\eea7"}.bx-time:before{content:"\eea8"}.bx-time-five:before{content:"\eea9"}.bx-timer:before{content:"\eeaa"}.bx-tired:before{content:"\eeab"}.bx-toggle-left:before{content:"\eeac"}.bx-toggle-right:before{content:"\eead"}.bx-tone:before{content:"\eeae"}.bx-traffic-cone:before{content:"\eeaf"}.bx-train:before{content:"\eeb0"}.bx-transfer:before{content:"\eeb1"}.bx-transfer-alt:before{content:"\eeb2"}.bx-trash:before{content:"\eeb3"}.bx-trash-alt:before{content:"\eeb4"}.bx-trending-down:before{content:"\eeb5"}.bx-trending-up:before{content:"\eeb6"}.bx-trim:before{content:"\eeb7"}.bx-trip:before{content:"\eeb8"}.bx-trophy:before{content:"\eeb9"}.bx-tv:before{content:"\eeba"}.bx-underline:before{content:"\eebb"}.bx-undo:before{content:"\eebc"}.bx-unite:before{content:"\eebd"}.bx-unlink:before{content:"\eebe"}.bx-up-arrow:before{content:"\eebf"}.bx-up-arrow-alt:before{content:"\eec0"}.bx-up-arrow-circle:before{content:"\eec1"}.bx-upload:before{content:"\eec2"}.bx-upside-down:before{content:"\eec3"}.bx-upvote:before{content:"\eec4"}.bx-usb:before{content:"\eec5"}.bx-user:before{content:"\eec6"}.bx-user-check:before{content:"\eec7"}.bx-user-circle:before{content:"\eec8"}.bx-user-minus:before{content:"\eec9"}.bx-user-pin:before{content:"\eeca"}.bx-user-plus:before{content:"\eecb"}.bx-user-voice:before{content:"\eecc"}.bx-user-x:before{content:"\eecd"}.bx-vector:before{content:"\eece"}.bx-vertical-center:before{content:"\eecf"}.bx-vial:before{content:"\eed0"}.bx-video:before{content:"\eed1"}.bx-video-off:before{content:"\eed2"}.bx-video-plus:before{content:"\eed3"}.bx-video-recording:before{content:"\eed4"}.bx-voicemail:before{content:"\eed5"}.bx-volume:before{content:"\eed6"}.bx-volume-full:before{content:"\eed7"}.bx-volume-low:before{content:"\eed8"}.bx-volume-mute:before{content:"\eed9"}.bx-walk:before{content:"\eeda"}.bx-wallet:before{content:"\eedb"}.bx-wallet-alt:before{content:"\eedc"}.bx-water:before{content:"\eedd"}.bx-webcam:before{content:"\eede"}.bx-wifi:before{content:"\eedf"}.bx-wifi-0:before{content:"\eee0"}.bx-wifi-1:before{content:"\eee1"}.bx-wifi-2:before{content:"\eee2"}.bx-wifi-off:before{content:"\eee3"}.bx-wind:before{content:"\eee4"}.bx-window:before{content:"\eee5"}.bx-window-alt:before{content:"\eee6"}.bx-window-close:before{content:"\eee7"}.bx-window-open:before{content:"\eee8"}.bx-windows:before{content:"\eee9"}.bx-wine:before{content:"\eeea"}.bx-wink-smile:before{content:"\eeeb"}.bx-wink-tongue:before{content:"\eeec"}.bx-won:before{content:"\eeed"}.bx-world:before{content:"\eeee"}.bx-wrench:before{content:"\eeef"}.bx-x:before{content:"\eef0"}.bx-x-circle:before{content:"\eef1"}.bx-yen:before{content:"\eef2"}.bx-zoom-in:before{content:"\eef3"}.bx-zoom-out:before{content:"\eef4"}@font-face{font-family:bootstrap-icons;src:url(//asturguias.com/wp-content/themes/astrip/assets/fonts/bootstrap-icons.woff) format("woff2"),url(//asturguias.com/wp-content/themes/astrip/assets/fonts/bootstrap-icons.woff2) format("woff")}.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123::before{content:"\f67f"}.bi-alarm-fill::before{content:"\f101"}.bi-alarm::before{content:"\f102"}.bi-align-bottom::before{content:"\f103"}.bi-align-center::before{content:"\f104"}.bi-align-end::before{content:"\f105"}.bi-align-middle::before{content:"\f106"}.bi-align-start::before{content:"\f107"}.bi-align-top::before{content:"\f108"}.bi-alt::before{content:"\f109"}.bi-app-indicator::before{content:"\f10a"}.bi-app::before{content:"\f10b"}.bi-archive-fill::before{content:"\f10c"}.bi-archive::before{content:"\f10d"}.bi-arrow-90deg-down::before{content:"\f10e"}.bi-arrow-90deg-left::before{content:"\f10f"}.bi-arrow-90deg-right::before{content:"\f110"}.bi-arrow-90deg-up::before{content:"\f111"}.bi-arrow-bar-down::before{content:"\f112"}.bi-arrow-bar-left::before{content:"\f113"}.bi-arrow-bar-right::before{content:"\f114"}.bi-arrow-bar-up::before{content:"\f115"}.bi-arrow-clockwise::before{content:"\f116"}.bi-arrow-counterclockwise::before{content:"\f117"}.bi-arrow-down-circle-fill::before{content:"\f118"}.bi-arrow-down-circle::before{content:"\f119"}.bi-arrow-down-left-circle-fill::before{content:"\f11a"}.bi-arrow-down-left-circle::before{content:"\f11b"}.bi-arrow-down-left-square-fill::before{content:"\f11c"}.bi-arrow-down-left-square::before{content:"\f11d"}.bi-arrow-down-left::before{content:"\f11e"}.bi-arrow-down-right-circle-fill::before{content:"\f11f"}.bi-arrow-down-right-circle::before{content:"\f120"}.bi-arrow-down-right-square-fill::before{content:"\f121"}.bi-arrow-down-right-square::before{content:"\f122"}.bi-arrow-down-right::before{content:"\f123"}.bi-arrow-down-short::before{content:"\f124"}.bi-arrow-down-square-fill::before{content:"\f125"}.bi-arrow-down-square::before{content:"\f126"}.bi-arrow-down-up::before{content:"\f127"}.bi-arrow-down::before{content:"\f128"}.bi-arrow-left-circle-fill::before{content:"\f129"}.bi-arrow-left-circle::before{content:"\f12a"}.bi-arrow-left-right::before{content:"\f12b"}.bi-arrow-left-short::before{content:"\f12c"}.bi-arrow-left-square-fill::before{content:"\f12d"}.bi-arrow-left-square::before{content:"\f12e"}.bi-arrow-left::before{content:"\f12f"}.bi-arrow-repeat::before{content:"\f130"}.bi-arrow-return-left::before{content:"\f131"}.bi-arrow-return-right::before{content:"\f132"}.bi-arrow-right-circle-fill::before{content:"\f133"}.bi-arrow-right-circle::before{content:"\f134"}.bi-arrow-right-short::before{content:"\f135"}.bi-arrow-right-square-fill::before{content:"\f136"}.bi-arrow-right-square::before{content:"\f137"}.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-circle-fill::before{content:"\f139"}.bi-arrow-up-circle::before{content:"\f13a"}.bi-arrow-up-left-circle-fill::before{content:"\f13b"}.bi-arrow-up-left-circle::before{content:"\f13c"}.bi-arrow-up-left-square-fill::before{content:"\f13d"}.bi-arrow-up-left-square::before{content:"\f13e"}.bi-arrow-up-left::before{content:"\f13f"}.bi-arrow-up-right-circle-fill::before{content:"\f140"}.bi-arrow-up-right-circle::before{content:"\f141"}.bi-arrow-up-right-square-fill::before{content:"\f142"}.bi-arrow-up-right-square::before{content:"\f143"}.bi-arrow-up-right::before{content:"\f144"}.bi-arrow-up-short::before{content:"\f145"}.bi-arrow-up-square-fill::before{content:"\f146"}.bi-arrow-up-square::before{content:"\f147"}.bi-arrow-up::before{content:"\f148"}.bi-arrows-angle-contract::before{content:"\f149"}.bi-arrows-angle-expand::before{content:"\f14a"}.bi-arrows-collapse::before{content:"\f14b"}.bi-arrows-expand::before{content:"\f14c"}.bi-arrows-fullscreen::before{content:"\f14d"}.bi-arrows-move::before{content:"\f14e"}.bi-aspect-ratio-fill::before{content:"\f14f"}.bi-aspect-ratio::before{content:"\f150"}.bi-asterisk::before{content:"\f151"}.bi-at::before{content:"\f152"}.bi-award-fill::before{content:"\f153"}.bi-award::before{content:"\f154"}.bi-back::before{content:"\f155"}.bi-backspace-fill::before{content:"\f156"}.bi-backspace-reverse-fill::before{content:"\f157"}.bi-backspace-reverse::before{content:"\f158"}.bi-backspace::before{content:"\f159"}.bi-badge-3d-fill::before{content:"\f15a"}.bi-badge-3d::before{content:"\f15b"}.bi-badge-4k-fill::before{content:"\f15c"}.bi-badge-4k::before{content:"\f15d"}.bi-badge-8k-fill::before{content:"\f15e"}.bi-badge-8k::before{content:"\f15f"}.bi-badge-ad-fill::before{content:"\f160"}.bi-badge-ad::before{content:"\f161"}.bi-badge-ar-fill::before{content:"\f162"}.bi-badge-ar::before{content:"\f163"}.bi-badge-cc-fill::before{content:"\f164"}.bi-badge-cc::before{content:"\f165"}.bi-badge-hd-fill::before{content:"\f166"}.bi-badge-hd::before{content:"\f167"}.bi-badge-tm-fill::before{content:"\f168"}.bi-badge-tm::before{content:"\f169"}.bi-badge-vo-fill::before{content:"\f16a"}.bi-badge-vo::before{content:"\f16b"}.bi-badge-vr-fill::before{content:"\f16c"}.bi-badge-vr::before{content:"\f16d"}.bi-badge-wc-fill::before{content:"\f16e"}.bi-badge-wc::before{content:"\f16f"}.bi-bag-check-fill::before{content:"\f170"}.bi-bag-check::before{content:"\f171"}.bi-bag-dash-fill::before{content:"\f172"}.bi-bag-dash::before{content:"\f173"}.bi-bag-fill::before{content:"\f174"}.bi-bag-plus-fill::before{content:"\f175"}.bi-bag-plus::before{content:"\f176"}.bi-bag-x-fill::before{content:"\f177"}.bi-bag-x::before{content:"\f178"}.bi-bag::before{content:"\f179"}.bi-bar-chart-fill::before{content:"\f17a"}.bi-bar-chart-line-fill::before{content:"\f17b"}.bi-bar-chart-line::before{content:"\f17c"}.bi-bar-chart-steps::before{content:"\f17d"}.bi-bar-chart::before{content:"\f17e"}.bi-basket-fill::before{content:"\f17f"}.bi-basket::before{content:"\f180"}.bi-basket2-fill::before{content:"\f181"}.bi-basket2::before{content:"\f182"}.bi-basket3-fill::before{content:"\f183"}.bi-basket3::before{content:"\f184"}.bi-battery-charging::before{content:"\f185"}.bi-battery-full::before{content:"\f186"}.bi-battery-half::before{content:"\f187"}.bi-battery::before{content:"\f188"}.bi-bell-fill::before{content:"\f189"}.bi-bell::before{content:"\f18a"}.bi-bezier::before{content:"\f18b"}.bi-bezier2::before{content:"\f18c"}.bi-bicycle::before{content:"\f18d"}.bi-binoculars-fill::before{content:"\f18e"}.bi-binoculars::before{content:"\f18f"}.bi-blockquote-left::before{content:"\f190"}.bi-blockquote-right::before{content:"\f191"}.bi-book-fill::before{content:"\f192"}.bi-book-half::before{content:"\f193"}.bi-book::before{content:"\f194"}.bi-bookmark-check-fill::before{content:"\f195"}.bi-bookmark-check::before{content:"\f196"}.bi-bookmark-dash-fill::before{content:"\f197"}.bi-bookmark-dash::before{content:"\f198"}.bi-bookmark-fill::before{content:"\f199"}.bi-bookmark-heart-fill::before{content:"\f19a"}.bi-bookmark-heart::before{content:"\f19b"}.bi-bookmark-plus-fill::before{content:"\f19c"}.bi-bookmark-plus::before{content:"\f19d"}.bi-bookmark-star-fill::before{content:"\f19e"}.bi-bookmark-star::before{content:"\f19f"}.bi-bookmark-x-fill::before{content:"\f1a0"}.bi-bookmark-x::before{content:"\f1a1"}.bi-bookmark::before{content:"\f1a2"}.bi-bookmarks-fill::before{content:"\f1a3"}.bi-bookmarks::before{content:"\f1a4"}.bi-bookshelf::before{content:"\f1a5"}.bi-bootstrap-fill::before{content:"\f1a6"}.bi-bootstrap-reboot::before{content:"\f1a7"}.bi-bootstrap::before{content:"\f1a8"}.bi-border-all::before{content:"\f1a9"}.bi-border-bottom::before{content:"\f1aa"}.bi-border-center::before{content:"\f1ab"}.bi-border-inner::before{content:"\f1ac"}.bi-border-left::before{content:"\f1ad"}.bi-border-middle::before{content:"\f1ae"}.bi-border-outer::before{content:"\f1af"}.bi-border-right::before{content:"\f1b0"}.bi-border-style::before{content:"\f1b1"}.bi-border-top::before{content:"\f1b2"}.bi-border-width::before{content:"\f1b3"}.bi-border::before{content:"\f1b4"}.bi-bounding-box-circles::before{content:"\f1b5"}.bi-bounding-box::before{content:"\f1b6"}.bi-box-arrow-down-left::before{content:"\f1b7"}.bi-box-arrow-down-right::before{content:"\f1b8"}.bi-box-arrow-down::before{content:"\f1b9"}.bi-box-arrow-in-down-left::before{content:"\f1ba"}.bi-box-arrow-in-down-right::before{content:"\f1bb"}.bi-box-arrow-in-down::before{content:"\f1bc"}.bi-box-arrow-in-left::before{content:"\f1bd"}.bi-box-arrow-in-right::before{content:"\f1be"}.bi-box-arrow-in-up-left::before{content:"\f1bf"}.bi-box-arrow-in-up-right::before{content:"\f1c0"}.bi-box-arrow-in-up::before{content:"\f1c1"}.bi-box-arrow-left::before{content:"\f1c2"}.bi-box-arrow-right::before{content:"\f1c3"}.bi-box-arrow-up-left::before{content:"\f1c4"}.bi-box-arrow-up-right::before{content:"\f1c5"}.bi-box-arrow-up::before{content:"\f1c6"}.bi-box-seam::before{content:"\f1c7"}.bi-box::before{content:"\f1c8"}.bi-braces::before{content:"\f1c9"}.bi-bricks::before{content:"\f1ca"}.bi-briefcase-fill::before{content:"\f1cb"}.bi-briefcase::before{content:"\f1cc"}.bi-brightness-alt-high-fill::before{content:"\f1cd"}.bi-brightness-alt-high::before{content:"\f1ce"}.bi-brightness-alt-low-fill::before{content:"\f1cf"}.bi-brightness-alt-low::before{content:"\f1d0"}.bi-brightness-high-fill::before{content:"\f1d1"}.bi-brightness-high::before{content:"\f1d2"}.bi-brightness-low-fill::before{content:"\f1d3"}.bi-brightness-low::before{content:"\f1d4"}.bi-broadcast-pin::before{content:"\f1d5"}.bi-broadcast::before{content:"\f1d6"}.bi-brush-fill::before{content:"\f1d7"}.bi-brush::before{content:"\f1d8"}.bi-bucket-fill::before{content:"\f1d9"}.bi-bucket::before{content:"\f1da"}.bi-bug-fill::before{content:"\f1db"}.bi-bug::before{content:"\f1dc"}.bi-building::before{content:"\f1dd"}.bi-bullseye::before{content:"\f1de"}.bi-calculator-fill::before{content:"\f1df"}.bi-calculator::before{content:"\f1e0"}.bi-calendar-check-fill::before{content:"\f1e1"}.bi-calendar-check::before{content:"\f1e2"}.bi-calendar-date-fill::before{content:"\f1e3"}.bi-calendar-date::before{content:"\f1e4"}.bi-calendar-day-fill::before{content:"\f1e5"}.bi-calendar-day::before{content:"\f1e6"}.bi-calendar-event-fill::before{content:"\f1e7"}.bi-calendar-event::before{content:"\f1e8"}.bi-calendar-fill::before{content:"\f1e9"}.bi-calendar-minus-fill::before{content:"\f1ea"}.bi-calendar-minus::before{content:"\f1eb"}.bi-calendar-month-fill::before{content:"\f1ec"}.bi-calendar-month::before{content:"\f1ed"}.bi-calendar-plus-fill::before{content:"\f1ee"}.bi-calendar-plus::before{content:"\f1ef"}.bi-calendar-range-fill::before{content:"\f1f0"}.bi-calendar-range::before{content:"\f1f1"}.bi-calendar-week-fill::before{content:"\f1f2"}.bi-calendar-week::before{content:"\f1f3"}.bi-calendar-x-fill::before{content:"\f1f4"}.bi-calendar-x::before{content:"\f1f5"}.bi-calendar::before{content:"\f1f6"}.bi-calendar2-check-fill::before{content:"\f1f7"}.bi-calendar2-check::before{content:"\f1f8"}.bi-calendar2-date-fill::before{content:"\f1f9"}.bi-calendar2-date::before{content:"\f1fa"}.bi-calendar2-day-fill::before{content:"\f1fb"}.bi-calendar2-day::before{content:"\f1fc"}.bi-calendar2-event-fill::before{content:"\f1fd"}.bi-calendar2-event::before{content:"\f1fe"}.bi-calendar2-fill::before{content:"\f1ff"}.bi-calendar2-minus-fill::before{content:"\f200"}.bi-calendar2-minus::before{content:"\f201"}.bi-calendar2-month-fill::before{content:"\f202"}.bi-calendar2-month::before{content:"\f203"}.bi-calendar2-plus-fill::before{content:"\f204"}.bi-calendar2-plus::before{content:"\f205"}.bi-calendar2-range-fill::before{content:"\f206"}.bi-calendar2-range::before{content:"\f207"}.bi-calendar2-week-fill::before{content:"\f208"}.bi-calendar2-week::before{content:"\f209"}.bi-calendar2-x-fill::before{content:"\f20a"}.bi-calendar2-x::before{content:"\f20b"}.bi-calendar2::before{content:"\f20c"}.bi-calendar3-event-fill::before{content:"\f20d"}.bi-calendar3-event::before{content:"\f20e"}.bi-calendar3-fill::before{content:"\f20f"}.bi-calendar3-range-fill::before{content:"\f210"}.bi-calendar3-range::before{content:"\f211"}.bi-calendar3-week-fill::before{content:"\f212"}.bi-calendar3-week::before{content:"\f213"}.bi-calendar3::before{content:"\f214"}.bi-calendar4-event::before{content:"\f215"}.bi-calendar4-range::before{content:"\f216"}.bi-calendar4-week::before{content:"\f217"}.bi-calendar4::before{content:"\f218"}.bi-camera-fill::before{content:"\f219"}.bi-camera-reels-fill::before{content:"\f21a"}.bi-camera-reels::before{content:"\f21b"}.bi-camera-video-fill::before{content:"\f21c"}.bi-camera-video-off-fill::before{content:"\f21d"}.bi-camera-video-off::before{content:"\f21e"}.bi-camera-video::before{content:"\f21f"}.bi-camera::before{content:"\f220"}.bi-camera2::before{content:"\f221"}.bi-capslock-fill::before{content:"\f222"}.bi-capslock::before{content:"\f223"}.bi-card-checklist::before{content:"\f224"}.bi-card-heading::before{content:"\f225"}.bi-card-image::before{content:"\f226"}.bi-card-list::before{content:"\f227"}.bi-card-text::before{content:"\f228"}.bi-caret-down-fill::before{content:"\f229"}.bi-caret-down-square-fill::before{content:"\f22a"}.bi-caret-down-square::before{content:"\f22b"}.bi-caret-down::before{content:"\f22c"}.bi-caret-left-fill::before{content:"\f22d"}.bi-caret-left-square-fill::before{content:"\f22e"}.bi-caret-left-square::before{content:"\f22f"}.bi-caret-left::before{content:"\f230"}.bi-caret-right-fill::before{content:"\f231"}.bi-caret-right-square-fill::before{content:"\f232"}.bi-caret-right-square::before{content:"\f233"}.bi-caret-right::before{content:"\f234"}.bi-caret-up-fill::before{content:"\f235"}.bi-caret-up-square-fill::before{content:"\f236"}.bi-caret-up-square::before{content:"\f237"}.bi-caret-up::before{content:"\f238"}.bi-cart-check-fill::before{content:"\f239"}.bi-cart-check::before{content:"\f23a"}.bi-cart-dash-fill::before{content:"\f23b"}.bi-cart-dash::before{content:"\f23c"}.bi-cart-fill::before{content:"\f23d"}.bi-cart-plus-fill::before{content:"\f23e"}.bi-cart-plus::before{content:"\f23f"}.bi-cart-x-fill::before{content:"\f240"}.bi-cart-x::before{content:"\f241"}.bi-cart::before{content:"\f242"}.bi-cart2::before{content:"\f243"}.bi-cart3::before{content:"\f244"}.bi-cart4::before{content:"\f245"}.bi-cash-stack::before{content:"\f246"}.bi-cash::before{content:"\f247"}.bi-cast::before{content:"\f248"}.bi-chat-dots-fill::before{content:"\f249"}.bi-chat-dots::before{content:"\f24a"}.bi-chat-fill::before{content:"\f24b"}.bi-chat-left-dots-fill::before{content:"\f24c"}.bi-chat-left-dots::before{content:"\f24d"}.bi-chat-left-fill::before{content:"\f24e"}.bi-chat-left-quote-fill::before{content:"\f24f"}.bi-chat-left-quote::before{content:"\f250"}.bi-chat-left-text-fill::before{content:"\f251"}.bi-chat-left-text::before{content:"\f252"}.bi-chat-left::before{content:"\f253"}.bi-chat-quote-fill::before{content:"\f254"}.bi-chat-quote::before{content:"\f255"}.bi-chat-right-dots-fill::before{content:"\f256"}.bi-chat-right-dots::before{content:"\f257"}.bi-chat-right-fill::before{content:"\f258"}.bi-chat-right-quote-fill::before{content:"\f259"}.bi-chat-right-quote::before{content:"\f25a"}.bi-chat-right-text-fill::before{content:"\f25b"}.bi-chat-right-text::before{content:"\f25c"}.bi-chat-right::before{content:"\f25d"}.bi-chat-square-dots-fill::before{content:"\f25e"}.bi-chat-square-dots::before{content:"\f25f"}.bi-chat-square-fill::before{content:"\f260"}.bi-chat-square-quote-fill::before{content:"\f261"}.bi-chat-square-quote::before{content:"\f262"}.bi-chat-square-text-fill::before{content:"\f263"}.bi-chat-square-text::before{content:"\f264"}.bi-chat-square::before{content:"\f265"}.bi-chat-text-fill::before{content:"\f266"}.bi-chat-text::before{content:"\f267"}.bi-chat::before{content:"\f268"}.bi-check-all::before{content:"\f269"}.bi-check-circle-fill::before{content:"\f26a"}.bi-check-circle::before{content:"\f26b"}.bi-check-square-fill::before{content:"\f26c"}.bi-check-square::before{content:"\f26d"}.bi-check::before{content:"\f26e"}.bi-check2-all::before{content:"\f26f"}.bi-check2-circle::before{content:"\f270"}.bi-check2-square::before{content:"\f271"}.bi-check2::before{content:"\f272"}.bi-chevron-bar-contract::before{content:"\f273"}.bi-chevron-bar-down::before{content:"\f274"}.bi-chevron-bar-expand::before{content:"\f275"}.bi-chevron-bar-left::before{content:"\f276"}.bi-chevron-bar-right::before{content:"\f277"}.bi-chevron-bar-up::before{content:"\f278"}.bi-chevron-compact-down::before{content:"\f279"}.bi-chevron-compact-left::before{content:"\f27a"}.bi-chevron-compact-right::before{content:"\f27b"}.bi-chevron-compact-up::before{content:"\f27c"}.bi-chevron-contract::before{content:"\f27d"}.bi-chevron-double-down::before{content:"\f27e"}.bi-chevron-double-left::before{content:"\f27f"}.bi-chevron-double-right::before{content:"\f280"}.bi-chevron-double-up::before{content:"\f281"}.bi-chevron-down::before{content:"\f282"}.bi-chevron-expand::before{content:"\f283"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-chevron-up::before{content:"\f286"}.bi-circle-fill::before{content:"\f287"}.bi-circle-half::before{content:"\f288"}.bi-circle-square::before{content:"\f289"}.bi-circle::before{content:"\f28a"}.bi-clipboard-check::before{content:"\f28b"}.bi-clipboard-data::before{content:"\f28c"}.bi-clipboard-minus::before{content:"\f28d"}.bi-clipboard-plus::before{content:"\f28e"}.bi-clipboard-x::before{content:"\f28f"}.bi-clipboard::before{content:"\f290"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-cloud-arrow-down-fill::before{content:"\f294"}.bi-cloud-arrow-down::before{content:"\f295"}.bi-cloud-arrow-up-fill::before{content:"\f296"}.bi-cloud-arrow-up::before{content:"\f297"}.bi-cloud-check-fill::before{content:"\f298"}.bi-cloud-check::before{content:"\f299"}.bi-cloud-download-fill::before{content:"\f29a"}.bi-cloud-download::before{content:"\f29b"}.bi-cloud-drizzle-fill::before{content:"\f29c"}.bi-cloud-drizzle::before{content:"\f29d"}.bi-cloud-fill::before{content:"\f29e"}.bi-cloud-fog-fill::before{content:"\f29f"}.bi-cloud-fog::before{content:"\f2a0"}.bi-cloud-fog2-fill::before{content:"\f2a1"}.bi-cloud-fog2::before{content:"\f2a2"}.bi-cloud-hail-fill::before{content:"\f2a3"}.bi-cloud-hail::before{content:"\f2a4"}.bi-cloud-haze-1::before{content:"\f2a5"}.bi-cloud-haze-fill::before{content:"\f2a6"}.bi-cloud-haze::before{content:"\f2a7"}.bi-cloud-haze2-fill::before{content:"\f2a8"}.bi-cloud-lightning-fill::before{content:"\f2a9"}.bi-cloud-lightning-rain-fill::before{content:"\f2aa"}.bi-cloud-lightning-rain::before{content:"\f2ab"}.bi-cloud-lightning::before{content:"\f2ac"}.bi-cloud-minus-fill::before{content:"\f2ad"}.bi-cloud-minus::before{content:"\f2ae"}.bi-cloud-moon-fill::before{content:"\f2af"}.bi-cloud-moon::before{content:"\f2b0"}.bi-cloud-plus-fill::before{content:"\f2b1"}.bi-cloud-plus::before{content:"\f2b2"}.bi-cloud-rain-fill::before{content:"\f2b3"}.bi-cloud-rain-heavy-fill::before{content:"\f2b4"}.bi-cloud-rain-heavy::before{content:"\f2b5"}.bi-cloud-rain::before{content:"\f2b6"}.bi-cloud-slash-fill::before{content:"\f2b7"}.bi-cloud-slash::before{content:"\f2b8"}.bi-cloud-sleet-fill::before{content:"\f2b9"}.bi-cloud-sleet::before{content:"\f2ba"}.bi-cloud-snow-fill::before{content:"\f2bb"}.bi-cloud-snow::before{content:"\f2bc"}.bi-cloud-sun-fill::before{content:"\f2bd"}.bi-cloud-sun::before{content:"\f2be"}.bi-cloud-upload-fill::before{content:"\f2bf"}.bi-cloud-upload::before{content:"\f2c0"}.bi-cloud::before{content:"\f2c1"}.bi-clouds-fill::before{content:"\f2c2"}.bi-clouds::before{content:"\f2c3"}.bi-cloudy-fill::before{content:"\f2c4"}.bi-cloudy::before{content:"\f2c5"}.bi-code-slash::before{content:"\f2c6"}.bi-code-square::before{content:"\f2c7"}.bi-code::before{content:"\f2c8"}.bi-collection-fill::before{content:"\f2c9"}.bi-collection-play-fill::before{content:"\f2ca"}.bi-collection-play::before{content:"\f2cb"}.bi-collection::before{content:"\f2cc"}.bi-columns-gap::before{content:"\f2cd"}.bi-columns::before{content:"\f2ce"}.bi-command::before{content:"\f2cf"}.bi-compass-fill::before{content:"\f2d0"}.bi-compass::before{content:"\f2d1"}.bi-cone-striped::before{content:"\f2d2"}.bi-cone::before{content:"\f2d3"}.bi-controller::before{content:"\f2d4"}.bi-cpu-fill::before{content:"\f2d5"}.bi-cpu::before{content:"\f2d6"}.bi-credit-card-2-back-fill::before{content:"\f2d7"}.bi-credit-card-2-back::before{content:"\f2d8"}.bi-credit-card-2-front-fill::before{content:"\f2d9"}.bi-credit-card-2-front::before{content:"\f2da"}.bi-credit-card-fill::before{content:"\f2db"}.bi-credit-card::before{content:"\f2dc"}.bi-crop::before{content:"\f2dd"}.bi-cup-fill::before{content:"\f2de"}.bi-cup-straw::before{content:"\f2df"}.bi-cup::before{content:"\f2e0"}.bi-cursor-fill::before{content:"\f2e1"}.bi-cursor-text::before{content:"\f2e2"}.bi-cursor::before{content:"\f2e3"}.bi-dash-circle-dotted::before{content:"\f2e4"}.bi-dash-circle-fill::before{content:"\f2e5"}.bi-dash-circle::before{content:"\f2e6"}.bi-dash-square-dotted::before{content:"\f2e7"}.bi-dash-square-fill::before{content:"\f2e8"}.bi-dash-square::before{content:"\f2e9"}.bi-dash::before{content:"\f2ea"}.bi-diagram-2-fill::before{content:"\f2eb"}.bi-diagram-2::before{content:"\f2ec"}.bi-diagram-3-fill::before{content:"\f2ed"}.bi-diagram-3::before{content:"\f2ee"}.bi-diamond-fill::before{content:"\f2ef"}.bi-diamond-half::before{content:"\f2f0"}.bi-diamond::before{content:"\f2f1"}.bi-dice-1-fill::before{content:"\f2f2"}.bi-dice-1::before{content:"\f2f3"}.bi-dice-2-fill::before{content:"\f2f4"}.bi-dice-2::before{content:"\f2f5"}.bi-dice-3-fill::before{content:"\f2f6"}.bi-dice-3::before{content:"\f2f7"}.bi-dice-4-fill::before{content:"\f2f8"}.bi-dice-4::before{content:"\f2f9"}.bi-dice-5-fill::before{content:"\f2fa"}.bi-dice-5::before{content:"\f2fb"}.bi-dice-6-fill::before{content:"\f2fc"}.bi-dice-6::before{content:"\f2fd"}.bi-disc-fill::before{content:"\f2fe"}.bi-disc::before{content:"\f2ff"}.bi-discord::before{content:"\f300"}.bi-display-fill::before{content:"\f301"}.bi-display::before{content:"\f302"}.bi-distribute-horizontal::before{content:"\f303"}.bi-distribute-vertical::before{content:"\f304"}.bi-door-closed-fill::before{content:"\f305"}.bi-door-closed::before{content:"\f306"}.bi-door-open-fill::before{content:"\f307"}.bi-door-open::before{content:"\f308"}.bi-dot::before{content:"\f309"}.bi-download::before{content:"\f30a"}.bi-droplet-fill::before{content:"\f30b"}.bi-droplet-half::before{content:"\f30c"}.bi-droplet::before{content:"\f30d"}.bi-earbuds::before{content:"\f30e"}.bi-easel-fill::before{content:"\f30f"}.bi-easel::before{content:"\f310"}.bi-egg-fill::before{content:"\f311"}.bi-egg-fried::before{content:"\f312"}.bi-egg::before{content:"\f313"}.bi-eject-fill::before{content:"\f314"}.bi-eject::before{content:"\f315"}.bi-emoji-angry-fill::before{content:"\f316"}.bi-emoji-angry::before{content:"\f317"}.bi-emoji-dizzy-fill::before{content:"\f318"}.bi-emoji-dizzy::before{content:"\f319"}.bi-emoji-expressionless-fill::before{content:"\f31a"}.bi-emoji-expressionless::before{content:"\f31b"}.bi-emoji-frown-fill::before{content:"\f31c"}.bi-emoji-frown::before{content:"\f31d"}.bi-emoji-heart-eyes-fill::before{content:"\f31e"}.bi-emoji-heart-eyes::before{content:"\f31f"}.bi-emoji-laughing-fill::before{content:"\f320"}.bi-emoji-laughing::before{content:"\f321"}.bi-emoji-neutral-fill::before{content:"\f322"}.bi-emoji-neutral::before{content:"\f323"}.bi-emoji-smile-fill::before{content:"\f324"}.bi-emoji-smile-upside-down-fill::before{content:"\f325"}.bi-emoji-smile-upside-down::before{content:"\f326"}.bi-emoji-smile::before{content:"\f327"}.bi-emoji-sunglasses-fill::before{content:"\f328"}.bi-emoji-sunglasses::before{content:"\f329"}.bi-emoji-wink-fill::before{content:"\f32a"}.bi-emoji-wink::before{content:"\f32b"}.bi-envelope-fill::before{content:"\f32c"}.bi-envelope-open-fill::before{content:"\f32d"}.bi-envelope-open::before{content:"\f32e"}.bi-envelope::before{content:"\f32f"}.bi-eraser-fill::before{content:"\f330"}.bi-eraser::before{content:"\f331"}.bi-exclamation-circle-fill::before{content:"\f332"}.bi-exclamation-circle::before{content:"\f333"}.bi-exclamation-diamond-fill::before{content:"\f334"}.bi-exclamation-diamond::before{content:"\f335"}.bi-exclamation-octagon-fill::before{content:"\f336"}.bi-exclamation-octagon::before{content:"\f337"}.bi-exclamation-square-fill::before{content:"\f338"}.bi-exclamation-square::before{content:"\f339"}.bi-exclamation-triangle-fill::before{content:"\f33a"}.bi-exclamation-triangle::before{content:"\f33b"}.bi-exclamation::before{content:"\f33c"}.bi-exclude::before{content:"\f33d"}.bi-eye-fill::before{content:"\f33e"}.bi-eye-slash-fill::before{content:"\f33f"}.bi-eye-slash::before{content:"\f340"}.bi-eye::before{content:"\f341"}.bi-eyedropper::before{content:"\f342"}.bi-eyeglasses::before{content:"\f343"}.bi-facebook::before{content:"\f344"}.bi-file-arrow-down-fill::before{content:"\f345"}.bi-file-arrow-down::before{content:"\f346"}.bi-file-arrow-up-fill::before{content:"\f347"}.bi-file-arrow-up::before{content:"\f348"}.bi-file-bar-graph-fill::before{content:"\f349"}.bi-file-bar-graph::before{content:"\f34a"}.bi-file-binary-fill::before{content:"\f34b"}.bi-file-binary::before{content:"\f34c"}.bi-file-break-fill::before{content:"\f34d"}.bi-file-break::before{content:"\f34e"}.bi-file-check-fill::before{content:"\f34f"}.bi-file-check::before{content:"\f350"}.bi-file-code-fill::before{content:"\f351"}.bi-file-code::before{content:"\f352"}.bi-file-diff-fill::before{content:"\f353"}.bi-file-diff::before{content:"\f354"}.bi-file-earmark-arrow-down-fill::before{content:"\f355"}.bi-file-earmark-arrow-down::before{content:"\f356"}.bi-file-earmark-arrow-up-fill::before{content:"\f357"}.bi-file-earmark-arrow-up::before{content:"\f358"}.bi-file-earmark-bar-graph-fill::before{content:"\f359"}.bi-file-earmark-bar-graph::before{content:"\f35a"}.bi-file-earmark-binary-fill::before{content:"\f35b"}.bi-file-earmark-binary::before{content:"\f35c"}.bi-file-earmark-break-fill::before{content:"\f35d"}.bi-file-earmark-break::before{content:"\f35e"}.bi-file-earmark-check-fill::before{content:"\f35f"}.bi-file-earmark-check::before{content:"\f360"}.bi-file-earmark-code-fill::before{content:"\f361"}.bi-file-earmark-code::before{content:"\f362"}.bi-file-earmark-diff-fill::before{content:"\f363"}.bi-file-earmark-diff::before{content:"\f364"}.bi-file-earmark-easel-fill::before{content:"\f365"}.bi-file-earmark-easel::before{content:"\f366"}.bi-file-earmark-excel-fill::before{content:"\f367"}.bi-file-earmark-excel::before{content:"\f368"}.bi-file-earmark-fill::before{content:"\f369"}.bi-file-earmark-font-fill::before{content:"\f36a"}.bi-file-earmark-font::before{content:"\f36b"}.bi-file-earmark-image-fill::before{content:"\f36c"}.bi-file-earmark-image::before{content:"\f36d"}.bi-file-earmark-lock-fill::before{content:"\f36e"}.bi-file-earmark-lock::before{content:"\f36f"}.bi-file-earmark-lock2-fill::before{content:"\f370"}.bi-file-earmark-lock2::before{content:"\f371"}.bi-file-earmark-medical-fill::before{content:"\f372"}.bi-file-earmark-medical::before{content:"\f373"}.bi-file-earmark-minus-fill::before{content:"\f374"}.bi-file-earmark-minus::before{content:"\f375"}.bi-file-earmark-music-fill::before{content:"\f376"}.bi-file-earmark-music::before{content:"\f377"}.bi-file-earmark-person-fill::before{content:"\f378"}.bi-file-earmark-person::before{content:"\f379"}.bi-file-earmark-play-fill::before{content:"\f37a"}.bi-file-earmark-play::before{content:"\f37b"}.bi-file-earmark-plus-fill::before{content:"\f37c"}.bi-file-earmark-plus::before{content:"\f37d"}.bi-file-earmark-post-fill::before{content:"\f37e"}.bi-file-earmark-post::before{content:"\f37f"}.bi-file-earmark-ppt-fill::before{content:"\f380"}.bi-file-earmark-ppt::before{content:"\f381"}.bi-file-earmark-richtext-fill::before{content:"\f382"}.bi-file-earmark-richtext::before{content:"\f383"}.bi-file-earmark-ruled-fill::before{content:"\f384"}.bi-file-earmark-ruled::before{content:"\f385"}.bi-file-earmark-slides-fill::before{content:"\f386"}.bi-file-earmark-slides::before{content:"\f387"}.bi-file-earmark-spreadsheet-fill::before{content:"\f388"}.bi-file-earmark-spreadsheet::before{content:"\f389"}.bi-file-earmark-text-fill::before{content:"\f38a"}.bi-file-earmark-text::before{content:"\f38b"}.bi-file-earmark-word-fill::before{content:"\f38c"}.bi-file-earmark-word::before{content:"\f38d"}.bi-file-earmark-x-fill::before{content:"\f38e"}.bi-file-earmark-x::before{content:"\f38f"}.bi-file-earmark-zip-fill::before{content:"\f390"}.bi-file-earmark-zip::before{content:"\f391"}.bi-file-earmark::before{content:"\f392"}.bi-file-easel-fill::before{content:"\f393"}.bi-file-easel::before{content:"\f394"}.bi-file-excel-fill::before{content:"\f395"}.bi-file-excel::before{content:"\f396"}.bi-file-fill::before{content:"\f397"}.bi-file-font-fill::before{content:"\f398"}.bi-file-font::before{content:"\f399"}.bi-file-image-fill::before{content:"\f39a"}.bi-file-image::before{content:"\f39b"}.bi-file-lock-fill::before{content:"\f39c"}.bi-file-lock::before{content:"\f39d"}.bi-file-lock2-fill::before{content:"\f39e"}.bi-file-lock2::before{content:"\f39f"}.bi-file-medical-fill::before{content:"\f3a0"}.bi-file-medical::before{content:"\f3a1"}.bi-file-minus-fill::before{content:"\f3a2"}.bi-file-minus::before{content:"\f3a3"}.bi-file-music-fill::before{content:"\f3a4"}.bi-file-music::before{content:"\f3a5"}.bi-file-person-fill::before{content:"\f3a6"}.bi-file-person::before{content:"\f3a7"}.bi-file-play-fill::before{content:"\f3a8"}.bi-file-play::before{content:"\f3a9"}.bi-file-plus-fill::before{content:"\f3aa"}.bi-file-plus::before{content:"\f3ab"}.bi-file-post-fill::before{content:"\f3ac"}.bi-file-post::before{content:"\f3ad"}.bi-file-ppt-fill::before{content:"\f3ae"}.bi-file-ppt::before{content:"\f3af"}.bi-file-richtext-fill::before{content:"\f3b0"}.bi-file-richtext::before{content:"\f3b1"}.bi-file-ruled-fill::before{content:"\f3b2"}.bi-file-ruled::before{content:"\f3b3"}.bi-file-slides-fill::before{content:"\f3b4"}.bi-file-slides::before{content:"\f3b5"}.bi-file-spreadsheet-fill::before{content:"\f3b6"}.bi-file-spreadsheet::before{content:"\f3b7"}.bi-file-text-fill::before{content:"\f3b8"}.bi-file-text::before{content:"\f3b9"}.bi-file-word-fill::before{content:"\f3ba"}.bi-file-word::before{content:"\f3bb"}.bi-file-x-fill::before{content:"\f3bc"}.bi-file-x::before{content:"\f3bd"}.bi-file-zip-fill::before{content:"\f3be"}.bi-file-zip::before{content:"\f3bf"}.bi-file::before{content:"\f3c0"}.bi-files-alt::before{content:"\f3c1"}.bi-files::before{content:"\f3c2"}.bi-film::before{content:"\f3c3"}.bi-filter-circle-fill::before{content:"\f3c4"}.bi-filter-circle::before{content:"\f3c5"}.bi-filter-left::before{content:"\f3c6"}.bi-filter-right::before{content:"\f3c7"}.bi-filter-square-fill::before{content:"\f3c8"}.bi-filter-square::before{content:"\f3c9"}.bi-filter::before{content:"\f3ca"}.bi-flag-fill::before{content:"\f3cb"}.bi-flag::before{content:"\f3cc"}.bi-flower1::before{content:"\f3cd"}.bi-flower2::before{content:"\f3ce"}.bi-flower3::before{content:"\f3cf"}.bi-folder-check::before{content:"\f3d0"}.bi-folder-fill::before{content:"\f3d1"}.bi-folder-minus::before{content:"\f3d2"}.bi-folder-plus::before{content:"\f3d3"}.bi-folder-symlink-fill::before{content:"\f3d4"}.bi-folder-symlink::before{content:"\f3d5"}.bi-folder-x::before{content:"\f3d6"}.bi-folder::before{content:"\f3d7"}.bi-folder2-open::before{content:"\f3d8"}.bi-folder2::before{content:"\f3d9"}.bi-fonts::before{content:"\f3da"}.bi-forward-fill::before{content:"\f3db"}.bi-forward::before{content:"\f3dc"}.bi-front::before{content:"\f3dd"}.bi-fullscreen-exit::before{content:"\f3de"}.bi-fullscreen::before{content:"\f3df"}.bi-funnel-fill::before{content:"\f3e0"}.bi-funnel::before{content:"\f3e1"}.bi-gear-fill::before{content:"\f3e2"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-gear-wide::before{content:"\f3e4"}.bi-gear::before{content:"\f3e5"}.bi-gem::before{content:"\f3e6"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-geo-fill::before{content:"\f3e9"}.bi-geo::before{content:"\f3ea"}.bi-gift-fill::before{content:"\f3eb"}.bi-gift::before{content:"\f3ec"}.bi-github::before{content:"\f3ed"}.bi-globe::before{content:"\f3ee"}.bi-globe2::before{content:"\f3ef"}.bi-google::before{content:"\f3f0"}.bi-graph-down::before{content:"\f3f1"}.bi-graph-up::before{content:"\f3f2"}.bi-grid-1x2-fill::before{content:"\f3f3"}.bi-grid-1x2::before{content:"\f3f4"}.bi-grid-3x2-gap-fill::before{content:"\f3f5"}.bi-grid-3x2-gap::before{content:"\f3f6"}.bi-grid-3x2::before{content:"\f3f7"}.bi-grid-3x3-gap-fill::before{content:"\f3f8"}.bi-grid-3x3-gap::before{content:"\f3f9"}.bi-grid-3x3::before{content:"\f3fa"}.bi-grid-fill::before{content:"\f3fb"}.bi-grid::before{content:"\f3fc"}.bi-grip-horizontal::before{content:"\f3fd"}.bi-grip-vertical::before{content:"\f3fe"}.bi-hammer::before{content:"\f3ff"}.bi-hand-index-fill::before{content:"\f400"}.bi-hand-index-thumb-fill::before{content:"\f401"}.bi-hand-index-thumb::before{content:"\f402"}.bi-hand-index::before{content:"\f403"}.bi-hand-thumbs-down-fill::before{content:"\f404"}.bi-hand-thumbs-down::before{content:"\f405"}.bi-hand-thumbs-up-fill::before{content:"\f406"}.bi-hand-thumbs-up::before{content:"\f407"}.bi-handbag-fill::before{content:"\f408"}.bi-handbag::before{content:"\f409"}.bi-hash::before{content:"\f40a"}.bi-hdd-fill::before{content:"\f40b"}.bi-hdd-network-fill::before{content:"\f40c"}.bi-hdd-network::before{content:"\f40d"}.bi-hdd-rack-fill::before{content:"\f40e"}.bi-hdd-rack::before{content:"\f40f"}.bi-hdd-stack-fill::before{content:"\f410"}.bi-hdd-stack::before{content:"\f411"}.bi-hdd::before{content:"\f412"}.bi-headphones::before{content:"\f413"}.bi-headset::before{content:"\f414"}.bi-heart-fill::before{content:"\f415"}.bi-heart-half::before{content:"\f416"}.bi-heart::before{content:"\f417"}.bi-heptagon-fill::before{content:"\f418"}.bi-heptagon-half::before{content:"\f419"}.bi-heptagon::before{content:"\f41a"}.bi-hexagon-fill::before{content:"\f41b"}.bi-hexagon-half::before{content:"\f41c"}.bi-hexagon::before{content:"\f41d"}.bi-hourglass-bottom::before{content:"\f41e"}.bi-hourglass-split::before{content:"\f41f"}.bi-hourglass-top::before{content:"\f420"}.bi-hourglass::before{content:"\f421"}.bi-house-door-fill::before{content:"\f422"}.bi-house-door::before{content:"\f423"}.bi-house-fill::before{content:"\f424"}.bi-house::before{content:"\f425"}.bi-hr::before{content:"\f426"}.bi-hurricane::before{content:"\f427"}.bi-image-alt::before{content:"\f428"}.bi-image-fill::before{content:"\f429"}.bi-image::before{content:"\f42a"}.bi-images::before{content:"\f42b"}.bi-inbox-fill::before{content:"\f42c"}.bi-inbox::before{content:"\f42d"}.bi-inboxes-fill::before{content:"\f42e"}.bi-inboxes::before{content:"\f42f"}.bi-info-circle-fill::before{content:"\f430"}.bi-info-circle::before{content:"\f431"}.bi-info-square-fill::before{content:"\f432"}.bi-info-square::before{content:"\f433"}.bi-info::before{content:"\f434"}.bi-input-cursor-text::before{content:"\f435"}.bi-input-cursor::before{content:"\f436"}.bi-instagram::before{content:"\f437"}.bi-intersect::before{content:"\f438"}.bi-journal-album::before{content:"\f439"}.bi-journal-arrow-down::before{content:"\f43a"}.bi-journal-arrow-up::before{content:"\f43b"}.bi-journal-bookmark-fill::before{content:"\f43c"}.bi-journal-bookmark::before{content:"\f43d"}.bi-journal-check::before{content:"\f43e"}.bi-journal-code::before{content:"\f43f"}.bi-journal-medical::before{content:"\f440"}.bi-journal-minus::before{content:"\f441"}.bi-journal-plus::before{content:"\f442"}.bi-journal-richtext::before{content:"\f443"}.bi-journal-text::before{content:"\f444"}.bi-journal-x::before{content:"\f445"}.bi-journal::before{content:"\f446"}.bi-journals::before{content:"\f447"}.bi-joystick::before{content:"\f448"}.bi-justify-left::before{content:"\f449"}.bi-justify-right::before{content:"\f44a"}.bi-justify::before{content:"\f44b"}.bi-kanban-fill::before{content:"\f44c"}.bi-kanban::before{content:"\f44d"}.bi-key-fill::before{content:"\f44e"}.bi-key::before{content:"\f44f"}.bi-keyboard-fill::before{content:"\f450"}.bi-keyboard::before{content:"\f451"}.bi-ladder::before{content:"\f452"}.bi-lamp-fill::before{content:"\f453"}.bi-lamp::before{content:"\f454"}.bi-laptop-fill::before{content:"\f455"}.bi-laptop::before{content:"\f456"}.bi-layer-backward::before{content:"\f457"}.bi-layer-forward::before{content:"\f458"}.bi-layers-fill::before{content:"\f459"}.bi-layers-half::before{content:"\f45a"}.bi-layers::before{content:"\f45b"}.bi-layout-sidebar-inset-reverse::before{content:"\f45c"}.bi-layout-sidebar-inset::before{content:"\f45d"}.bi-layout-sidebar-reverse::before{content:"\f45e"}.bi-layout-sidebar::before{content:"\f45f"}.bi-layout-split::before{content:"\f460"}.bi-layout-text-sidebar-reverse::before{content:"\f461"}.bi-layout-text-sidebar::before{content:"\f462"}.bi-layout-text-window-reverse::before{content:"\f463"}.bi-layout-text-window::before{content:"\f464"}.bi-layout-three-columns::before{content:"\f465"}.bi-layout-wtf::before{content:"\f466"}.bi-life-preserver::before{content:"\f467"}.bi-lightbulb-fill::before{content:"\f468"}.bi-lightbulb-off-fill::before{content:"\f469"}.bi-lightbulb-off::before{content:"\f46a"}.bi-lightbulb::before{content:"\f46b"}.bi-lightning-charge-fill::before{content:"\f46c"}.bi-lightning-charge::before{content:"\f46d"}.bi-lightning-fill::before{content:"\f46e"}.bi-lightning::before{content:"\f46f"}.bi-link-45deg::before{content:"\f470"}.bi-link::before{content:"\f471"}.bi-linkedin::before{content:"\f472"}.bi-list-check::before{content:"\f473"}.bi-list-nested::before{content:"\f474"}.bi-list-ol::before{content:"\f475"}.bi-list-stars::before{content:"\f476"}.bi-list-task::before{content:"\f477"}.bi-list-ul::before{content:"\f478"}.bi-list::before{content:"\f479"}.bi-lock-fill::before{content:"\f47a"}.bi-lock::before{content:"\f47b"}.bi-mailbox::before{content:"\f47c"}.bi-mailbox2::before{content:"\f47d"}.bi-map-fill::before{content:"\f47e"}.bi-map::before{content:"\f47f"}.bi-markdown-fill::before{content:"\f480"}.bi-markdown::before{content:"\f481"}.bi-mask::before{content:"\f482"}.bi-megaphone-fill::before{content:"\f483"}.bi-megaphone::before{content:"\f484"}.bi-menu-app-fill::before{content:"\f485"}.bi-menu-app::before{content:"\f486"}.bi-menu-button-fill::before{content:"\f487"}.bi-menu-button-wide-fill::before{content:"\f488"}.bi-menu-button-wide::before{content:"\f489"}.bi-menu-button::before{content:"\f48a"}.bi-menu-down::before{content:"\f48b"}.bi-menu-up::before{content:"\f48c"}.bi-mic-fill::before{content:"\f48d"}.bi-mic-mute-fill::before{content:"\f48e"}.bi-mic-mute::before{content:"\f48f"}.bi-mic::before{content:"\f490"}.bi-minecart-loaded::before{content:"\f491"}.bi-minecart::before{content:"\f492"}.bi-moisture::before{content:"\f493"}.bi-moon-fill::before{content:"\f494"}.bi-moon-stars-fill::before{content:"\f495"}.bi-moon-stars::before{content:"\f496"}.bi-moon::before{content:"\f497"}.bi-mouse-fill::before{content:"\f498"}.bi-mouse::before{content:"\f499"}.bi-mouse2-fill::before{content:"\f49a"}.bi-mouse2::before{content:"\f49b"}.bi-mouse3-fill::before{content:"\f49c"}.bi-mouse3::before{content:"\f49d"}.bi-music-note-beamed::before{content:"\f49e"}.bi-music-note-list::before{content:"\f49f"}.bi-music-note::before{content:"\f4a0"}.bi-music-player-fill::before{content:"\f4a1"}.bi-music-player::before{content:"\f4a2"}.bi-newspaper::before{content:"\f4a3"}.bi-node-minus-fill::before{content:"\f4a4"}.bi-node-minus::before{content:"\f4a5"}.bi-node-plus-fill::before{content:"\f4a6"}.bi-node-plus::before{content:"\f4a7"}.bi-nut-fill::before{content:"\f4a8"}.bi-nut::before{content:"\f4a9"}.bi-octagon-fill::before{content:"\f4aa"}.bi-octagon-half::before{content:"\f4ab"}.bi-octagon::before{content:"\f4ac"}.bi-option::before{content:"\f4ad"}.bi-outlet::before{content:"\f4ae"}.bi-paint-bucket::before{content:"\f4af"}.bi-palette-fill::before{content:"\f4b0"}.bi-palette::before{content:"\f4b1"}.bi-palette2::before{content:"\f4b2"}.bi-paperclip::before{content:"\f4b3"}.bi-paragraph::before{content:"\f4b4"}.bi-patch-check-fill::before{content:"\f4b5"}.bi-patch-check::before{content:"\f4b6"}.bi-patch-exclamation-fill::before{content:"\f4b7"}.bi-patch-exclamation::before{content:"\f4b8"}.bi-patch-minus-fill::before{content:"\f4b9"}.bi-patch-minus::before{content:"\f4ba"}.bi-patch-plus-fill::before{content:"\f4bb"}.bi-patch-plus::before{content:"\f4bc"}.bi-patch-question-fill::before{content:"\f4bd"}.bi-patch-question::before{content:"\f4be"}.bi-pause-btn-fill::before{content:"\f4bf"}.bi-pause-btn::before{content:"\f4c0"}.bi-pause-circle-fill::before{content:"\f4c1"}.bi-pause-circle::before{content:"\f4c2"}.bi-pause-fill::before{content:"\f4c3"}.bi-pause::before{content:"\f4c4"}.bi-peace-fill::before{content:"\f4c5"}.bi-peace::before{content:"\f4c6"}.bi-pen-fill::before{content:"\f4c7"}.bi-pen::before{content:"\f4c8"}.bi-pencil-fill::before{content:"\f4c9"}.bi-pencil-square::before{content:"\f4ca"}.bi-pencil::before{content:"\f4cb"}.bi-pentagon-fill::before{content:"\f4cc"}.bi-pentagon-half::before{content:"\f4cd"}.bi-pentagon::before{content:"\f4ce"}.bi-people-fill::before{content:"\f4cf"}.bi-people::before{content:"\f4d0"}.bi-percent::before{content:"\f4d1"}.bi-person-badge-fill::before{content:"\f4d2"}.bi-person-badge::before{content:"\f4d3"}.bi-person-bounding-box::before{content:"\f4d4"}.bi-person-check-fill::before{content:"\f4d5"}.bi-person-check::before{content:"\f4d6"}.bi-person-circle::before{content:"\f4d7"}.bi-person-dash-fill::before{content:"\f4d8"}.bi-person-dash::before{content:"\f4d9"}.bi-person-fill::before{content:"\f4da"}.bi-person-lines-fill::before{content:"\f4db"}.bi-person-plus-fill::before{content:"\f4dc"}.bi-person-plus::before{content:"\f4dd"}.bi-person-square::before{content:"\f4de"}.bi-person-x-fill::before{content:"\f4df"}.bi-person-x::before{content:"\f4e0"}.bi-person::before{content:"\f4e1"}.bi-phone-fill::before{content:"\f4e2"}.bi-phone-landscape-fill::before{content:"\f4e3"}.bi-phone-landscape::before{content:"\f4e4"}.bi-phone-vibrate-fill::before{content:"\f4e5"}.bi-phone-vibrate::before{content:"\f4e6"}.bi-phone::before{content:"\f4e7"}.bi-pie-chart-fill::before{content:"\f4e8"}.bi-pie-chart::before{content:"\f4e9"}.bi-pin-angle-fill::before{content:"\f4ea"}.bi-pin-angle::before{content:"\f4eb"}.bi-pin-fill::before{content:"\f4ec"}.bi-pin::before{content:"\f4ed"}.bi-pip-fill::before{content:"\f4ee"}.bi-pip::before{content:"\f4ef"}.bi-play-btn-fill::before{content:"\f4f0"}.bi-play-btn::before{content:"\f4f1"}.bi-play-circle-fill::before{content:"\f4f2"}.bi-play-circle::before{content:"\f4f3"}.bi-play-fill::before{content:"\f4f4"}.bi-play::before{content:"\f4f5"}.bi-plug-fill::before{content:"\f4f6"}.bi-plug::before{content:"\f4f7"}.bi-plus-circle-dotted::before{content:"\f4f8"}.bi-plus-circle-fill::before{content:"\f4f9"}.bi-plus-circle::before{content:"\f4fa"}.bi-plus-square-dotted::before{content:"\f4fb"}.bi-plus-square-fill::before{content:"\f4fc"}.bi-plus-square::before{content:"\f4fd"}.bi-plus::before{content:"\f4fe"}.bi-power::before{content:"\f4ff"}.bi-printer-fill::before{content:"\f500"}.bi-printer::before{content:"\f501"}.bi-puzzle-fill::before{content:"\f502"}.bi-puzzle::before{content:"\f503"}.bi-question-circle-fill::before{content:"\f504"}.bi-question-circle::before{content:"\f505"}.bi-question-diamond-fill::before{content:"\f506"}.bi-question-diamond::before{content:"\f507"}.bi-question-octagon-fill::before{content:"\f508"}.bi-question-octagon::before{content:"\f509"}.bi-question-square-fill::before{content:"\f50a"}.bi-question-square::before{content:"\f50b"}.bi-question::before{content:"\f50c"}.bi-rainbow::before{content:"\f50d"}.bi-receipt-cutoff::before{content:"\f50e"}.bi-receipt::before{content:"\f50f"}.bi-reception-0::before{content:"\f510"}.bi-reception-1::before{content:"\f511"}.bi-reception-2::before{content:"\f512"}.bi-reception-3::before{content:"\f513"}.bi-reception-4::before{content:"\f514"}.bi-record-btn-fill::before{content:"\f515"}.bi-record-btn::before{content:"\f516"}.bi-record-circle-fill::before{content:"\f517"}.bi-record-circle::before{content:"\f518"}.bi-record-fill::before{content:"\f519"}.bi-record::before{content:"\f51a"}.bi-record2-fill::before{content:"\f51b"}.bi-record2::before{content:"\f51c"}.bi-reply-all-fill::before{content:"\f51d"}.bi-reply-all::before{content:"\f51e"}.bi-reply-fill::before{content:"\f51f"}.bi-reply::before{content:"\f520"}.bi-rss-fill::before{content:"\f521"}.bi-rss::before{content:"\f522"}.bi-rulers::before{content:"\f523"}.bi-save-fill::before{content:"\f524"}.bi-save::before{content:"\f525"}.bi-save2-fill::before{content:"\f526"}.bi-save2::before{content:"\f527"}.bi-scissors::before{content:"\f528"}.bi-screwdriver::before{content:"\f529"}.bi-search::before{content:"\f52a"}.bi-segmented-nav::before{content:"\f52b"}.bi-server::before{content:"\f52c"}.bi-share-fill::before{content:"\f52d"}.bi-share::before{content:"\f52e"}.bi-shield-check::before{content:"\f52f"}.bi-shield-exclamation::before{content:"\f530"}.bi-shield-fill-check::before{content:"\f531"}.bi-shield-fill-exclamation::before{content:"\f532"}.bi-shield-fill-minus::before{content:"\f533"}.bi-shield-fill-plus::before{content:"\f534"}.bi-shield-fill-x::before{content:"\f535"}.bi-shield-fill::before{content:"\f536"}.bi-shield-lock-fill::before{content:"\f537"}.bi-shield-lock::before{content:"\f538"}.bi-shield-minus::before{content:"\f539"}.bi-shield-plus::before{content:"\f53a"}.bi-shield-shaded::before{content:"\f53b"}.bi-shield-slash-fill::before{content:"\f53c"}.bi-shield-slash::before{content:"\f53d"}.bi-shield-x::before{content:"\f53e"}.bi-shield::before{content:"\f53f"}.bi-shift-fill::before{content:"\f540"}.bi-shift::before{content:"\f541"}.bi-shop-window::before{content:"\f542"}.bi-shop::before{content:"\f543"}.bi-shuffle::before{content:"\f544"}.bi-signpost-2-fill::before{content:"\f545"}.bi-signpost-2::before{content:"\f546"}.bi-signpost-fill::before{content:"\f547"}.bi-signpost-split-fill::before{content:"\f548"}.bi-signpost-split::before{content:"\f549"}.bi-signpost::before{content:"\f54a"}.bi-sim-fill::before{content:"\f54b"}.bi-sim::before{content:"\f54c"}.bi-skip-backward-btn-fill::before{content:"\f54d"}.bi-skip-backward-btn::before{content:"\f54e"}.bi-skip-backward-circle-fill::before{content:"\f54f"}.bi-skip-backward-circle::before{content:"\f550"}.bi-skip-backward-fill::before{content:"\f551"}.bi-skip-backward::before{content:"\f552"}.bi-skip-end-btn-fill::before{content:"\f553"}.bi-skip-end-btn::before{content:"\f554"}.bi-skip-end-circle-fill::before{content:"\f555"}.bi-skip-end-circle::before{content:"\f556"}.bi-skip-end-fill::before{content:"\f557"}.bi-skip-end::before{content:"\f558"}.bi-skip-forward-btn-fill::before{content:"\f559"}.bi-skip-forward-btn::before{content:"\f55a"}.bi-skip-forward-circle-fill::before{content:"\f55b"}.bi-skip-forward-circle::before{content:"\f55c"}.bi-skip-forward-fill::before{content:"\f55d"}.bi-skip-forward::before{content:"\f55e"}.bi-skip-start-btn-fill::before{content:"\f55f"}.bi-skip-start-btn::before{content:"\f560"}.bi-skip-start-circle-fill::before{content:"\f561"}.bi-skip-start-circle::before{content:"\f562"}.bi-skip-start-fill::before{content:"\f563"}.bi-skip-start::before{content:"\f564"}.bi-slack::before{content:"\f565"}.bi-slash-circle-fill::before{content:"\f566"}.bi-slash-circle::before{content:"\f567"}.bi-slash-square-fill::before{content:"\f568"}.bi-slash-square::before{content:"\f569"}.bi-slash::before{content:"\f56a"}.bi-sliders::before{content:"\f56b"}.bi-smartwatch::before{content:"\f56c"}.bi-snow::before{content:"\f56d"}.bi-snow2::before{content:"\f56e"}.bi-snow3::before{content:"\f56f"}.bi-sort-alpha-down-alt::before{content:"\f570"}.bi-sort-alpha-down::before{content:"\f571"}.bi-sort-alpha-up-alt::before{content:"\f572"}.bi-sort-alpha-up::before{content:"\f573"}.bi-sort-down-alt::before{content:"\f574"}.bi-sort-down::before{content:"\f575"}.bi-sort-numeric-down-alt::before{content:"\f576"}.bi-sort-numeric-down::before{content:"\f577"}.bi-sort-numeric-up-alt::before{content:"\f578"}.bi-sort-numeric-up::before{content:"\f579"}.bi-sort-up-alt::before{content:"\f57a"}.bi-sort-up::before{content:"\f57b"}.bi-soundwave::before{content:"\f57c"}.bi-speaker-fill::before{content:"\f57d"}.bi-speaker::before{content:"\f57e"}.bi-speedometer::before{content:"\f57f"}.bi-speedometer2::before{content:"\f580"}.bi-spellcheck::before{content:"\f581"}.bi-square-fill::before{content:"\f582"}.bi-square-half::before{content:"\f583"}.bi-square::before{content:"\f584"}.bi-stack::before{content:"\f585"}.bi-star-fill::before{content:"\f586"}.bi-star-half::before{content:"\f587"}.bi-star::before{content:"\f588"}.bi-stars::before{content:"\f589"}.bi-stickies-fill::before{content:"\f58a"}.bi-stickies::before{content:"\f58b"}.bi-sticky-fill::before{content:"\f58c"}.bi-sticky::before{content:"\f58d"}.bi-stop-btn-fill::before{content:"\f58e"}.bi-stop-btn::before{content:"\f58f"}.bi-stop-circle-fill::before{content:"\f590"}.bi-stop-circle::before{content:"\f591"}.bi-stop-fill::before{content:"\f592"}.bi-stop::before{content:"\f593"}.bi-stoplights-fill::before{content:"\f594"}.bi-stoplights::before{content:"\f595"}.bi-stopwatch-fill::before{content:"\f596"}.bi-stopwatch::before{content:"\f597"}.bi-subtract::before{content:"\f598"}.bi-suit-club-fill::before{content:"\f599"}.bi-suit-club::before{content:"\f59a"}.bi-suit-diamond-fill::before{content:"\f59b"}.bi-suit-diamond::before{content:"\f59c"}.bi-suit-heart-fill::before{content:"\f59d"}.bi-suit-heart::before{content:"\f59e"}.bi-suit-spade-fill::before{content:"\f59f"}.bi-suit-spade::before{content:"\f5a0"}.bi-sun-fill::before{content:"\f5a1"}.bi-sun::before{content:"\f5a2"}.bi-sunglasses::before{content:"\f5a3"}.bi-sunrise-fill::before{content:"\f5a4"}.bi-sunrise::before{content:"\f5a5"}.bi-sunset-fill::before{content:"\f5a6"}.bi-sunset::before{content:"\f5a7"}.bi-symmetry-horizontal::before{content:"\f5a8"}.bi-symmetry-vertical::before{content:"\f5a9"}.bi-table::before{content:"\f5aa"}.bi-tablet-fill::before{content:"\f5ab"}.bi-tablet-landscape-fill::before{content:"\f5ac"}.bi-tablet-landscape::before{content:"\f5ad"}.bi-tablet::before{content:"\f5ae"}.bi-tag-fill::before{content:"\f5af"}.bi-tag::before{content:"\f5b0"}.bi-tags-fill::before{content:"\f5b1"}.bi-tags::before{content:"\f5b2"}.bi-telegram::before{content:"\f5b3"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone-forward-fill::before{content:"\f5b5"}.bi-telephone-forward::before{content:"\f5b6"}.bi-telephone-inbound-fill::before{content:"\f5b7"}.bi-telephone-inbound::before{content:"\f5b8"}.bi-telephone-minus-fill::before{content:"\f5b9"}.bi-telephone-minus::before{content:"\f5ba"}.bi-telephone-outbound-fill::before{content:"\f5bb"}.bi-telephone-outbound::before{content:"\f5bc"}.bi-telephone-plus-fill::before{content:"\f5bd"}.bi-telephone-plus::before{content:"\f5be"}.bi-telephone-x-fill::before{content:"\f5bf"}.bi-telephone-x::before{content:"\f5c0"}.bi-telephone::before{content:"\f5c1"}.bi-terminal-fill::before{content:"\f5c2"}.bi-terminal::before{content:"\f5c3"}.bi-text-center::before{content:"\f5c4"}.bi-text-indent-left::before{content:"\f5c5"}.bi-text-indent-right::before{content:"\f5c6"}.bi-text-left::before{content:"\f5c7"}.bi-text-paragraph::before{content:"\f5c8"}.bi-text-right::before{content:"\f5c9"}.bi-textarea-resize::before{content:"\f5ca"}.bi-textarea-t::before{content:"\f5cb"}.bi-textarea::before{content:"\f5cc"}.bi-thermometer-half::before{content:"\f5cd"}.bi-thermometer-high::before{content:"\f5ce"}.bi-thermometer-low::before{content:"\f5cf"}.bi-thermometer-snow::before{content:"\f5d0"}.bi-thermometer-sun::before{content:"\f5d1"}.bi-thermometer::before{content:"\f5d2"}.bi-three-dots-vertical::before{content:"\f5d3"}.bi-three-dots::before{content:"\f5d4"}.bi-toggle-off::before{content:"\f5d5"}.bi-toggle-on::before{content:"\f5d6"}.bi-toggle2-off::before{content:"\f5d7"}.bi-toggle2-on::before{content:"\f5d8"}.bi-toggles::before{content:"\f5d9"}.bi-toggles2::before{content:"\f5da"}.bi-tools::before{content:"\f5db"}.bi-tornado::before{content:"\f5dc"}.bi-trash-fill::before{content:"\f5dd"}.bi-trash::before{content:"\f5de"}.bi-trash2-fill::before{content:"\f5df"}.bi-trash2::before{content:"\f5e0"}.bi-tree-fill::before{content:"\f5e1"}.bi-tree::before{content:"\f5e2"}.bi-triangle-fill::before{content:"\f5e3"}.bi-triangle-half::before{content:"\f5e4"}.bi-triangle::before{content:"\f5e5"}.bi-trophy-fill::before{content:"\f5e6"}.bi-trophy::before{content:"\f5e7"}.bi-tropical-storm::before{content:"\f5e8"}.bi-truck-flatbed::before{content:"\f5e9"}.bi-truck::before{content:"\f5ea"}.bi-tsunami::before{content:"\f5eb"}.bi-tv-fill::before{content:"\f5ec"}.bi-tv::before{content:"\f5ed"}.bi-twitch::before{content:"\f5ee"}.bi-twitter::before{content:"\f5ef"}.bi-type-bold::before{content:"\f5f0"}.bi-type-h1::before{content:"\f5f1"}.bi-type-h2::before{content:"\f5f2"}.bi-type-h3::before{content:"\f5f3"}.bi-type-italic::before{content:"\f5f4"}.bi-type-strikethrough::before{content:"\f5f5"}.bi-type-underline::before{content:"\f5f6"}.bi-type::before{content:"\f5f7"}.bi-ui-checks-grid::before{content:"\f5f8"}.bi-ui-checks::before{content:"\f5f9"}.bi-ui-radios-grid::before{content:"\f5fa"}.bi-ui-radios::before{content:"\f5fb"}.bi-umbrella-fill::before{content:"\f5fc"}.bi-umbrella::before{content:"\f5fd"}.bi-union::before{content:"\f5fe"}.bi-unlock-fill::before{content:"\f5ff"}.bi-unlock::before{content:"\f600"}.bi-upc-scan::before{content:"\f601"}.bi-upc::before{content:"\f602"}.bi-upload::before{content:"\f603"}.bi-vector-pen::before{content:"\f604"}.bi-view-list::before{content:"\f605"}.bi-view-stacked::before{content:"\f606"}.bi-vinyl-fill::before{content:"\f607"}.bi-vinyl::before{content:"\f608"}.bi-voicemail::before{content:"\f609"}.bi-volume-down-fill::before{content:"\f60a"}.bi-volume-down::before{content:"\f60b"}.bi-volume-mute-fill::before{content:"\f60c"}.bi-volume-mute::before{content:"\f60d"}.bi-volume-off-fill::before{content:"\f60e"}.bi-volume-off::before{content:"\f60f"}.bi-volume-up-fill::before{content:"\f610"}.bi-volume-up::before{content:"\f611"}.bi-vr::before{content:"\f612"}.bi-wallet-fill::before{content:"\f613"}.bi-wallet::before{content:"\f614"}.bi-wallet2::before{content:"\f615"}.bi-watch::before{content:"\f616"}.bi-water::before{content:"\f617"}.bi-whatsapp::before{content:"\f618"}.bi-wifi-1::before{content:"\f619"}.bi-wifi-2::before{content:"\f61a"}.bi-wifi-off::before{content:"\f61b"}.bi-wifi::before{content:"\f61c"}.bi-wind::before{content:"\f61d"}.bi-window-dock::before{content:"\f61e"}.bi-window-sidebar::before{content:"\f61f"}.bi-window::before{content:"\f620"}.bi-wrench::before{content:"\f621"}.bi-x-circle-fill::before{content:"\f622"}.bi-x-circle::before{content:"\f623"}.bi-x-diamond-fill::before{content:"\f624"}.bi-x-diamond::before{content:"\f625"}.bi-x-octagon-fill::before{content:"\f626"}.bi-x-octagon::before{content:"\f627"}.bi-x-square-fill::before{content:"\f628"}.bi-x-square::before{content:"\f629"}.bi-x::before{content:"\f62a"}.bi-youtube::before{content:"\f62b"}.bi-zoom-in::before{content:"\f62c"}.bi-zoom-out::before{content:"\f62d"}.bi-bank::before{content:"\f62e"}.bi-bank2::before{content:"\f62f"}.bi-bell-slash-fill::before{content:"\f630"}.bi-bell-slash::before{content:"\f631"}.bi-cash-coin::before{content:"\f632"}.bi-check-lg::before{content:"\f633"}.bi-coin::before{content:"\f634"}.bi-currency-bitcoin::before{content:"\f635"}.bi-currency-dollar::before{content:"\f636"}.bi-currency-euro::before{content:"\f637"}.bi-currency-exchange::before{content:"\f638"}.bi-currency-pound::before{content:"\f639"}.bi-currency-yen::before{content:"\f63a"}.bi-dash-lg::before{content:"\f63b"}.bi-exclamation-lg::before{content:"\f63c"}.bi-file-earmark-pdf-fill::before{content:"\f63d"}.bi-file-earmark-pdf::before{content:"\f63e"}.bi-file-pdf-fill::before{content:"\f63f"}.bi-file-pdf::before{content:"\f640"}.bi-gender-ambiguous::before{content:"\f641"}.bi-gender-female::before{content:"\f642"}.bi-gender-male::before{content:"\f643"}.bi-gender-trans::before{content:"\f644"}.bi-headset-vr::before{content:"\f645"}.bi-info-lg::before{content:"\f646"}.bi-mastodon::before{content:"\f647"}.bi-messenger::before{content:"\f648"}.bi-piggy-bank-fill::before{content:"\f649"}.bi-piggy-bank::before{content:"\f64a"}.bi-pin-map-fill::before{content:"\f64b"}.bi-pin-map::before{content:"\f64c"}.bi-plus-lg::before{content:"\f64d"}.bi-question-lg::before{content:"\f64e"}.bi-recycle::before{content:"\f64f"}.bi-reddit::before{content:"\f650"}.bi-safe-fill::before{content:"\f651"}.bi-safe2-fill::before{content:"\f652"}.bi-safe2::before{content:"\f653"}.bi-sd-card-fill::before{content:"\f654"}.bi-sd-card::before{content:"\f655"}.bi-skype::before{content:"\f656"}.bi-slash-lg::before{content:"\f657"}.bi-translate::before{content:"\f658"}.bi-x-lg::before{content:"\f659"}.bi-safe::before{content:"\f65a"}.bi-apple::before{content:"\f65b"}.bi-microsoft::before{content:"\f65d"}.bi-windows::before{content:"\f65e"}.bi-behance::before{content:"\f65c"}.bi-dribbble::before{content:"\f65f"}.bi-line::before{content:"\f660"}.bi-medium::before{content:"\f661"}.bi-paypal::before{content:"\f662"}.bi-pinterest::before{content:"\f663"}.bi-signal::before{content:"\f664"}.bi-snapchat::before{content:"\f665"}.bi-spotify::before{content:"\f666"}.bi-stack-overflow::before{content:"\f667"}.bi-strava::before{content:"\f668"}.bi-wordpress::before{content:"\f669"}.bi-vimeo::before{content:"\f66a"}.bi-activity::before{content:"\f66b"}.bi-easel2-fill::before{content:"\f66c"}.bi-easel2::before{content:"\f66d"}.bi-easel3-fill::before{content:"\f66e"}.bi-easel3::before{content:"\f66f"}.bi-fan::before{content:"\f670"}.bi-fingerprint::before{content:"\f671"}.bi-graph-down-arrow::before{content:"\f672"}.bi-graph-up-arrow::before{content:"\f673"}.bi-hypnotize::before{content:"\f674"}.bi-magic::before{content:"\f675"}.bi-person-rolodex::before{content:"\f676"}.bi-person-video::before{content:"\f677"}.bi-person-video2::before{content:"\f678"}.bi-person-video3::before{content:"\f679"}.bi-person-workspace::before{content:"\f67a"}.bi-radioactive::before{content:"\f67b"}.bi-webcam-fill::before{content:"\f67c"}.bi-webcam::before{content:"\f67d"}.bi-yin-yang::before{content:"\f67e"}.bi-bandaid-fill::before{content:"\f680"}.bi-bandaid::before{content:"\f681"}.bi-bluetooth::before{content:"\f682"}.bi-body-text::before{content:"\f683"}.bi-boombox::before{content:"\f684"}.bi-boxes::before{content:"\f685"}.bi-dpad-fill::before{content:"\f686"}.bi-dpad::before{content:"\f687"}.bi-ear-fill::before{content:"\f688"}.bi-ear::before{content:"\f689"}.bi-envelope-check-1::before{content:"\f68a"}.bi-envelope-check-fill::before{content:"\f68b"}.bi-envelope-check::before{content:"\f68c"}.bi-envelope-dash-1::before{content:"\f68d"}.bi-envelope-dash-fill::before{content:"\f68e"}.bi-envelope-dash::before{content:"\f68f"}.bi-envelope-exclamation-1::before{content:"\f690"}.bi-envelope-exclamation-fill::before{content:"\f691"}.bi-envelope-exclamation::before{content:"\f692"}.bi-envelope-plus-fill::before{content:"\f693"}.bi-envelope-plus::before{content:"\f694"}.bi-envelope-slash-1::before{content:"\f695"}.bi-envelope-slash-fill::before{content:"\f696"}.bi-envelope-slash::before{content:"\f697"}.bi-envelope-x-1::before{content:"\f698"}.bi-envelope-x-fill::before{content:"\f699"}.bi-envelope-x::before{content:"\f69a"}.bi-explicit-fill::before{content:"\f69b"}.bi-explicit::before{content:"\f69c"}.bi-git::before{content:"\f69d"}.bi-infinity::before{content:"\f69e"}.bi-list-columns-reverse::before{content:"\f69f"}.bi-list-columns::before{content:"\f6a0"}.bi-meta::before{content:"\f6a1"}.bi-mortorboard-fill::before{content:"\f6a2"}.bi-mortorboard::before{content:"\f6a3"}.bi-nintendo-switch::before{content:"\f6a4"}.bi-pc-display-horizontal::before{content:"\f6a5"}.bi-pc-display::before{content:"\f6a6"}.bi-pc-horizontal::before{content:"\f6a7"}.bi-pc::before{content:"\f6a8"}.bi-playstation::before{content:"\f6a9"}.bi-plus-slash-minus::before{content:"\f6aa"}.bi-projector-fill::before{content:"\f6ab"}.bi-projector::before{content:"\f6ac"}.bi-qr-code-scan::before{content:"\f6ad"}.bi-qr-code::before{content:"\f6ae"}.bi-quora::before{content:"\f6af"}.bi-quote::before{content:"\f6b0"}.bi-robot::before{content:"\f6b1"}.bi-send-check-fill::before{content:"\f6b2"}.bi-send-check::before{content:"\f6b3"}.bi-send-dash-fill::before{content:"\f6b4"}.bi-send-dash::before{content:"\f6b5"}.bi-send-exclamation-1::before{content:"\f6b6"}.bi-send-exclamation-fill::before{content:"\f6b7"}.bi-send-exclamation::before{content:"\f6b8"}.bi-send-fill::before{content:"\f6b9"}.bi-send-plus-fill::before{content:"\f6ba"}.bi-send-plus::before{content:"\f6bb"}.bi-send-slash-fill::before{content:"\f6bc"}.bi-send-slash::before{content:"\f6bd"}.bi-send-x-fill::before{content:"\f6be"}.bi-send-x::before{content:"\f6bf"}.bi-send::before{content:"\f6c0"}.bi-steam::before{content:"\f6c1"}.bi-terminal-dash-1::before{content:"\f6c2"}.bi-terminal-dash::before{content:"\f6c3"}.bi-terminal-plus::before{content:"\f6c4"}.bi-terminal-split::before{content:"\f6c5"}.bi-ticket-detailed-fill::before{content:"\f6c6"}.bi-ticket-detailed::before{content:"\f6c7"}.bi-ticket-fill::before{content:"\f6c8"}.bi-ticket-perferated-fill::before{content:"\f6c9"}.bi-ticket-perferated::before{content:"\f6ca"}.bi-ticket::before{content:"\f6cb"}.bi-tiktok::before{content:"\f6cc"}.bi-window-dash::before{content:"\f6cd"}.bi-window-desktop::before{content:"\f6ce"}.bi-window-fullscreen::before{content:"\f6cf"}.bi-window-plus::before{content:"\f6d0"}.bi-window-split::before{content:"\f6d1"}.bi-window-stack::before{content:"\f6d2"}.bi-window-x::before{content:"\f6d3"}.bi-xbox::before{content:"\f6d4"}.bi-ethernet::before{content:"\f6d5"}.bi-hdmi-fill::before{content:"\f6d6"}.bi-hdmi::before{content:"\f6d7"}.bi-usb-c-fill::before{content:"\f6d8"}.bi-usb-c::before{content:"\f6d9"}.bi-usb-fill::before{content:"\f6da"}.bi-usb-plug-fill::before{content:"\f6db"}.bi-usb-plug::before{content:"\f6dc"}.bi-usb-symbol::before{content:"\f6dd"}.bi-usb::before{content:"\f6de"}.bi-boombox-fill::before{content:"\f6df"}.bi-displayport-1::before{content:"\f6e0"}.bi-displayport::before{content:"\f6e1"}.bi-gpu-card::before{content:"\f6e2"}.bi-memory::before{content:"\f6e3"}.bi-modem-fill::before{content:"\f6e4"}.bi-modem::before{content:"\f6e5"}.bi-motherboard-fill::before{content:"\f6e6"}.bi-motherboard::before{content:"\f6e7"}.bi-optical-audio-fill::before{content:"\f6e8"}.bi-optical-audio::before{content:"\f6e9"}.bi-pci-card::before{content:"\f6ea"}.bi-router-fill::before{content:"\f6eb"}.bi-router::before{content:"\f6ec"}.bi-ssd-fill::before{content:"\f6ed"}.bi-ssd::before{content:"\f6ee"}.bi-thunderbolt-fill::before{content:"\f6ef"}.bi-thunderbolt::before{content:"\f6f0"}.bi-usb-drive-fill::before{content:"\f6f1"}.bi-usb-drive::before{content:"\f6f2"}.bi-usb-micro-fill::before{content:"\f6f3"}.bi-usb-micro::before{content:"\f6f4"}.bi-usb-mini-fill::before{content:"\f6f5"}.bi-usb-mini::before{content:"\f6f6"}.bi-cloud-haze2::before{content:"\f6f7"}.bi-device-hdd-fill::before{content:"\f6f8"}.bi-device-hdd::before{content:"\f6f9"}.bi-device-ssd-fill::before{content:"\f6fa"}.bi-device-ssd::before{content:"\f6fb"}.bi-displayport-fill::before{content:"\f6fc"}.bi-mortarboard-fill::before{content:"\f6fd"}.bi-mortarboard::before{content:"\f6fe"}.bi-terminal-x::before{content:"\f6ff"}.swiper-slide,.swiper-wrapper{height:100%;position:relative;transition-property:transform;width:100%}.swiper-android .swiper-slide,.swiper-pagination,.swiper-wrapper{transform:translate3d(0,0,0)}.swiper-fade.swiper-free-mode .swiper-slide,.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out}@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff;--swiper-navigation-size:44px}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{z-index:1;display:flex;box-sizing:content-box}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock,.swiper-pagination-lock,.swiper-scrollbar-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:opacity .3s;z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,left .2s}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag,.swiper-slide-zoomed{cursor:move}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:1s linear infinite swiper-preloader-spin;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-cube .swiper-slide .swiper-slide,.swiper-fade .swiper-slide .swiper-slide,.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active,.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active,.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cards,.swiper-cube,.swiper-flip{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top,.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
.slick-dots,.slick-next,.slick-prev{padding:0;display:block;position:absolute}.slick-dots li,.slick-dots li button,.slick-next,.slick-prev{cursor:pointer;width:20px;height:20px}.slick-dots li button:before,.slick-next:before,.slick-prev:before{font-family:slick;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-loading .slick-list{background:url(https://asturguias.com/wp-content/themes/astrip/assets/css/ajax-loader.gif) center center no-repeat #fff}.slick-dots li button,.slick-next,.slick-next:focus,.slick-next:hover,.slick-prev,.slick-prev:focus,.slick-prev:hover{color:transparent;background:0 0;outline:0}@font-face{font-family:slick;font-weight:400;font-style:normal;src:url(https://asturguias.com/wp-content/themes/astrip/assets/css/fonts/slick.eot);src:url(https://asturguias.com/wp-content/themes/astrip/assets/css/fonts/slick.eot?#iefix) format('embedded-opentype'),url(https://asturguias.com/wp-content/themes/astrip/assets/css/fonts/slick.woff) format('woff'),url(https://asturguias.com/wp-content/themes/astrip/assets/css/fonts/slick.ttf) format('truetype'),url(https://asturguias.com/wp-content/themes/astrip/assets/css/fonts/slick.svg#slick) format('svg')}.slick-next,.slick-prev{font-size:0;line-height:0;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);border:none}.slick-dots li button:focus:before,.slick-dots li button:hover:before,.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{font-size:20px;line-height:1;opacity:.75;color:#fff}.slick-prev{left:-25px}[dir=rtl] .slick-prev{right:-25px;left:auto}.slick-prev:before,[dir=rtl] .slick-next:before{content:'←'}.slick-next:before,[dir=rtl] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir=rtl] .slick-next{right:auto;left:-25px}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{bottom:-25px;width:100%;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;margin:0 5px;padding:0}.slick-dots li button{font-size:0;line-height:0;display:block;padding:5px;border:0}.slick-dots li button:focus,.slick-dots li button:hover{outline:0}.slick-dots li button:before{font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:#000}.slick-dots li.slick-active button:before{opacity:.75;color:#000}.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-initialized .slick-slide,.slick-slide img{display:block}.slick-arrow.slick-hidden,.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.nice-select,.nice-select .list{background-color:#fff;box-sizing:border-box}.nice-select .list,.nice-select:after{pointer-events:none;position:absolute}.nice-select,.nice-select .option{cursor:pointer;font-weight:400;outline:0}.nice-select,.no-csspointerevents .nice-select.open .list{display:block}.nice-select{-webkit-tap-highlight-color:transparent;border-radius:5px;border:1px solid #e8e8e8;clear:both;float:left;font-family:inherit;font-size:14px;height:42px;line-height:40px;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.nice-select:hover{border-color:#dbdbdb}.nice-select.open,.nice-select:active,.nice-select:focus{border-color:#999}.nice-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.15s ease-in-out;transition:.15s ease-in-out;width:5px}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0!important;right:0!important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-select .list{border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);margin-top:4px;opacity:0;overflow:hidden;padding:0;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:.2s cubic-bezier(.5, 0, 0, 1.25),opacity .15s ease-out;transition:.2s cubic-bezier(.5, 0, 0, 1.25),opacity .15s ease-out;z-index:9}.nice-select .list:hover .option:not(:hover){background-color:transparent!important}.nice-select .option{line-height:40px;list-style:none;min-height:40px;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:.2s;transition:.2s}.nice-select .option.focus,.nice-select .option.selected.focus,.nice-select .option:hover{background-color:#f6f6f6}.nice-select .option.selected{font-weight:700}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.mfp-bg,.mfp-container,.mfp-wrap{left:0;top:0;width:100%;height:100%}.mfp-container:before,.mfp-content{display:inline-block;vertical-align:middle}.mfp-bg{z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';height:100%}.mfp-align-top .mfp-container:before,.mfp-loading.mfp-figure,.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}.mfp-content{position:relative;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-gallery .mfp-image-holder .mfp-figure,.mfp-zoom{cursor:pointer}.mfp-zoom{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-close,.mfp-preloader a:hover{color:#fff}.mfp-preloader a{color:#ccc}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}.mfp-figure:after,.mfp-iframe-scaler iframe{box-shadow:0 0 8px rgba(0,0,0,.6);position:absolute;left:0}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-arrow:focus,.mfp-arrow:hover,.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-figure,img.mfp-img{line-height:0}.mfp-arrow{position:absolute;opacity:.65;margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{display:block;top:0;width:100%;height:100%;background:#000}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{content:'';top:40px;bottom:40px;right:0;z-index:-1;background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile .mfp-bottom-bar:empty,.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.odometer.odometer-auto-theme,.odometer.odometer-auto-theme .odometer-digit,.odometer.odometer-theme-default,.odometer.odometer-theme-default .odometer-digit{display:inline-block;vertical-align:middle;position:relative}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer{display:inline-block;vertical-align:middle;visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner{text-align:left;display:block;position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon{display:block}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner{display:block;-webkit-backface-visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-value,.odometer.odometer-theme-default .odometer-digit .odometer-value{display:block;-webkit-transform:translateZ(0)}.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value{position:absolute}.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s}.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.odometer.odometer-auto-theme .odometer-value,.odometer.odometer-theme-default .odometer-value{text-align:center}.ui-button-icon-only,.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-checkboxradio-disabled,.ui-state-disabled{pointer-events:none}.ui-datepicker .ui-icon,.ui-icon{text-indent:-99999px;background-repeat:no-repeat}.ui-helper-reset,.ui-menu{outline:0;list-style:none}.ui-helper-hidden,.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;line-height:1.3;text-decoration:none;font-size:100%}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;overflow:hidden}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-autocomplete,.ui-menu .ui-menu{position:absolute}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{top:0;left:0;cursor:default}.ui-menu{padding:0;margin:0;display:block}.ui-button,.ui-controlgroup{display:inline-block;vertical-align:middle}.ui-button,.ui-menu-icons,.ui-resizable{position:relative}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-button,.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{line-height:normal;margin-right:.1em;cursor:pointer;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-multi .ui-datepicker-group,.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group,.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;overflow:hidden;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0 0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle,.ui-selectable,.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==);height:100%;-ms-filter:"alpha(opacity=25)";opacity:.25}.ui-icon-blank.ui-icon-blank.ui-icon-blank,.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:pointer;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min,.ui-spinner-down{bottom:0}.ui-slider-vertical .ui-slider-range-max,.ui-spinner-up{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:0 0;color:inherit;padding:.222em 0;margin:.2em 2em .2em .4em;vertical-align:middle}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0 0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget,.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a,.ui-widget-header a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-state-error-text,.ui-widget-content .ui-state-error a,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error a,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;-ms-filter:"alpha(opacity=70)";font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;-ms-filter:"alpha(opacity=35)";background-image:none}.ui-state-disabled .ui-icon{-ms-filter:"alpha(opacity=35)"}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon,.ui-widget-header .ui-icon{background-image:url(//asturguias.com/wp-content/themes/astrip/assets/css/images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(//asturguias.com/wp-content/themes/astrip/assets/css/images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(//asturguias.com/wp-content/themes/astrip/assets/css/images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(//asturguias.com/wp-content/themes/astrip/assets/css/images/ui-icons_777620_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(//asturguias.com/wp-content/themes/astrip/assets/css/images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(//asturguias.com/wp-content/themes/astrip/assets/css/images/ui-icons_777777_256x240.png)}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-first,.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;-ms-filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}:root { --primary-color1: #90B956;
--primary-color2: #F2AA4CFF;
--primary-color3: #D55437;
--primary-color1-light: rgba(144, 185, 86, 0.7);
--primary1-dark: #359D9E;
--white: #fff;
--text-primary: #09100D;
--text-secondary: #5E5E5E;
--text-light: #878787;
--border-color: #DDDDDD;
--font-satisfy: 'Satisfy';
--font-merriw: 'Merriweather', serif;
--font-work-sans: 'Work Sans', sans-serif;
} .top-area.single-page {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
height: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
.banner-area-bg {
background-position: center center !important;
}
}
@media only screen and (max-width: 767px) {
.banner-area-bg {
background-position: center center !important;
}
} .page-title h1 {
font-size: 48px;
line-height: 1.1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {}
@media (min-width: 768px) and (max-width: 991px) {
.page-title h1 {
line-height: 1.1;
}
}
@media only screen and (max-width: 767px) {
.page-title h1 {
font-size: 26px;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.page-title h1 {
font-size: 28px;
}
} .post__author img {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 5px;
background: #e5e9f2;
} .post-title {
font-size: 32px;
margin-bottom: 20px;
}
.post-title a {
color: #1a152e;
}
.post-title a:hover {
color: var(--primary-color1);
} ::-webkit-search-cancel-button {
-webkit-appearance: none !important;
appearance: none !important;
}
::search-cancel-button {
-webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
}
.entry-content> :last-child,
.entry-summary> :last-child,
body:not(.search-results) .entry-summary> :last-child,
.page-wrapper> :last-child,
.comment-content> :last-child,
.textwidget> :last-child {
margin-bottom: 0;
}
.page-wrapper .alignright {
margin-top: 20px;
display: inline-block;
}
table,
.page-wrapper table,
.blog-details table,
.blog-comments table {
width: 100%;
border-left: 1px solid var(--primary-color1);
border-top: 1px solid var(--primary-color1);
margin-bottom: 30px;
}
table th,
table tr,
.page-wrapper table th,
.page-wrapper table tr,
.page-wrapper table td,
.blog-details table th,
.blog-details table tr,
.blog-details table td,
.blog-comments table th,
.blog-comments table tr,
.blog-comments table td {
border: 1px solid var(--primary-color1);
padding: 10px;
}
.page-wrapper dl dd,
.blog-details dl dd,
.blog-comments dl dd {
margin-bottom: 20px;
}
.page-wrapper .inner-post .pagination {
clear: both;
gap: 10px;
}
.page-wrapper .inner-post .blog-comment-form {
margin-top: 30px;
clear: both;
}
.page-wrapper dd,
.blog-details dd,
.blog-comments dd,
.page-wrapper dt,
.blog-details dt,
.blog-comments dt {
line-height: inherit;
}
.page-wrapper>ul,
.page-wrapper>ol,
.blog-details>ul,
.blog-details>ol {
margin-bottom: 30px;
}
.comment-content>ul,
.comment-content>ol {
margin-bottom: 30px;
}
.blog-details ul,
.blog-details ol {
clear: both;
margin-top: 15px;
gap: 15px;
}
.blog-share-area .blog-share .back .share-list>li {
line-height: unset;
}
.blog-details ul li,
.blog-details ol li {
margin-bottom: 5px;
line-height: 1.8;
}
figure.wp-block-audio {
margin-bottom: 20px;
}
p.has-large-font-size,
p.has-large-font-size+p {
line-height: 1.3;
}
.page-links p {
margin-bottom: 20px !important;
font-size: 20px;
text-transform: capitalize;
letter-spacing: 1px;
}
.blog-details form {
width: 100%;
border: 1px solid var(--primary-color1);
padding: 30px;
text-align: center;
border-radius: 5px;
margin-bottom: 20px;
}
.blog-details form input {
height: 50px;
border-radius: 3px 0px 0px 3px;
width: 100%;
border: 1px solid #F0F0F0;
padding: 20px;
background: #F0F0F0;
}
.blog-details form span {
display: block;
width: 100%;
margin-bottom: 20px;
}
.blog-details form br {
display: none;
}
.blog-details form input[type="submit"],
.blog-details form button[type="submit"] {
min-width: 90px;
font-weight: 600;
padding: 10px 15px;
background: var(--primary-color1);
transition: all 0.42s ease-in-out;
height: 50px;
margin: 0;
border: 2px solid var(--primary-color1);
}
.blog-details form input[type="submit"]:hover,
.blog-details form button[type="submit"]:hover {
background: var(--text-color2);
color: var(--primary-color1);
}
.wp-block-button {
margin-bottom: 20px;
}
.wp-block-cover.has-background-dim {
color: #ffffff;
}
.wp-block-rss__item {
font-weight: 500;
}
.wp-block-latest-posts,
.wp-block-latest-comments,
.wp-block-categories,
.wp-block-archives {
margin: 0;
list-style: none;
padding: 0;
}
.wp-block-latest-posts li,
.wp-block-latest-comments li,
.wp-block-archives li {
position: relative;
padding-left: 0;
transition: all .65s ease;
margin-bottom: 20px;
}
.wp-block-latest-posts li:last-child,
.wp-block-latest-comments li:last-child,
.wp-block-archives li:last-child {
margin-bottom: 0;
}
.wp-block-group__inner-container>h2 {
position: relative;
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
display: inline-block;
padding-bottom: 12px;
margin-bottom: 30px;
}
.wp-block-group__inner-container>h2::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 70px;
background: linear-gradient(90.04deg, var(--primary-color1) 0%, rgba(30, 204, 209, 0) 99.27%);
border-radius: 30px;
height: 2px;
}
.wp-block-archives select {
width: 100%;
padding: 10px;
margin-bottom: 20px;
}
code {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
margin-bottom: 20px;
}
.blog-details>[class^="wp-block-"] {
margin-bottom: 30px;
width: 100%;
}
.wp-block-archives-dropdown {
margin-bottom: 30px;
}
.blog-details .blog-details-single .wp-block-archives .nice-select,
.blog-details .blog-details-single .wp-block-categories .nice-select {
margin-bottom: 30px;
border: 1px solid #F0F0F0;
height: 50px;
line-height: 50px;
}
pre.wp-block-code {
background: var(--border-color);
border: none;
}
pre.wp-block-preformatted {
margin-top: 10px;
}
.wp-block-table .has-fixed-layout {
background: #fff;
}
.wp-block-table .has-fixed-layout * {
border-color: var(--primary-color1) !important;
}
pre {
background: #dea05775;
}
code {
color: #000;
padding: 5px 15px;
background: var(--border-color);
}
.wp-block-calendar {
margin-bottom: 30px;
}
.wp-block-calendar nav.wp-calendar-nav {
padding: 10px;
}
.wp-block-calendar nav.wp-calendar-nav a {
text-decoration: none;
}
.wp-block-media-text__content .has-large-font-size+p {
line-height: 1.6;
}
.wp-block-group.has-background {
padding: 20px;
margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.post-social-share-and-like-count {
display: none;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.post-social-share-and-like-count {
display: none;
}
}
@media only screen and (max-width: 767px) {
.post-social-share-and-like-count {
display: none;
}
.blog-details blockquote h2,
.blog-comments blockquote h2,
.page-wrapper blockquote h2 {
font-size: 18px;
}
.blog-details blockquote,
.blog-comments blockquote,
.page-wrapper blockquote {
padding: 30px;
}
} .post .sticky-post-icon {
position: absolute;
right: 0;
top: 0;
width: 100px;
height: 100px;
content: "\e6de";
font-family: "themify";
display: block;
font-size: 80px;
color: var(--primary-color1);
left: auto;
padding-top: 14px;
line-height: 1;
text-align: center;
border-radius: 50%;
opacity: 0.3;
}
.post.sticky .signle-news-list {
border-radius: 5px;
border: 4px double var(--primary-color1);
}
.post.sticky.single-post-item .blog-details {
padding: 30px;
} .format-link a:hover {
color: var(--primary-color1);
}
.format-link a {
font-weight: 500;
} .format-chat .blog-details p {
background: #f6f9ff;
padding: 15px;
margin-right: 20px;
}
.format-chat .blog-details p:nth-child(2n) {
margin-left: 20px;
margin-right: 0;
} .format-gallery .owl-carousel .owl-item img {
max-width: 100%;
width: 100%;
}
.format-gallery .owl-carousel .owl-nav>div {
background: #ffffff none repeat scroll 0 0;
border-radius: 50%;
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
color: #0a0c19;
height: 60px;
left: 60px;
opacity: 0;
padding-top: 17px;
position: absolute;
text-align: center;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease 0s;
width: 60px;
}
.format-gallery .owl-carousel .owl-nav>div:hover {
background: var(--primary-color1);
color: #ffffff;
}
.format-gallery .owl-carousel .owl-nav>div.owl-next {
left: auto;
right: 60px;
}
.format-gallery .owl-carousel:hover .owl-nav>div.owl-next {
opacity: 1;
right: 20px;
visibility: visible;
}
.format-gallery .owl-carousel:hover .owl-nav>div.owl-prev {
left: 20px;
opacity: 1;
visibility: visible;
}
.format-gallery .owl-carousel .owl-dots {
position: absolute;
right: 20px;
bottom: 20px;
}
.format-gallery .owl-carousel .owl-dots>div {
display: inline-block;
width: 20px;
height: 10px;
border-radius: 3px;
transition: 0.3s;
background: #ffffff;
}
.format-gallery .owl-carousel .owl-dots>div.active {
background: var(--primary-color1);
width: 30px;
} .format-video .post-video-popup {
left: 50%;
position: absolute;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.post-video-popup {
background: var(--primary-color1) none repeat scroll 0 0;
border-radius: 50%;
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
color: #ffffff;
cursor: pointer;
font-size: 18px;
height: 80px;
line-height: 1;
margin-right: 30px;
padding-left: 10px;
padding-top: 2px;
position: relative;
text-align: center;
transition: all 0.3s ease 0s;
width: 80px;
border: 0;
}
.post-video-popup:hover {
background: #ffffff none repeat scroll 0 0;
color: var(--primary-color1);
box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
}
.format-video .post-video-popup {
left: 50%;
position: absolute;
top: 50%;
transform: translateX(-50%) translateY(-50%);
} .single-post-item.format-quote {
background: #f8f8ff;
font-size: 18px;
padding: 50px;
text-align: center;
}
.format-quote .blog-details {
padding: 0;
}
.format-quote .blog-details::before,
.format-quote .blog-details::after {
display: none;
}
.format-quote .post__author {
margin-top: 30px;
}
.format-quote .post__author img {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 20px;
}
.post-quote {
background: var(--primary-color1) none repeat scroll 0 0;
border-radius: 50%;
box-shadow: 0 16px 32px rgba(83, 104, 253, 0.2);
color: #ffffff;
height: 50px;
margin: 0 auto 30px;
padding-top: 11px;
width: 50px;
} .single .blog-details {
margin: 0;
}
.blog-details p {
font-size: 16px;
font-weight: 400;
color: var(--text-color2);
font-family: var(--font-exo);
line-height: 1.8;
}
.single .blog-details img {
margin-bottom: 30px;
}
.single .blog-details img:last-of-type {
margin-bottom: 0;
}
.post-bottom-meta {
margin-top: 50px;
overflow: hidden;
border-top: 1px solid #eeeeee;
padding-top: 20px;
}
.post-bottom-meta ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
.post-bottom-meta>div {
float: none !important;
text-align: left;
}
.post-bottom-meta .post-tags,
.post-bottom-meta .post-share {
margin-top: 30px;
} .posts-navigation,
.comment-navigation {
border: 2px solid var(--primary-color1);
padding: 30px;
overflow: hidden;
background: #ffffff;
}
.comment-navigation {
margin-top: 50px;
}
.posts-navigation .screen-reader-text,
.comment-navigation .screen-reader-text {
display: none;
}
.posts-navigation .nav-links>div,
.comment-navigation .nav-links>div {
display: inline-flex;
align-items: center;
align-content: center;
justify-content: center;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 14px;
height: 18px;
}
.posts-navigation .nav-links>div.nav-previous,
.comment-navigation .nav-links>div.nav-previous {
float: left;
}
.posts-navigation .nav-links>div.nav-next,
.comment-navigation .nav-links>div.nav-next {
float: right;
}
.posts-navigation .nav-links>div i,
.comment-navigation .nav-links>div i {
line-height: 1;
font-size: 14px;
} .blog-comments {
background: transparent;
}
h3.comments-title {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.7;
margin-bottom: 10px;
}
.comment-list>ul,
ul.children {
margin: 0;
padding: 0;
margin-left: 40px;
list-style: none;
}
.comment-reply {
float: none;
margin-top: 20px;
}
.comment-reply a {
display: inline-block;
text-transform: capitalize;
}
.comment-reply a i {
margin-right: 5px;
}
.logged-in-as a:nth-child(2) {
color: var(--primary-color1);
}
.comment-form-cookies-consent {
display: flex;
justify-content: start;
align-items: baseline;
margin-top: 15px;
}
.comment-form-cookies-consent input[type="checkbox"] {
width: auto;
margin-right: 10px;
} .comment-form {
background: #ffffff;
padding-bottom: 20px;
border-radius: 3px;
margin: 0;
padding: 0;
}
.form-submit input[type="submit"] {
background: var(--primary-color1);
color: var(--white);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 2px solid var(--primary-color1);
margin-top: 25px;
}
.form-submit input[type="submit"]:hover {
color: var(--primary-color1);
background-color: white;
}
.comment-form input:focus,
.comment-form textarea:focus {
border-color: var(--primary-color1);
}
.comments-title span,
.reply-title span {
background: #fff none repeat scroll 0 0;
overflow: hidden;
padding: 10px 20px;
position: relative;
}
.blog-comment-form form .comment-form-cookies-consent {
display: flex;
justify-content: start;
align-items: baseline;
margin-top: 15px;
}
.blog-comment-form form .comment-form-cookies-consent input[type="checkbox"] {
width: auto;
margin-right: 10px;
}
@media only screen and (max-width: 767px) {
.blog-comments {
border-top: 0;
margin-top: 0;
background: inherit;
padding: 0;
}
.post-title {
font-size: 24px;
}
.format-quote {
padding: 20px !important;
}
.comment-reply {
display: inline-block !important;
}
}  .post__comments__author {
position: absolute;
left: 30px;
text-align: center;
}
.post__comments__author .post__author img {
display: block;
margin: 0 auto 5px;
}
.post__comment__count a {
display: block;
}
.post__comments__author .post__comment__count {
margin-top: 25px;
}
.post__comments__author .author__link {
color: #001737;
font-size: 14px;
font-weight: 500;
}
.post__comments__author .post__comment__count i {
font-size: 24px;
color: #001737;
}  .search-results .blog-details {
padding: 30px;
}  .nice-select .option {
word-break: break-word;
white-space: normal;
}
.single-widgets:last-child {
margin: 0;
}
.single-widgets h4 {
font-size: 20px;
margin-bottom: 40px;
text-align: center;
}
.single-widgets ul {
margin: 0;
padding: 0;
list-style: none;
} .widget_about {
text-align: center;
}
.single-widgets .about-details h4 {
font-size: 18px;
margin-bottom: 20px;
}
.widget_about img {
margin: 0 auto 30px;
width: 140px;
}
.widget_about .social-bookmark {
margin-top: 30px;
}
.widget_about .social-bookmark li a {
display: inline-block;
width: 40px;
color: #b3bed3;
}
.widget_about .social-bookmark li a.facebook:hover {
color: #3b5999;
}
.widget_about .social-bookmark li a.twitter:hover {
color: #55acee;
}
.widget_about .social-bookmark li a.google-plus:hover {
color: #dd4b39;
}
.widget_about .social-bookmark li a.youtube:hover {
color: #cd201f;
}
.widget_about .social-bookmark li a.linkedin:hover {
color: #0077b5;
}
.widget_about .social-bookmark li a.instagram:hover {
color: #e4405f;
} .wp-block-search__button {
background: var(--primary-color1);
color: var(--white);
border-radius: 0;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 2px solid var(--primary-color1);
} .widget-area ul li,
.blog-sidebar ul li,
.blog-sidebar ol li {
margin-bottom: 15px;
}
.widget-area ul li ul.children,
.blog-sidebar ul li ul.children,
.blog-sidebar ul li ul.sub-menu,
.blog-sidebar ol li ol.children,
.blog-sidebar ol li ol.sub-menu {
margin-top: 15px;
margin-left: 15px;
}
.widget-area ul li:last-child,
.blog-sidebar ul li:last-child,
.blog-sidebar ol li:last-child {
margin-bottom: 0;
}
.widget-area .widget_archive .nice-select .list li {
border-top: none;
}
.widget_archive ul li:first-child,
.wp-block-categories li:first-child,
.widget_categories li:first-child,
.widget_pages ul li:first-child,
.widget_nav_menu ul li:first-child {
border: 0 none;
}
.widget_archive ul li li,
.wp-block-categories li li,
.widget_categories li li,
.widget_pages ul li li,
.widget_nav_menu ul li li {
border: 0 none;
}
.blog-details .blog-details-single ul.wp-block-archives-list.extraclass li a,
.widget_archive ul li a,
.wp-block-categories li a,
.widget_categories li a,
.widget_pages ul li a,
.widget_nav_menu ul li a {
position: relative;
font-weight: 500;
font-size: 16px;
color: var(--text-primary);
display: block;
font-family: var(--font-exo);
transition: all 0.5s ease-out 0s;
}
.blog-details .blog-details-single ul.wp-block-archives-list.extraclass li a:hover {
color: var(--primary-color1);
}
.widget_archive ul li a:hover,
.widget_categories ul li a:hover,
.wp-block-categories li a:hover,
.widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover {
color: var(--primary-color1);
}
.widget_archive ul li a span,
.widget_categories ul li a span,
.wp-block-categories li a span,
.widget_pages ul li a span,
.widget_nav_menu ul li a span {
font-size: 13px;
text-align: center;
height: calc(100% - 2px);
position: absolute;
right: 1px;
top: 50%;
transform: translateY(-50%);
width: 50px;
transition: 0.3s;
border-radius: 50px 0 0 50px;
height: 100%;
display: flex;
align-items: center;
justify-content: flex-end;
}
.widget_archive ul li a span:before,
.widget_categories ul li a span:before,
.wp-block-categories li a span:before,
.widget_pages ul li a span:before,
.widget_nav_menu ul li a span:before {
content: "(";
}
.widget_archive ul li a span:after,
.wp-block-categories li a span:after,
.widget_categories li a span:after,
.widget_pages ul li a span:after,
.widget_nav_menu ul li a span:after {
content: ")";
}
.wp-social-link {
margin: 0 !important;
} .blog-details .blog-details-single ul.wp-block-archives li,
.blog-details .blog-details-single ul.wp-block-latest-posts li {
margin-bottom: 15px;
} .widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover {
color: var(--primary-color1);
}
.widget_pages ul.children,
.widget_nav_menu ul.sub-menu {
padding-left: 15px;
} .widget_recent_entries li {
border-bottom: 1px solid var(--primary-color1);
padding-bottom: 15px;
margin-bottom: 15px;
}
.widget_recent_entries li:last-child {
padding-bottom: 0;
border-bottom: 0;
margin-bottom: 0;
}
.widget_recent_entries li a {
display: block;
margin-bottom: 5px;
font-weight: 500;
color: var(--text-primary);
}
.widget_recent_entries li .post-date {
display: block;
font-size: 14px;
letter-spacing: 0;
} .wp-block-latest-posts li a {
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
transition: all .45s ease;
}
.wp-block-latest-posts li a:hover,
.widget_recent_entries li a:hover {
color: var(--primary-color1);
}
.widget_post_with_thumb li {
margin-bottom: 20px;
border-bottom: 1px solid #e3eeff;
padding-bottom: 20px;
overflow: hidden;
}
.single__widget__post {
display: flex;
}
.widget_post_with_thumb li:last-child {
border-bottom: 0;
margin-bottom: 0;
padding-bottom: 0;
}
.widget__post__thumb {
flex: 1 0 auto;
}
.widget_post_with_thumb li img {
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
height: auto;
max-width: 80px;
float: left;
margin-right: 20px;
border-radius: 5px;
}
.widget__post__content {
display: flex;
flex-direction: column;
}
.widget_post_with_thumb li a {
font-weight: 600;
display: block;
margin-bottom: 5px;
line-height: 1.5;
font-size: 16px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.widget__post__content .post-date {
order: -1;
margin-bottom: 5px;
}
.widget_post_with_thumb li .post-date {
display: block;
font-size: 14px;
letter-spacing: 0;
}
.widget_post_with_thumb li .post-date i {
margin-right: 5px;
} .wp-block-cover .wp-block-cover__inner-container p.has-background {
padding: 60px 0 30px 0;
}
.wp-block-cover p.wp-block-cover-text {
line-height: 1.8;
}
.wp-block-cover p {
line-height: 1.8;
} .widget_recent_comments li,
.wp-block-latest-comments li {
padding-bottom: 15px;
margin-bottom: 15px;
}
.widget_recent_comments li:last-child,
.wp-block-latest-comments li:last-child {
padding-bottom: 0;
border-bottom: 0;
margin-bottom: 0;
}
.widget_recent_comments li a,
.wp-block-latest-comments li a {
font-weight: 600;
}
.wp-block-latest-comments li a:last-child {
margin-top: 5px;
margin-bottom: 0;
}
.widget_recent_comments li>a,
.wp-block-latest-comments li>a {
font-weight: 600;
display: inline-block;
}
.widget_recent_comments li .post-date,
.wp-block-latest-comments li .post-date {
font-size: 14px;
} .widget_instagram {
overflow: hidden;
}
.widget_instagram li {
float: left;
padding: 5px;
width: 33.33%;
}
.widget_instagram li img {
border-radius: 0;
}
.widget_instagram ul {
margin-left: -5px;
margin-right: -5px;
}
ul.instagram {
margin: 0;
padding: 0;
list-style: none;
}
ul.instagram li {
width: 33.33%;
float: left;
padding: 2.5px;
} .widget_social_profile li {
display: inline-block;
}
.widget_social_profile li a {
display: block;
height: 40px;
margin: 0 5px;
padding-top: 8px;
text-align: center;
width: 40px;
border: 1px solid var(--primary-color1);
color: #bdc5ff;
padding-top: 6px;
}
.widget_social_profile li a:hover {
background: var(--primary-color1) none repeat scroll 0 0;
border-color: var(--primary-color1);
color: #ffffff;
} #wp-calendar {
margin: 0;
width: 100%;
}
#wp-calendar>caption {
background: var(--primary-color1) none repeat scroll 0 0;
color: #ffffff;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
caption-side: top;
}
#wp-calendar th {
background: #f6f9ff;
padding: 5px 0;
text-align: center;
color: #252525;
font-size: 14px;
}
#wp-calendar tfoot td {
border: medium none;
padding-top: 5px;
}
#wp-calendar tfoot td#next {
text-align: right;
}
#wp-calendar tbody td {
border: 1px dashed var(--primary-color1);
padding: 5px 0;
text-align: center;
}
#wp-calendar tbody td a {
position: relative;
}
#wp-calendar tbody td a:before {
background: #e6eeff;
content: "";
position: absolute;
z-index: -1;
left: 0;
margin: 0;
top: 0;
width: 100%;
border-radius: 50%;
height: 100%;
}
#wp-calendar tbody td#today {
border: 1px solid var(--primary-color1);
}
#wp-calendar tfoot tr {
border: 1px dashed var(--primary-color1);
}
#wp-calendar tfoot tr td {
padding: 10px;
padding-bottom: 5px;
padding-top: 5px;
}
#wp-calendar tbody td#today {
position: relative;
}
#wp-calendar tbody td#today:before {
height: calc(100% + 2px);
width: calc(100% + 2px);
position: absolute;
left: -1px;
top: -1px;
content: "";
z-index: 1;
border-top: 1px solid var(--primary-color1);
border-left: 1px solid var(--primary-color1);
} .widget_rss li {
margin-bottom: 20px;
}
.widget_rss li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: 0;
}
.widget_rss li a {
font-weight: 500;
}
.widget_rss li .rss-date {
display: block;
margin-bottom: 10px;
font-size: 14px;
color: var(--primary-color1);
}
.widget_rss li cite {
color: #252525;
letter-spacing: 1px;
margin-top: 5px;
display: block;
font-weight: 600;
}
.widget_rss li cite:before {
display: inline-block;
width: 20px;
height: 2px;
background: var(--primary-color1);
content: "";
position: relative;
top: -5px;
margin-right: 10px;
} .widget_text p {
margin-bottom: 20px;
color: var(--text-primary);
}
.widget_text p:last-of-type {
margin-bottom: 20px;
} .widget_meta ul li li {
border: 0 none;
}
.widget_meta ul li a {
position: relative;
display: block;
color: var(--text-primary);
margin-bottom: 10px;
padding: 3px 0 3px 0px;
font-weight: 500;
}
.widget_meta ul li:last-child a {
margin-bottom: 0;
} .single-widgets.widget_banner {
padding: 0;
} .search-form-control {
width: 100%;
height: 100vh;
overflow: hidden;
position: fixed;
left: 0;
top: 0;
opacity: 0;
visibility: hidden;
transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-button.close {
opacity: 0;
}
.widget_search .page-search form {
display: flex;
flex: auto;
flex-wrap: nowrap;
max-width: 100%;
}
.error-area-wrapper h3 {
font-size: 45px;
margin: 30px 0;
}
.widget_search .page-search form button[type="submit"],
.error-area-wrapper form button[type="submit"] {
min-width: 60px;
background: var(--primary-color1);
margin: 0;
transition: all 0.42s ease-in-out;
color: #fff;
border: 2px solid var(--primary-color1);
padding: 10px;
}
#searchform button[type="submit"] {
border: 1px solid var(--primary-color1);
}
.widget_search .page-search form button[type="submit"]:hover,
.error-area-wrapper form button[type="submit"]:hover {
background-color: var(--white);
color: var(--primary-color1);
}
.sidebar-widget.page-search {
margin-bottom: 50px;
}
.sidebar-widget.page-search form input {
width: 80%;
margin-right: -5px;
outline: none;
border: 1px solid #eee;
border-radius: 0;
transition: all .45s ease;
font-size: 16px;
color: var(--text-primary);
padding: 10px;
}
.sidebar-widget.page-search form input::placeholder {
color: var(--text-secondary);
}
.sidebar-widget.page-search form input:focus::-moz-placeholder {
color: var(--primary-color1);
}
.blog-widget-item.widget_search form {
position: relative;
}
.blog-widget-item.widget_search form {
position: relative;
}
.blog-widget-item.widget_search form label.wp-block-search__label {
display: none;
}
.blog-widget-item.widget_search button.wp-block-search__button {
position: absolute;
right: 0;
height: 49.7px;
line-height: 48px;
padding: 0 10px;
transition: all .45s ease;
}
.blog-widget-item.widget_search button.wp-block-search__button:hover {
color: var(--primary-color1);
background-color: var(--white);
}
.wp-block-search input[type="search"] {
width: 100%;
outline: none;
border: 1px solid #eee;
border-radius: 0;
transition: all .45s ease;
font-size: 16px;
color: var(--text-primary);
}
.wp-block-search input::placeholder {
color: var(--text-secondary);
}
.wp-block-search input:focus::-moz-placeholder {
color: var(--primary-color1);
} .contact_widget p {
margin-bottom: 10px;
}
.contact_widget p:last-child {
margin-bottom: 0;
}
.contact_widget .fa {
margin-right: 10px;
}
.contact_widget i {
bottom: -3px;
font-size: 20px;
margin-right: 10px;
position: relative;
} .subscriber-form-group {
height: 60px;
position: relative;
background: var(--primary-color1) none repeat scroll 0 0;
}
.subscriber-form-group input {
left: 0;
padding-right: 110px;
position: absolute;
top: 0;
height: 100%;
padding: 10px 20px;
background: transparent;
border: 0 !important;
border-radius: 0 !important;
}
.subscriber-form-group button {
background: var(--primary-color1);
border: 0 none;
color: #ffffff;
height: 100%;
padding: 10px;
position: absolute;
right: 0;
top: 0;
min-width: 60px;
transition: 0.3s;
border-radius: 0 !important;
}
.subscriber-form-group button:hover {
background: var(--primary-color1) none repeat scroll 0 0;
color: #ffffff;
}
.subscrier_msg {
text-align: center;
width: 100%;
display: none;
}
.subscrier_msg.valid {
position: absolute;
left: 0;
} .widget ul {
margin: 0;
padding: 0;
list-style: none;
} ul.wp-block-archives-list li a:before,
.widget_pages ul li a:before,
.widget_nav_menu ul li a:before,
.wp-block-categories li a:before {
content: "";
position: absolute;
left: 0;
top: 50%;
width: 10px;
height: 1px;
border-radius: 5px;
background-color: var(--primary-color1);
opacity: 0;
transition: all 0.55s ease;
} .post-tags li a {
font-size: 14px;
text-transform: capitalize;
font-weight: 500;
color: #7a7a7a;
padding: 3px 10px;
height: auto;
margin-left: 5px;
border-radius: 3px;
background: #f3f3f3;
}
.post-tags li a:hover {
background: var(--primary-color1);
border-color: var(--primary-color1);
color: #ffffff;
} .widget-area {
position: relative;
z-index: 1;
}
.blog-posts-list {
padding-right: 20px;
}
.single-download .single-widgets {
margin-bottom: 30px;
}
.single-widgets:before {
width: 0%;
height: 4px;
content: "";
position: absolute;
left: 0;
top: 0;
background: linear-gradient(90deg, #00abe9 0%, #0030ff 100%);
transition: 0.5s;
}
.single-widgets:hover:before {
width: 0%;
}
.single-widgets h3 {
font-weight: bold;
font-size: 22px;
line-height: 35px;
letter-spacing: 0.02em;
text-transform: uppercase;
color: #2e2d31;
margin-bottom: 30px;
position: relative;
}
.single-widgets h3:before {
position: absolute;
content: "";
background: #111111;
opacity: 0.5;
border: 1px solid #111111;
width: 70px;
bottom: -5px;
left: 0;
}
.blog-comments {
padding: 0;
padding-top: 1px;
}
@media (min-width: 768px) and (max-width: 991px) {
.blog-posts-list {
padding: 0;
}
}
@media only screen and (max-width: 767px) {
.blog-posts-list {
padding: 0;
}
.posts__bottom__meta {
margin-top: 20px;
}
.posts__bottom__meta .post__author {
display: none;
}
.posts__bottom__meta .posts__readmore {
float: none;
}
} .post__top__meta {
margin-bottom: 13px;
}
.post__top__meta .post__date__and__category {
margin-bottom: 0;
}
a.post_readmore_button {
color: #ffffff;
background: var(--primary-color1);
display: inline-block;
padding: 8px 25px;
border-radius: 3px;
margin-top: 30px;
position: relative;
overflow: hidden;
z-index: 1;
font-size: 14px;
letter-spacing: 1px;
}
a.post_readmore_button:hover {
background: #2e2d31;
}
a.post_readmore_button i {
margin-left: 6px;
}
.single-post-item {
position: relative;
border-radius: 0;
overflow: hidden;
}
.single-post-item .post-media {
border-radius: 0;
overflow: hidden;
}
.single-post-item .blog-details {
border: 0;
}
.single .single-post-item {
box-shadow: 0 0 0;
background: inherit;
border-radius: 0;
overflow: inherit;
}
.single .single-post-item .post-media {
border-radius: 0;
overflow: inherit;
}
.single .single-post-item .blog-details {
border: inherit;
}
.single .related-post .single-post-item {
box-shadow: 0 10px 80px rgb(54 65 90 / 10%);
} .widget_media_gallery figure img {
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
}
.widget_media_gallery figure>div {
padding: 5px;
}
.single__post__top__meta {
margin-top: 0;
}
.single__post__top__meta a {
background: #ffffff;
padding: 10px 20px;
border-radius: 50px;
font-size: 15px;
color: #1a152e;
display: inline-block;
}
.single__post__top__meta a:hover {
background: var(--primary-color1) !important;
color: #ffffff !important;
}
.single__post__top__meta .post__date__and__category {
padding: 0;
margin-right: 0;
display: flex;
align-items: center;
}
.post__date__and__category {
width: 100%;
}
.post__date__and__category ul {
margin: 0;
padding-left: 20px;
}
.single__post__top__meta .post-share li a {
display: inline-block;
font-size: 14px;
margin-right: 5px;
text-align: center;
width: 35px;
background: #ffffff;
height: 35px;
padding: 10px 0 0;
border-radius: 50px;
border: 0;
}
@media only screen and (max-width: 767px) {
.single__post__top__meta .post__date__and__category {
display: block;
text-align: center;
}
.single__post__top__meta .post__date__and__category .post-share {
margin-top: 25px;
}
}
.single .post.single-post-item .blog-details {
padding: 0 !important;
border: 0;
background: inherit;
}
.single .post.single-post-item .post-media {
margin-bottom: 40px;
border-radius: 10px;
overflow: hidden;
}
.single__post__author {
display: inline-flex;
align-items: center;
text-align: left;
margin-top: 30px;
}
.single__post__author .author__thumb__wrap {
width: 60px;
border-radius: 50px;
overflow: hidden;
margin-right: 13px;
border: 3px solid;
box-sizing: border-box;
}
.single__post__author .author__thumb__wrap img {
border-radius: 50%;
}
.single__post__author .author__link {
font-weight: 600;
font-size: 16px;
line-height: 1;
}
.widget-area .single-widgets {
padding: 30px 25px;
} .page-wrapper blockquote.extraclass,
.blog-details blockquote.extraclass,
.blog-standard-area .blog-standard-single .signle-news-list.blog-post-quote blockquote.extraclass,
.blog-comments blockquote.extraclass {
margin-bottom: 20px;
}
.page-wrapper blockquote,
.blog-details blockquote,
.blog-standard-area .blog-standard-single .signle-news-list.blog-post-quote blockquote,
.blog-comments blockquote {
background: #90b95612;
padding: 40px 45px;
position: relative;
margin: 30px 0px;
font-size: 2.4rem;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-merriw);
font-style: italic;
line-height: 1.8;
}
.blog-details blockquote:after,
.page-wrapper blockquote:after,
.blog-standard-area .blog-standard-single .signle-news-list.blog-post-quote blockquote:after,
.blog-comments blockquote:after {
content: url(//asturguias.com/wp-content/themes/astrip/assets/images/icons/quote.svg);
position: absolute;
right: 15px;
bottom: 15px;
}
.wp-block-quote cite,
.wp-block-quote footer,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.blog-details-single blockquote p cite {
font-size: 16px;
}
.blog-post-area .blog-details blockquote p,
.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
font-size: 22px;
font-weight: 500;
font-family: var(--font-merriw);
color: var(--text-secondary);
margin-bottom: 0;
line-height: 1.7;
}
figure.wp-block-pullquote.has-background.has-cyan-bluish-gray-background-color.is-style-solid-color blockquote::before {
left: -45px;
top: -35px;
}
figure.wp-block-pullquote.has-background.has-cyan-bluish-gray-background-color.is-style-solid-color blockquote {
max-width: 60%;
text-align: left;
}
figure.wp-block-pullquote.has-background.has-cyan-bluish-gray-background-color.is-style-solid-color blockquote p {
font-size: 26px;
}
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
padding: 30px 100px !important;
}
.wp-block-quote.has-text-align-right {
padding-right: 2em !important;
}
blockquote.has-text-color.has-light-gray-color {
padding: 50px 90px;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color {
background-color: #ff3524;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color blockquote {
max-width: 80%;
background: transparent !important;
padding: 0 !important;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color blockquote:before {
left: 5px;
top: -65px;
}
blockquote.has-text-color.has-light-gray-color p {
font-size: 20px !important;
color: #292929;
font-weight: 600;
line-height: 1.3em !important;
margin-bottom: 10px !important;
font-style: normal;
}
.related-post .post__grid__layout__2 .blog-details.have-not-img {
left: 0px;
width: 100%;
}
p.wp-block-tag-cloud {
margin: 0;
padding: 0;
}
.tagcloud a,
.wp-block-tag-cloud a {
font-size: 13px !important;
font-weight: 600;
font-family: var(--font-exo);
border: 1px solid #F0F0F0;
padding: 7px 25px;
border-radius: 3px;
margin-bottom: 10px;
color: #A0A0A0;
display: inline-flex;
transition: all 0.5s ease-out 0s;
}
.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
background: var(--primary-color1);
border: 1px solid var(--primary-color1);
color: var(--white);
}
pre {
padding: 25px;
background: #e9f0f7;
overflow: hidden;
word-wrap: break-word;
}
.single-post-item .post-media img {
border-radius: 10px;
}
ul.wp-block-page-list li a {
margin: 0;
background: transparent;
height: inherit;
padding: 10px 0;
color: #1a152e;
font-size: inherit;
text-transform: capitalize;
line-height: 1.3;
position: relative;
}
ul.wp-block-page-list li {
color: #515151;
font-family: "Poppins", sans-serif;
font-size: 16px;
font-weight: 400;
letter-spacing: 0.1px;
line-height: 43px;
}
ul.wp-block-page-list li a:before {
display: inline-block;
content: "...";
top: -4px;
position: relative;
margin-right: 10px;
opacity: 0.5;
font-size: 20px;
line-height: 1;
transition: 0.3s;
}
.widget-area ul.wp-block-page-list li ul.submenu-container {
padding-left: 15px;
}
.widget-area .wp-block-latest-comments li a:last-child {
display: block;
}
.widget-area .wp-block-latest-comments a.wp-block-latest-comments__comment-link {
display: inline-block !important;
font-size: 16px !important;
font-weight: 500 !important;
}
.widget-area .wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
text-transform: capitalize;
font-size: 14px;
display: inline-block;
letter-spacing: 0;
color: #515151;
display: block;
}
.widget-area .wp-block-latest-posts__featured-image img {
width: 100%;
margin-bottom: 15px;
}
.widget-area ol.has-avatars.has-dates.has-excerpts.wp-block-latest-comments {
margin-bottom: 10px;
}
.widget-area .wp-block-archives-dropdown {
margin-bottom: 0px;
}
.wp-block-media-text {
margin-top: 30px !important;
margin-bottom: 30px !important;
}
.wp-block-columns.alignwide figure.wp-block-image {
margin-top: 10px;
}
.wp-block-video figcaption {
margin-top: 15px;
}
.wp-block-columns.alignwide blockquote:before {
font-size: 20px;
top: 20px;
}
.wp-block-image figcaption {
text-align: unset;
}
.wp-block-columns.alignwide blockquote {
padding: 50px 25px;
}
.offcanvas__content__close__trigger {
line-height: 55px;
}
.related-post .post__grid__layout__2 img {
min-height: 166px;
object-fit: cover;
}
blockquote.wp-block-quote.has-text-align-right.extraclass {
text-align: right;
}
.wp-block-button.is-style-squared a.wp-block-button__link {
border-radius: 0;
}
.blog__content__wrap .wp-block-pullquote blockquote p {
font-style: normal !important;
}
pre {
margin-top: 15px;
background-color: var(--border-color);
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlNiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
background-size: 100%;
background-image: -webkit-gradient(linear,
left top,
left bottom,
color-stop(50%, #f5f5f5),
color-stop(50%, #e6e6e6));
background-image: linear-gradient(#f8f8f8 50%, rgb(67 143 249 / 10%) 50%);
background-size: 38px 38px;
border: 1px solid var(--border-color);
display: block;
line-height: 19px;
margin-bottom: 20px;
overflow: visible;
overflow-y: hidden;
padding: 0 0 0 4px;
word-break: break-word;
}
.single .blog-details ul.wp-block-rss {
margin-top: 15px;
}
.single .blog-details p.wp-block-tag-cloud {
margin-bottom: 25px;
}
.blog-details ul li ul,
.blog-details ol li ol {
padding-left: 24px;
}
.single-post-item.format-quote {
background: #fff;
font-size: inherit;
padding: 0;
text-align: left;
box-shadow: none;
}
.blog-details.post-quote-custom {
padding: 0;
text-align: left;
background: transparent;
}
body.single-format-quote .blog-details blockquote:before {
top: 10px;
}
.blog-details .wp-block-button__link {
color: #fff;
}
.wp-block-button__link {
background-color: var(--primary-color1);
padding: 8px 25px;
letter-spacing: 1;
color: #fff;
}
.wp-block-button__link:hover {
background: #2e2d31;
}
.is-style-outline .wp-block-button__link:hover {
background: #2e2d31;
color: #fff;
}
.comment-content>ul,
.comment-content>ol {
padding-left: 18px;
}
.comment-content>ul li ul,
.comment-content>ol li ol {
padding-left: 24px;
}
.blog-details .wp-block-cover-image-text,
.wp-block-cover-image-text a,
.blog-details .wp-block-cover-image-text a:active,
.blog-details .wp-block-cover-image-text a:focus,
.blog-details .wp-block-cover-image-text a:hover,
.blog-details .wp-block-cover-text,
.wp-block-cover-text a,
.blog-details .wp-block-cover-text a:active,
.blog-details .wp-block-cover-text a:focus,
.blog-details .wp-block-cover-text a:hover,
.blog-details section.wp-block-cover-image h2,
.blog-details section.wp-block-cover-image h2 a,
.blog-details section.wp-block-cover-image h2 a:active,
.blog-details section.wp-block-cover-image h2 a:focus,
.blog-details section.wp-block-cover-image h2 a:hover {
color: #fff;
}
.wp-block-image .alignleft {
margin: 8px 25px 8px 0;
}
.wp-block-image .alignright {
margin: 8px 0 8px 25px;
}
.page-wrapper .inner-post blockquote p {
font-size: 18px;
font-weight: 600;
color: var(--text-primary);
}  .pagination-wrap a.dots {
padding: 0;
margin: 0;
background: none;
border: none;
}
.pagination-wrap .active .current {
color: var(--primary-color1);
z-index: 3;
}
.pagination-wrap a.dots:hover {
background: none;
color: #292b314d;
} .blog-sidebar .blog-widget-item ul {
margin: 0;
padding: 0;
list-style: none;
}
.blog-sidebar .blog-widget-item h3 {
font-size: 25px;
font-weight: 700;
color: var(--text-color);
}
.blog-sidebar .nice-select {
margin-bottom: 0;
border: 1px solid #F0F0F0;
height: 50px;
line-height: 50px;
}
.blog-widget-item ul.sub-menu,
.blog-widget-item ul.children {
margin-left: 20px;
} .blog-details .blog-details-single .pagination li {
margin: 0;
}
.pagination li a {
position: relative;
display: block;
color: #18212E;
font-size: 16px;
padding: 5px 15px;
font-weight: 600;
text-decoration: none;
background-color: var(--white);
transition: 0.42s ease;
text-align: center;
}
.pagination li a:hover {
color: var(--primary-color1);
}
.pagination li.active a {
color: var(--primary-color1);
}
.pagination li span.current {
display: block;
color: #18212E;
font-size: 16px;
padding: 5px 15px;
font-weight: 600;
text-decoration: none;
background-color: var(--white);
transition: 0.42s ease;
text-align: center;
border: 1px solid var(--primary-color1);
z-index: 3;
}
.pagination-wrap .page-link.current {
z-index: 3;
color: var(--white);
background-color: var(--primary-color1);
border-color: var(--primary-color1);
padding: .375rem .75rem;
}
.pagination-wrap .page-link.dots {
background: none;
border: none;
padding: 0.375rem 0;
}
.pagination-wrap .page-link.dots:hover {
color: #000;
}
.wp-block-latest-posts__list li:last-child .alignleft {
margin-bottom: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
border-bottom: none;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
margin-bottom: 0;
} .wp-block-cover p.wp-block-cover-text {
font-size: 2em !important;
z-index: 1;
margin-bottom: 0;
max-width: 840px;
padding: 0.44em;
text-align: center;
line-height: 1.8;
color: #fff !important;
}
.blog-details form input {
width: inherit;
}
.page-wrapper .single-comment {
position: relative;
}
.page-wrapper .comment-area footer.comment-footer-meta {
position: absolute;
right: 10px;
top: 40px;
}
.blog-archive-arrows {
position: relative;
}
.post-gallery {
position: relative;
}
.slider-arrows.blog-archive-arrows.text-center.d-flex {
position: absolute;
top: 50%;
width: 100%;
}
.archive-prev.custom-swiper-prev,
.archive-next.custom-swiper-next {
font-size: 40px;
color: #fff;
height: 50px !important;
width: 50px !important;
background-color: var(--primary-color1);
border-radius: 50%;
line-height: 50px;
position: absolute;
top: 50%;
left: 0;
z-index: 1;
}
.archive-next.custom-swiper-next {
left: auto;
right: 0 !important;
}
.blog-details .post-meta-list {
list-style: none;
padding: 0;
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
gap: 30px;
margin: 15px 0;
}
.blog-details .post-meta-list li {
color: #515151;
font-size: 14px;
font-weight: 400;
font-family: var(--font-exo);
}
.blog-details .post-meta-list li img {
margin-right: 5px;
margin-top: -3px;
}
.signle-news-list.post-gallery .post-gallery,
.signle-news-list.post-audio .post-audio,
.signle-news-list.post-video .post-video,
.signle-news-list.blog-post-quote .post-formate-quote {
margin-bottom: 25px;
}
.nav-tabs .nav-link {
color: red !important;
} .blog-sidebar .blog-widget-item ul.wp-block-latest-posts li .wp-block-latest-posts__featured-image {
float: left;
margin-right: 20px;
max-width: 100px;
}
.site-title h3 {
margin-bottom: 0;
}
.comment-area .single-comment .content {
max-width: 725px;
width: 100%;
}
.post-password-form p input,
.post-password-form p label {
border-radius: 0;
}
.post-password-form p input {
margin-left: -6px !important;
} .woocommerce-table__product-name.product-name a {
font-size: 18px;
color: #000;
font-weight: 600;
margin-bottom: 15px;
display: inline-block;
}
.order-info {
margin: 0;
padding: 0;
margin-bottom: 15px;
}
.order-info h3 {
margin: 0 0 8px 0;
font-weight: 500;
font-size: 12px;
}
.order-info h4 {
font-size: 14px;
font-weight: 700;
color: #000;
margin: 0 0 8px;
}
.order-info ul {
list-style: inside;
margin: 0;
padding: 0;
color: #000;
font-weight: 500;
}
.wc-item-meta li strong {
display: block;
}
.wc-item-meta li strong {
display: block;
float: none !important;
}:root { --primary-color1: #90b956;
--primary-color2: #f2aa4cff;
--primary-color3: #d55437;
--primary-color1-light: rgba(144, 185, 86, 0.7);
--primary1-dark: #359d9e;
--white: #fff;
--text-primary: #09100d;
--text-secondary: #5e5e5e;
--text-light: #878787;
--border-color: #dddddd;
--font-satisfy: "Satisfy";
--font-merriw: "Merriweather", serif;
--font-work-sans: "Work Sans", sans-serif;
} .woocommerce {
margin: 0;
padding: 0;
} input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
} input[type=number] {
-moz-appearance: textfield;
} .woocommerce-products-header {
position: relative;
display: flex;
justify-content: center;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
background-size: cover;
background-repeat: no-repeat;
min-height: 550px;
background-color: #000;
}
.woocommerce-products-header h1 {
font-size: 50px;
font-weight: 600;
color: var(--white);
text-transform: capitalize;
letter-spacing: 2px;
}
.woocommerce .woocommerce-breadcrumb {
padding: 0;
margin: 10px 0;
font-size: 20px;
font-weight: 500;
color: var(--white);
}
.woocommerce .woocommerce-breadcrumb a {
color: var(--primary-color1);
}
.shop-sort-group {
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
background: var(--white);
margin-bottom: 30px;
border-radius: 6px;
padding: 20px;
}
.woocommerce-page .woocommerce-result-count {
float: none;
margin: 0;
display: inline-block;
}
.woocommerce-page .woocommerce-ordering {
float: right;
margin: 0;
}
.woocommerce-page .woocommerce-ordering .nice-select {
height: auto;
line-height: 1.6;
}
.woocommerce-page .woocommerce-ordering .nice-select .current {
color: var(--text-secondary);
font-size: 16px;
font-weight: 400;
}
.woocommerce span.onsale {
position: absolute;
min-height: unset;
min-width: unset;
font-size: 14px;
font-weight: 400;
text-align: center;
line-height: 1;
top: 10px;
left: 10px;
margin: 0;
border-radius: 30px;
color: var(--white);
padding: 5px 10px;
background-color: var(--primary-color1);
z-index: 9;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
padding: 0;
margin-bottom: 10px;
font-size: 20px;
color: var(--text-primary);
}
.woocommerce ul.products li.product .price {
color: var(--text-primary);
font-size: 18px;
display: block;
font-weight: 600;
margin-bottom: 0;
}
.woocommerce ul.products li.product .price del {
color: inherit;
opacity: .5;
display: inline-block;
font-size: 14px;
}
.woocommerce ul.products li.product .price ins {
background: 0 0;
font-weight: 600;
display: inline-block;
text-decoration: none;
}
.woocommerce ul.products li.product .product-thumbnails {
position: relative;
}
.woocommerce ul.products li.product .product-thumbnails a img {
margin: 0;
}
.woocommerce ul.products li.product .product-thumbnails .button {
position: absolute;
bottom: 0;
left: 15px;
font-size: 12px;
padding: 12px 20px;
min-width: 120px;
opacity: 0;
visibility: hidden;
text-transform: uppercase;
transition: all ease-in-out .5s;
}
.woocommerce ul.products li.product:hover .product-thumbnails .button {
bottom: 15px;
visibility: visible;
opacity: 1;
}
.woocommerce ul.products li.product .product-thumbnails a.added_to_cart {
position: absolute;
bottom: 20px;
right: 15px;
padding: 5px;
color: var(--white);
font-size: 10px;
min-width: 80px;
text-align: center;
border-radius: 30px;
text-transform: uppercase;
background-color: var(--text-primary);
}
.woocommerce ul.products li.product .product-content {
padding: 20px;
border: 1px solid #eee;
border-top: 0;
} .woocommerce nav.woocommerce-pagination ul {
border: none;
margin: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
border: none;
padding: 0;
margin: 0 2px;
float: none;
display: inline-block;
overflow: hidden;
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
border-radius: 50%;
box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
margin: 0;
text-decoration: none;
padding: 0;
line-height: unset;
font-size: 16px;
font-weight: 400;
padding: 0;
min-width: unset;
display: block;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
background: var(--primary-color1);
color: var(--white);
}  .woocommerce .single-product {
margin: 0;
padding: 0;
}
.woocommerce-error,
.woocommerce-info {
border-top-color: var(--primary-color1);
}
.woocommerce-info .showcoupon {
color: var(--primary-color1);
font-weight: 600;
}
.woocommerce div.product {
position: relative;
margin-top: 20px;
margin-bottom: 0;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
position: relative;
}
.woocommerce div.product div.images {
margin-bottom: 80px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
position: absolute;
top: .5em;
right: .5em;
font-size: 2em;
z-index: 9;
width: 36px;
height: 36px;
background: transparent;
text-indent: -9999px;
border-radius: 100%;
box-sizing: content-box;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
width: 15px;
height: 15px;
top: 10px;
left: 10px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
width: 3px;
height: 12px;
top: 22px;
left: 28px;
}
.woocommerce div.product div.summary {
margin-bottom: 2em;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
color: var(--primary-color1);
font-size: 20px;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
background: inherit;
font-weight: 600;
display: inline-block;
text-decoration: navajowhite;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
font-size: 16px;
font-weight: 400;
margin: 0;
color: var(--text-secondary);
}
.woocommerce div.product form.cart {
margin: 30px 0;
}
.woocommerce div.product form.cart div.quantity {
position: relative;
float: left;
margin: 0 10px 0 0;
}
.woocommerce div.product form.cart div.quantity button::before,
.woocommerce div.product form.cart div.quantity button::after {
display: none;
}
.woocommerce div.product form.cart div.quantity .minus,
.woocommerce div.product form.cart div.quantity .plus {
position: absolute;
left: 10px;
top: 50%;
color: #000;
font-size: 11px;
line-height: 40px;
border: none;
background: transparent;
transform: translateY(-50%);
}
.woocommerce div.product form.cart div.quantity .plus {
left: auto;
right: 10px;
}
.woocommerce .quantity .qty {
text-align: center;
font-size: 16px;
min-width: 150px;
border-radius: 3px;
padding: 10px 30px;
border: 1px solid #eee;
}
.woocommerce div.product form.cart .button {
vertical-align: middle;
float: left;
transition: all ease .5s;
min-width: 150px;
}
.woocommerce div.product form.cart .button::before,
.woocommerce div.product form.cart .button::after {
display: none;
}
.woocommerce div.product form.cart button.button.alt:hover {
background-color: #000;
color: var(--white);
}
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
background-color: var(--primary-color1);
color: var(--white);
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
background-color: #000;
color: var(--white);
}
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
height: 50px;
color: var(--white);
font-size: 16px;
border-radius: 3px;
background-color: var(--primary-color1);
-webkit-font-smoothing: antialiased;
}
.woocommerce div.product div.summary .product_meta span {
font-size: 16px;
color: var(--text-secondary);
}
.woocommerce div.product div.summary .product_meta span .sku {
color: #000;
}
.woocommerce div.product div.summary .product_meta span a {
font-weight: 500;
color: var(--primary-color1);
}
.woocommerce div.product div.summary .product_meta span.sku_wrapper,
.woocommerce div.product div.summary .product_meta span.posted_in {
display: block;
}
.woocommerce #content div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
clear: both;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
margin: 0 0 50px 0;
border-bottom: 1px solid #eee;
text-align: center;
padding-bottom: 15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
position: relative;
z-index: 0;
margin: 0 15px;
padding: 0;
border: none;
border-radius: 0;
display: inline-block;
background-color: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
background: transparent;
color: var(--primary-color1);
z-index: 2;
border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
position: absolute;
content: "";
top: 50%;
right: -15px;
height: 15px;
width: 1px;
background: #eee;
box-shadow: unset;
transform: translateY(-50%);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::before {
position: absolute;
content: "";
height: 2px;
width: 100%;
left: 0;
bottom: -15px;
background-color: var(--primary-color1);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child:after {
display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
position: relative;
padding: 0;
color: #8c8c8c;
font-weight: 500;
display: inline-block;
text-decoration: none;
}
.woocommerce table.shop_attributes td p {
padding: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel {
margin: 0;
padding: 0;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
font-size: 24px;
color: #000;
display: block;
margin-bottom: 20px;
font-weight: 400;
}
.related.products {
margin-top: 80px;
}
.related.products h2 {
margin-bottom: 40px;
}
.related.products ul.products li {
margin-bottom: 0;
}
.woocommerce ul.products li.product .onsale {
top: 10px;
right: 10px;
left: auto;
margin: 0;
}
.woocommerce ul.products li.product .button {
margin-top: 1em;
background-color: var(--primary-color1);
color: var(--white);
padding: 15px 20px;
}
.woocommerce div.product div.images .flex-control-thumbs {
display: flex;
gap: 10px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
width: 100%;
float: none;
margin: 10px 0;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
opacity: 1;
border: 1px solid var(--primary-color1);
}
.woocommerce-message {
border-top-color: var(--primary-color1);
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
font-size: 18px;
padding: 15px 20px;
font-weight: 600;
color: var(--white);
background-color: var(--primary-color1);
}
.woocommerce a.button:hover {
color: var(--white);
background-color: var(--text-primary);
}
.woocommerce-message a.button,
.woocommerce-Message a.button {
font-size: 12px;
padding: 10px 20px;
text-transform: capitalize;
} .woocommerce div.product form.cart .variations {
margin-bottom: 30px;
}
.woocommerce div.product form.cart .variations tr {
border: none;
}
.woocommerce-Price-amount.amount {
margin-bottom: 20px;
display: inline-block;
}
.woocommerce table.shop_attributes tr,
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes th {
border: 1px solid rgb(144, 185, 86, .2);
}
.woocommerce div.product form.cart .variations tr th {
padding: 10px;
}
.woocommerce div.product form.cart .variations tr td {
position: relative;
line-height: normal;
vertical-align: middle;
}
.woocommerce div.product form.cart .reset_variations {
visibility: hidden;
font-size: .83em;
position: absolute;
left: 20px;
bottom: 5px;
font-weight: 500;
text-transform: uppercase;
color: var(--primary-color1);
} .woocommerce div.product form.cart table.group_table tr {
border: none;
}
.woocommerce div.product form.cart .group_table td {
vertical-align: middle;
}
.woocommerce div.product form.cart .group_table td ins {
text-decoration: none;
} .woocommerce #reviews #comments h2 {
clear: none;
margin-bottom: 40px;
text-transform: capitalize;
}
.woocommerce #reviews #comments ol.commentlist {
margin: 0;
padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li {
margin: 0 0 30px;
}
.woocommerce #reviews #comments ol.commentlist li:last-child {
margin-bottom: 0;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
top: 50%;
width: 80px;
height: 80px;
transform: translateY(-50%);
border-radius: 50%;
}
.woocommerce div.product .woocommerce-product-rating {
margin: 20px 0 5px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
margin: 0 0 0 100px;
padding: 20px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
font-size: 16px;
margin-bottom: 10px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
margin: 0;
}
.woocommerce .products .star-rating {
margin: 10px 0 0 0;
}
.woocommerce .star-rating,
.woocommerce .star-rating::before {
color: goldenrod;
}
.woocommerce #review_form #respond .comment-reply-title {
font-size: 24px;
color: #000;
display: block;
font-weight: 400;
text-transform: uppercase;
margin-bottom: 20px;
}
.woocommerce #review_form #respond .comment-notes {
color: #333;
font-weight: 600;
}
.woocommerce #review_form #respond .comment-form input {
border: 1px solid #eee;
background: transparent;
}
.woocommerce #review_form #respond .comment-form label {
margin-bottom: 5px;
}
.woocommerce #review_form #respond .comment-form .comment-form-rating {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
width: 100%;
gap: 20px;
}
.woocommerce #review_form #respond .comment-form .comment-form-rating .nice-select {
max-width: 220px;
border: 1px solid #eee;
}
.woocommerce #review_form #respond .comment-form .comment-form-rating label {
margin: 0;
}
.woocommerce #review_form #respond .comment-form .comment-form-rating .stars {
margin: 0;
line-height: 1;
}
.woocommerce p.stars:hover a::before {
content: "\e020";
color: goldenrod;
}
.woocommerce #review_form #respond .comment-form textarea {
background: transparent;
border: 1px solid #eee;
height: 150px;
}
.woocommerce #review_form #respond .comment-form input[type="submit"] {
color: var(--white);
border: none;
background: var(--primary-color1);
min-width: 150px;
}
.woocommerce #review_form #respond .comment-form input[type="submit"]:hover {
color: var(--white);
background-color: #000;
}  .woocommerce-cart-form {
padding: 40px 10px;
background-color: rgba(0, 0, 0, 0.02);
}
.woocommerce table.shop_table {
border: none;
margin: 0;
text-align: left;
width: 100%;
border-collapse: collapse;
border-radius: 0;
}
.woocommerce table.shop_table tr {
border: none;
}
.woocommerce table.shop_table th {
font-weight: 600;
padding: 10px 15px;
line-height: normal;
border: none;
color: var(--primary-color1);
border-bottom: 1px solid #eee;
}
.woocommerce table.shop_table td {
border: none;
padding: 10px 15px;
vertical-align: middle;
line-height: normal;
border-bottom: 1px solid #eee;
}
.woocommerce table.shop_table td.actions {
border-bottom: 0;
padding-top: 30px;
}
.woocommerce-cart table.cart .product-thumbnail {
position: relative;
}
.woocommerce-cart table.cart .product-thumbnail img {
width: 80px;
margin-left: 20px;
}
.woocommerce-cart table.cart .product-thumbnail .product-remove {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
.woocommerce-cart table.cart .product-thumbnail .product-remove a.remove {
color: red;
font-weight: unset;
}
.woocommerce-cart table.cart .product-thumbnail .product-remove a.remove:hover {
color: var(--white);
background: var(--primary-color1);
}
.woocommerce table.shop_table .quantity {
position: relative;
display: inline-block;
}
.woocommerce table.shop_table .quantity .qty {
min-width: 120px;
}
.woocommerce table.shop_table .quantity .minus,
.woocommerce table.shop_table .quantity .plus {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
background: transparent;
color: var(--text-primary);
font-size: 11px;
line-height: 40px;
}
.woocommerce table.shop_table .quantity .plus {
left: auto;
right: 15px;
}
.woocommerce table.shop_table .coupon {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
.woocommerce table.shop_table td.actions .coupon input.input-text {
height: 40px;
font-size: 14px;
min-width: 250px;
border-radius: 3px;
border: 1px solid #eee;
}
.woocommerce table.shop_table td.actions button.button:before,
.woocommerce table.shop_table td.actions button.button:after {
display: none;
}
.woocommerce table.shop_table td.actions button.button {
font-size: 14px;
padding: 12px 20px;
background-color: #000;
transition: all ease-in-out .5s;
}
.woocommerce table.shop_table td.actions button.button:hover {
color: var(--white);
background-color: var(--text-primary);
}
.woocommerce-message .restore-item {
font-weight: 600;
}
#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
padding: 0;
margin-top: 40px;
} .woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
float: none;
width: 100%;
margin-top: 50px;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-button {
color: #000;
font-weight: 500;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-button::after {
display: none;
}
.cart_totals h2 {
font-size: 18px;
margin-bottom: 30px;
text-transform: uppercase;
}
#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
border-collapse: collapse;
margin: 0;
padding: 0;
}
.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping th,
.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping td {
padding: 20px 15px;
}
.woocommerce table.shop_table tr.order-total th,
.woocommerce table.shop_table tr.order-total td {
border-bottom: none;
}
.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
display: none;
}  .woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
width: 49.5%;
}
.woocommerce form.checkout_coupon button.button::before,
.woocommerce form.checkout_coupon button.button::after {
display: none;
}
.woocommerce form.checkout_coupon button:hover {
color: var(--white);
background-color: var(--text-primary);
}
.customer_details_address {
padding: 80px 40px;
background-color: rgba(0, 0, 0, 0.02);
}
.woocommerce-billing-fields h3 {
font-size: 24px;
color: var(--text-primary);
margin-bottom: 30px;
}
.woocommerce form .woocommerce-billing-fields__field-wrapper p.form-row {
padding: 3px;
margin: 0 0 20px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
box-sizing: border-box;
width: 100%;
margin: 0;
outline: 0;
line-height: normal;
border: 1px solid #eee;
height: 48px;
}
.select2-container--default .select2-selection--single {
background-color: var(--white);
border: 1px solid #eee;
border-radius: 4px;
height: 48px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
color: #444;
line-height: 48px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 48px;
position: absolute;
top: 1px;
right: 5px;
width: 20px;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
height: 150px;
}
#ship-to-different-address {
position: relative;
font-size: 24px;
margin-bottom: 20px;
color: var(--text-primary);
padding-left: 30px;
}
#ship-to-different-address-checkbox {
position: absolute;
top: 5px;
left: 0;
height: 20px;
width: 20px;
background-color: #eee;
} #order_review_heading {
font-size: 24px;
color: var(--text-primary);
margin-bottom: 30px;
}
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
background: transparent;
border-radius: 5px;
}
.woocommerce-checkout-review-order table.shop_table td {
font-weight: 600;
}
.woocommerce-checkout-review-order table.shop_table td span {
font-weight: 400;
margin-top: 3px;
display: inline-block;
}
.woocommerce-checkout-review-order table.shop_table .order-total td span {
font-weight: 600;
color: #000;
}
.woocommerce ul#shipping_method li input {
vertical-align: unset;
}
.place-order button {
height: 48px;
transition: all ease-in-out.5s;
}
.place-order button::before,
.place-order button::after {
display: none;
} .woocommerce .woocommerce-order-details h2 {
font-size: 24px;
color: var(--text-primary);
margin-bottom: 30px;
}
.woocommerce ul.order_details li {
float: left;
margin-right: 5em;
text-transform: uppercase;
font-size: .715em;
line-height: 1;
border-right: 1px dashed #d3ced2;
padding-right: 2em;
margin-left: 0;
padding-left: 0;
list-style-type: none;
}
.woocommerce .woocommerce-order-details table.shop_table th,
.woocommerce .woocommerce-order-details table.shop_table td {
font-size: 14px;
font-weight: 400;
padding: 10px 0;
color: var(--text-secondary);
}
.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
padding: 20px;
}
.woocommerce-column__title {
font-size: 24px;
color: var(--text-primary);
margin-bottom: 30px;
}
.woocommerce .woocommerce-customer-details address {
border: none;
padding: 0;
} .woocommerce-no-products-found {
text-align: center;
margin: 80px 0;
}
.woocommerce-no-products-found img {
margin-bottom: 30px;
}
.woocommerce-no-products-found span {
font-size: 24px;
display: block;
margin-bottom: 20px;
color: var(--text-primary);
font-family: var(--font-merriw);
}
#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
margin: 0 .2em 0 0;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
float: right;
height: 56px;
margin-top: 20px;
padding: 10px 20px;
width: 100%;
text-transform: capitalize;
font-size: 22px;
font-weight: 600;
font-family: var(--font-merriw);
}  .woocommerce-account .woocommerce-MyAccount-navigation {
float: left;
width: 30%;
}
.woocommerce-MyAccount-navigation ul {
margin: 0;
padding: 0;
list-style: none;
}
.woocommerce-MyAccount-navigation ul li {
margin-bottom: 25px;
}
.woocommerce-MyAccount-navigation ul li:last-child {
margin-bottom: 0;
}
.woocommerce-MyAccount-navigation ul li a {
font-size: 16px;
color: #000;
padding: 8px 20px;
background-color: rgb(221, 221, 221, .2);
display: block;
text-transform: capitalize;
border: 1px solid #eee;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
color: var(--primary-color1);
border-left: 5px solid var(--primary-color1);
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button.button.view {
padding: 8px 15px;
font-size: 10px;
}
.woocommerce-Addresses {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 40px;
}
.woocommerce-Address {
height: 100%;
box-sizing: border-box;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
padding: 20px;
}
.woocommerce-account .addresses .title h3 {
float: left;
font-size: 24px;
color: var(--text-primary);
margin-bottom: 30px;
}
.woocommerce-account .addresses .title .edit {
float: right;
color: var(--primary-color1);
}
.woocommerce-EditAccountForm.edit-account legend {
font-size: 20px;
color: var(--text-primary);
text-transform: uppercase;
margin: 10px 0 0px;
font-weight: 500;
}
.woocommerce-EditAccountForm.edit-account button.button,
.woocommerce-address-fields button.button {
margin-top: 15px;
transition: all ease-in-out .5s;
}
.woocommerce-EditAccountForm.edit-account button.button:before,
.woocommerce-EditAccountForm.edit-account button.button:after,
.woocommerce-address-fields button.button:before,
.woocommerce-address-fields button.button:after {
display: none;
}
.woocommerce-EditAccountForm.edit-account button.button:hover,
.woocommerce-address-fields button.button:hover {
color: var(--white);
background-color: var(--text-primary);
}
.woocommerce-pagination.woocommerce-pagination--without-numbers.woocommerce-Pagination a.button {
margin-top: 40px;
min-width: 120px;
font-weight: 500;
text-align: center;
padding: 12px 20px;
}  #shop-left-sidebar {
margin: 0;
padding: 0;
}
.shop-widget-item {
margin-bottom: 40px;
}
.shop-widget-item:last-child {
margin-bottom: 0;
}
.shop-widget-title {
position: relative;
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
display: inline-block;
padding-bottom: 12px;
margin-bottom: 30px;
}
.shop-widget-title::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 70px;
background: linear-gradient(90.04deg, var(--primary-color1) 0%, rgba(30, 204, 209, 0) 99.27%);
border-radius: 30px;
height: 2px;
} .wc-block-components-sort-select {
margin-bottom: 20px;
text-align: left;
}
.wc-block-components-sort-select__label {
display: inline-block;
font-weight: 500;
margin-right: 15px;
font-size: 16px;
text-transform: uppercase;
color: #333;
}
.wc-block-components-sort-select__select {
font-size: 16px;
border: 1px solid #eee;
padding: 5px 10px;
cursor: pointer;
background: transparent;
}
.wc-block-components-review-list-item__info {
margin-bottom: 15px;
} .edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title,
.editor-styles-wrapper .wc-block-grid__product-title,
.wc-block-grid__product-title {
font-weight: 500;
}
.wc-block-grid__product-rating .star-rating {
float: none;
}
.wc-block-grid__product-onsale {
font-size: 12px;
}
.wc-block-grid__product-price del {
font-size: 12px;
}
.wc-block-grid__product-price ins {
text-decoration: none;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
font-size: 14px;
}
.wp-block-button__link:hover {
background: #2e2d31;
color: var(--white);
} .wc-block-product-categories-list {
margin: 0;
padding: 0;
list-style: none;
}
.wc-block-product-categories-list li {
position: relative;
margin-bottom: 10px;
}
.wc-block-product-categories-list li:last-child {
margin: 0;
}
.wc-block-product-categories-list li span.wc-block-product-categories-list-item-count {
position: absolute;
right: 0;
}
.wc-block-product-categories-list li a {
font-size: 16px;
font-weight: 600;
color: var(--text-secondary);
display: inline-block;
transition: all ease-in-out .5s;
}
.wc-block-product-categories-list li a:hover,
.wc-block-product-categories-list li span.wc-block-product-categories-list-item-count {
color: var(--primary-color1);
}
.wc-block-product-categories-list li ul {
padding-left: 20px;
margin-top: 10px;
} .wc-blocks-filter-wrapper h3 {
position: relative;
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
display: inline-block;
padding-bottom: 12px;
margin-bottom: 30px;
}
.wc-blocks-filter-wrapper h3:before {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 70px;
background: linear-gradient(90.04deg, var(--primary-color1) 0%, rgba(30, 204, 209, 0) 99.27%);
border-radius: 30px;
height: 2px;
}
.wc-block-components-price-slider__controls {
align-items: center;
display: flex;
gap: 10px;
justify-content: space-between;
margin: 15px 0;
}
.wc-block-components-price-slider__controls input.wc-block-formatted-money-amount {
border: 0;
padding: 0;
max-width: unset;
}  .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
float: left;
min-width: 150px;
margin: 10px 20px 0 0;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
display: inline-block;
margin-top: 15px;
}
.woocommerce-LostPassword.lost_password {
margin: 0;
color: red;
font-weight: 500;
} .add-image label {
position: relative;
}
.add-image .file-custom {
position: absolute;
top: 36px;
right: 0;
left: 0;
z-index: 5;
height: 48px;
padding: 0 1rem;
line-height: 48px;
color: #555;
background-color: #fff;
border: 0.075rem solid #eee;
border-radius: 0.25rem;
box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.add-image .file-custom::before {
position: absolute;
top: -0.075rem;
right: -0.075rem;
bottom: -0.075rem;
z-index: 6;
display: block;
content: "Browse";
height: 48px;
padding: 0.5rem 1rem;
line-height: 38px;
color: #555;
background-color: #eee;
border: none;
border-radius: 0 0.25rem 0.25rem 0;
}  .product-name a {
font-size: 18px;
font-weight: 600;
color: #000;
display: inline-block;
}
dl.variation dt {
font-size: 16px;
font-weight: 500;
margin: 5px 0;
}
dl.variation dd {
line-height: 1.8em;
}
dl.variation {
margin-top: 10px;
}
dt.variation-ExtraServices {
float: none !important;
}
dl.variation-ExtraServices ul {
list-style: inside;
padding: 5px 0;
}  @media only screen and (max-width: 575px) { .woocommerce-page .woocommerce-ordering {
float: none;
margin-top: 10px;
}
.woocommerce-page .woocommerce-ordering .nice-select {
float: none;
padding: 0;
}
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
width: 100%;
margin-top: 50px;
}
.woocommerce-cart-form {
overflow-x: auto;
}
.customer_details_address {
margin-bottom: 50px;
}
.woocommerce ul.order_details {
padding: 0;
}
.woocommerce ul.order_details li {
float: none;
margin: 20px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
float: none;
width: 100%;
margin-bottom: 50px;
}
} @media only screen and (min-width: 576px) and (max-width:767px) {
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
width: 100%;
margin-top: 50px;
}
.customer_details_address {
margin-bottom: 50px;
}
.woocommerce ul.order_details {
padding: 0;
}
.woocommerce ul.order_details li {
float: none;
margin: 20px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
float: none;
width: 100%;
margin-bottom: 50px;
}
} @media only screen and (min-width:768px) and (max-width: 991px) {
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
width: 100%;
margin-top: 50px;
}
.customer_details_address {
margin-bottom: 50px;
}
.woocommerce ul.order_details {
padding: 0;
}
.woocommerce ul.order_details li {
float: none;
margin: 20px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
margin-right: 20px;
}
} @media only screen and (min-width:992px) and (max-width: 1199px) {
.woocommerce ul.order_details li {
margin-right: 2em;
}
} @media only screen and (min-width: 1200px) {}
.woocommerce-order-details .product-name .wc-item-meta li strong {
font-size: 16px;
font-weight: 500;
margin: 0;
color: #5e5e5e;
font-family: "Work Sans", sans-serif;
}
.woocommerce-order-details .product-name .wc-item-meta {
margin: 0;
padding: 0;
}
.woocommerce-order-details .product-name .wc-item-meta>li {
display: flex;
justify-content: start;
align-items: center;
gap: 10px;
margin-bottom: 6px;
}
.woocommerce-order-details .product-name .wc-item-meta>li:last-child {
align-items: start;
display: block;
}
.woocommerce-order-details .product-name .wc-item-meta>li:last-child p {
display: flex;
gap: 5px;
}
.woocommerce-order-details .product-name .wc-item-meta .order-info-list {
display: block;
margin-top: 8px;
}
.woocommerce .woocommerce-order-details table.shop_table th,
.woocommerce .woocommerce-order-details table.shop_table td {
font-size: 14px;
}
.package-not-found {
text-align: center;
}
.package-not-found img {
height: 250px;
}
.package-not-found h3 {
margin-top: 50px;
font-size: 40px;
}
.package-not-found h3 strong {
font-size: 55px;
}
tr.woocommerce-cart-form__cart-item.cart_item td.product-name dt,
.woocommerce-checkout-review-order td.product-name dt {
margin-bottom: 0;
padding-bottom: 0;
padding-top: 0;
margin-top: 3px;
}
tr.woocommerce-cart-form__cart-item.cart_item td.product-name ul,
.woocommerce-checkout-review-order td.product-name dt {
margin-top: 5px;
}
.sidebar-offer .offer-badge .offer-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tour-widget-item {
margin-bottom: 30px;
}
.tour-widget-item:last-child {
margin-bottom: 0;
}
header.woocommerce-products-header::after {
position: absolute;
content: "";
left: 0;
right: 0;
bottom: -4px;
background-image: url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/inner-banner-vctr.png);
height: 50px;
width: 100%;
}
.woocommerce-message::before {
content: "\e015";
color: var(--primary-color1);
}.alignleft {
float: left;
margin-bottom: 20px;
clear: both;
}
.alignright {
float: right;
margin-bottom: 20px;
clear: both;
}
.aligncenter {
display: block;
margin: 0 auto 20px;
}
.alignnone {
margin-bottom: 20px;
margin-top: 20px;
}
.alignfull,
.alignwide {
margin-bottom: 20px;
}
.clearfix {
display: block;
clear: both;
content: '';
}
a:focus,
a:hover {
text-decoration: none;
outline: 0;
}
img,
svg {
max-width: 100%;
height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #2e2d31;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 32px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
h6 {
font-size: 14px;
}
body,
html {
height: 100%;
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
button,
input[type="submit"],
a.read-more {
position: relative;
z-index: 1;
}
button:before,
input[type="submit"]:before,
a.read-more:before {
z-index: -1;
position: absolute;
width: 0;
height: 100%;
content: "";
top: 0;
right: 0;
transition: 0.5s;
}
button:hover:before,
input[type="submit"]:hover:before,
a.read-more:hover:before {
right: auto;
left: 0;
width: 100%;
}
.center,
.left,
.right {
position: relative;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.center {
text-align: center;
}
.uppercase {
text-transform: uppercase;
}
.lowercase {
text-transform: lowercase;
}
.capitalize {
text-transform: capitalize;
}
.font12 {
font-size: 12px;
}
.font14 {
font-size: 14px;
}
.font16 {
font-size: 16px;
}
.font18 {
font-size: 18px;
}
.font20 {
font-size: 20px;
}
.font22 {
font-size: 22px;
}
.font24 {
font-size: 24px;
}
.font26 {
font-size: 26px;
}
.font28 {
font-size: 28px;
}
.font32 {
font-size: 32px;
}
.font30 {
font-size: 30px;
}
.font36 {
font-size: 36px;
}
.font38 {
font-size: 38px;
}
.font48 {
font-size: 48px;
}
.font42 {
font-size: 42px;
}
.font48 {
font-size: 48px;
}
.font50 {
font-size: 50px;
}
.font52 {
font-size: 52px;
}
.font60 {
font-size: 60px;
}
.font80 {
font-size: 80px;
}
.font120 {
font-size: 120px;
}
.font140 {
font-size: 140px;
}
@media only screen and (min-width: 1200px) {
.lg-center {
text-align: center;
}
.lg-left {
text-align: left;
}
.lg-right {
text-align: right;
}
.lg-font12 {
font-size: 12px;
}
.lg-font14 {
font-size: 14px;
}
.lg-font16 {
font-size: 16px;
}
.lg-font18 {
font-size: 18px;
}
.lg-font20 {
font-size: 20px;
}
.lg-font22 {
font-size: 22px;
}
.lg-font24 {
font-size: 24px;
}
.lg-font26 {
font-size: 26px;
}
.lg-font28 {
font-size: 28px;
}
.lg-font32 {
font-size: 32px;
}
.lg-font30 {
font-size: 30px;
}
.lg-font36 {
font-size: 36px;
}
.lg-font38 {
font-size: 38px;
}
.lg-font48 {
font-size: 48px;
}
.lg-font42 {
font-size: 42px;
}
.lg-font48 {
font-size: 48px;
}
.lg-font50 {
font-size: 50px;
}
.lg-font52 {
font-size: 52px;
}
.lg-font60 {
font-size: 60px;
}
.lg-font80 {
font-size: 80px;
}
.lg-font120 {
font-size: 120px;
}
.lg-font140 {
font-size: 140px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.md-center {
text-align: center;
}
.md-left {
text-align: left;
}
.md-right {
text-align: right;
}
.md-font12 {
font-size: 12px;
}
.md-font14 {
font-size: 14px;
}
.md-font16 {
font-size: 16px;
}
.md-font18 {
font-size: 18px;
}
.md-font20 {
font-size: 20px;
}
.md-font22 {
font-size: 22px;
}
.md-font24 {
font-size: 24px;
}
.md-font26 {
font-size: 26px;
}
.md-font28 {
font-size: 28px;
}
.md-font32 {
font-size: 32px;
}
.md-font30 {
font-size: 30px;
}
.md-font36 {
font-size: 36px;
}
.md-font38 {
font-size: 38px;
}
.md-font48 {
font-size: 48px;
}
.md-font42 {
font-size: 42px;
}
.md-font48 {
font-size: 48px;
}
.md-font50 {
font-size: 50px;
}
.md-font52 {
font-size: 52px;
}
.md-font60 {
font-size: 60px;
}
.md-font80 {
font-size: 80px;
}
.md-font120 {
font-size: 120px;
}
.md-font140 {
font-size: 140px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.sm-center {
text-align: center;
}
.sm-left {
text-align: left;
}
.sm-right {
text-align: right;
}
.sm-font12 {
font-size: 12px;
}
.sm-font14 {
font-size: 14px;
}
.sm-font16 {
font-size: 16px;
}
.sm-font18 {
font-size: 18px;
}
.sm-font20 {
font-size: 20px;
}
.sm-font22 {
font-size: 22px;
}
.sm-font24 {
font-size: 24px;
}
.sm-font26 {
font-size: 26px;
}
.sm-font28 {
font-size: 28px;
}
.sm-font32 {
font-size: 32px;
}
.sm-font30 {
font-size: 30px;
}
.sm-font36 {
font-size: 36px;
}
.sm-font38 {
font-size: 38px;
}
.sm-font48 {
font-size: 48px;
}
.sm-font42 {
font-size: 42px;
}
.sm-font48 {
font-size: 48px;
}
.sm-font50 {
font-size: 50px;
}
.sm-font52 {
font-size: 52px;
}
.sm-font60 {
font-size: 60px;
}
.sm-font80 {
font-size: 80px;
}
.sm-font120 {
font-size: 120px;
}
.sm-font140 {
font-size: 140px;
}
}
@media only screen and (max-width: 767px) {
.xs-center {
text-align: center;
}
.xs-left {
text-align: left;
}
.xs-right {
text-align: right;
}
.xs-font12 {
font-size: 12px;
}
.xs-font14 {
font-size: 14px;
}
.xs-font16 {
font-size: 16px;
}
.xs-font18 {
font-size: 18px;
}
.xs-font20 {
font-size: 20px;
}
.xs-font22 {
font-size: 22px;
}
.xs-font24 {
font-size: 24px;
}
.xs-font26 {
font-size: 26px;
}
.xs-font28 {
font-size: 28px;
}
.xs-font32 {
font-size: 32px;
}
.xs-font30 {
font-size: 30px;
}
.xs-font36 {
font-size: 36px;
}
.xs-font38 {
font-size: 38px;
}
.xs-font48 {
font-size: 48px;
}
.xs-font42 {
font-size: 42px;
}
.xs-font48 {
font-size: 48px;
}
.xs-font50 {
font-size: 50px;
}
.xs-font52 {
font-size: 52px;
}
.xs-font60 {
font-size: 60px;
}
.xs-font80 {
font-size: 80px;
}
.xs-font120 {
font-size: 120px;
}
.xs-font140 {
font-size: 140px;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.xsl-center {
text-align: center;
}
.xsl-left {
text-align: left;
}
.xsl-right {
text-align: right;
}
.xsl-font12 {
font-size: 12px;
}
.xsl-font14 {
font-size: 14px;
}
.xsl-font16 {
font-size: 16px;
}
.xsl-font18 {
font-size: 18px;
}
.xsl-font20 {
font-size: 20px;
}
.xsl-font22 {
font-size: 22px;
}
.xsl-font24 {
font-size: 24px;
}
.xsl-font26 {
font-size: 26px;
}
.xsl-font28 {
font-size: 28px;
}
.xsl-font32 {
font-size: 32px;
}
.xsl-font30 {
font-size: 30px;
}
.xsl-font36 {
font-size: 36px;
}
.xsl-font38 {
font-size: 38px;
}
.xsl-font48 {
font-size: 48px;
}
.xsl-font42 {
font-size: 42px;
}
.xsl-font48 {
font-size: 48px;
}
.xsl-font50 {
font-size: 50px;
}
.xsl-font52 {
font-size: 52px;
}
.xsl-font60 {
font-size: 60px;
}
.xsl-font80 {
font-size: 80px;
}
.xsl-font120 {
font-size: 120px;
}
.xsl-font140 {
font-size: 140px;
}
}
.width50 {
width: 50px;
}
.width60 {
width: 60px;
}
.width70 {
width: 70px;
}
.width80 {
width: 80px;
}
.width90 {
width: 90px;
}
.width100 {
width: 100px;
}
.width110 {
width: 110px;
}
.width120 {
width: 120px;
}
.width50p {
width: 50%;
}
.width70p {
width: 70%;
}
.width80p {
width: 80%;
}
.width90p {
width: 90%;
}
.width100p,
.width100p img {
width: 100%;
}
.display-table {
display: table;
}
.display-table-cell {
display: table-cell;
}
.vertical-align-middle {
vertical-align: middle;
}
.last-p-mb0 p:last-of-type {
margin-bottom: 0;
}
.first-h4-mb0 h4:first-of-type {
margin-bottom: 0;
}
.font300 {
font-weight: 300;
}
.font400 {
font-weight: 400;
}
.font500 {
font-weight: 500;
}
.font600 {
font-weight: 600;
}
.font700 {
font-weight: 700;
}
.font800 {
font-weight: 800;
}
.fix {
overflow: hidden;
}
.relative {
position: relative;
overflow: hidden;
}
.absulute {
position: absolute;
}
.v-center {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 100%;
z-index: 9;
}
.h-center {
left: 50%;
transform: translateX(-50%);
}
.h-center-reverse {
right: 50%;
transform: translateX(50%);
}
.content-center {
align-items: center;
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.item-center {
left: 50%;
position: absolute;
top: 50%;
transform: translateX(-50%) translateY(-50%);
z-index: 1;
}
.flex-v-center {
display: flex;
align-items: center;
}
.display-block {
display: block;
}
.social-bookmark li {
display: inline;
}
.social-bookmark li a {
display: inline-block;
margin: 0 2px;
text-align: center;
}
.inline li {
display: inline;
}
.inline-block li {
display: inline-block;
}
.inline-block {
display: inline-block;
}
@media (min-width: 768px) and (max-width: 991px) {
.sm-width100p {
width: 100%;
}
.flex-v-center {
display: inherit;
}
}
@media only screen and (max-width: 767px) {
.xs-width100p {
width: 100%;
}
.flex-v-center {
align-items: inherit;
display: inherit;
}
}
.mt100 {
margin-top: 100px;
}
.mt90 {
margin-top: 90px;
}
.mt80 {
margin-top: 80px;
}
.mt70 {
margin-top: 70px;
}
.mt60 {
margin-top: 60px;
}
.mt50 {
margin-top: 50px;
}
.mt40 {
margin-top: 40px;
}
.mt30 {
margin-top: 30px;
}
.mt20 {
margin-top: 20px;
}
.mt10 {
margin-top: 10px;
}
.no-margin {
margin: 0;
}
.mb100 {
margin-bottom: 100px;
}
.mb90 {
margin-bottom: 90px;
}
.mb80 {
margin-bottom: 80px;
}
.mb70 {
margin-bottom: 70px;
}
.mb60 {
margin-bottom: 60px;
}
.mb50 {
margin-bottom: 50px;
}
.mb40 {
margin-bottom: 40px;
}
.mb30 {
margin-bottom: 30px;
}
.mb20 {
margin-bottom: 20px;
}
.mb10 {
margin-bottom: 10px;
}
.mb0 {
margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
.lg-mb0 {
margin-bottom: 0;
}
.lg-mb10 {
margin-bottom: 10px;
}
.lg-mb20 {
margin-bottom: 20px;
}
.lg-mb30 {
margin-bottom: 30px;
}
.lg-mb40 {
margin-bottom: 40px;
}
.lg-mb50 {
margin-bottom: 50px;
}
.lg-mb60 {
margin-bottom: 60px;
}
.lg-mb70 {
margin-bottom: 70px;
}
.lg-mb80 {
margin-bottom: 80px;
}
.lg-mb100 {
margin-bottom: 100px;
}
.lg-mt0 {
margin-top: 0;
}
.lg-mt10 {
margin-top: 10px;
}
.lg-mt20 {
margin-top: 20px;
}
.lg-mt30 {
margin-top: 30px;
}
.lg-mt40 {
margin-top: 40px;
}
.lg-mt50 {
margin-top: 50px;
}
.lg-mt60 {
margin-top: 60px;
}
.lg-mt70 {
margin-top: 70px;
}
.lg-mt80 {
margin-top: 80px;
}
.lg-mt100 {
margin-top: 100px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.md-mb0 {
margin-bottom: 0;
}
.md-mb10 {
margin-bottom: 10px;
}
.md-mb20 {
margin-bottom: 20px;
}
.md-mb30 {
margin-bottom: 30px;
}
.md-mb40 {
margin-bottom: 40px;
}
.md-mb50 {
margin-bottom: 50px;
}
.md-mb60 {
margin-bottom: 60px;
}
.md-mb70 {
margin-bottom: 70px;
}
.md-mb80 {
margin-bottom: 80px;
}
.md-mb100 {
margin-bottom: 100px;
}
.md-mt0 {
margin-top: 0;
}
.md-mt10 {
margin-top: 10px;
}
.md-mt20 {
margin-top: 20px;
}
.md-mt30 {
margin-top: 30px;
}
.md-mt40 {
margin-top: 40px;
}
.md-mt50 {
margin-top: 50px;
}
.md-mt60 {
margin-top: 60px;
}
.md-mt70 {
margin-top: 70px;
}
.md-mt80 {
margin-top: 80px;
}
.md-mt100 {
margin-top: 100px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.sm-mb0 {
margin-bottom: 0;
}
.sm-mb10 {
margin-bottom: 10px;
}
.sm-mb20 {
margin-bottom: 20px;
}
.sm-mb30 {
margin-bottom: 30px;
}
.sm-mb40 {
margin-bottom: 40px;
}
.sm-mb50 {
margin-bottom: 50px;
}
.sm-mb60 {
margin-bottom: 60px;
}
.sm-mb70 {
margin-bottom: 70px;
}
.sm-mb80 {
margin-bottom: 80px;
}
.sm-mb100 {
margin-bottom: 100px;
}
.sm-mt0 {
margin-top: 0;
}
.sm-mt10 {
margin-top: 10px;
}
.sm-mt20 {
margin-top: 20px;
}
.sm-mt30 {
margin-top: 30px;
}
.sm-mt40 {
margin-top: 40px;
}
.sm-mt50 {
margin-top: 50px;
}
.sm-mt60 {
margin-top: 60px;
}
.sm-mt70 {
margin-top: 70px;
}
.sm-mt80 {
margin-top: 80px;
}
.sm-mt100 {
margin-top: 100px;
}
}
@media only screen and (max-width: 767px) {
.xs-mb0 {
margin-bottom: 0;
}
.xs-mb10 {
margin-bottom: 10px;
}
.xs-mb20 {
margin-bottom: 20px;
}
.xs-mb30 {
margin-bottom: 30px;
}
.xs-mb40 {
margin-bottom: 40px;
}
.xs-mb50 {
margin-bottom: 50px;
}
.xs-mb60 {
margin-bottom: 60px;
}
.xs-mb70 {
margin-bottom: 70px;
}
.xs-mb80 {
margin-bottom: 80px;
}
.xs-mb100 {
margin-bottom: 100px;
}
.xs-mt0 {
margin-top: 0;
}
.xs-mt10 {
margin-top: 10px;
}
.xs-mt20 {
margin-top: 20px;
}
.xs-mt30 {
margin-top: 30px;
}
.xs-mt40 {
margin-top: 40px;
}
.xs-mt50 {
margin-top: 50px;
}
.xs-mt60 {
margin-top: 60px;
}
.xs-mt70 {
margin-top: 70px;
}
.xs-mt80 {
margin-top: 80px;
}
.xs-mt100 {
margin-top: 100px;
}
}
.section-padding {
padding: 100px 0;
}
.padding-top {
padding-top: 100px;
}
.padding-bottom {
padding-bottom: 100px;
}
.padding-100-70 {
padding-top: 100px;
padding-bottom: 70px;
}
.padding-100-50 {
padding-top: 100px;
padding-bottom: 50px;
}
.padding-100-40 {
padding-top: 100px;
padding-bottom: 40px;
}
.padding-100-30 {
padding-top: 100px;
padding-bottom: 30px;
}
.padding-50-50 {
padding: 50px 0;
}
.padding-150-150 {
padding: 150px 0;
}
.padding-top-10 {
padding-top: 10px;
}
.padding-top-20 {
padding-top: 20px;
}
.padding-top-30 {
padding-top: 30px;
}
.padding-top-40 {
padding-top: 40px;
}
.padding-top-50 {
padding-top: 50px;
}
.padding-top-60 {
padding-top: 60px;
}
.padding-top-70 {
padding-top: 70px;
}
.padding-top-80 {
padding-top: 80px;
}
.padding-top-90 {
padding-top: 90px;
}
.padding-top-100 {
padding-top: 100px;
}
.padding-bottom-10 {
padding-bottom: 10px;
}
.padding-bottom-20 {
padding-bottom: 20px;
}
.padding-bottom-30 {
padding-bottom: 30px;
}
.padding-bottom-40 {
padding-bottom: 40px;
}
.padding-bottom-50 {
padding-bottom: 50px;
}
.padding-bottom-60 {
padding-bottom: 60px;
}
.padding-bottom-70 {
padding-bottom: 70px;
}
.padding-bottom-80 {
padding-bottom: 80px;
}
.padding-bottom-90 {
padding-bottom: 90px;
}
.padding-bottom-100 {
padding-bottom: 100px;
}
.padding100 {
padding: 100px;
}
.padding90 {
padding: 90px;
}
.padding80 {
padding: 80px;
}
.padding70 {
padding: 70px;
}
.padding60 {
padding: 60px;
}
.padding50 {
padding: 50px;
}
.padding40 {
padding: 40px;
}
.padding30 {
padding: 30px;
}
.padding20 {
padding: 20px;
}
.padding10 {
padding: 10px;
}
.no-padding {
padding: 0;
}
@media only screen and (min-width: 1200px) {
.lg-padding-top-10 {
padding-top: 10px;
}
.lg-padding-top-20 {
padding-top: 20px;
}
.lg-padding-top-30 {
padding-top: 30px;
}
.lg-padding-top-40 {
padding-top: 40px;
}
.lg-padding-top-50 {
padding-top: 50px;
}
.lg-padding-top-60 {
padding-top: 60px;
}
.lg-padding-top-70 {
padding-top: 70px;
}
.lg-padding-top-80 {
padding-top: 80px;
}
.lg-padding-top-90 {
padding-top: 90px;
}
.lg-padding-top-100 {
padding-top: 100px;
}
.lg-padding-bottom-10 {
padding-bottom: 10px;
}
.lg-padding-bottom-20 {
padding-bottom: 20px;
}
.lg-padding-bottom-30 {
padding-bottom: 30px;
}
.lg-padding-bottom-40 {
padding-bottom: 40px;
}
.lg-padding-bottom-50 {
padding-bottom: 50px;
}
.lg-padding-bottom-60 {
padding-bottom: 60px;
}
.lg-padding-bottom-70 {
padding-bottom: 70px;
}
.lg-padding-bottom-80 {
padding-bottom: 80px;
}
.lg-padding-bottom-90 {
padding-bottom: 90px;
}
.lg-padding-bottom-100 {
padding-bottom: 100px;
}
.lg-padding100 {
padding: 100px;
}
.lg-padding90 {
padding: 90px;
}
.lg-padding80 {
padding: 80px;
}
.lg-padding70 {
padding: 70px;
}
.lg-padding60 {
padding: 60px;
}
.lg-padding50 {
padding: 50px;
}
.lg-padding40 {
padding: 40px;
}
.lg-padding30 {
padding: 30px;
}
.lg-padding20 {
padding: 20px;
}
.lg-padding10 {
padding: 10px;
}
.lg-padding0 {
padding: 0;
}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.md-padding-top-10 {
padding-top: 10px;
}
.md-padding-top-20 {
padding-top: 20px;
}
.md-padding-top-30 {
padding-top: 30px;
}
.md-padding-top-40 {
padding-top: 40px;
}
.md-padding-top-50 {
padding-top: 50px;
}
.md-padding-top-60 {
padding-top: 60px;
}
.md-padding-top-70 {
padding-top: 70px;
}
.md-padding-top-80 {
padding-top: 80px;
}
.md-padding-top-90 {
padding-top: 90px;
}
.md-padding-top-100 {
padding-top: 100px;
}
.md-padding-bottom-10 {
padding-bottom: 10px;
}
.md-padding-bottom-20 {
padding-bottom: 20px;
}
.md-padding-bottom-30 {
padding-bottom: 30px;
}
.md-padding-bottom-40 {
padding-bottom: 40px;
}
.md-padding-bottom-50 {
padding-bottom: 50px;
}
.md-padding-bottom-60 {
padding-bottom: 60px;
}
.md-padding-bottom-70 {
padding-bottom: 70px;
}
.md-padding-bottom-80 {
padding-bottom: 80px;
}
.md-padding-bottom-90 {
padding-bottom: 90px;
}
.md-padding-bottom-100 {
padding-bottom: 100px;
}
.md-padding100 {
padding: 100px;
}
.md-padding90 {
padding: 90px;
}
.md-padding80 {
padding: 80px;
}
.md-padding70 {
padding: 70px;
}
.md-padding60 {
padding: 60px;
}
.md-padding50 {
padding: 50px;
}
.md-padding40 {
padding: 40px;
}
.md-padding30 {
padding: 30px;
}
.md-padding20 {
padding: 20px;
}
.md-padding10 {
padding: 10px;
}
.md-padding0 {
padding: 0;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.sm-padding-top-10 {
padding-top: 10px;
}
.sm-padding-top-20 {
padding-top: 20px;
}
.sm-padding-top-30 {
padding-top: 30px;
}
.sm-padding-top-40 {
padding-top: 40px;
}
.sm-padding-top-50 {
padding-top: 50px;
}
.sm-padding-top-60 {
padding-top: 60px;
}
.sm-padding-top-70 {
padding-top: 70px;
}
.sm-padding-top-80 {
padding-top: 80px;
}
.sm-padding-top-90 {
padding-top: 90px;
}
.sm-padding-top-100 {
padding-top: 100px;
}
.sm-padding-bottom-10 {
padding-bottom: 10px;
}
.sm-padding-bottom-20 {
padding-bottom: 20px;
}
.sm-padding-bottom-30 {
padding-bottom: 30px;
}
.sm-padding-bottom-40 {
padding-bottom: 40px;
}
.sm-padding-bottom-50 {
padding-bottom: 50px;
}
.sm-padding-bottom-60 {
padding-bottom: 60px;
}
.sm-padding-bottom-70 {
padding-bottom: 70px;
}
.sm-padding-bottom-80 {
padding-bottom: 80px;
}
.sm-padding-bottom-90 {
padding-bottom: 90px;
}
.sm-padding-bottom-100 {
padding-bottom: 100px;
}
.sm-padding100 {
padding: 100px;
}
.sm-padding90 {
padding: 90px;
}
.sm-padding80 {
padding: 80px;
}
.sm-padding70 {
padding: 70px;
}
.sm-padding60 {
padding: 60px;
}
.sm-padding50 {
padding: 50px;
}
.sm-padding40 {
padding: 40px;
}
.sm-padding30 {
padding: 30px;
}
.sm-padding20 {
padding: 20px;
}
.sm-padding10 {
padding: 10px;
}
.sm-padding0 {
padding: 0;
}
.section-padding {
padding: 80px 0;
}
.padding-top {
padding-top: 80px;
}
.padding-bottom {
padding-bottom: 80px;
}
.padding-100-50 {
padding-top: 80px;
padding-bottom: 30px;
}
.padding-100-70 {
padding-top: 80px;
padding-bottom: 50px;
}
.padding-100-30 {
padding-top: 80px;
padding-bottom: 10px;
}
}
@media only screen and (max-width: 767px) {
.xs-padding-top-10 {
padding-top: 10px;
}
.xs-padding-top-20 {
padding-top: 20px;
}
.xs-padding-top-30 {
padding-top: 30px;
}
.xs-padding-top-40 {
padding-top: 40px;
}
.xs-padding-top-50 {
padding-top: 50px;
}
.xs-padding-top-60 {
padding-top: 60px;
}
.xs-padding-top-70 {
padding-top: 70px;
}
.xs-padding-top-80 {
padding-top: 80px;
}
.xs-padding-top-90 {
padding-top: 90px;
}
.xs-padding-top-100 {
padding-top: 100px;
}
.xs-padding-bottom-10 {
padding-bottom: 10px;
}
.xs-padding-bottom-20 {
padding-bottom: 20px;
}
.xs-padding-bottom-30 {
padding-bottom: 30px;
}
.xs-padding-bottom-40 {
padding-bottom: 40px;
}
.xs-padding-bottom-50 {
padding-bottom: 50px;
}
.xs-padding-bottom-60 {
padding-bottom: 60px;
}
.xs-padding-bottom-70 {
padding-bottom: 70px;
}
.xs-padding-bottom-80 {
padding-bottom: 80px;
}
.xs-padding-bottom-90 {
padding-bottom: 90px;
}
.xs-padding-bottom-100 {
padding-bottom: 100px;
}
.xs-padding100 {
padding: 100px;
}
.xs-padding90 {
padding: 90px;
}
.xs-padding80 {
padding: 80px;
}
.xs-padding70 {
padding: 70px;
}
.xs-padding60 {
padding: 60px;
}
.xs-padding50 {
padding: 50px;
}
.xs-padding40 {
padding: 40px;
}
.xs-padding30 {
padding: 30px;
}
.xs-padding20 {
padding: 20px;
}
.xs-padding10 {
padding: 10px;
}
.xs-padding0 {
padding: 0;
}
.section-padding {
padding: 50px 0;
}
.padding-top {
padding-top: 50px;
}
.padding-bottom {
padding-bottom: 50px;
}
.padding-100-50 {
padding-top: 50px;
padding-bottom: 0;
}
.padding-100-70 {
padding-top: 50px;
padding-bottom: 20px;
}
.padding-100-30 {
padding-top: 50px;
padding-bottom: 0;
}
}
.theme-bg {
background: #f85d1c;
}
.green-bg {
background: #f6fafb;
}
.white-green-bg {
background: #eaf6fa;
}
.gray-bg {
background: #f0f1ff;
}
.light-gray-bg {
background-color: #f7f7f7;
}
.deep-gray-bg {
background-color: #f2f0ff;
}
.sky-gray-bg {
background: #f7f9fc;
}
.soft-gray-bg {
background: #f8f8ff;
}
.dark-bg {
background: rgba(0, 0, 0, 0.85);
color: #fff;
}
.alt-dark-bg {
background: #0a0c19;
color: #fff;
}
.deep-dark-bg {
background: rgba(0, 0, 0, 0.9);
color: #fff;
}
.alt-deep-dark-bg {
background: #050713;
color: #fff;
}
.no-bg {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}
.black,
.black a,
.black h1,
.black h2,
.black h3,
.black h4,
.black h5,
.black h6,
.black small,
.red,
.red a,
.red h1,
.red h2,
.red h3,
.red h4,
.red h5,
.red h6,
.red small,
.white,
.white a,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6,
.white small {
color: #fff;
}
.border {
border: 1px solid #ddd;
}
.border-left {
border-left: 1px solid #ddd;
}
.border-right {
border-right: 1px solid #ddd;
}
.border-bottom {
border-bottom: 1px solid #ddd;
}
.border-top {
border-top: 1px solid #ddd;
}
.border-righ-bottom {
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
.border-xs {
border: 1px solid #ddd;
}
}
.border-radious5 {
border-radius: 5px;
}
.border-radious10 {
border-radius: 10px;
}
.border-radious20 {
border-radius: 20px;
}
.border-radious50 {
border-radius: 50px;
}
.shadow {
box-shadow: 0 0 3px #ddd;
}
.shadow10 {
box-shadow: 0 0 3px #ddd;
transition: 0.3s;
}
.shadow10:hover,
.shadow:hover {
transform: translateY(-5px);
}
.no-shadow {
box-shadow: 0 0 0 0 transparent;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
outline: 0;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
outline: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
outline: 0;
width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
outline: 0;
}
select {
border: 1px solid #ccc;
}
textarea {
width: 100%;
}
embed,
iframe,
object {
width: 100%;
border: 0;
}
figure.wp-block-gallery {
margin-bottom: 40px !important;
}:root {
--primary_color: #dea057;
}
*,
table * {
word-break: initial;
}
.inner-post table th,
.blog-wrapper .blog-details table th,
.blog-comment-form table th {
color: #00274e;
} body.logged-in.admin-bar .main-nav-wrapper .main-box {
top: 32px;
}
@media only screen and (max-width:780px) {
body.logged-in.admin-bar header.sticky {
top: 32px;
}
}
@media only screen and (max-width:575px) {
body.logged-in.admin-bar header.sticky {
top: 0;
}
}
header .set-menu {
padding: 20px 0;
}
header .set-menu h4 {
margin: 0;
}
header .set-menu h4 a {
color: #000;
}
@media (max-width: 1199px) {
header .set-menu h4 {
margin-top: 25px;
}
} .group::after,
.entry-content::after {
clear: both;
content: "";
display: block;
} a,
path {
transition: all 0.15s linear;
} button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
background: var(--primary-color1);
color: var(--white);
border-radius: 0;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 1px solid transparent;
}
button i,
input[type="button"] i,
input[type="reset"] i,
input[type="submit"] i {
font-weight: 200;
vertical-align: middle;
}
input[type="button"]::after,
input[type="reset"]::after,
input[type="submit"]::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--white);
width: 100%;
height: 100%;
transition: .5s;
z-index: -1;
transform: scale(.6);
border-radius: 0;
opacity: 0;
}
input[type="button"]:hover::after,
input[type="reset"]:hover::after,
input[type="submit"]:hover::after {
transform: scale(1);
opacity: 1;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
border-color: #aaaaaa #bbbbbb #bbbbbb;
}
input[type="text"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
width: 100%;
outline: none;
border: none;
border-bottom: 1px solid #eee;
border-radius: 0;
padding: 10px;
transition: all .45s ease;
font-size: 16px;
color: var(--text-primary);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
border-color: var(--primary-color1);
}
select {
border: 1px solid #cccccc;
}
textarea {
border-radius: 3px 0px 0px 3px;
width: 100%;
border: 1px solid #F0F0F0;
padding: 20px;
background: #F0F0F0;
resize: none;
}
.blog-details-single input {
padding: 10px;
font-size: 12px;
height: 40px;
letter-spacing: 3px;
}
.kc-contact-form7 input,
.kc-contact-form7 textarea {
padding: 10px;
}
.owl-carousel .owl-item img {
max-width: 100%;
width: auto;
} .screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
-webkit-clip-path: none;
clip-path: none;
color: var(--primary-color1);
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}
#content[tabindex="-1"]:focus {
outline: 0;
} .alignleft {
float: left;
margin-right: 2em;
}
.alignright {
float: right;
margin-left: 2em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
} .widget select {
max-width: 100%;
} .sticky {
display: block;
}
.updated:not(.published) {
display: none;
}
.inner-post:after,
.entry-content:after,
.entry-summary:after,
.blog-details .blog-content::after {
clear: both;
content: "";
display: block;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
} .comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}
.blog-news .blog-post-area #commentform {
padding-bottom: 0;
}
.blog-news .blog-comment-form .form-submit {
margin-bottom: 0;
} .infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
display: none;
}
.infinity-end.neverending .site-footer {
display: block;
} .inner-post .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
embed,
iframe,
object {
max-width: 100%;
} .wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
color: #555;
}
.wp-caption-text {
text-align: center;
} .gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
}
.single .blog-wrapper .blog-details figure.gallery-item {
margin-bottom: 20px;
}
.single .blog-wrapper .blog-details figure.gallery-item img {
margin-bottom: 5px;
}
.blocks-gallery-grid:not(.has-nested-images),
.wp-block-gallery:not(.has-nested-images) {
display: flex;
flex-wrap: wrap;
list-style-type: none;
padding: 0;
margin-right: 5px;
} .single-widgets .wp-block-group__inner-container h2 {
font-weight: bold;
font-size: 22px;
line-height: 35px;
letter-spacing: 0.02em;
text-transform: uppercase;
color: #2e2d31;
margin-bottom: 30px;
position: relative;
}
.single-widgets .wp-block-group__inner-container h2::before {
position: absolute;
content: "";
background: #111111;
opacity: 0.5;
border: 1px solid #111111;
width: 70px;
bottom: -5px;
left: 0;
}
.single-widgets .wp-block-search .wp-block-search__label {
font-weight: bold;
font-size: 22px;
line-height: 35px;
letter-spacing: 0.02em;
text-transform: uppercase;
color: #2e2d31;
margin-bottom: 30px;
position: relative;
}
.single-widgets .wp-block-search .wp-block-search__label:before {
position: absolute;
content: "";
background: #111111;
opacity: 0.5;
border: 1px solid #111111;
width: 70px;
bottom: -5px;
left: 0;
}
.single-widgets area form.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search {
margin-bottom: 10px;
}
@media (max-width: 767px) {
body:not(.rtl) .elementor-2670 .elementor-element.elementor-element-ad8c723 {
left: 60px;
top: 50%;
margin-top: -35px;
}
.custom-shape-left {
display: none !important;
}
} @media (max-width: 991px) {
body.logged-in.admin-bar .main-menu.show-menu {
margin-top: 42px;
}
body.logged-in.admin-bar header.sticky .main-menu.show-menu {
margin-top: 0;
}
} @media (max-width: 991px) {
body.logged-in.admin-bar .main-menu.show-menu {
margin-top: 42px;
}
body.logged-in.admin-bar header .main-nav {
margin-top: 32px;
}
body.logged-in.admin-bar header.sticky .main-nav {
margin-top: 0;
}
body.logged-in.admin-bar header.sticky .main-menu.show-menu {
margin-top: 0;
}
.widget-area {
margin-top: 40px;
margin-bottom: 80px;
}
.widget-area.right-sidebar {
margin-bottom: 0;
}
}
body.logged-in.admin-bar .header-area.sticky {
margin-top: 32px;
position: absolute;
}
body.logged-in.admin-bar .header-area.sticky {
position: fixed;
}
@media screen and (max-width: 783px) {
body.logged-in.admin-bar .header-area.sticky {
margin-top: 0;
position: fixed;
}
body.logged-in.admin-bar .header-area.sticky .main-nav {
margin-top: 0;
}
}
@media screen and (max-width: 576px) {
body.logged-in.admin-bar .header-area.sticky {
position: fixed;
}
} button.mfp-close::before {
content: none;
}
button.mfp-close::after {
content: none;
} span.wpcf7-spinner {
position: absolute;
}* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
}
:root { --primary-color1: #90b956;
--primary-color2: #f2aa4cff;
--primary-color3: #d55437;
--primary-color1-light: rgba(144, 185, 86, 0.7);
--primary-color1-light2: #a8cd758c;
--primary1-dark: #359d9e;
--white: #fff;
--text-primary: #09100d;
--text-secondary: #5e5e5e;
--text-light: #878787;
--border-color: #dddddd;
--font-satisfy: "Satisfy";
--font-merriw: "Merriweather", serif;
--font-work-sans: "Work Sans", sans-serif;
}
::-moz-selection {
color: var(--white);
background: var(--primary-color1);
}
::selection {
color: var(--white);
background: var(--primary-color1);
}  html {
font-size: 62.5%;
scroll-behavior: smooth;
}
@media (min-width: 1200px) and (max-width: 1399px) {
html {
font-size: 60%;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
html {
font-size: 58%;
}
}
@media (min-width: 768px) and (max-width: 991px) {
html {
font-size: 57%;
}
}
@media (min-width: 576px) and (max-width: 768px) {
html {
font-size: 56%;
}
}
@media (max-width: 576px) {
html {
font-size: 55%;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--text-primary);
font-family: var(--font-merriw);
}
body {
color: var(--text-secondary);
font-family: var(--font-work-sans);
font-size: 16px;
font-weight: 400;
line-height: 1.7;
overflow-x: hidden;
}
button {
outline: none;
border: none;
}
a {
color: unset;
text-decoration: none;
}
a:focus {
outline: 0 solid;
}
a:hover {
text-decoration: none;
color: unset;
}
input:focus, .asking-form-wrap .style-1 .form-inner textarea:focus,
textarea:focus,
button:focus {
outline: none;
}
i.bx {
vertical-align: middle;
}
.para {
font-size: 17px;
font-weight: 400;
font-family: var(--font-work-sans);
color: var(--text-secondary);
line-height: 1.6;
}
.pt-120 {
padding-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.pt-120 {
padding-top: 100px;
}
}
@media (max-width: 991px) {
.pt-120 {
padding-top: 90px;
}
}
.pl-230 {
padding-left: 230px;
}
.pt-90 {
padding-top: 90px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.pt-90 {
padding-top: 70px;
}
}
@media (max-width: 991px) {
.pt-90 {
padding-top: 60px;
}
}
.pb-90 {
padding-bottom: 90px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.pb-90 {
padding-bottom: 70px;
}
}
@media (max-width: 991px) {
.pb-90 {
padding-bottom: 60px;
}
}
.pb-120 {
padding-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.pb-120 {
padding-bottom: 100px;
}
}
@media (max-width: 991px) {
.pb-120 {
padding-bottom: 90px;
}
}
.pb-65 {
padding-bottom: 65px;
}
.mt-120 {
margin-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.mt-120 {
margin-top: 100px;
}
}
@media (max-width: 991px) {
.mt-120 {
margin-top: 90px;
}
}
.mb-120 {
margin-bottom: 120px;
}
.pt-80 {
padding-top: 80px;
}
.pt-30 {
padding-top: 30px;
}
.pt-50 {
padding-top: 50px;
}
.pb-80 {
padding-bottom: 80px;
}
.pe-80 {
padding-right: 80px;
}
.pb-60 {
padding-bottom: 60px;
}
.mb-60 {
margin-bottom: 60px;
}
.mb-50 {
margin-bottom: 50px;
}
.mb-45 {
margin-bottom: 45px;
}
.mb-35 {
margin-bottom: 35px;
}
.mt-10 {
margin-top: 10px;
}
.mt-40 {
margin-top: 40px;
}
.mb-40 {
margin-bottom: 40px;
}
.mb-30 {
margin-bottom: 30px;
}
.mt-30 {
margin-top: 30px;
}
.mt-50 {
margin-top: 50px;
}
.mb-50 {
margin-bottom: 50px;
}
.mt-60 {
margin-top: 60px;
}
.mt-70 {
margin-top: 70px;
}
.sec-mar {
margin: 120px 0;
}
@media (max-width: 991px) {
.sec-mar {
margin: 80px 0;
}
}
.bg--light {
background: #fafafa;
}
.eg-card {
border-radius: 5px;
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
}
.text--primary {
color: var(--text-primary) !important;
} #progress {
position: fixed;
bottom: 30px;
right: 30px;
height: 40px;
width: 40px;
display: none;
place-items: center;
border-radius: 50%;
cursor: pointer;
z-index: 9999;
}
#progress-value {
display: block;
height: calc(100% - 6px);
width: calc(100% - 6px);
background-color: #ffffff;
border-radius: 50%;
display: grid;
place-items: center;
font-size: 20px;
color: var(--primary-color1);
}
.clearfix::after {
clear: both;
content: "";
display: block;
} .section-title1 {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.section-title1 span {
display: block;
font-family: var(--font-work-sans);
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color1);
margin-bottom: 10px;
letter-spacing: 3px;
text-transform: uppercase;
}
.section-title1 h2 {
font-size: 4.2rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 15px;
margin-top: -7px;
display: inline-block;
font-family: var(--font-merriw);
line-height: 1.4;
}
@media (max-width: 576px) {
.section-title1 h2 {
font-size: 3.6rem;
}
}
.section-title1.sibling2 {
font-size: 4rem;
font-weight: 600;
color: var(--text-primary);
}
.section-title2 svg {
fill: var(--primary-color2);
margin: 0 auto;
margin-bottom: 15px;
opacity: 0.55;
}
.section-title2 span {
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color2);
font-family: var(--font-work-sans);
margin-bottom: 0px;
text-transform: uppercase;
letter-spacing: 3px;
}
.section-title2 h2 {
font-size: 4.2rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.4;
}
.section-title3 {
margin-bottom: 60px;
}
.section-title3 span {
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color2);
font-family: var(--font-work-sans);
margin-top: -6px;
display: block;
text-transform: uppercase;
margin-bottom: 5px;
}
.section-title3 h2 {
font-size: 4.2rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.section-title5 {
margin-bottom: 62px;
}
.section-title5 img {
margin: 0 auto 10px auto;
width: 15px;
}
.section-title5 > span {
font-size: 1.8rem;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
letter-spacing: 2px;
display: block;
margin-bottom: 0px;
text-transform: uppercase;
}
.section-title5 h2 {
font-size: 4.2rem;
font-weight: 800;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.35;
margin-bottom: 10px;
}
.section-title5 h2 span {
font-size: 4.2rem;
font-weight: 500;
color: var(--primary-color3);
font-family: var(--font-merriw);
}
.section-title5 p, .section-title5 .info-single .info-text a, .info-single .info-text .section-title5 a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
} .eg-btn {
text-align: center;
display: inline-block;
text-decoration: none;
transition: all 0.45s ease-in-out;
text-transform: capitalize;
font-family: var(--font-exo);
cursor: pointer;
overflow: hidden;
}
.eg-btn i {
font-weight: 200;
vertical-align: middle;
margin-right: 5px;
}
.btn--primary {
background: var(--primary-color1);
color: var(--white);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 1px solid var(--primary-color1);
}
.btn--primary::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--white);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.btn--primary:hover {
color: var(--primary-color1);
}
.btn--primary:hover::after {
transform: scale(1);
opacity: 1;
}
.btn--primary2 {
background: var(--primary-color2);
color: var(--text-primary);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 2px solid var(--primary-color2);
}
.btn--primary2::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--white);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.btn--primary2:hover {
color: var(--text-primary);
}
.btn--primary2:hover::after {
transform: scale(1);
opacity: 1;
}
.btn--white {
background: var(--white);
color: var(--text-primary);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
}
.btn--white::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--primary-color2);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.btn--white:hover {
color: var(--text-primary);
}
.btn--white:hover::after {
transform: scale(1);
opacity: 1;
}
.btn--white.sibling-2::after {
content: "";
background: var(--primary-color1);
}
.btn--primary3 {
background: var(--primary-color3);
color: var(--white);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 2px solid var(--primary-color3);
}
.btn--primary3::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--white);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.btn--primary3:hover {
color: var(--text-primary);
}
.btn--primary3:hover::after {
transform: scale(1);
opacity: 1;
}
.btn--primary-outline {
background: var(--white);
color: var(--primary-color1);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 1px solid var(--primary-color1);
}
.btn--primary-outline::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--primary-color1);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.btn--primary-outline:hover {
color: var(--white);
}
.btn--primary-outline:hover::after {
transform: scale(1);
opacity: 1;
}
.btn--primary3-outline {
background: var(--white);
color: var(--text-secondary);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 2px solid var(--text-secondary);
transition: 0.5s ease;
}
.btn--primary3-outline::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--primary-color3);
width: 100%;
height: 100%;
transition: 0.5s ease;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.btn--primary3-outline:hover {
color: var(--white);
border: 2px solid transparent;
}
.btn--primary3-outline:hover::after {
transform: scale(1);
opacity: 1;
}
.btn--primary3-outline.sibling-2 {
color: var(--text-primary);
}
.btn--primary3-outline.sibling-2::after {
background: var(--primary-color2);
}
.btn-primary2-outline {
background: transparent;
color: var(--white);
border-radius: 0px;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 1px solid var(--white);
}
.btn-primary2-outline::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--primary-color2);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.btn-primary2-outline:hover {
border: 1px solid var(--primary-color2);
color: var(--text-primary);
}
.btn-primary2-outline:hover::after {
transform: scale(1);
opacity: 1;
}
.btn-primary2-outline.sibling-2 {
color: var(--text-primary);
border: 1px solid var(--text-primary);
}
.btn-primary2-outline.sibling-2:hover {
border: 1px solid transparent;
color: var(--text-primary);
}
.btn-primary2-outline.sibling-2:hover::after {
transform: scale(1);
opacity: 1;
}
.capsule {
border-radius: 30px;
}
.btn--lg {
font-size: 18px;
font-weight: 500;
text-transform: capitalize;
padding: 12px 35px;
}
@media (max-width: 767px) {
.btn--lg {
padding: 12px 25px;
}
}
.btn--lg2 {
font-size: 16px;
font-weight: 500;
text-transform: capitalize;
padding: 10px 20px;
}
@media (max-width: 767px) {
.btn--lg2 {
padding: 12px 25px;
}
}
.btn--md {
padding: 10px 35px;
font-size: 16px;
font-weight: 600;
}
@media (max-width: 767px) {
.btn--md {
padding: 10px 40px;
}
}
.btn--sm {
font-size: 14px;
font-weight: 600;
padding: 6px 18px;
}
.eg-badge {
font-size: 14px;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
border-radius: 30px;
padding: 4px 12px;
}
.eg-badge.badge-red {
background: #df2258;
}
.eg-badge.badge-yellow {
background: #f29727;
}
.eg-badge.badge-black {
background: #09100d;
}
.eg-badge.badge-blue {
background: #2f80ed;
} .pagination-wrap .page-item.active .page-link {
color: var(--primary-color1) !important;
background-color: var(--white) !important;
border-color: var(--primary-color1);
z-index: 3;
}
.pagination-wrap .pagination {
margin: 0;
margin-top: 50px;
}
.pagination-wrap .page-item:first-child .page-link {
border-radius: 2px;
}
.pagination-wrap .page-item:last-child .page-link {
border-radius: 2px;
}
.pagination-wrap .page-link {
position: relative;
display: block;
color: var(--text-primary) !important;
font-size: 16px;
font-weight: 600;
text-decoration: none;
border: unset !important;
border-radius: 8px 8px 2px 8px;
transition: 0.42s ease;
padding: 0px 10px !important;
}
.pagination-wrap .page-link:focus {
box-shadow: unset;
color: var(--primary-color1);
}
.pagination-wrap .page-link:hover {
color: var(--primary-color1);
}
.pagination-wrap .page-item.active .page-link {
z-index: 3;
color: var(--primary-color1);
} .egns-preloader {
min-width: 100%;
min-height: 100%;
position: fixed !important;
z-index: 999999;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #fff;
}
.egns-preloader::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100vh;
background: #fff;
z-index: -1;
}
.egns-preloader img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.circle-border {
width: 100%;
max-width: 140px;
height: 100%;
max-height: 140px;
border: 0 solid var(--primary-color1);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: auto;
border-radius: 50%;
box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}
.circle-border svg {
fill: var(--primary-color1);
}
.circle-border svg path {
stroke: var(--primary-color1);
}
.circle-border .moving-circle {
width: 10px;
height: 10px;
background: var(--primary-color1);
border-radius: 50%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
margin: auto;
animation: circle 2s linear infinite;
}
.circle-border .moving-circle:nth-child(2) {
width: 10px;
height: 10px;
background: var(--primary-color1);
border-radius: 50%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
margin: auto;
animation: circle 2.25s linear infinite;
}
.circle-border .moving-circle:nth-child(3) {
width: 10px;
height: 10px;
background: var(--primary-color1);
border-radius: 50%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
margin: auto;
animation: circle 2.5s linear infinite;
}
@keyframes circle {
0% {
transform: rotate(0deg) translate(-70px) rotate(0deg);
}
100% {
transform: rotate(360deg) translate(-70px) rotate(-360deg);
}
}
#outline {
stroke-dasharray: 2.42777px, 242.77666px;
stroke-dashoffset: 0;
animation: anim 1.6s linear infinite;
}
@keyframes anim {
12.5% {
stroke-dasharray: 33.98873px, 242.77666px;
stroke-dashoffset: -26.70543px;
}
43.75% {
stroke-dasharray: 84.97183px, 242.77666px;
stroke-dashoffset: -84.97183px;
}
100% {
stroke-dasharray: 2.42777px, 242.77666px;
stroke-dashoffset: -240.34889px;
}
}
.egns-preloader.close {
display: none;
transition: ease-in-out 0.5s linear;
}
.close-btn {
position: absolute;
right: 20px;
top: 30px;
font-size: 16px;
font-size: 16px;
text-transform: uppercase;
font-weight: 400;
cursor: pointer;
transition: ease-in-out 0.5s linear;
}
.close-btn i {
height: 30px;
width: 30px;
text-align: center;
line-height: 28px;
display: inline-block;
background-color: var(--theme-color-rgba);
border-radius: 50%;
} .pagination-wrap .page-item.active .page-link {
color: var(--white);
background-color: var(--primary-color1);
border-color: var(--primary-color1);
z-index: 3;
}
.pagination-wrap .pagination {
margin: 0;
margin-top: 50px;
}
.pagination-wrap .page-link {
position: relative;
display: block;
font-size: 16px;
font-weight: 600;
text-decoration: none;
background-color: var(--white);
border-radius: 5px;
transition: 0.42s ease;
border: 1px solid rgba(41, 43, 49, 0.3);
border-radius: 5px;
color: rgba(41, 43, 49, 0.3);
padding: 7px 10px;
}
.pagination-wrap .page-link i {
color: var(--text-primary);
font-size: 17px;
font-weight: 600;
transition: 0.42s ease;
vertical-align: middle;
}
.pagination-wrap .page-link:focus {
box-shadow: unset;
color: var(--primary-color1);
border-color: var(--primary-color1);
}
.pagination-wrap .page-link:hover {
color: var(--primary-color1) !important;
}
.pagination-wrap .page-link:hover i {
color: var(--primary-color1);
}
.pagination-wrap .page-item.active .page-link {
z-index: 3;
color: var(--primary-color1);
} .mobile-search {
background: rgba(0, 0, 0, 0.85);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.09);
width: 100%;
height: 100%;
border-radius: 4px;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
align-items: center;
position: fixed;
cursor: popoppins;
transform: scale(0);
top: 0;
left: 0;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: 0.65s ease;
padding: 35px 100px;
}
@media (max-width: 767px) {
.mobile-search {
padding: 20px 20px;
}
}
.mobile-search label {
color: #fff;
margin-bottom: 20px;
}
.mobile-search.slide {
transform: scale(1);
opacity: 1;
visibility: visible;
}
.mobile-search input, .mobile-search .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .mobile-search textarea {
border: none;
border-radius: unset;
padding-left: 0px;
padding-bottom: 5px;
width: 100%;
background: transparent;
transition: 0.3s ease-in-out;
color: #fff;
margin-bottom: 20px;
}
.mobile-search input:focus, .mobile-search .asking-form-wrap .style-1 .form-inner textarea:focus, .asking-form-wrap .style-1 .form-inner .mobile-search textarea:focus {
border-bottom: 1px solid #fff;
}
.mobile-search .search-cross-btn {
color: #fff;
cursor: popoppins;
background: rgba(var(--primary-color1), 0.6);
border-radius: 50%;
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
line-height: 43px;
transition: 0.5s ease;
}
.mobile-search .search-cross-btn:hover {
background: var(--primary-color1);
color: #fff;
}
.mobile-search .search-cross-btn i {
font-size: 25px;
cursor: pointer;
} .mobile-menu-form {
margin-top: 50px;
}
.mobile-menu-form input, .mobile-menu-form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .mobile-menu-form textarea {
width: 100%;
padding: 10px 15px;
background-color: var(--white);
margin-bottom: 15px;
outline: none;
border-radius: 5px;
}
.mobile-menu-form input::-moz-placeholder, .mobile-menu-form .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .mobile-menu-form textarea::-moz-placeholder {
font-size: 12px;
}
.mobile-menu-form input::placeholder, .mobile-menu-form .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .form-inner .mobile-menu-form textarea::placeholder {
font-size: 12px;
}
.mobile-menu-form input.style-capsule, .mobile-menu-form .asking-form-wrap .style-1 .form-inner textarea.style-capsule, .asking-form-wrap .style-1 .form-inner .mobile-menu-form textarea.style-capsule {
border-radius: 30px;
}
.mobile-menu-form button {
outline: none;
border: none;
padding: 10px;
}
.mobile-menu-form.style-2 input, .mobile-menu-form.style-2 .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .mobile-menu-form.style-2 textarea {
border-radius: 30px;
}
.phone-call2 .number {
text-align: left;
}
.phone-call2 .number span {
display: inline-block;
color: var(--text-color2);
font-family: var(--font-exo);
font-size: 12px;
font-weight: 500;
}
.phone-call2 .number h5 {
margin-bottom: 0px;
margin-top: -7px;
white-space: nowrap;
}
.phone-call2 .number h5 a {
color: var(--text-color1);
font-size: 15px;
font-weight: 700;
margin-bottom: 0px;
} .topbar {
background: #202338;
width: 100%;
padding: 15px 0px;
position: relative;
z-index: 999;
}
.topbar .topbar-left .topbar-info-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
gap: 30px;
}
.topbar .topbar-left .topbar-info-list li {
font-size: 14px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
}
.topbar .topbar-left .topbar-info-list li i {
color: var(--primary-color1);
margin-right: 5px;
}
.topbar .topbar-right {
display: flex;
align-items: center;
gap: 15px;
}
.topbar .topbar-right .topbar-menu {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 15px;
padding: 0;
margin: 0;
}
.topbar .topbar-right-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: flex-end;
align-items: center;
gap: 30px;
}
.topbar .topbar-right-list li {
position: relative;
z-index: 1;
cursor: pointer;
display: flex;
justify-content: space-between;
transition: all 0.35s ease;
font-size: 14px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
}
.topbar .topbar-right-list li span,
.topbar .topbar-right-list li a {
font-size: 14px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
transition: all 0.35s ease;
}
.topbar .topbar-right-list li:hover {
color: var(--primary-color1);
}
.topbar .topbar-right-list li:hover span,
.topbar .topbar-right-list li:hover a {
color: inherit;
}
.topbar .topbar-right-list li:hover .topbar-sublist {
opacity: 1;
transform: translateY(0px);
visibility: visible;
}
.topbar .topbar-right-list li > img {
margin-left: 15px;
width: 20px;
height: 20px;
margin-top: 2px;
}
.topbar .topbar-right-list li .topbar-sublist {
position: absolute;
top: 35px;
left: -10px;
list-style: none;
margin: 0;
padding: 0;
background: #202338;
min-width: 130px;
height: auto;
z-index: 9;
border: 1px solid rgba(255, 255, 255, 0.1);
opacity: 0;
transform: translateY(5px);
transition: all 0.6s ease;
visibility: hidden;
}
.topbar .topbar-right-list li .topbar-sublist li {
padding: 8px 12px;
}
.topbar .topbar-right-list li .topbar-sublist li img {
margin-left: 15px;
width: 20px;
}
.topbar .topbar-right-social_list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
align-items: center;
gap: 15px;
padding-left: 15px;
border-left: 1px solid rgba(255, 255, 255, 0.3);
line-height: 1;
}
.topbar .topbar-right-social_list li {
display: inline-block;
}
.topbar .topbar-right-social_list li a {
font-size: 10px;
color: #fff;
display: inline-block;
height: 25px;
width: 25px;
line-height: 25px;
text-align: center;
border: 1px solid #fff;
border-radius: 50%;
transition: 0.5s;
}
.topbar .topbar-right-social_list li a:hover {
color: #fff;
border: 1px solid var(--primary-color1);
background-color: var(--primary-color1);
} header.style-1 {
background-color: transparent;
width: 100%;
z-index: 8;
padding: 0px 6%;
display: flex;
justify-content: space-between;
align-items: center;
position: absolute;
top: 15px;
left: 0;
right: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-1 {
padding: 0px 5%;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
header.style-1 {
padding: 0px 4%;
}
}
@media (min-width: 768px) and (max-width: 991px) {
header.style-1 {
padding: 0px 4%;
top: 0;
}
}
@media (max-width: 767px) {
header.style-1 {
top: 0;
padding: 0px 4%;
}
}
header.style-1.sticky {
position: fixed;
top: 0px;
left: 0;
z-index: 999;
background: var(--text-primary);
box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
0% {
transform: translateY(-30px);
}
100% {
transform: translateY(0px);
}
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-1 .header-logo {
padding: 21px 0px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
header.style-1 .header-logo {
padding: 21px 0px;
}
}
@media (max-width: 991px) {
header.style-1 .header-logo {
padding: 21px 0px;
}
}
header.style-1 .header-logo img {
min-width: 120px;
max-width: 100%;
}
@media (max-width: 767px) {
header.style-1 .header-logo img {
min-width: 90px;
}
}
header.style-1 .main-nav {
display: inline-block;
}
header.style-1 .main-nav .mobile-menu-logo {
display: none;
}
header.style-1 .main-nav ul {
list-style: none;
margin: 0;
padding: 0;
}
header.style-1 .main-nav ul > li {
display: inline-block;
position: relative;
padding: 0 20px;
}
header.style-1 .main-nav ul > li a {
font-size: 16px;
color: #fff;
font-weight: 500;
display: block;
text-transform: capitalize;
padding: 30px 0;
position: relative;
font-family: var(--font-work-sans);
transition: all 0.5s ease-out 0s;
}
header.style-1 .main-nav ul > li a:hover {
color: var(--primary-color1);
}
header.style-1 .main-nav ul > li a.active {
color: var(--primary-color1);
}
header.style-1 .main-nav ul > li i {
width: 30px;
font-size: 14px;
text-align: center;
color: #fff;
font-style: normal;
position: absolute;
right: -8px;
top: 33px;
z-index: 999;
cursor: pointer;
display: none;
}
header.style-1 .main-nav ul > li ul.sub-menu {
position: absolute;
left: 0;
right: 0;
top: auto;
margin: 0;
padding: 0;
opacity: 0;
visibility: hidden;
min-width: 215px;
background: #0b0f14;
text-align: left;
transition: all 0.5s ease-out 0s;
transform: translateY(20px);
}
header.style-1 .main-nav ul > li ul.sub-menu > li {
padding: 0 10px;
padding: 0;
display: block;
position: relative;
}
header.style-1 .main-nav ul > li ul.sub-menu > li i {
position: absolute;
top: 10px;
right: 6px;
display: block;
}
header.style-1 .main-nav ul > li ul.sub-menu > li a {
display: block;
padding: 15px 15px;
color: #fff;
font-weight: 300;
text-transform: capitalize;
font-size: 16px;
line-height: 1;
transition: all 0.4s ease-out 0s;
}
header.style-1 .main-nav ul > li ul.sub-menu > li a:hover {
color: var(--primary-color1);
margin-left: 10px;
}
header.style-1 .main-nav ul > li ul.sub-menu > li a.active {
color: var(--primary-color1);
}
header.style-1 .main-nav ul > li ul.sub-menu > li .sub-menu {
left: 215px;
position: absolute;
max-width: 230px;
min-width: 215px;
background: #0b0f14;
top: 0;
}
@media only screen and (max-width: 1199px) {
header.style-1 .main-nav ul > li ul.sub-menu > li .sub-menu {
margin-left: 10px;
position: unset;
max-width: 230px;
min-width: 215px;
background: transparent;
top: 0;
}
}
header.style-1 .main-nav ul > li ul.sub-menu > li .sub-menu li i {
display: block;
}
header.style-1 .main-nav ul > li ul.sub-menu > li:last-child {
border-bottom: none;
}
header.style-1 .main-nav ul > li:hover > ul.sub-menu {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
header.style-1 .main-nav ul li.menu-item-has-children > i {
display: block;
}
@media only screen and (max-width: 1199px) {
header.style-1 .main-nav {
position: fixed;
top: 0;
left: 0;
width: 280px;
padding: 30px 20px !important;
z-index: 99999;
height: 100%;
overflow: auto;
background: var(--text-primary);
transform: translateX(-100%);
transition: transform 0.3s ease-in;
}
header.style-1 .main-nav.show-menu {
transform: translateX(0);
}
header.style-1 .main-nav .mobile-menu-logo {
text-align: left;
padding-top: 20px;
display: block;
padding-bottom: 8px;
}
header.style-1 .main-nav ul {
float: none;
text-align: left;
padding: 35px 10px 10px 0;
}
header.style-1 .main-nav ul li {
display: block;
position: relative;
padding: 0 5px;
}
header.style-1 .main-nav ul li i {
display: block;
}
header.style-1 .main-nav ul li a {
padding: 10px 0;
display: block;
font-weight: 300;
}
header.style-1 .main-nav ul li ul.sub-menu {
position: static;
min-width: 200px;
background: 0 0;
border: none;
opacity: 1;
visibility: visible;
box-shadow: none;
transform: none;
transition: none;
display: none;
margin-top: 0 !important;
transform: translateY(0px);
}
header.style-1 .main-nav ul li .bi {
top: 12px;
font-size: 16px;
}
header.style-1 .mobile-menu {
position: relative;
top: 2px;
padding: 0 5px;
border-radius: 50%;
display: inline-block;
}
header.style-1 .cross-btn {
display: inline-block !important;
position: relative;
width: 30px !important;
height: 22px !important;
cursor: pointer;
border: 3px solid transparent !important;
}
header.style-1 .cross-btn span {
width: 100%;
height: 2px;
background: var(--primary-color1);
display: block;
position: absolute;
right: 0;
transition: all 0.3s;
}
header.style-1 .cross-btn .cross-top {
top: 0;
}
header.style-1 .cross-btn .cross-middle {
top: 50%;
transform: translateY(-50%);
width: 100%;
}
header.style-1 .cross-btn .cross-bottom {
bottom: 0;
width: 100%;
}
header.style-1 .cross-btn.h-active span.cross-top {
transform: rotate(45deg);
top: 50%;
margin-top: -1px;
}
header.style-1 .cross-btn.h-active span.cross-middle {
transform: translateX(-30px);
opacity: 0;
}
header.style-1 .cross-btn.h-active span.cross-bottom {
transform: rotate(-45deg);
bottom: 50%;
margin-bottom: -1px;
}
}
.phone-call .icon {
margin-right: 10px;
}
.phone-call .icon svg {
fill: var(--white);
}
.phone-call .number span {
font-size: 14px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
}
.phone-call .number h5 {
white-space: nowrap;
margin-bottom: 0px;
}
.phone-call .number h5 a {
font-size: 16px;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
}
.phone-call.sibling2 svg {
fill: var(--text-primary);
}
.phone-call.sibling2 .number {
margin-top: -5px;
}
.phone-call.sibling2 .number span {
font-size: 14px;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.phone-call.sibling2 .number h5 {
white-space: nowrap;
}
.phone-call.sibling2 .number h5 a {
font-size: 16px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.phone-call.sibling3 {
margin-right: 30px;
}
.phone-call.sibling3:hover svg {
fill: var(--primary-color3);
}
.phone-call.sibling3 svg {
fill: var(--text-primary);
transition: all 0.4s ease;
}
.phone-call.sibling3 .number span {
font-size: 14px;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.phone-call.sibling3 .number h5 {
white-space: nowrap;
}
.phone-call.sibling3 .number h5 a {
font-size: 16px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.phone-call.sibling4 {
margin-right: 20px;
}
.phone-call.sibling4:hover svg {
fill: var(--primary-color2);
}
.phone-call.sibling4 svg {
fill: var(--text-primary);
transition: all 0.4s ease;
}
.phone-call.sibling4 .number span {
font-size: 14px;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.phone-call.sibling4 .number h5 {
white-space: nowrap;
}
.phone-call.sibling4 .number h5 a {
font-size: 16px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.header-social-area {
position: relative;
padding-right: 20px;
padding-left: 9%;
}
.header-social-area::after {
content: "";
position: absolute;
right: 0px;
top: 50%;
transform: translateY(-50%);
height: 20px;
width: 1px;
background-color: var(--white);
}
@media (max-width: 1199px) {
.header-social-area::after {
content: unset;
}
}
.header-social-area ul.header-social {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
gap: 25px;
}
.header-social-area ul.header-social li a i {
font-size: 18px;
font-weight: 500;
color: Var(--white);
transition: all 0.35s ease;
}
.header-social-area ul.header-social li a i:hover {
color: var(--primary-color1);
}
.header-social-area.sibling-2 ul.header-social {
gap: 20px;
}
.header-social-area.sibling-2 ul.header-social li a i {
font-size: 18px;
font-weight: 500;
color: Var(--text-primary);
transition: all 0.35s ease;
}
.header-social-area.sibling-2 ul.header-social li a i:hover {
color: var(--primary-color2);
}
.sidebar-btn, .mobile-menu-btn {
cursor: pointer;
}
.sidebar-btn i, .mobile-menu-btn i {
font-size: 25px;
color: var(--white);
font-weight: 600;
}
header.style-2 {
background-color: var(--white);
width: 100%;
position: relative;
z-index: 99;
padding: 0px 5%;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 3px 3px 30px rgba(32, 35, 56, 0.06);
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-2 {
padding: 0px 2%;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
header.style-2 {
padding: 0px 2%;
}
}
@media (min-width: 768px) and (max-width: 991px) {
header.style-2 {
padding: 0px 4%;
top: 0;
}
}
@media (max-width: 767px) {
header.style-2 {
top: 0;
padding: 0px 4%;
}
}
header.style-2.sticky {
position: fixed;
top: 0px;
left: 0;
z-index: 999;
background: var(--white);
box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
0% {
transform: translateY(-30px);
}
100% {
transform: translateY(0px);
}
}
header.style-2 .header-logo {
padding: 20px 0px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-2 .header-logo {
padding: 20px 0px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
header.style-2 .header-logo {
padding: 15px 0px;
}
}
@media (max-width: 991px) {
header.style-2 .header-logo {
padding: 15px 0px;
}
}
header.style-2 .header-logo img {
min-width: 120px;
}
header.style-2 .main-nav {
display: inline-block;
}
header.style-2 .main-nav .mobile-menu-logo {
display: none;
}
header.style-2 .main-nav ul {
list-style: none;
margin: 0;
padding: 0;
}
header.style-2 .main-nav ul li {
display: inline-block;
position: relative;
padding: 0 20px;
}
header.style-2 .main-nav ul li a {
font-size: 18px;
color: var(--text-primary);
font-weight: 500;
display: block;
text-transform: capitalize;
padding: 30px 0;
position: relative;
font-family: var(--font-work-sans);
transition: all 0.5s ease-out 0s;
position: relative;
}
header.style-2 .main-nav ul li a:hover {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li a:hover:after {
opacity: 1;
width: 100%;
}
header.style-2 .main-nav ul li a::after {
content: "";
position: absolute;
bottom: 25px;
left: 0;
width: 0%;
height: 2px;
border-radius: 30px;
display: block;
background: linear-gradient(90deg, var(--primary-color1), transparent);
opacity: 0;
transition: all 0.5s ease-out 0s;
}
header.style-2 .main-nav ul li.current-menu-parent a {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li.current_page_item a {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li i {
width: 30px;
font-size: 14px;
text-align: center;
color: var(--text-primary);
font-style: normal;
position: absolute;
right: -8px;
top: 35px;
z-index: 999;
cursor: pointer;
display: none;
}
header.style-2 .main-nav ul li ul.sub-menu {
position: absolute;
left: 0;
right: 0;
top: auto;
margin: 0;
padding: 0;
opacity: 0;
visibility: hidden;
min-width: 215px;
background: #0b0f14;
text-align: left;
transition: all 0.55s ease-in-out;
transform: translateY(20px);
}
header.style-2 .main-nav ul li ul.sub-menu > li {
padding: 0;
display: block;
border-bottom: 1px solid rgba(56, 56, 56, 0.5);
position: relative;
}
header.style-2 .main-nav ul li ul.sub-menu > li i {
position: absolute;
top: 10px;
right: 6px;
display: none;
color: var(--white);
}
header.style-2 .main-nav ul li ul.sub-menu > li a {
position: relative;
font-size: 16px;
display: block;
padding: 15px;
color: #fff;
font-weight: 300;
line-height: 1;
text-transform: capitalize;
transition: all 0.4s ease-out 0s;
}
header.style-2 .main-nav ul li ul.sub-menu > li a::after {
content: "";
position: absolute;
bottom: 0px;
left: 0px;
width: 0px;
height: 1px;
border-radius: 30px;
display: block;
background: linear-gradient(90deg, var(--primary-color1), transparent);
transition: all 0.5s ease-in-out;
}
header.style-2 .main-nav ul li ul.sub-menu > li a:hover {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li ul.sub-menu > li a:hover:after {
width: 100%;
}
header.style-2 .main-nav ul li ul.sub-menu > li.current-menu-parent a {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li ul.sub-menu > li.current_page_item a {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu {
left: 215px;
position: absolute;
max-width: 230px;
min-width: 215px;
background: #0b0f14;
top: 0;
}
@media only screen and (max-width: 1199px) {
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu {
margin-left: 10px;
position: unset;
max-width: 230px;
min-width: 215px;
background: transparent;
top: 0;
}
}
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu li i {
display: none;
}
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu li.current-menu-parent a {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu li.current_page_item a {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu li.menu-item-has-children i {
display: block;
}
header.style-2 .main-nav ul li ul.sub-menu > li:last-child {
border-bottom: none;
}
header.style-2 .main-nav ul li ul.sub-menu > li.menu-item-has-children > i {
display: block;
}
header.style-2 .main-nav ul li:hover > ul.sub-menu {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
header.style-2 .main-nav ul li.menu-item-has-children > i {
display: block;
}
@media only screen and (max-width: 991px) {
header.style-2 .main-nav {
position: fixed;
top: 0;
left: 0;
width: 280px;
padding: 30px 20px !important;
z-index: 99999;
height: 100%;
overflow: auto;
background: var(--white);
transform: translateX(-100%);
transition: transform 0.3s ease-in;
box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
}
header.style-2 .main-nav.show-menu {
transform: translateX(0);
}
header.style-2 .main-nav .mobile-menu-logo {
text-align: left;
padding-top: 20px;
display: block;
padding-bottom: 8px;
}
header.style-2 .main-nav ul {
float: none;
text-align: left;
padding: 35px 10px 10px 0;
}
header.style-2 .main-nav ul li {
display: block;
position: relative;
padding: 0 5px;
}
header.style-2 .main-nav ul li.menu-item-has-children i {
display: block;
}
header.style-2 .main-nav ul li a {
padding: 10px 0;
display: block;
font-weight: 500;
font-size: 18px;
}
header.style-2 .main-nav ul li ul.sub-menu {
position: static;
min-width: 200px;
background: 0 0;
border: none;
opacity: 1;
visibility: visible;
box-shadow: none;
transform: none;
transition: none;
display: none;
margin-top: 0 !important;
transform: translateY(0px);
}
header.style-2 .main-nav ul li ul.sub-menu > li {
border-bottom: 1px solid transparent;
}
header.style-2 .main-nav ul li ul.sub-menu > li a {
color: var(--text-primary);
font-size: 17px;
font-weight: 500;
}
header.style-2 .main-nav ul li ul.sub-menu > li a:hover {
color: var(--primary-color1);
margin-left: 10px;
}
header.style-2 .main-nav ul li ul.sub-menu > li a.active {
color: var(--primary-color1);
}
header.style-2 .main-nav ul li ul.sub-menu > li i {
color: var(--text-primary);
right: -13px;
}
header.style-2 .main-nav ul li .bi {
top: 12px;
font-size: 16px;
}
header.style-2 .mobile-menu {
position: relative;
top: 2px;
padding: 0 5px;
border-radius: 50%;
display: inline-block;
}
header.style-2 .cross-btn {
display: inline-block !important;
position: relative;
width: 30px !important;
height: 22px !important;
cursor: pointer;
border: 3px solid transparent !important;
}
header.style-2 .cross-btn span {
width: 100%;
height: 2px;
background: var(--primary-color1);
display: block;
position: absolute;
right: 0;
transition: all 0.3s;
}
header.style-2 .cross-btn .cross-top {
top: 0;
}
header.style-2 .cross-btn .cross-middle {
top: 50%;
transform: translateY(-50%);
width: 100%;
}
header.style-2 .cross-btn .cross-bottom {
bottom: 0;
width: 100%;
}
header.style-2 .cross-btn.h-active span.cross-top {
transform: rotate(45deg);
top: 50%;
margin-top: -1px;
}
header.style-2 .cross-btn.h-active span.cross-middle {
transform: translateX(-30px);
opacity: 0;
}
header.style-2 .cross-btn.h-active span.cross-bottom {
transform: rotate(-45deg);
bottom: 50%;
margin-bottom: -1px;
}
}
header.style-4 {
background-color: var(--white);
width: 100%;
position: relative;
z-index: 99;
padding: 0px 5%;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 3px 3px 30px rgba(32, 35, 56, 0.06);
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-4 {
padding: 0px 2%;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
header.style-4 {
padding: 0px 2%;
}
}
@media (min-width: 768px) and (max-width: 991px) {
header.style-4 {
padding: 0px 4%;
top: 0;
}
}
@media (max-width: 767px) {
header.style-4 {
top: 0;
padding: 0px 4%;
}
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-4 .phone-call.sibling2 {
display: none !important;
}
}
header.style-4.sticky {
position: fixed;
top: 0px;
left: 0;
z-index: 999;
background: var(--white);
box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
0% {
transform: translateY(-30px);
}
100% {
transform: translateY(0px);
}
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-4 .header-logo {
padding: 21px 0px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
header.style-4 .header-logo {
padding: 15px 0px;
}
}
@media (max-width: 991px) {
header.style-4 .header-logo {
padding: 15px 0px;
}
}
header.style-4 .header-logo img {
min-width: 120px;
max-width: 100%;
}
header.style-4 .main-nav {
display: inline-block;
}
header.style-4 .main-nav .mobile-menu-logo {
display: none;
}
header.style-4 .main-nav ul {
list-style: none;
margin: 0;
padding: 0;
}
header.style-4 .main-nav ul li {
display: inline-block;
position: relative;
padding: 0 20px;
}
header.style-4 .main-nav ul li a {
font-size: 18px;
color: var(--text-primary);
font-weight: 500;
display: block;
text-transform: capitalize;
padding: 30px 0;
position: relative;
font-family: var(--font-work-sans);
transition: all 0.5s ease-out 0s;
position: relative;
}
header.style-4 .main-nav ul li a:hover {
color: var(--primary-color2);
}
header.style-4 .main-nav ul li a:hover:after {
opacity: 1;
width: 100%;
}
header.style-4 .main-nav ul li a::after {
content: "";
position: absolute;
bottom: 25px;
left: 0;
width: 0%;
height: 2px;
border-radius: 30px;
display: block;
background: linear-gradient(90deg, var(--primary-color2), transparent);
opacity: 0;
transition: all 0.5s ease-out 0s;
}
header.style-4 .main-nav ul li.current_page_item a {
color: var(--primary-color2);
}
header.style-4 .main-nav ul li.current-menu-parent a {
color: var(--primary-color2);
}
header.style-4 .main-nav ul li i {
width: 30px;
font-size: 14px;
text-align: center;
color: var(--text-primary);
font-style: normal;
position: absolute;
right: -8px;
top: 35px;
z-index: 999;
cursor: pointer;
display: none;
}
header.style-4 .main-nav ul li ul.sub-menu {
position: absolute;
left: 0;
right: 0;
top: auto;
margin: 0;
padding: 0;
opacity: 0;
visibility: hidden;
min-width: 215px;
background: #0b0f14;
text-align: left;
transition: all 0.55s ease-in-out;
transform: translateY(20px);
}
header.style-4 .main-nav ul li ul.sub-menu > li {
padding: 0;
display: block;
border-bottom: 1px solid rgba(56, 56, 56, 0.5);
position: relative;
}
header.style-4 .main-nav ul li ul.sub-menu > li i {
position: absolute;
top: 10px;
right: 6px;
display: none;
color: var(--white);
}
header.style-4 .main-nav ul li ul.sub-menu > li.menu-item-has-children i {
display: block;
}
header.style-4 .main-nav ul li ul.sub-menu > li a {
display: block;
padding: 15px 15px;
color: #fff;
font-weight: 300;
text-transform: capitalize;
font-size: 16px;
line-height: 1;
transition: all 0.4s ease-out 0s;
position: relative;
}
header.style-4 .main-nav ul li ul.sub-menu > li a::after {
content: "";
position: absolute;
bottom: 0px;
left: 0px;
width: 0px;
height: 1px;
border-radius: 30px;
display: block;
background: linear-gradient(90deg, var(--primary-color2), var(--primary-color2));
transition: all 0.5s ease-in-out;
}
header.style-4 .main-nav ul li ul.sub-menu > li a:hover {
color: var(--primary-color2);
}
header.style-4 .main-nav ul li ul.sub-menu > li a:hover:after {
width: 100%;
}
header.style-4 .main-nav ul li ul.sub-menu > li.current_page_item a {
color: var(--primary-color2);
}
header.style-4 .main-nav ul li ul.sub-menu > li.current-menu-parent a {
color: var(--primary-color2);
}
header.style-4 .main-nav ul li ul.sub-menu > li .sub-menu {
left: 215px;
position: absolute;
max-width: 230px;
min-width: 215px;
background: #0b0f14;
top: 0;
}
@media only screen and (max-width: 1199px) {
header.style-4 .main-nav ul li ul.sub-menu > li .sub-menu {
margin-left: 10px;
position: unset;
max-width: 230px;
min-width: 215px;
background: transparent;
top: 0;
}
}
header.style-4 .main-nav ul li ul.sub-menu > li .sub-menu li i {
display: none;
}
header.style-4 .main-nav ul li ul.sub-menu > li .sub-menu li.menu-item-has-children i {
display: block;
}
header.style-4 .main-nav ul li ul.sub-menu > li:last-child {
border-bottom: none;
}
header.style-4 .main-nav ul li:hover > ul.sub-menu {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
header.style-4 .main-nav ul li.menu-item-has-children > i {
display: block;
}
@media only screen and (max-width: 991px) {
header.style-4 .main-nav {
position: fixed;
top: 0;
left: 0;
width: 280px;
padding: 30px 20px !important;
z-index: 99999;
height: 100%;
overflow: auto;
background: var(--white);
transform: translateX(-100%);
transition: transform 0.3s ease-in;
box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
}
header.style-4 .main-nav.show-menu {
transform: translateX(0);
}
header.style-4 .main-nav .mobile-menu-logo {
text-align: left;
padding-top: 20px;
display: block;
padding-bottom: 8px;
}
header.style-4 .main-nav ul {
float: none;
text-align: left;
padding: 35px 10px 10px 0;
}
header.style-4 .main-nav ul li {
display: block;
position: relative;
padding: 0 5px;
}
header.style-4 .main-nav ul li i {
display: block;
}
header.style-4 .main-nav ul li a {
padding: 10px 0;
display: block;
font-weight: 500;
font-size: 18px;
}
header.style-4 .main-nav ul li ul.sub-menu {
position: static;
min-width: 200px;
background: 0 0;
border: none;
opacity: 1;
visibility: visible;
box-shadow: none;
transform: none;
transition: none;
display: none;
margin-top: 0 !important;
transform: translateY(0px);
}
header.style-4 .main-nav ul li ul.sub-menu > li {
border-bottom: 1px solid transparent;
}
header.style-4 .main-nav ul li ul.sub-menu > li a {
color: var(--text-primary);
font-size: 17px;
font-weight: 500;
}
header.style-4 .main-nav ul li ul.sub-menu > li a:hover {
color: var(--primary-color2);
margin-left: 10px;
}
header.style-4 .main-nav ul li ul.sub-menu > li a.active {
color: var(--primary-color2);
}
header.style-4 .main-nav ul li ul.sub-menu > li i {
color: var(--text-primary);
right: -20px;
}
header.style-4 .main-nav ul li .bi {
top: 12px;
font-size: 16px;
}
header.style-4 .mobile-menu {
position: relative;
top: 2px;
padding: 0 5px;
border-radius: 50%;
display: inline-block;
}
header.style-4 .cross-btn {
display: inline-block !important;
position: relative;
width: 30px !important;
height: 22px !important;
cursor: pointer;
border: 3px solid transparent !important;
}
header.style-4 .cross-btn span {
width: 100%;
height: 2px;
background: var(--primary-color2);
display: block;
position: absolute;
right: 0;
transition: all 0.3s;
}
header.style-4 .cross-btn .cross-top {
top: 0;
}
header.style-4 .cross-btn .cross-middle {
top: 50%;
transform: translateY(-50%);
width: 100%;
}
header.style-4 .cross-btn .cross-bottom {
bottom: 0;
width: 100%;
}
header.style-4 .cross-btn.h-active span.cross-top {
transform: rotate(45deg);
top: 50%;
margin-top: -1px;
}
header.style-4 .cross-btn.h-active span.cross-middle {
transform: translateX(-30px);
opacity: 0;
}
header.style-4 .cross-btn.h-active span.cross-bottom {
transform: rotate(-45deg);
bottom: 50%;
margin-bottom: -1px;
}
}
header.style-3 {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5%;
}
.page-wrapper {
width: 100%;
}
.page-wrapper .main-content-area {
width: calc(100% - 230px);
margin-left: auto;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.page-wrapper .main-content-area {
width: calc(100% - 220px);
}
}
@media (max-width: 1199px) {
.page-wrapper .main-content-area {
width: 100%;
}
}
.main-nav-wrapper {
transition: all 0.3s ease-in;
}
.main-nav-wrapper .mobile-logo-area {
padding: 0px 25px;
}
.main-nav-wrapper .main-box {
position: fixed;
top: 0;
left: 0;
width: 230px;
padding: 20px 0px !important;
height: 100%;
overflow: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
background: var(--white);
transform: translateX(0);
transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-webkit-transition: -webkit-transform 0.3s ease-in;
box-shadow: 4px 3px 20px rgba(16, 33, 34, 0.06);
z-index: 999;   }
.main-nav-wrapper .main-box::-webkit-scrollbar {
width: 5px;
}
.main-nav-wrapper .main-box::-webkit-scrollbar-track {
background: #f1f1f1;
}
.main-nav-wrapper .main-box::-webkit-scrollbar-thumb {
background: #999;
}
.main-nav-wrapper .main-box::-webkit-scrollbar-thumb:hover {
background: var(--border-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
.main-nav-wrapper .main-box {
width: 220px;
}
}
@media (max-width: 1199px) {
.main-nav-wrapper .main-box {
transform: translateX(-100%);
width: 260px;
}
}
.main-nav-wrapper .main-box .menu-close-btn {
position: absolute;
right: 30px;
top: 30px;
opacity: 0;
}
@media (max-width: 1199px) {
.main-nav-wrapper .main-box .menu-close-btn {
opacity: 1;
}
}
.main-nav-wrapper .main-box .main-nav > ul {
float: none;
text-align: left;
padding: 50px 0px 50px 0px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.main-nav-wrapper .main-box .main-nav > ul {
padding: 45px 0px 45px 0px;
}
}
@media (max-width: 767px) {
.main-nav-wrapper .main-box .main-nav > ul {
padding: 40px 0px 40px 0px;
}
}
.main-nav-wrapper .main-box .main-nav > ul li {
display: block;
position: relative;
padding: 8px 5px;
border-bottom: 1px solid rgb(243, 243, 255);
transition: all 0.55s ease;
}
.main-nav-wrapper .main-box .main-nav > ul li:last-child {
border-bottom: 1px solid transparent;
}
.main-nav-wrapper .main-box .main-nav > ul li > i {
position: absolute;
right: 25px;
top: 23px !important;
font-weight: 700;
cursor: pointer;
display: none;
}
.main-nav-wrapper .main-box .main-nav > ul li.menu-item-has-children i {
display: block;
}
.main-nav-wrapper .main-box .main-nav > ul li a {
padding: 10px 20px;
display: inline-block;
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-jost);
transition: all 0.4s ease;
}
.main-nav-wrapper .main-box .main-nav > ul li a:hover {
color: #ac9004;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.main-nav-wrapper .main-box .main-nav > ul li a {
padding: 10px 10px;
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
}
}
.main-nav-wrapper .main-box .main-nav > ul li a img {
margin-right: 8px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.main-nav-wrapper .main-box .main-nav > ul li a img {
margin-right: 5px;
}
}
.main-nav-wrapper .main-box .main-nav > ul li ul.sub-menu {
position: static;
min-width: 180px;
background: 0 0;
border: none;
opacity: 1;
visibility: visible;
box-shadow: none;
transform: none;
transition: none;
display: none;
margin-top: 0 !important;
transform: translateY(0px);
list-style: none;
padding-left: 10px;
}
.main-nav-wrapper .main-box .main-nav > ul li ul.sub-menu li i {
top: 12px;
font-size: 16px;
display: none;
}
.main-nav-wrapper .main-box .main-nav > ul li ul.sub-menu li.menu-item-has-children i {
display: block;
}
.main-nav-wrapper .main-box .main-nav > ul li ul.sub-menu li a {
font-size: 16px;
padding: 5px 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.main-nav-wrapper .main-box .main-nav > ul li ul.sub-menu li a {
font-size: 16px;
}
}
.main-nav-wrapper .main-box.show-menu {
transform: translateX(0%);
opacity: 1;
}
.main-nav-wrapper .uesr-aera {
width: 70px;
height: 70px;
line-height: 72px;
text-align: center;
border-radius: 50%;
background: var(--primary-color2);
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.main-nav-wrapper .uesr-aera i {
font-size: 35px;
color: var(--text-primary);
line-height: 70px;
}
.main-nav-wrapper .mobile-menu {
position: relative;
top: 2px;
padding: 0 5px;
border-radius: 50%;
display: inline-block;
}
header.style-5 {
background-color: var(--white);
width: 100%;
position: relative;
z-index: 99;
padding: 0px 50px 0 130px;
display: flex;
justify-content: space-between;
align-items: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
header.style-5 {
padding: 0px 50px 0 130px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
header.style-5 {
padding: 0px 50px 0 130px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
header.style-5 {
padding: 0px 4%;
top: 0;
}
}
@media (max-width: 767px) {
header.style-5 {
top: 0;
padding: 0px 4%;
}
}
header.style-5.sticky {
position: fixed;
top: 0px;
left: 0;
z-index: 999;
background: var(--white);
box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
0% {
transform: translateY(-30px);
}
100% {
transform: translateY(0px);
}
}
header.style-5 .header-logo {
background-color: var(--white);
width: 100%;
max-width: 145px;
position: relative;
text-align: center;
}
header.style-5 .header-logo::after {
content: "";
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 105px;
border-radius: 0px 0px 50% 50%;
background: var(--white);
z-index: -1;
}
@media (max-width: 991px) {
header.style-5 .header-logo::after {
height: 95px;
}
}
header.style-5 .header-logo svg {
width: 100%;
max-width: 55px;
}
header.style-5 .main-nav {
display: inline-block;
}
header.style-5 .main-nav .mobile-menu-logo {
display: none;
}
header.style-5 .main-nav ul {
list-style: none;
margin: 0;
padding: 0;
}
header.style-5 .main-nav ul li {
display: inline-block;
position: relative;
padding: 0 20px;
}
header.style-5 .main-nav ul li a {
font-size: 17px;
color: var(--text-primary);
font-weight: 500;
display: block;
padding: 30px 0;
position: relative;
font-family: var(--font-work-sans);
transition: all 0.5s ease-out 0s;
}
header.style-5 .main-nav ul li a:hover {
color: var(--primary-color3);
}
header.style-5 .main-nav ul li a.active {
color: var(--primary-color3);
}
header.style-5 .main-nav ul li i {
width: 30px;
font-size: 14px;
text-align: center;
color: var(--text-primary);
font-style: normal;
position: absolute;
right: -8px;
top: 35px;
z-index: 999;
cursor: pointer;
display: none;
}
header.style-5 .main-nav ul li ul.sub-menu {
position: absolute;
left: 0;
right: 0;
top: auto;
margin: 0;
padding: 0;
opacity: 0;
visibility: hidden;
min-width: 215px;
background: var(--white);
text-align: left;
transition: all 0.5s ease-out 0s;
transform: translateY(20px);
box-shadow: 2px 2px 15px 10px rgba(0, 0, 0, 0.03);
}
header.style-5 .main-nav ul li ul.sub-menu > li {
padding: 0;
display: block;
border-bottom: 1px solid rgba(56, 56, 56, 0.1);
position: relative;
}
header.style-5 .main-nav ul li ul.sub-menu > li i {
position: absolute;
top: 15px;
right: 6px;
display: block;
}
header.style-5 .main-nav ul li ul.sub-menu > li a {
display: block;
padding: 15px 15px;
color: var(--text-primary);
font-weight: 400;
text-transform: capitalize;
font-size: 16px;
line-height: 1;
transition: all 0.4s ease-out 0s;
}
header.style-5 .main-nav ul li ul.sub-menu > li a:hover {
color: var(--primary-color3);
margin-left: 10px;
}
header.style-5 .main-nav ul li ul.sub-menu > li a.active {
color: var(--primary-color3);
}
header.style-5 .main-nav ul li ul.sub-menu > li .sub-menu {
left: 215px;
position: absolute;
max-width: 230px;
min-width: 215px;
background: var(--white);
top: 0;
}
@media only screen and (max-width: 1199px) {
header.style-5 .main-nav ul li ul.sub-menu > li .sub-menu {
margin-left: 10px;
position: unset;
max-width: 230px;
min-width: 215px;
background: transparent;
top: 0;
}
}
header.style-5 .main-nav ul li ul.sub-menu > li .sub-menu li i {
display: block;
}
header.style-5 .main-nav ul li ul.sub-menu > li:last-child {
border-bottom: none;
}
header.style-5 .main-nav ul li:hover > ul.sub-menu {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
header.style-5 .main-nav ul li.menu-item-has-children > i {
display: block;
}
@media only screen and (max-width: 1199px) {
header.style-5 .main-nav {
position: fixed;
top: 0;
left: 0;
width: 280px;
padding: 30px 20px !important;
z-index: 99999;
height: 100%;
overflow: auto;
background: var(--white);
transform: translateX(-100%);
transition: transform 0.3s ease-in;
}
header.style-5 .main-nav.show-menu {
transform: translateX(0);
}
header.style-5 .main-nav .mobile-menu-logo {
text-align: left;
padding-top: 20px;
display: block;
padding-bottom: 8px;
}
header.style-5 .main-nav ul {
float: none;
text-align: left;
padding: 50px 10px 50px 0px;
}
header.style-5 .main-nav ul li {
display: block;
position: relative;
padding: 0 5px;
}
header.style-5 .main-nav ul li i {
display: block;
}
header.style-5 .main-nav ul li a {
padding: 10px 0;
display: block;
font-weight: 400;
color: var(--text-primary);
}
header.style-5 .main-nav ul li ul.sub-menu {
position: static;
min-width: 200px;
background: 0 0;
border: none;
opacity: 1;
visibility: visible;
box-shadow: none;
transform: none;
transition: none;
display: none;
margin-top: 0 !important;
transform: translateY(0px);
}
header.style-5 .main-nav ul li .bi {
top: 12px;
font-size: 16px;
}
header.style-5 .mobile-menu {
position: relative;
top: 2px;
padding: 0 5px;
border-radius: 50%;
display: inline-block;
}
header.style-5 .cross-btn {
display: inline-block !important;
position: relative;
width: 30px !important;
height: 22px !important;
cursor: pointer;
border: 3px solid transparent !important;
}
header.style-5 .cross-btn span {
width: 100%;
height: 2px;
background: var(--primary-color1);
display: block;
position: absolute;
right: 0;
transition: all 0.3s;
}
header.style-5 .cross-btn .cross-top {
top: 0;
}
header.style-5 .cross-btn .cross-middle {
top: 50%;
transform: translateY(-50%);
width: 100%;
}
header.style-5 .cross-btn .cross-bottom {
bottom: 0;
width: 100%;
}
header.style-5 .cross-btn.h-active span.cross-top {
transform: rotate(45deg);
top: 50%;
margin-top: -1px;
}
header.style-5 .cross-btn.h-active span.cross-middle {
transform: translateX(-30px);
opacity: 0;
}
header.style-5 .cross-btn.h-active span.cross-bottom {
transform: rotate(-45deg);
bottom: 50%;
margin-bottom: -1px;
}
} .hero-banner {
position: relative;
}
.hero-banner .searchbar-section {
margin: 0;
position: absolute;
width: 100%;
bottom: -40px;
z-index: 2;
}
@media (max-width: 767px) {
.hero-banner .searchbar-section {
position: static;
margin-top: 80px;
}
}
.swiper.hero-slider {
position: relative;
}
.swiper.hero-slider .swiper-slide {
position: relative;
}
.swiper.hero-slider .swiper-slide:before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
opacity: 0.35;
background-color: #000;
z-index: 2;
}
.swiper.hero-slider .swiper-slide img {
width: 100%;
height: 800px;
-o-object-fit: cover;
object-fit: cover;
}
@media (max-width: 767px) {
.swiper.hero-slider .swiper-slide img {
height: 600px;
}
}
.swiper.hero-slider .hero-pagination.swiper-pagination-clickable {
position: absolute;
right: 5% !important;
top: 50%;
transform: translateY(-50%);
z-index: 99;
left: auto !important;
bottom: auto !important;
width: auto !important;
}
.swiper.hero-slider .hero-pagination.swiper-pagination-clickable span.swiper-pagination-bullet {
color: #fff;
font-size: 20px;
display: block;
margin: 15px 0;
width: auto !important;
background: transparent;
height: auto !important;
}
.swiper.hero-slider .hero-pagination.swiper-pagination-clickable span.swiper-pagination-bullet.swiper-pagination-bullet-active {
position: relative;
font-size: 24px;
}
.swiper.hero-slider .hero-pagination.swiper-pagination-clickable span.swiper-pagination-bullet.swiper-pagination-bullet-active:before {
position: absolute;
content: "";
right: 40px;
height: 2px;
width: 60px;
background-color: #fff;
top: 50%;
transform: translateY(-50%);
}
@media (max-width: 767px) {
.swiper.hero-slider .hero-pagination.swiper-pagination-clickable span.swiper-pagination-bullet {
display: none;
}
}
.hero-wrapper {
position: absolute;
left: 0;
right: 0;
top: 50%;
width: 100%;
transform: translateY(-50%);
z-index: 2;
}
.hero-wrapper .hero-content > span {
color: #FFF;
font-family: var(--font-satisfy);
font-size: 30px;
font-weight: 400;
line-height: 30px;
margin-bottom: 20px;
display: inline-block;
}
.hero-wrapper .hero-content h1 {
color: #FFF;
font-family: var(--font-merriw);
font-size: 75px;
font-style: normal;
font-weight: 700;
margin-bottom: 40px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.hero-wrapper .hero-content h1 {
font-size: 65px;
margin-bottom: 30px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.hero-wrapper .hero-content h1 {
font-size: 50px;
margin-bottom: 20px;
}
}
@media (max-width: 991px) {
.hero-wrapper .hero-content h1 {
font-size: 50px;
margin-bottom: 20px;
}
}
@media (max-width: 767px) {
.hero-wrapper .hero-content h1 {
font-size: 40px;
margin-bottom: 20px;
}
}
.hero-wrapper .hero-content p, .hero-wrapper .hero-content .info-single .info-text a, .info-single .info-text .hero-wrapper .hero-content a {
color: #FFF;
font-family: var(--font-work-sans);
font-size: 20px;
font-weight: 400;
margin: 0;
}
.hero-wrapper .hero-content .btn-group {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 50px;
margin-top: 60px;
}
@media (max-width: 991px) {
.hero-wrapper .hero-content .btn-group {
margin-top: 40px;
}
}
.hero-wrapper .hero-content .btn-group .dsc-btn a {
position: relative;
color: #FFF;
text-align: center;
font-family: var(--font-merriw);
font-size: 16px;
font-weight: 700;
text-transform: capitalize;
background-color: #90B956;
min-width: 195px;
display: block;
padding: 15px 30px;
z-index: 1;
transition: 0.5s;
}
.hero-wrapper .hero-content .btn-group .dsc-btn a:after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--white);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.hero-wrapper .hero-content .btn-group .dsc-btn a svg,
.hero-wrapper .hero-content .btn-group .dsc-btn a i {
margin-right: 5px;
}
.hero-wrapper .hero-content .btn-group .dsc-btn a:hover {
color: var(--primary-color1);
}
.hero-wrapper .hero-content .btn-group .dsc-btn a:hover:after {
transform: scale(1);
opacity: 1;
}
.hero-wrapper .hero-content .btn-group .trip-rating {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
}
.hero-wrapper .hero-content .btn-group .trip-rating .icon {
width: 44px;
height: 44px;
line-height: 44px;
text-align: center;
background-color: #34E0A1;
border-radius: 50%;
}
.hero-wrapper .hero-content .btn-group .trip-rating .icon svg {
height: 18px;
}
.hero-wrapper .hero-content .btn-group .trip-rating .icon svg path {
fill: #000;
}
.hero-wrapper .hero-content .btn-group .trip-rating .cnt h4 {
display: block;
font-size: 24px;
color: #fff;
font-family: var(--font-work-sans);
margin-bottom: 0;
}
.hero-wrapper .hero-content .btn-group .trip-rating .cnt p, .hero-wrapper .hero-content .btn-group .trip-rating .cnt .info-single .info-text a, .info-single .info-text .hero-wrapper .hero-content .btn-group .trip-rating .cnt a {
color: #FFF;
font-family: var(--font-work-sans);
font-size: 14px;
font-weight: 600;
margin: 0;
}
.hero-wrapper .hero-content .btn-group .trip-rating .cnt p span, .hero-wrapper .hero-content .btn-group .trip-rating .cnt .info-single .info-text a span, .info-single .info-text .hero-wrapper .hero-content .btn-group .trip-rating .cnt a span {
position: relative;
color: #FFF;
font-family: var(--font-merriw);
font-size: 15px;
font-weight: 700;
line-height: normal;
padding-right: 15px;
margin: 0;
}
.hero-wrapper .hero-content .btn-group .trip-rating .cnt p span:after, .hero-wrapper .hero-content .btn-group .trip-rating .cnt .info-single .info-text a span:after, .info-single .info-text .hero-wrapper .hero-content .btn-group .trip-rating .cnt a span:after {
position: absolute;
content: "";
right: 6.5px;
width: 2px;
height: 10px;
background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.1) 100%);
top: 50%;
transform: translateY(-50%);
}
.swiper-slide-active span {
animation: fadeInDown 1.7s;
}
.swiper-slide-active h1 {
animation: fadeInDown 1.7s;
}
.swiper-slide-active h2 {
animation: fadeInDown 1.7s;
}
.swiper-slide-active p, .swiper-slide-active .info-single .info-text a, .info-single .info-text .swiper-slide-active a {
animation: fadeInUp 1.7s;
}
.swiper-slide-active .trip-rating {
animation: fadeInUp 1.7s;
}
.swiper-slide-active .dsc-btn {
animation: fadeInUp 1.7s;
}
.swiper-slide-active .eg-btn {
animation: fadeInUp 1.7s;
}
.banner-section1 {
min-height: 80vh;
padding: 0px 2%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.banner-section1 .banner-image2 {
position: absolute;
right: 2.5%;
top: 4%;
}
.banner-section1 .banner-image2 img {
max-width: 400px;
max-height: 620px;
border-radius: 200px;
-o-object-fit: cover;
object-fit: cover;
}
.banner-section1 .banner-image2 .inner-img2 {
position: absolute;
left: -25%;
bottom: 10%;
}
.banner-section1 .banner-image2 .inner-img2 img {
width: 200px;
height: 200px;
border: 15px solid #fff;
}
@media (max-width: 991px) {
.banner-section1 .banner-image2 {
display: none;
visibility: none;
}
}
@media (min-width: 1400px) and (max-width: 1599px) {
.banner-section1 .banner-image2 {
top: 8%;
}
.banner-section1 .banner-image2 img {
max-width: 350px;
}
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner-section1 .banner-image2 {
top: 12%;
}
.banner-section1 .banner-image2 img {
max-width: 280px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.banner-section1 .banner-image2 {
top: 22%;
}
.banner-section1 .banner-image2 img {
max-width: 250px;
}
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner-section1 {
padding: 0px 0%;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.banner-section1 {
padding: 0px 15px;
}
}
@media (max-width: 991px) {
.banner-section1 {
min-height: auto;
padding: 0px 0px;
}
}
@media (max-width: 991px) {
.banner-section1 {
background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/banner-image2.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center-top;
}
}
.banner-section1 .cloud-icon1 {
position: absolute;
top: 10%;
left: 15%;
opacity: 0.5;
}
.banner-section1 .cloud-icon2 {
position: absolute;
top: 10%;
left: 45%;
opacity: 0.5;
}
.banner-section1 .cloud {
position: absolute;
top: 30px;
right: -500px;
opacity: 0.9;
animation: cloud 20s linear 0s infinite reverse;
z-index: 9;
}
.banner-section1 .cloud img {
max-width: 90px;
opacity: 0.6;
}
@media (max-width: 991px) {
.banner-section1 .cloud img {
max-width: 90px;
}
}
@keyframes cloud {
from {
right: -500px;
}
to {
right: 102%;
}
}
.banner-section1 .banner-social-area {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
background-color: var(--white);
padding-left: 25px;
}
.banner-section1 .banner-social-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
.banner-section1 .banner-social-list li {
width: 30px;
height: 30px;
line-height: 27px;
border: 1px solid var(--primary-color1-light);
text-align: center;
background-color: var(--white);
transition: all 0.45s ease;
}
.banner-section1 .banner-social-list li i {
color: var(--primary-color1-light);
transition: all 0.45s ease;
}
.banner-section1 .banner-social-list li:hover {
background-color: var(--primary-color1);
}
.banner-section1 .banner-social-list li:hover i {
color: var(--white);
}
.banner-section1 .banner1-content {
position: relative;
text-align: center;
z-index: 9;
margin-left: auto;
margin-right: auto;
padding: 180px 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner-section1 .banner1-content {
padding: 180px 25px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.banner-section1 .banner1-content {
padding: 130px 15px;
}
}
@media (max-width: 991px) {
.banner-section1 .banner1-content {
padding: 120px 10px;
}
}
.banner-section1 .banner1-content span {
font-size: 2.2rem;
font-weight: 400;
color: var(--primary-color1);
font-family: var(--font-work-sans);
display: inline-block;
margin-bottom: 8px;
position: relative;
text-transform: uppercase;
letter-spacing: 2px;
}
.banner-section1 .banner1-content span::after {
content: url(//asturguias.com/wp-content/themes/astrip/assets/images/icons/fly-shape1.svg);
position: absolute;
right: -80px;
top: 8px;
}
@media (max-width: 576px) {
.banner-section1 .banner1-content span::after {
right: -50px;
}
}
@media (max-width: 767px) {
.banner-section1 .banner1-content span {
font-size: 2rem;
font-weight: 400;
color: var(--primary-color1);
}
}
.banner-section1 .banner1-content h1,
.banner-section1 .banner1-content h2 {
font-size: 5.6rem;
font-weight: 800;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 25px;
line-height: 1.5;
position: relative;
}
@media (max-width: 991px) {
.banner-section1 .banner1-content h1,
.banner-section1 .banner1-content h2 {
color: var(--white);
}
}
.banner-section1 .banner1-content h1::after,
.banner-section1 .banner1-content h2::after {
content: url(//asturguias.com/wp-content/themes/astrip/assets/images/icons/banner-dot-vector.svg);
position: absolute;
right: -16px;
top: -7px;
}
@media (min-width: 576px) and (max-width: 768px) {
.banner-section1 .banner1-content h1,
.banner-section1 .banner1-content h2 {
font-size: 5.8rem;
font-weight: 700;
color: var(--white);
}
}
@media (max-width: 576px) {
.banner-section1 .banner1-content h1,
.banner-section1 .banner1-content h2 {
font-size: 4.6rem;
font-weight: 700;
color: var(--white);
margin-bottom: 15px;
}
}
.banner-section1 .banner1-content p, .banner-section1 .banner1-content .info-single .info-text a, .info-single .info-text .banner-section1 .banner1-content a {
font-size: 2.2rem;
font-weight: 500;
color: var(--text-secondary);
margin-bottom: 46px;
}
@media (max-width: 991px) {
.banner-section1 .banner1-content p, .banner-section1 .banner1-content .info-single .info-text a, .info-single .info-text .banner-section1 .banner1-content a {
color: #eefeef;
}
}
.banner-section1 .banner1-content .discover-btn {
position: relative;
z-index: 9;
display: inline-block;
}
.banner-section1 .banner1-content .discover-btn::before {
content: url(//asturguias.com/wp-content/themes/astrip/assets/images/icons/fly-shape2.svg);
position: absolute;
left: -90%;
top: 8px;
}
.banner-section1 .banner-image1 {
animation: jumping 10s linear infinite alternate;
margin-top: -90px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
.banner-section1 .banner-image1 {
margin-top: 0;
}
}
.banner-section1 .banner-image1 img {
max-width: 285px;
max-height: 450px;
border-radius: 150px;
-o-object-fit: cover;
object-fit: cover;
}
@media (min-width: 1400px) and (max-width: 1599px) {
.banner-section1 .banner-image1 img {
max-width: none;
}
}
@keyframes jumping {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-40px);
}
100% {
transform: translateY(0);
}
}
.banner-section2 {
position: relative;
}
.banner-section2 .banner-form-container {
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
right: 0;
z-index: 2;
pointer-events: none;
}
.banner-section2 .banner-form-container .banner-form-box {
pointer-events: auto;
}
@media (max-width: 991px) {
.banner-section2 .banner-form-container {
position: relative;
transform: translateY(0);
}
.banner-section2 .banner-form-container::after {
content: "";
position: absolute;
width: 150px;
height: 150px;
line-height: 150px;
text-align: center;
border-radius: 50%;
background: var(--primary-color2);
left: -20px;
top: -20px;
z-index: 1;
animation: move 6s linear infinite alternate;
}
@keyframes move {
0% {
transform: translateX(40%);
}
100% {
transform: translateX(100%);
}
}
}
.banner-section2 .banner-form-wrapper {
padding: 0px 10px;
}
@media (max-width: 991px) {
.banner-section2 .banner-form-wrapper {
background: var(--text-primary);
padding: 90px 10px;
}
}
.banner-section2 .swiper-slide {
position: relative;
z-index: 1;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
@media (max-width: 991px) {
.banner-section2 .swiper-slide {
min-height: auto;
}
}
.banner-section2 .swiper-slide::before {
content: "";
position: absolute;
right: 0;
bottom: 0;
left: 0;
width: 100%;
min-height: 100%;
background-color: rgba(3, 0, 15, 0.25);
z-index: 2;
}
.banner-section2 .swiper-slide .banner-bg11 {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
z-index: -1;
animation: zoomin 18s linear infinite alternate;
}
@keyframes zoomin {
0% {
transform: scale(1);
}
100% {
transform: scale(1.2);
}
}
.banner2-content {
padding: 150px 15px;
position: relative;
z-index: 9;
}
@media (max-width: 767px) {
.banner2-content {
padding: 120px 15px;
}
}
.banner2-content span {
font-size: 2.2rem;
font-weight: 400;
color: var(--primary-color2);
font-family: var(--font-work-sans);
display: inline-block;
margin-bottom: 0px;
text-transform: uppercase;
}
@media (max-width: 767px) {
.banner2-content span {
font-size: 2rem;
font-weight: 400;
color: var(--primary-color2);
}
}
.banner2-content h1,
.banner2-content h2 {
font-size: 6.5rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 25px;
line-height: 1.35;
}
@media (max-width: 767px) {
.banner2-content h1,
.banner2-content h2 {
font-size: 5.8rem;
font-weight: 700;
color: var(--white);
}
}
.banner2-content p, .banner2-content .info-single .info-text a, .info-single .info-text .banner2-content a {
font-size: 2.2rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 46px;
}
.banner3-content {
padding: 120px 35px 120px 0px;
position: relative;
z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner3-content {
padding: 120px 15px 120px 0px;
}
}
@media (max-width: 991px) {
.banner3-content {
padding: 110px 0px 60px 0px;
}
}
.banner3-content span {
font-size: 2.2rem;
font-weight: 400;
color: var(--primary-color2);
font-family: var(--font-work-sans);
display: inline-block;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 2px;
}
.banner3-content h1,
.banner3-content h2 {
font-size: 6.5rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 25px;
line-height: 1.35;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner3-content h1,
.banner3-content h2 {
font-size: 5.5rem;
font-weight: 700;
color: var(--white);
}
}
@media (max-width: 767px) {
.banner3-content h1,
.banner3-content h2 {
font-size: 5.8rem;
font-weight: 700;
color: var(--white);
}
}
.banner3-content p, .banner3-content .info-single .info-text a, .info-single .info-text .banner3-content a {
font-size: 2.2rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 46px;
}
.banner4-content {
width: 100%;
max-width: 1000px;
margin: 0 auto;
padding: 180px 20px;
position: relative;
z-index: 9;
text-align: center;
}
@media (max-width: 767px) {
.banner4-content {
padding: 90px 20px;
}
}
.banner4-content span {
font-size: 2.2rem;
font-weight: 400;
color: var(--primary-color1);
font-family: var(--font-work-sans);
display: inline-block;
margin-bottom: 0px;
letter-spacing: 3px;
text-transform: uppercase;
}
.banner4-content h2 {
font-size: 6.5rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 20px;
line-height: 1.4;
}
@media (max-width: 767px) {
.banner4-content h2 {
font-size: 5.8rem;
font-weight: 700;
color: var(--white);
}
}
.banner4-content p, .banner4-content .info-single .info-text a, .info-single .info-text .banner4-content a {
font-size: 2.2rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 46px;
}
.banner5-content {
width: 100%;
max-width: 1000px;
margin: 0 auto;
padding: 120px 20px;
position: relative;
z-index: 9;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
.banner5-content {
padding: 160px 20px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.banner5-content {
padding: 140px 20px;
}
}
@media (min-width: 576px) and (max-width: 768px) {
.banner5-content {
padding: 120px 20px;
}
}
@media (max-width: 576px) {
.banner5-content {
padding: 120px 20px;
}
}
.banner5-content span {
font-size: 2.2rem;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
display: inline-block;
margin-bottom: 10px;
text-transform: uppercase;
}
@media (max-width: 767px) {
.banner5-content span {
font-size: 2rem;
font-weight: 400;
color: var(--white);
}
}
.banner5-content h2 {
font-size: 7.5rem;
font-weight: 800;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 20px;
line-height: 1.3;
margin-top: -10px;
}
@media (max-width: 767px) {
.banner5-content h2 {
font-size: 5.8rem;
font-weight: 700;
color: var(--white);
}
}
.banner5-content p, .banner5-content .info-single .info-text a, .info-single .info-text .banner5-content a {
font-size: 2.2rem;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 46px;
}
.banner-form-box {
position: relative;
z-index: 9;
text-align: center;
padding: 45px 30px;
background: linear-gradient(152.97deg, rgba(32, 42, 55, 0.4) 0%, rgba(12, 25, 43, 0.2) 100%);
-webkit-backdrop-filter: blur(50px);
backdrop-filter: blur(50px);
width: 100%;
max-width: 400px;
margin: 0 auto;
border: 1px solid rgba(144, 185, 86, 0.33);
border-radius: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner-form-box {
padding: 40px 25px;
}
}
@media (max-width: 576px) {
.banner-form-box {
padding: 40px 20px;
}
}
.banner-form-box h3 {
font-size: 3rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 15px;
line-height: 1.35;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner-form-box h3 {
font-size: 3rem;
}
}
@media (max-width: 576px) {
.banner-form-box h3 {
font-size: 3rem;
}
}
.banner-form-box p, .banner-form-box .info-single .info-text a, .info-single .info-text .banner-form-box a {
font-size: 17px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
}
.banner-form-box .banner-form {
margin-top: 40px;
}
.banner-form-box .banner-form .searchbox-input {
width: 100%;
}
.banner-form-box .banner-form .searchbox-input input, .banner-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .banner-form-box .banner-form .searchbox-input textarea {
width: 100%;
height: 50px;
border: unset;
background-color: #828286;
padding-left: 10px;
color: var(--white);
}
.banner-form-box .banner-form .searchbox-input input::-moz-placeholder, .banner-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .banner-form-box .banner-form .searchbox-input textarea::-moz-placeholder {
font-size: 1.6rem;
font-weight: 500;
color: var(--white);
}
.banner-form-box .banner-form .searchbox-input input::placeholder, .banner-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .form-inner .banner-form-box .banner-form .searchbox-input textarea::placeholder {
font-size: 1.6rem;
font-weight: 500;
color: var(--white);
}
.banner-form-box .banner-form .search-box-single {
display: flex;
flex-direction: row;
align-items: center;
position: relative;
margin-bottom: 30px;
background: #828286;
padding: 0px 20px;
}
@media (max-width: 576px) {
.banner-form-box .banner-form .search-box-single {
padding: 0px 12px;
}
}
.banner-form-box .banner-form .search-box-single .searchbox-icon svg {
fill: var(--white);
}
.banner-form-box .nice-select {
background-color: #828286;
box-sizing: border-box;
clear: both;
cursor: pointer;
display: block;
float: left;
height: 50px;
line-height: 50px;
outline: none;
position: relative;
text-align: left !important;
transition: all 0.2s ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
border-radius: 0px;
border: unset;
padding-left: 10px;
}
.banner-form-box .nice-select::after {
border-bottom: 2px solid var(--white);
border-right: 2px solid var(--white);
}
.banner-form-box .nice-select .option {
min-height: 35px;
line-height: 35px;
font-size: 14px;
}
.banner-form-box .nice-select .option:hover {
background: var(--primary-color2);
color: var(--text-primary);
}
.banner-form-box .nice-select .option.selected {
background: var(--primary-color2) !important;
}
.banner-form-box .nice-select .current {
font-size: 1.6rem;
font-weight: 500;
color: var(--white);
}
.banner-form-box .nice-select .list {
border: unset;
margin-top: 6px;
z-index: 100;
border-radius: 0px;
width: 100%;
min-width: 80px;
}
.banner-form-box.sibling-2 {
background: linear-gradient(152.97deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
border: 1px solid rgba(242, 170, 76, 0.3);
margin-left: auto;
margin-right: 0;
}
@media (max-width: 991px) {
.banner-form-box.sibling-2 {
margin: 0 auto;
margin-bottom: 125px;
}
}
.banner-form-box.sibling-2 h3 {
font-size: 3rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 15px;
}
.banner-form-box.sibling-2 .banner-form .searchbox-input {
width: 100%;
}
.banner-form-box.sibling-2 .banner-form .searchbox-input input, .banner-form-box.sibling-2 .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .banner-form-box.sibling-2 .banner-form .searchbox-input textarea {
background-color: var(--white);
padding-left: 10px;
}
.banner-form-box.sibling-2 .banner-form .searchbox-input input::-moz-placeholder, .banner-form-box.sibling-2 .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .banner-form-box.sibling-2 .banner-form .searchbox-input textarea::-moz-placeholder {
font-size: 1.6rem;
font-weight: 500;
color: var(--text-secondary);
}
.banner-form-box.sibling-2 .banner-form .searchbox-input input::placeholder, .banner-form-box.sibling-2 .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .form-inner .banner-form-box.sibling-2 .banner-form .searchbox-input textarea::placeholder {
font-size: 1.6rem;
font-weight: 500;
color: var(--text-secondary);
}
.banner-form-box.sibling-2 .banner-form .search-box-single {
background: var(--white);
}
.banner-form-box.sibling-2 .banner-form .nice-select {
background-color: var(--white);
}
.banner-form-box.sibling-2 .banner-form .nice-select .option:hover {
background: var(--primary-color2);
color: var(--text-primary);
}
.banner-form-box.sibling-2 .banner-form .nice-select .option.selected {
background: var(--primary-color2) !important;
}
.banner-form-box.sibling-2 .banner-form .nice-select .current {
font-size: 1.6rem;
font-weight: 500;
color: var(--text-secondary);
}
.banner-form-box.sibling-2 .banner-form .search-box-single .searchbox-icon svg {
fill: var(--text-secondary);
}
.sidebar-icon {
width: 80px;
height: 89px;
line-height: 80px;
background: var(--primary-color3);
text-align: center;
position: absolute;
top: 0;
left: 0;
cursor: pointer;
}
@media (max-width: 1199px) {
.sidebar-icon {
display: none;
visibility: none;
}
}
.banner-section3 {
position: relative;
min-height: 95vh;
display: flex;
justify-content: center;
align-items: center;
padding: 0px 40px;
}
@media (max-width: 991px) {
.banner-section3 {
min-height: auto;
}
}
.banner-section3:after {
content: "";
background: rgba(0, 0, 0, 0.5);
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
}
@media (max-width: 576px) {
.banner-section3 {
padding: 0px 15px;
}
}
.banner-section3 .banner-bg31 {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.banner-section5 {
position: relative;
}
.banner-section5.sibling-2 .swiper {
padding-right: 80px;
padding-left: 0px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner-section5.sibling-2 .swiper {
padding-right: 60px;
}
}
@media (max-width: 1199px) {
.banner-section5.sibling-2 .swiper {
padding-right: 0px;
}
}
.banner-section5 .swiper {
padding-left: 80px;
}
@media (max-width: 1199px) {
.banner-section5 .swiper {
padding-left: 0px;
}
}
.banner-section5 .banner-social-area {
position: absolute;
left: 0;
top: 0;
bottom: 0;
height: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
background: var(--white);
width: 80px;
z-index: 9;
}
@media (max-width: 1199px) {
.banner-section5 .banner-social-area {
display: none;
visibility: none;
}
}
.banner-section5 .banner-social-area ul.banner-social {
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
flex-direction: column;
}
.banner-section5 .banner-social-area ul.banner-social li {
background: var(--white);
padding: 5px;
}
.banner-section5 .banner-social-area ul.banner-social li a i {
font-size: 1.8rem;
transition: all 0.35s ease-in;
width: 35px;
height: 35px;
line-height: 34px;
border-radius: 50%;
border: 1px solid var(--text-primary);
color: var(--text-primary);
text-align: center;
}
.banner-section5 .banner-social-area ul.banner-social li a:hover i {
color: var(--white);
border: 1px solid var(--primary-color3);
background: var(--primary-color3);
}
.banner-section5 .banner-social-area.sibling-2 {
position: absolute;
right: 0;
top: 0;
bottom: 0;
}
.banner-section5 .banner-social-area2 {
position: absolute;
right: 0;
top: 0;
bottom: 0;
height: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
background: rgb(5, 15, 12);
width: 80px;
z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.banner-section5 .banner-social-area2 {
width: 60px;
}
}
@media (max-width: 1199px) {
.banner-section5 .banner-social-area2 {
display: none;
visibility: none;
}
}
.banner-section5 .banner-social-area2 ul.banner-social {
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
flex-direction: column;
}
.banner-section5 .banner-social-area2 ul.banner-social li {
padding: 5px;
}
.banner-section5 .banner-social-area2 ul.banner-social li a i {
font-size: 1.8rem;
transition: all 0.35s ease-in;
width: 35px;
height: 35px;
line-height: 34px;
border-radius: 50%;
border: 1px solid var(--white);
color: var(--white);
text-align: center;
}
.banner-section5 .banner-social-area2 ul.banner-social li a:hover i {
color: var(--white);
border: 1px solid var(--primary-color1);
background: var(--primary-color1);
}
.banner-section5 .banner-social-area2.sibling-2 {
position: absolute;
right: 0;
top: 0;
bottom: 0;
}
.banner-section5 .swiper-slide {
position: relative;
z-index: 1;
min-height: 90vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
@media (max-width: 1199px) {
.banner-section5 .swiper-slide {
min-height: auto;
}
}
.banner-section5 .swiper-slide::before {
content: "";
position: absolute;
right: 0;
bottom: 0;
left: 0;
width: 100%;
min-height: 100%;
background-image: linear-gradient(180deg, rgba(3, 0, 15, 0.8), transparent);
z-index: 2;
}
.banner-section5 .swiper-slide .banner-bg11 {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
z-index: -1;
animation: zoomin 18s linear infinite alternate;
}
@keyframes zoomin {
0% {
transform: scale(1);
}
100% {
transform: scale(1.1);
}
}
.inner-banner-section {
position: relative;
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
background-size: cover;
background-repeat: no-repeat;
min-height: 550px;
background-color: #000;
background-position: center center;
}
@media (max-width: 767px) {
.inner-banner-section {
min-height: 360px;
}
}
.inner-banner-section .inner-banner-vector {
position: absolute;
bottom: -5px;
left: 0;
right: 0;
z-index: 9;
width: 100%;
}
@media (max-width: 991px) {
.inner-banner-section .inner-banner-vector {
display: none;
visibility: none;
}
}
.inner-banner-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
}
.inner-banner-section:after {
position: absolute;
content: "";
left: 0;
right: 0;
bottom: -4px;
background-image: url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/inner-banner-vctr.png);
height: 50px;
width: 100%;
}
.inner-banner-section .breadcrumb-area {
text-align: center;
position: relative;
}
.inner-banner-section .breadcrumb-area span {
display: block;
font-size: 2.2rem;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 5px;
letter-spacing: 3px;
}
.inner-banner-section .breadcrumb-area h2 {
font-size: 5rem;
font-weight: 800;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 0px;
line-height: 1.25;
word-wrap: break-word;
}
@media (max-width: 767px) {
.inner-banner-section .breadcrumb-area h2 {
font-size: 34px;
}
}
.inner-banner-section .breadcrumb-area .review-area {
margin-top: 10px;
}
.inner-banner-section .breadcrumb-area .review-area span {
font-size: 2rem;
font-weight: 600;
color: var(--white);
font-family: var(--font-merriw);
}
.inner-banner-section .breadcrumb-area .review-area .star-list li i {
font-size: 14px;
font-weight: 400;
color: var(--white);
}
.inner-banner-section .breadcrumb-area .breadcrumb-meta-list {
margin-top: 5px;
display: flex;
justify-content: center;
margin-bottom: 0px;
gap: 40px;
}
@media (max-width: 576px) {
.inner-banner-section .breadcrumb-area .breadcrumb-meta-list {
flex-wrap: wrap;
gap: unset;
}
}
.inner-banner-section .breadcrumb-area .breadcrumb-meta-list li {
font-size: 1.8rem;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
}
.inner-banner-section .breadcrumb-area .breadcrumb-meta-list li::marker {
color: var(--primary-color1);
}
@media (max-width: 576px) {
.inner-banner-section .breadcrumb-area .breadcrumb-meta-list li {
flex-wrap: wrap;
margin: 5px 20px;
}
}
.inner-banner-section .query-data {
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 50px;
margin-top: 20px;
}
.inner-banner-section .query-data h5 {
color: #fff;
font-size: 16px;
font-weight: 400;
}
.inner-banner-section .query-data h5 b {
font-size: 22px;
margin-right: 5px;
}
.inner-banner-section .video-breadcrumb {
position: relative;
width: 100%;
height: 600px;
}
@media (max-width: 767px) {
.inner-banner-section .video-breadcrumb {
height: 450px;
}
}
.inner-banner-section .video-breadcrumb::before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
z-index: 1;
}
.inner-banner-section .video-breadcrumb .container.video-content {
position: relative;
height: 600px;
display: flex;
justify-content: center;
flex-direction: column;
z-index: 2;
}
@media (max-width: 767px) {
.inner-banner-section .video-breadcrumb .container.video-content {
height: 450px;
}
}
.inner-banner-section.sibling-2 {
background-image: none;
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
}
.inner-banner-section.sibling-2 video {
position: absolute;
width: 100%;
height: 600px;
-o-object-fit: cover;
object-fit: cover;
}
.inner-banner-section.sibling-2::before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
} .searchbar-section {
margin-top: 20px;
position: relative;
z-index: 9;
}
@media (min-width: 992px) and (max-width: 1199px) {
.searchbar-section {
margin-top: -90px;
}
}
@media (max-width: 991px) {
.searchbar-section {
margin-top: -25px;
}
}
.searchbar-section.sibling-2 {
margin-top: -120px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
.searchbar-section.sibling-2 .container {
max-width: 1170px;
}
}
@media (max-width: 767px) {
.searchbar-section.sibling-2 {
margin-top: -40px;
}
}
.multi-main-search {
background-color: var(--white);
padding: 16px 25px 16px 0px;
box-shadow: 1px 1px 10px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1199px) {
.multi-main-search {
transform: translateY(0px);
}
}
@media (max-width: 991px) {
.multi-main-search {
padding: 25px 15px;
}
}
@media (max-width: 991px) {
.multi-main-search .main-form-submit {
margin-top: 20px;
}
}
.multi-main-search .search-box-single {
display: flex;
flex-direction: row;
align-items: center;
padding: 0px 25px;
position: relative;
}
.multi-main-search .search-box-single::after {
content: "";
position: absolute;
top: 50%;
right: 0px;
transform: translateY(-50%);
width: 2px;
height: 40px;
background: var(--border-color);
}
@media (max-width: 767px) {
.multi-main-search .search-box-single::after {
display: none;
visibility: hidden;
}
}
.multi-main-search .search-box-single.remove-after::after {
content: unset;
}
.multi-main-search .search-box-single .searchbox-icon {
line-height: 10px;
}
.searchbox-input {
width: 100%;
}
.searchbox-input input, .searchbox-input .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .searchbox-input textarea {
width: 100%;
height: 40px;
border: unset;
padding-left: 15px;
}
.searchbox-input input::-moz-placeholder, .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .searchbox-input textarea::-moz-placeholder {
font-size: 1.6rem;
font-weight: 500;
color: var(--text-primary);
}
.searchbox-input input::placeholder, .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .form-inner .searchbox-input textarea::placeholder {
font-size: 1.6rem;
font-weight: 500;
color: var(--text-primary);
}
.nice-select {
background-color: var(--white);
box-sizing: border-box;
clear: both;
cursor: pointer;
display: block;
float: left;
height: 40px;
line-height: 40px;
outline: none;
position: relative;
text-align: left !important;
transition: all 0.2s ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
border-radius: 0px;
border: unset;
}
.nice-select:after {
content: "";
border-bottom: 2px solid var(--text-primary);
border-right: 2px solid var(--text-primary);
display: block;
height: 10px;
margin-top: -6px;
pointer-events: none;
position: absolute;
right: 12px;
top: 50%;
transform-origin: 66% 66%;
transform: rotate(45deg);
transition: all 0.15s ease-in-out;
width: 10px;
}
.nice-select .option {
min-height: 30px;
line-height: 30px;
font-size: 16px;
padding: 5px 10px;
}
.nice-select .option:hover {
background: var(--primary-color1);
color: var(--white);
}
.nice-select .option.selected {
background: var(--primary-color1) !important;
}
.nice-select .current {
font-size: 1.6rem;
font-weight: 500;
color: var(--text-primary);
}
.nice-select .list {
border: unset;
margin-top: 3px;
z-index: 100;
border-radius: 0px;
width: 100%;
min-width: 80px;
}
.ui-menu {
border: 1px solid rgba(41, 43, 49, 0.03) !important;
padding: 5px 0px;
}
.ui-menu .ui-menu-item {
transition: all 0.35s ease;
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.ui-menu .ui-menu-item .ui-menu-item-wrapper {
padding: 5px 20px;
background: var(--white);
border: 2px solid transparent;
transition: all 0.35s ease;
}
.ui-menu .ui-menu-item:hover {
background: var(--primary-color1);
}
.ui-menu .ui-menu-item:hover .ui-menu-item-wrapper {
background: var(--primary-color1);
}
.ui-menu .ui-menu-item.sibling-2:hover {
background: var(--primary-color2);
} .category-single1 {
background: var(--white);
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
text-align: center;
padding: 30px 25px;
}
@media (max-width: 576px) {
.category-single1 {
padding: 25px 15px;
}
}
.category-single1 .icon {
width: 90px;
height: 90px;
line-height: 85px;
text-align: center;
border-radius: 50%;
margin: 0 auto;
background: var(--white);
margin-bottom: 20px;
transition: all 0.45s ease;
position: relative;
z-index: 1;
border: 1px solid #eee;
overflow: hidden;
}
.category-single1 .icon::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: var(--primary-color1-light);
border-radius: 50%;
left: 0;
top: 0;
z-index: -1;
opacity: 0;
transform: scale(0.6);
transition: all 0.55s ease;
}
.category-single1 .icon svg {
fill: var(--primary-color1);
transition: all 0.45s ease;
}
.category-single1 .content h4 {
margin-bottom: 0px;
}
.category-single1 .content h4:hover a {
color: var(--primary-color1);
}
.category-single1 .content h4 a {
font-size: 2.1rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-work-sans);
transition: all 0.45s ease;
}
@media (min-width: 768px) and (max-width: 991px) {
.category-single1 .content h4 a {
font-size: 2rem;
}
}
@media (min-width: 576px) and (max-width: 768px) {
.category-single1 .content h4 a {
font-size: 2rem;
}
}
.category-single1 .content p, .category-single1 .content .info-single .info-text a, .info-single .info-text .category-single1 .content a {
margin-bottom: 0;
}
.category-single1:hover .icon {
border: 1px solid transparent;
}
.category-single1:hover .icon::before {
opacity: 1;
transform: scale(1);
background-color: var(--white);
}
.category-single1:hover .icon svg {
fill: var(--white);
} .deal-single1 {
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
}
@media (max-width: 767px) {
.deal-single1 {
max-width: 415px;
margin: 0px auto;
}
}
.deal-single1:hover .deal-image img {
transform: scale(1.1);
}
.deal-single1:hover .deal-image span.discount-bagde::after {
color: var(--white);
background: var(--primary-color1);
}
.deal-single1:hover .deal-image span.favourite {
opacity: 1;
}
.deal-single1:hover .deal-content .price span {
color: var(--primary-color1);
}
.deal-single1 .deal-image {
position: relative;
overflow: hidden;
}
.deal-single1 .deal-image img {
transition: all 0.55s ease-in-out;
}
.deal-single1 .deal-image span.discount-bagde {
position: absolute;
bottom: -1px;
left: 50%;
z-index: 1;
transform: translateX(-50%);
background: var(--white);
padding: 8px 5px 0 5px;
border-radius: 100px 100px 0 0;
min-width: 85;
min-width: 85px;
font-size: 20px;
font-weight: 500;
color: var(--primary-color1);
font-family: var(--font-work-sans);
text-align: center;
line-height: 2;
min-height: 40px;
}
.deal-single1 .deal-image span.discount-bagde::after {
content: "off";
position: absolute;
top: 3px;
right: -17px;
border-radius: 50%;
min-width: 35px;
height: 35px;
line-height: 35px;
background: var(--white);
text-align: center;
font-size: 14px;
font-weight: 500;
color: var(--primary-color1);
font-family: var(--font-work-sans);
transition: all 0.55s ease;
}
.deal-single1 .deal-image span.favourite {
position: absolute;
top: 25px;
left: 25px;
z-index: 1;
background: var(--white);
border-radius: 50%;
width: 30px;
text-align: center;
height: 30px;
line-height: 37px;
opacity: 0;
transition: all 0.55s ease;
cursor: pointer;
}
.deal-single1 .deal-image span.favourite i {
color: #ff3a3a;
font-size: 20px;
}
.deal-single1 .deal-content {
text-align: center;
padding: 35px 25px;
}
.deal-single1 .deal-content h4 {
margin-bottom: 8px;
}
.deal-single1 .deal-content h4 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.deal-single1 .deal-content .price {
margin-bottom: 25px;
}
.deal-single1 .deal-content .price span {
font-size: 2rem;
font-weight: 600;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-right: 5px;
transition: all 0.55s ease-in-out;
}
.deal-single1 .deal-content .price del {
font-size: 1.4rem;
font-weight: 500;
color: #878787;
font-family: var(--font-work-sans);
}
.tour-package-standard {
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.07);
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
padding: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.tour-package-standard {
padding: 25px 20px;
}
}
@media (max-width: 991px) {
.tour-package-standard {
flex-wrap: wrap;
justify-content: start;
max-width: 370px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
}
.tour-package-standard:hover .deal-image img {
transform: scale(1.1);
}
.tour-package-standard:hover .deal-image span.discount-bagde::after {
color: var(--white);
background: var(--primary-color1);
}
.tour-package-standard:hover .deal-image span.favourite {
opacity: 1;
}
.tour-package-standard:hover .deal-content .price span {
color: var(--primary-color1);
}
.tour-package-standard .tour-standard-image {
position: relative;
overflow: hidden;
width: 380px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.tour-package-standard .tour-standard-image {
width: 290px;
height: 310px;
}
}
.tour-package-standard .tour-standard-image img {
transition: all 0.55s ease-in-out;
}
.tour-package-standard .tour-standard-image span.discount-bagde {
position: absolute;
top: 32px;
left: 0px;
z-index: 1;
background: var(--white);
padding: 8px 22px 8px 12px;
border-radius: 0px 100px 100px 1px;
min-width: 85px;
font-size: 20px;
font-weight: 500;
color: var(--primary-color1);
font-family: var(--font-work-sans);
text-align: center;
line-height: 1.3;
min-height: 40px;
}
.tour-package-standard .tour-standard-image span.discount-bagde::after {
content: "off";
position: absolute;
top: -10px;
right: -8px;
border-radius: 50%;
min-width: 35px;
height: 35px;
line-height: 35px;
background: var(--primary-color1);
text-align: center;
font-size: 14px;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
transition: all 0.55s ease 0s;
}
.tour-package-standard .tour-standard-image span.favourite {
position: absolute;
top: 25px;
left: 25px;
z-index: 1;
background: var(--white);
border-radius: 50%;
width: 30px;
text-align: center;
height: 30px;
line-height: 37px;
opacity: 0;
transition: all 0.55s ease;
cursor: pointer;
}
.tour-package-standard .tour-standard-image span.favourite i {
color: #ff3a3a;
font-size: 20px;
}
.tour-package-standard .tour-standard-content {
text-align: start;
padding: 0px 0px 0 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.tour-package-standard .tour-standard-content {
padding: 0px 0px 0 20px;
}
}
@media (max-width: 991px) {
.tour-package-standard .tour-standard-content {
padding: 30px 10px 10px 10px;
}
}
.tour-package-standard .tour-standard-content h4 {
margin-bottom: 10px;
}
.tour-package-standard .tour-standard-content h4 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.5;
}
.tour-package-standard .tour-standard-content .price {
margin-bottom: 20px;
}
.tour-package-standard .tour-standard-content .price span {
font-size: 2.2rem;
font-weight: 600;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-right: 5px;
transition: all 0.55s ease-in-out;
}
.tour-package-standard .tour-standard-content .price del {
font-size: 1.4rem;
font-weight: 500;
color: #878787;
font-family: var(--font-work-sans);
}
.tour-package-standard .tour-standard-content .eg-btn {
margin-top: 25px;
}
.tour-package-standard .tour-standard-content .review-area {
justify-content: start;
}
.review-area {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}
.review-area .star-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
}
.review-area .star-list li .bi {
color: #ffd91c;
}
.review-area > span {
font-size: 14px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-left: 12px;
}
.review-area.sibling-2 {
justify-content: start;
margin-bottom: 3px;
}
.review-area.sibling-2 .star-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
}
.review-area.sibling-2 .star-list li .bi {
color: var(--primary-color2);
font-size: 14px;
}
.review-area.sibling-2 > span {
font-size: 15px;
font-weight: 600;
color: var(--white);
font-family: var(--font-work-sans);
margin-left: 12px;
} .destination-section .nav {
display: flex;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
border: 1px solid #eee;
margin-bottom: 45px;
}
.destination-section .nav-btn-style {
background: var(--white);
min-width: 0;
color: var(--text-secondary);
font-size: 20px;
font-weight: 500;
font-family: var(--font-work-sans);
padding: 10px 20px;
text-align: left;
transition: all 0.42s ease;
border-radius: 0;
}
.destination-section .nav-pills .nav-link.active,
.destination-section .nav-pills .show > .nav-link {
color: var(--white);
background-color: var(--primary-color1);
}
.destination-section .nav-pills .nav-link:last-child {
border-right: unset;
}
.destination-wrap {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
@media (max-width: 1199px) {
.destination-wrap {
flex-wrap: wrap;
}
}
@media (max-width: 991px) {
.destination-wrap .destination-single1 img {
height: 350px;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
}
.destination-single1 {
position: relative;
width: calc(25% - 20px);
}
@media (max-width: 991px) {
.destination-single1 {
width: calc(50% - 20px);
}
}
@media (max-width: 767px) {
.destination-single1 {
min-width: 100%;
}
}
.destination-single1::before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: #000;
opacity: 0.5;
}
.destination-single1 .destination-img {
min-height: 350px;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
.destination-single1 img {
height: 100% !important;
max-width: unset;
}
}
.destination-single1 .content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
display: flex;
justify-content: end;
align-content: flex-end;
flex-direction: column;
padding-bottom: 40px;
}
.destination-single1 .content .text-wrap {
position: relative;
transition: all 0.4s ease;
height: auto;
}
.destination-single1 .content .text-wrap h4 {
position: relative;
font-size: 2.4rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
transition: all 0.45s ease;
transform: translateY(30px);
margin-bottom: 10px;
}
.destination-single1 .content .text-wrap h4::after {
content: "";
position: absolute;
left: 50%;
bottom: -10px;
transform: translateX(-50%);
width: 34px;
height: 3px;
border-radius: 30px;
background-color: var(--white);
transition: all 0.4s ease;
}
@media (max-width: 767px) {
.destination-single1 .content .text-wrap h4 {
transform: translateY(20px);
}
}
.destination-single1 .content .text-wrap p, .destination-single1 .content .text-wrap .info-single .info-text a, .info-single .info-text .destination-single1 .content .text-wrap a {
font-size: 1.8rem;
font-weight: 500;
color: var(--primary-color1);
font-family: var(--font-work-sans);
transition: all 0.35s ease;
transform: scaleY(0);
margin-bottom: 5px;
}
.destination-single1:hover .content h4 {
transform: translateY(0);
}
.destination-single1:hover .content .text-wrap::after {
background: var(--primary-color1);
}
.destination-single1:hover .content .text-wrap p, .destination-single1:hover .content .text-wrap .info-single .info-text a, .info-single .info-text .destination-single1:hover .content .text-wrap a {
transform: scaleY(1);
}
.destination-single1.sibling-2 {
position: relative;
z-index: 1;
width: 100%;
max-width: 270px;
margin-left: auto;
margin-right: auto;
}
.destination-single1.sibling-2::after {
content: "";
position: absolute;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(9, 16, 13, 0.8) 62.5%);
z-index: 1;
width: 100%;
height: 25%;
opacity: 1;
transition: all 0.4s ease;
}
@media (max-width: 991px) {
.destination-single1.sibling-2 img {
max-width: 100%;
height: 300px;
}
}
.destination-single1.sibling-2 .content {
z-index: 2;
}
.destination-single3 {
position: relative;
}
@media (max-width: 991px) {
.destination-single3 img {
height: 300px;
width: 100%;
}
}
.destination-single3 .content {
background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(9, 16, 13, 0.8));
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
display: flex;
justify-content: end;
align-content: flex-end;
flex-direction: column;
padding-bottom: 35px;
}
.destination-single3 .content .text-wrap {
position: relative;
transition: all 0.4s ease;
height: auto;
}
.destination-single3 .content .text-wrap::after {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 34px;
height: 3px;
border-radius: 30px;
background-color: var(--white);
transition: all 0.4s ease;
}
.destination-single3 .content .text-wrap h4 {
font-size: 2.4rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
transition: all 0.45s ease;
transform: translateY(30px);
}
@media (max-width: 767px) {
.destination-single3 .content .text-wrap h4 {
transform: translateY(20px);
}
}
.destination-single3 .content .text-wrap p, .destination-single3 .content .text-wrap .info-single .info-text a, .info-single .info-text .destination-single3 .content .text-wrap a {
font-size: 1.8rem;
font-weight: 500;
color: var(--primary-color3);
font-family: var(--font-work-sans);
transition: all 0.35s ease;
transform: scaleY(0);
margin-bottom: 5px;
}
.destination-single3:hover .content h4 {
transform: translateY(0);
}
.destination-single3:hover .content .text-wrap::after {
background: var(--primary-color3);
}
.destination-single3:hover .content .text-wrap p, .destination-single3:hover .content .text-wrap .info-single .info-text a, .info-single .info-text .destination-single3:hover .content .text-wrap a {
transform: scaleY(1);
}
.destination-single4 {
height: auto;
position: relative;
overflow: hidden;
z-index: 1;
}
.destination-single4 img {
width: 100%;
}
@media (max-width: 991px) {
.destination-single4 {
margin-bottom: 15px;
}
}
@media (max-width: 991px) {
.destination-single4 img {
width: 100%;
}
}
.destination-single4:hover .desti-content {
opacity: 1;
transform: translateY(0px);
}
.destination-single4::after {
content: "";
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: linear-gradient(180deg, rgba(20, 22, 28, 0) 65.09%, rgba(20, 22, 28, 0.7) 84.38%);
z-index: 1;
}
.destination-single4 .desti-content {
opacity: 0;
transition: all 0.55s ease;
position: absolute;
left: 0;
bottom: 0;
z-index: 9;
padding: 20px 25px;
transform: translateY(10px);
}
.destination-single4 .desti-content h4 {
margin-bottom: 8px;
}
.destination-single4 .desti-content h4 a {
font-size: 2.4rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
}
.destination-single4 .desti-content .bx {
color: var(--white);
vertical-align: baseline;
margin-right: 5px;
}
.destination-single4 .desti-content span {
font-size: 1.7rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
display: inline-block;
}
@media (max-width: 991px) {
.destination-sidebar {
margin-top: 45px;
}
} .video-section {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/video-bg.png);
background-size: cover;
background-repeat: no-repeat;
padding: 120px 0px 220px 0px;
background-attachment: fixed;
background-position: center top;
}
@media (min-width: 992px) and (max-width: 1199px) {
.video-section {
padding: 120px 0px;
}
}
@media (max-width: 991px) {
.video-section {
padding: 90px 0px;
}
}
.video-section2 {
background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/video-bg3.png);
background-size: cover;
background-repeat: no-repeat;
padding: 220px 0px;
background-attachment: fixed;
}
@media (min-width: 992px) and (max-width: 1199px) {
.video-section2 {
padding: 120px 0px;
}
}
@media (max-width: 991px) {
.video-section2 {
padding: 90px 0px;
}
}
.video-section-content span {
font-size: 1.8rem;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
display: inline-block;
margin-bottom: 0px;
margin-right: 15px;
text-transform: uppercase;
}
.video-section-content h2 {
font-size: 4.2rem;
font-weight: 800;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 20px;
line-height: 1.4;
}
@media (max-width: 576px) {
.video-section-content h2 {
font-size: 4rem;
}
}
.video-section-content p, .video-section-content .info-single .info-text a, .info-single .info-text .video-section-content a {
font-size: 18px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 38px;
}
@media (max-width: 991px) {
.video-section-content {
text-align: center;
}
}
.video-section-content.sibling-2 {
text-align: center;
}
.video-section-content.sibling-2 h2 {
font-size: 4.2rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
}
.video-section-content.sibling-2 p, .video-section-content.sibling-2 .info-single .info-text a, .info-single .info-text .video-section-content.sibling-2 a {
font-size: 18px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 0px;
}
.video-play {
text-align: center;
z-index: 9;
position: relative;
}
.video-play .video-icon {
width: 45px;
height: 45px;
border-radius: 50%;
line-height: 38px;
display: inline-block;
text-align: center;
position: relative;
border: 1px solid transparent;
font-size: 30px;
color: var(--primary-color1);
background: var(--white);
}
.video-play .video-icon::before {
content: "";
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
animation: ripple-1 2s infinite ease-in-out;
z-index: -1;
}
.video-play .video-icon::after {
content: "";
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
z-index: -1;
animation: ripple-2 2s infinite ease-in-out;
animation-delay: 0.5s;
}
.video-play.sibling-2 .video-icon {
color: var(--text-primary);
background: var(--primary-color2);
}
.video-play.sibling-2 .video-icon::before {
background: var(--primary-color2);
}
.video-play.sibling-2 .video-icon::after {
background: var(--primary-color2);
}
.video-play.sibling-3 .video-icon {
color: var(--white);
background: var(--primary-color3);
}
.video-play.sibling-3 .video-icon::before {
background: var(--primary-color3);
}
.video-play.sibling-3 .video-icon::after {
background: var(--primary-color3);
}
@keyframes ripple-1 {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1.9);
opacity: 0;
}
}
@keyframes ripple-2 {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(2.1);
opacity: 0;
}
}
.video-play.sibling-4 {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
.video-wrapper {
margin-top: 40px;
}
}
.video-wrapper span.watch-video {
font-size: 16px;
font-weight: 600;
color: var(--white);
font-family: var(--font-work-sans);
position: relative;
display: inline-block;
padding-right: 60px;
transform: rotate(-90deg);
margin-right: 0px;
margin-top: 80px;
white-space: nowrap;
}
@media (max-width: 991px) {
.video-wrapper span.watch-video {
transform: rotate(0deg);
margin-top: 30px;
}
}
.video-wrapper span.watch-video::after {
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 2px;
border-radius: 30px;
background: var(--white);
right: 0;
}
.video-wrapper.sibling-2 {
position: absolute;
top: -50px;
left: 85px;
background-color: var(--white);
width: 110px;
min-height: 290px;
padding: 40px 25px;
z-index: 9;
}
@media (min-width: 992px) and (max-width: 1199px) {
.video-wrapper.sibling-2 {
top: -40px;
left: 40px;
}
}
@media (max-width: 991px) {
.video-wrapper.sibling-2 {
min-height: 110px;
left: 0px;
top: -40px;
background: transparent;
}
}
.video-wrapper.sibling-2 span.watch-video {
white-space: nowrap;
margin-top: 82px;
padding-right: 16px;
padding-bottom: 40px;
color: var(--text-primary);
white-space: nowrap;
}
.video-wrapper.sibling-2 span.watch-video::after {
content: "";
position: absolute;
top: 20%;
transform: translateY(24%);
width: 50px;
height: 2px;
border-radius: 30px;
background: var(--text-primary);
right: -45px;
}
@media (max-width: 991px) {
.video-wrapper.sibling-2 span.watch-video {
display: none;
visibility: hidden;
}
}
.video-wrapper.sibling-3 {
overflow: hidden;
position: absolute;
top: -60px;
right: 2%;
background-color: var(--white);
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.08);
width: 90px;
min-height: 290px;
padding: 40px 25px;
z-index: 9;
}
@media (min-width: 1400px) and (max-width: 1600px) {
.video-wrapper.sibling-3 {
right: 0;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.video-wrapper.sibling-3 {
top: -60px;
}
}
@media (max-width: 1399px) {
.video-wrapper.sibling-3 {
min-height: 110px;
right: 0px;
top: -60px;
background: transparent;
box-shadow: unset;
}
}
.video-wrapper.sibling-3 span.watch-video {
white-space: nowrap;
margin-top: 90px;
padding-right: 0px;
padding-bottom: 40px;
color: var(--primary-color3);
}
.video-wrapper.sibling-3 span.watch-video::after {
content: "";
position: absolute;
top: 18%;
transform: translateY(24%);
width: 50px;
height: 2px;
border-radius: 30px;
background: var(--primary-color3);
right: -60px;
}
@media (max-width: 1399px) {
.video-wrapper.sibling-3 span.watch-video {
display: none;
visibility: hidden;
}
}
.video-wrapper.sibling-4 {
width: 140px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 15%;
margin-top: 0px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.video-wrapper.sibling-4 {
right: 5%;
}
}
@media (max-width: 991px) {
.video-wrapper.sibling-4 {
right: 0%;
top: 15%;
}
.video-wrapper.sibling-4 span.watch-video {
display: none;
visibility: hidden;
}
} @media (max-width: 767px) {
.asking-form-section {
padding: 90px 0 0 0;
}
}
.asking-form-wrap {
background: #fff7f5;
padding: 45px 40px;
margin-top: -100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.asking-form-wrap {
margin-top: -40px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.asking-form-wrap {
margin-top: -20px;
}
}
@media (min-width: 576px) and (max-width: 768px) {
.asking-form-wrap {
padding: 50px 30px;
}
}
@media (max-width: 576px) {
.asking-form-wrap {
margin-top: 0px;
padding: 50px 25px;
}
}
.asking-form-wrap .style-1 input[type=submit]:hover, .asking-form-wrap .style-1 .form-inner textarea[type=submit]:hover {
border: 1px solid var(--primary-color1);
background-color: var(--white);
}
.asking-form-wrap .style-1 .form-inner input, .asking-form-wrap .style-1 .form-inner textarea {
border: 1px solid var(--border-color);
height: 50px;
line-height: 50px;
font-size: 16px;
color: var(--text-primary);
width: 100%;
background-color: #fff7f5;
padding: 0px 20px;
transition: all 0.4s ease;
}
.asking-form-wrap .style-1 .form-inner input:focus, .asking-form-wrap .style-1 .form-inner textarea:focus {
border: 1px solid var(--primary-color1);
}
.asking-form-wrap .style-1 .form-inner input::-moz-placeholder, .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder {
font-size: 14px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.asking-form-wrap .style-1 .form-inner input::placeholder, .asking-form-wrap .style-1 .form-inner textarea::placeholder {
font-size: 14px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.asking-form-wrap .style-1 .form-inner textarea {
min-height: 140px;
} .best-plan-section .swiper {
margin: -15px;
padding: 15px;
}
.best-plan-single1 {
width: 100%;
max-width: 415px;
border: 1px solid #eeeeee;
transition: all 0.6s ease;
margin-left: auto;
margin-right: auto;
}
.best-plan-single1 .content del {
font-size: 14px;
color: var(--text-light);
}
.best-plan-single1:hover {
border: 1px solid transparent;
box-shadow: 4px 3px 10px rgba(16, 33, 34, 0.06);
}
.best-plan-single1 .image {
position: relative;
}
.best-plan-single1 .image .plan-icon {
background: #ffffff;
box-shadow: 4px 3px 35px rgba(117, 117, 117, 0.15);
border-radius: 5px;
height: 60px;
width: 60px;
line-height: 60px;
text-align: center;
position: absolute;
left: 25px;
bottom: -20px;
}
.best-plan-single1 .content {
padding: 30px 25px 35px 25px;
}
@media (max-width: 991px) {
.best-plan-single1 .content {
padding: 30px 12px 30px 12px;
}
}
.best-plan-single1 .content h4 {
margin-bottom: 15px;
}
.best-plan-single1 .content h4 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
transition: all 0.5s ease;
line-height: 1.4;
}
.best-plan-single1 .content h4:hover a {
color: var(--primary-color1);
}
.best-plan-single1 .content p, .best-plan-single1 .content .info-single .info-text a, .info-single .info-text .best-plan-single1 .content a {
font-size: 2rem;
font-weight: 600;
color: var(--primary-color1);
margin-bottom: 5px;
}
.best-plan-single1 .content .best-plan-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
.best-plan-single1 .content .best-plan-meta span.duration {
font-size: 16px;
font-weight: 600;
color: var(--text-secondary);
}
.best-plan-single1 .content .best-plan-meta span.duration .bi {
font-family: var(--font-work-sans);
margin-right: 10px;
vertical-align: middle;
color: var(--primary-color1);
}
.best-plan-single1 .content .best-plan-meta span.rating {
font-size: 16px;
font-weight: 600;
color: var(--text-secondary);
}
.best-plan-single1 .content .best-plan-meta span.rating .bi {
color: var(--primary-color1);
margin: 0px 5px;
}
.best-plan-single1 .list-area {
margin-bottom: 25px;
}
.list-area h5 {
font-size: 2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 15px;
}
.list-area ul.plan-list1 {
list-style: none;
margin: 0;
padding: 0;
}
.list-area ul.plan-list1 li {
position: relative;
padding-left: 25px;
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
margin-bottom: 5px;
}
.list-area ul.plan-list1 li::before {
content: "";
position: absolute;
top: 10px;
left: 0;
width: 12px;
height: 2px;
background: var(--text-secondary);
border-radius: 30px;
}
.arrows-style-1 .swiper-prev-arrow {
height: 45px;
width: 45px;
line-height: 42px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
position: absolute;
left: -50px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-1 .swiper-prev-arrow {
left: -50px;
}
}
.arrows-style-1 .swiper-prev-arrow svg {
fill: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-1 .swiper-prev-arrow:hover {
background-color: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.arrows-style-1 .swiper-prev-arrow:hover svg {
fill: var(--white);
}
.arrows-style-1 .swiper-next-arrow {
height: 45px;
width: 45px;
line-height: 42px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
position: absolute;
right: -50px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-1 .swiper-next-arrow {
right: -50px;
}
}
.arrows-style-1 .swiper-next-arrow svg {
fill: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-1 .swiper-next-arrow:hover {
background-color: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.arrows-style-1 .swiper-next-arrow:hover svg {
fill: var(--white);
}
.arrows-style-1.sibling-1 .swiper-prev-arrow {
height: 45px;
width: 45px;
line-height: 42px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
position: absolute;
left: -50px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-1.sibling-1 .swiper-prev-arrow {
left: -50px;
}
}
.arrows-style-1.sibling-1 .swiper-prev-arrow svg {
fill: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-1.sibling-1 .swiper-prev-arrow:hover {
background-color: var(--primary-color3);
border: 1px solid var(--primary-color3);
}
.arrows-style-1.sibling-1 .swiper-prev-arrow:hover svg {
fill: var(--white);
}
.arrows-style-1.sibling-1 .swiper-next-arrow {
height: 45px;
width: 45px;
line-height: 42px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
position: absolute;
right: -50px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-1.sibling-1 .swiper-next-arrow {
right: -50px;
}
}
.arrows-style-1.sibling-1 .swiper-next-arrow svg {
fill: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-1.sibling-1 .swiper-next-arrow:hover {
background-color: var(--primary-color3);
border: 1px solid var(--primary-color3);
}
.arrows-style-1.sibling-1 .swiper-next-arrow:hover svg {
fill: var(--white);
}
.arrows-style-2 .swiper-prev-arrow {
height: 45px;
width: 45px;
line-height: 42px;
text-align: center;
border: 1px solid var(--white);
border-radius: 50%;
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-2 .swiper-prev-arrow {
left: 5px;
}
}
@media (max-width: 1199px) {
.arrows-style-2 .swiper-prev-arrow {
display: none;
visibility: hidden;
}
}
.arrows-style-2 .swiper-prev-arrow svg {
fill: var(--white);
transition: all 0.4s ease;
}
.arrows-style-2 .swiper-prev-arrow:hover {
background-color: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.arrows-style-2 .swiper-prev-arrow:hover svg {
fill: var(--white);
}
.arrows-style-2 .swiper-next-arrow {
height: 45px;
width: 45px;
line-height: 42px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-2 .swiper-next-arrow {
right: 5px;
}
}
@media (max-width: 1199px) {
.arrows-style-2 .swiper-next-arrow {
display: none;
visibility: hidden;
}
}
.arrows-style-2 .swiper-next-arrow svg {
fill: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-2 .swiper-next-arrow:hover {
background-color: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.arrows-style-2 .swiper-next-arrow:hover svg {
fill: var(--white);
}
.arrows-style-2.sibling-2 .swiper-prev-arrow:hover {
background-color: var(--primary-color2);
border: 1px solid var(--primary-color2);
}
.arrows-style-2.sibling-2 .swiper-prev-arrow:hover svg {
fill: var(--white);
}
.arrows-style-2.sibling-2 .swiper-next-arrow:hover {
background-color: var(--primary-color2);
border: 1px solid var(--primary-color2);
}
.arrows-style-2.sibling-2 .swiper-next-arrow:hover svg {
fill: var(--white);
}
.arrows-style-2.sibling-3 .swiper-prev-arrow {
height: 30px;
width: 30px;
line-height: 30px;
text-align: center;
border: 1px solid var(--white);
border-radius: 0;
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
z-index: 9;
}
.arrows-style-2.sibling-3 .swiper-prev-arrow i {
color: var(--white);
}
.arrows-style-2.sibling-3 .swiper-prev-arrow:hover {
background-color: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.arrows-style-2.sibling-3 .swiper-prev-arrow:hover svg {
fill: var(--white);
}
.arrows-style-2.sibling-3 .swiper-next-arrow {
height: 30px;
width: 30px;
line-height: 30px;
text-align: center;
border: 1px solid var(--white);
border-radius: 0;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
z-index: 9;
}
.arrows-style-2.sibling-3 .swiper-next-arrow i {
color: var(--white);
}
.arrows-style-2.sibling-3 .swiper-next-arrow:hover {
background-color: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.arrows-style-2.sibling-3 .swiper-next-arrow:hover svg {
fill: var(--white);
}
.arrows-style-3 .swiper-prev-arrow {
height: 42px;
width: 42px;
line-height: 43px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
position: absolute;
left: 2%;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-3 .swiper-prev-arrow {
left: 10px;
}
}
.arrows-style-3 .swiper-prev-arrow i {
font-size: 34px;
margin-right: -32px;
color: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-3 .swiper-prev-arrow:hover {
border: 1px solid var(--primary-color2);
}
.arrows-style-3 .swiper-prev-arrow:hover i {
color: var(--primary-color2);
margin-right: 0px;
}
.arrows-style-3 .swiper-next-arrow {
height: 42px;
width: 42px;
line-height: 43px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
position: absolute;
right: 2%;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease;
z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-3 .swiper-next-arrow {
right: 10px;
}
}
.arrows-style-3 .swiper-next-arrow i {
font-size: 34px;
margin-left: -28px;
color: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-3 .swiper-next-arrow:hover {
border: 1px solid var(--primary-color2);
}
.arrows-style-3 .swiper-next-arrow:hover i {
color: var(--primary-color2);
margin-left: 0px;
}
.arrows-style-3.sibling-2 .swiper-prev-arrow:hover {
border: 1px solid var(--primary-color1);
}
.arrows-style-3.sibling-2 .swiper-prev-arrow:hover i {
color: var(--primary-color1);
margin-right: 0px;
}
.arrows-style-3.sibling-2 .swiper-next-arrow:hover {
border: 1px solid var(--primary-color1);
}
.arrows-style-3.sibling-2 .swiper-next-arrow:hover i {
color: var(--primary-color1);
margin-right: 0px;
}
.arrows-style-4 .swiper-prev-arrow {
height: 42px;
width: 42px;
line-height: 43px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
transition: all 0.4s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-4 .swiper-prev-arrow {
left: 10px;
}
}
.arrows-style-4 .swiper-prev-arrow i {
font-size: 34px;
margin-right: -32px;
color: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-4 .swiper-prev-arrow:hover {
border: 1px solid var(--primary-color2);
}
.arrows-style-4 .swiper-prev-arrow:hover i {
color: var(--primary-color2);
margin-right: 0px;
}
.arrows-style-4 .swiper-next-arrow {
height: 42px;
width: 42px;
line-height: 43px;
text-align: center;
border: 1px solid var(--border-color);
border-radius: 50%;
transition: all 0.4s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.arrows-style-4 .swiper-next-arrow {
right: 10px;
}
}
.arrows-style-4 .swiper-next-arrow i {
font-size: 34px;
margin-left: -28px;
color: var(--border-color);
transition: all 0.4s ease;
}
.arrows-style-4 .swiper-next-arrow:hover {
border: 1px solid var(--primary-color2);
}
.arrows-style-4 .swiper-next-arrow:hover i {
color: var(--primary-color2);
margin-left: 0px;
}
.arrows-style-4.sibling-2 .swiper-prev-arrow {
border: none;
}
.arrows-style-4.sibling-2 .swiper-prev-arrow img {
transition: all 0.5s ease;
}
.arrows-style-4.sibling-2 .swiper-prev-arrow:hover img {
padding-right: 15px;
}
.arrows-style-4.sibling-2 .swiper-next-arrow {
border: none;
}
.arrows-style-4.sibling-2 .swiper-next-arrow img {
transition: all 0.5s ease;
}
.arrows-style-4.sibling-2 .swiper-next-arrow:hover img {
padding-left: 15px;
} .counter-wrapper {
background: #ffffff;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
padding: 20px;
}
.counter-single {
padding: 25px 0px;
}
.counter-single svg {
fill: var(--primary-color1);
transition: all 0.5s ease;
}
.counter-single:hover svg {
transform: scale(1.2);
}
.counter-single .counter-icon {
margin-bottom: 12px;
}
.counter-single .coundown .counter-icon {
margin-bottom: 30px;
}
.counter-single .coundown h3 {
font-size: 3.6rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 5px;
display: inline-block;
}
.counter-single .coundown p, .counter-single .coundown .info-single .info-text a, .info-single .info-text .counter-single .coundown a {
margin-bottom: 0;
font-size: 2.2rem;
font-weight: 500;
color: var(--text-secondary);
line-height: 1.3;
}
.counter-single.sibling-2 {
background-color: var(--white);
position: relative;
z-index: 1;
}
.counter-single.sibling-2 svg {
fill: var(--primary-color2) !important;
}
.counter-single.sibling-3 {
background: linear-gradient(152.97deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
-webkit-backdrop-filter: blur(42px);
backdrop-filter: blur(42px);
position: relative;
z-index: 2;
width: 100%;
max-width: 220px;
margin: 0 auto;
border: 1px solid rgba(23, 179, 132, 0.25);
transition: all 0.6s ease;
}
@media (max-width: 991px) {
.counter-single.sibling-3 {
max-width: unset;
}
}
.counter-single.sibling-3:hover {
border: 1px solid rgba(255, 255, 255, 0.35);
}
.counter-single.sibling-3 .counter-icon {
margin-bottom: 5px;
}
.counter-single.sibling-3 .coundown .bi {
font-size: 40px;
color: var(--white);
font-weight: 800;
}
.counter-single.sibling-3 .coundown h3 {
font-size: 3.6rem;
font-weight: 800;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 0;
}
@media (max-width: 576px) {
.counter-single.sibling-3 .coundown h3 {
font-size: 3.4rem;
font-weight: 800;
color: var(--white);
}
}
.counter-single.sibling-3 .coundown p, .counter-single.sibling-3 .coundown .info-single .info-text a, .info-single .info-text .counter-single.sibling-3 .coundown a {
color: var(--white);
margin-bottom: 0;
margin-top: -5px;
}
.partner-single {
text-align: center;
}
.partner-single img {
vertical-align: middle;
filter: grayscale(0);
opacity: 1;
transition: all 0.45s ease;
}
.partner-single img:hover {
filter: grayscale(1);
opacity: 0.8;
}
.partner-single.sibling-2 img {
vertical-align: middle;
filter: grayscale(1);
opacity: 0.8;
transition: all 0.45s ease;
}
.partner-single.sibling-2 img:hover {
filter: grayscale(0);
opacity: 1;
}
.insta-feed-single {
max-width: 600px;
margin: 0 auto;
text-align: center;
}
.section-title-small {
margin-bottom: 40px;
margin-top: -8px;
}
.section-title-small i {
font-size: 22px;
color: var(--text-secondary);
}
.section-title-small span {
font-size: 3rem;
font-weight: 600;
color: var(--text-secondary);
padding-left: 18px;
}
.section-title4 {
text-align: center;
margin-bottom: 60px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.section-title4 span {
display: block;
font-family: var(--font-work-sans);
font-size: 1.8rem;
font-weight: 400;
color: var(--text-secondary);
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 3px;
}
.section-title4 h2 {
font-size: 4.2rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 15px;
margin-top: -7px;
display: inline-block;
font-family: var(--font-merriw);
}
.section-title4 img {
max-width: 370px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.section-title4.sibling2 span {
display: block;
font-family: var(--font-work-sans);
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color1);
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 3px;
}
.section-title4.sibling2 h2 {
font-size: 4.2rem;
font-weight: 600;
color: var(--white);
margin-bottom: 15px;
margin-top: -7px;
display: inline-block;
font-family: var(--font-merriw);
}
.section-title4.sibling3 span {
display: block;
font-family: var(--font-work-sans);
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color1);
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 3px;
}
.section-title4.sibling3 h2 {
font-size: 4.2rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 15px;
margin-top: -7px;
display: inline-block;
font-family: var(--font-merriw);
}
.counter-section5 {
position: relative;
height: auto;
}
.counter-section5 .counter5-bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
right: 0;
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
} .tour-place-section {
overflow: hidden;
}
.tour-card-wrapper {
width: 100%;
max-width: 1400px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-end;
flex-wrap: wrap;
gap: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
.tour-card-wrapper {
align-items: center;
}
}
.tour-card-wrapper .col-equal {
width: calc(33.33% - 30px);
height: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
.tour-card-wrapper .col-equal {
width: 40%;
}
}
@media (max-width: 767px) {
.tour-card-wrapper .col-equal {
width: 100%;
}
}
.tour-card-alpha {
transition: all 0.5s ease;
}
.tour-card-alpha:hover .tour-badge {
background: var(--primary-color2);
}
.tour-card-alpha img {
width: 100%;
}
.tour-card-beta {
position: relative;
transition: all 0.5s ease;
}
.tour-card-beta:hover .tour-badge {
background: var(--primary-color2);
}
.tour-card-beta img {
width: 100%;
}
.tour-card-gamma {
transition: all 0.5s ease;
}
.tour-card-gamma:hover .tour-badge {
background: var(--primary-color2);
}
.tour-card-gamma img {
width: 100%;
}
.tour-card-delta {
transition: all 0.5s ease;
}
.tour-card-delta:hover .tour-badge {
background: var(--primary-color2);
}
.tour-card-delta img {
width: 100%;
}
.tour-badge {
background: #ffffff;
padding: 20px;
border-radius: 50%;
text-align: center;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
width: 100%;
max-width: 200px;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: -100px;
position: relative;
transition: all 0.5s ease;
}
@media (max-width: 576px) {
.tour-badge {
width: 100%;
max-width: 160px;
min-height: 160px;
}
}
.tour-badge h5 {
font-size: 2.2rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 8px;
line-height: 1.4;
}
.tour-badge p, .tour-badge .info-single .info-text a, .info-single .info-text .tour-badge a {
font-size: 16px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
margin-bottom: 5px;
}
.tour-badge span {
display: inline-block;
border-radius: 30px;
width: 34px;
height: 2px;
background: var(--text-primary);
}
.tour-badge.sibling-2 {
position: absolute;
bottom: 30%;
right: -70px;
z-index: 99;
}
@media (min-width: 992px) and (max-width: 1199px) {
.tour-badge.sibling-2 {
right: 20px;
bottom: 20px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.tour-badge.sibling-2 {
right: 20px;
bottom: 20px;
}
}
@media (max-width: 767px) {
.tour-badge.sibling-2 {
position: relative;
}
}
@media (max-width: 1600px) {
.tour-badge.sibling-2 {
right: 0px;
}
}
.footer-section {
background-image: linear-gradient(rgba(9, 16, 13, 0.88), rgba(9, 16, 13, 0.88)), url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/footer1-bg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center bottom;
position: relative;
padding: 0px 10px;
}
.footer-section .footer-plane1 {
position: absolute;
right: 2%;
top: 10%;
animation: jump 1s linear infinite alternate;
}
.footer-section .footer-plane1 svg {
fill: var(--primary-color1);
}
@media (max-width: 1199px) {
.footer-section .footer-plane1 {
display: none;
visibility: none;
}
}
@keyframes jump {
0% {
transform: translateY(0px);
}
25% {
transform: translateY(-10px);
}
50% {
transform: translateY(0px);
}
70% {
transform: translateY(10px);
}
100% {
transform: translateY(0px);
}
}
.footer-section .footer-plane2 {
position: absolute;
left: 4%;
top: 10%;
}
.footer-section .footer-plane2 svg {
fill: var(--primary-color1);
}
@media (max-width: 991px) {
.footer-section .footer-plane2 {
display: none;
visibility: none;
}
}
.footer-section::before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: #292b31;
z-index: -2;
}
.footer-section .footer-about {
background-color: rgba(17, 17, 17, 0.9);
padding: 25px;
border-radius: 50%;
position: relative;
overflow: hidden;
max-width: 280px;
margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 991px) {
.footer-section .footer-about {
max-width: 220px;
margin: 0 auto;
}
}
@media (min-width: 576px) and (max-width: 768px) {
.footer-section .footer-about {
max-width: 220px;
margin: 0 auto;
}
}
@media (max-width: 576px) {
.footer-section .footer-about {
margin-bottom: 20px;
}
}
@media (max-width: 1199px) {
.footer-section .footer-about {
padding: 20px;
}
}
.footer-section .footer-about .footer-plane {
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 40px;
opacity: 0.1;
}
.footer-section .footer-about .footer1-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.footer-section .footer-about .footer1-logo p, .footer-section .footer-about .footer1-logo .info-single .info-text a, .info-single .info-text .footer-section .footer-about .footer1-logo a {
font-size: 16px;
font-weight: 400;
color: var(--primary-color1);
font-family: var(--font-work-sans);
margin-bottom: 0;
margin-top: 10px;
}
@media (max-width: 1199px) {
.footer-section .footer-about .footer1-logo img {
max-width: 130px;
width: 100%;
}
}
.footer-section .footer-about svg {
animation: rotate 15s linear infinite;
}
.footer-section .footer-about svg path {
fill: #fff;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.footer-section .pay-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
justify-content: start;
gap: 15px;
}
.footer-section .footer-top {
padding: 90px 0px;
}
.footer-section .footer-meta {
margin-top: 70px;
}
@media (max-width: 576px) {
.footer-section .footer-meta {
margin-top: 50px;
}
}
.footer-section .footer-meta h4 {
font-size: 2rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
margin-right: 20px;
margin-bottom: 0px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.footer-section .footer-meta h4 {
margin-right: 10px;
font-size: 2rem;
}
}
@media (max-width: 576px) {
.footer-section .footer-meta h4 {
display: none;
visibility: hidden;
}
}
.footer-section .footer-social {
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
gap: 20px;
margin-bottom: 0px;
}
.footer-section .footer-social i {
border: 1px solid #5e5e5e;
width: 30px;
height: 30px;
line-height: 28px;
color: var(--white);
background: #0f1012;
text-align: center;
font-size: 14px;
border-radius: 50%;
transition: all 0.5s ease-out 0s;
}
.footer-section .footer-social i:hover {
background: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.footer-section .footer-item h3 {
font-size: 2.4rem;
font-weight: 500;
color: var(--white);
margin-bottom: 25px;
font-family: var(--font-merriw);
position: relative;
padding-bottom: 10px;
}
.footer-section .footer-item h3::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
border-radius: 30px;
display: block;
background: linear-gradient(90deg, var(--primary-color1), transparent);
}
.footer-section .footer-item ul {
margin: 0;
padding: 0;
list-style: none;
}
.footer-section .footer-item ul li {
margin-bottom: 15px;
padding-left: 0px;
transition: all 0.55s ease;
position: relative;
}
.footer-section .footer-item ul li::after {
content: "";
position: absolute;
top: 12px;
left: 0;
width: 8px;
height: 2px;
display: block;
background: var(--primary-color1);
opacity: 0;
transition: all 0.55s ease;
}
.footer-section .footer-item ul li:last-child {
margin-bottom: 0;
}
.footer-section .footer-item ul li:hover {
padding-left: 15px;
}
.footer-section .footer-item ul li:hover::after {
content: "";
opacity: 1;
}
.footer-section .footer-item ul li:hover a {
color: var(--primary-color1);
}
.footer-section .footer-item ul a {
font-size: 17px;
font-weight: 400;
font-family: var(--font-work-sans);
color: var(--border-color);
transition: all 0.4s ease;
color: rgb(215, 211, 211);
margin: 0;
padding: 0;
}
.footer-section .footer-item .contact-list {
list-style: none;
margin: 0;
padding: 0;
}
.footer-section .footer-item .contact-list li {
display: flex;
align-items: center;
justify-content: flex-start;
margin-bottom: 15px;
gap: 12px;
}
.footer-section .footer-item .contact-list li:hover .icon .bi {
background: var(--primary-color1);
color: var(--white);
}
.footer-section .footer-item .contact-list li:last-child {
margin-bottom: 0px;
}
.footer-section .footer-item .contact-list li:hover {
padding: 0;
}
.footer-section .footer-item .contact-list li:after {
content: none !important;
}
.footer-section .footer-item .contact-list li .icon .bi {
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 50%;
border: 1px solid var(--primary-color1);
color: var(--primary-color1);
display: block;
transition: all 0.45s ease;
font-size: 16px;
}
.footer-section .footer-item .contact-list li .text {
color: var(--border-color);
}
.footer-section .footer-item .contact-list li .text a {
display: block;
margin-bottom: 3px;
}
.footer-section .footer-bottom {
padding: 16px 0px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-section .footer-bottom p, .footer-section .footer-bottom .info-single .info-text a, .info-single .info-text .footer-section .footer-bottom a {
font-size: 14px;
font-weight: 400;
font-family: var(--font-exo);
color: var(--white);
margin-bottom: 0;
margin-right: 30px;
}
@media (max-width: 991px) {
.footer-section .footer-bottom p, .footer-section .footer-bottom .info-single .info-text a, .info-single .info-text .footer-section .footer-bottom a {
margin-right: 0px;
}
}
.footer-section .footer-bottom p a, .footer-section .footer-bottom .info-single .info-text a a, .info-single .info-text .footer-section .footer-bottom a a {
font-size: 13px;
font-weight: 500;
color: var(--primary-color1);
}
.footer-section .footer-bottom .footer-logo-list {
margin: 0;
padding: 0;
list-style: none;
display: inline-flex;
}
.footer-section .footer-bottom .footer-logo-list li {
margin-right: 20px;
}
.footer-section .footer-bottom .footer-logo-list li img {
transition: all 0.6s ease;
}
.footer-section .footer-bottom .footer-logo-list li:last-child {
margin-right: 0px;
}
.footer-section .footer-bottom .footer-logo-list li:hover img {
transform: rotate(360deg);
}
.footer-section .footer-bottom .f-bottom-list {
margin: 0;
padding: 0;
list-style: none;
}
.footer-section .footer-bottom .f-bottom-list li:first-child a {
position: relative;
padding-right: 15px;
margin-right: 15px;
}
.footer-section .footer-bottom .f-bottom-list li:first-child a::after {
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 2px;
height: 15px;
background: var(--white);
}
.footer-section .footer-bottom .f-bottom-list a {
font-size: 14px;
font-weight: 500;
color: var(--white);
transition: all 0.42s ease;
}
.footer-section .footer-bottom .f-bottom-list a:hover {
color: var(--primary-color1);
}
.footer-section.sibling-2 .footer1-logo p, .footer-section.sibling-2 .footer1-logo .info-single .info-text a, .info-single .info-text .footer-section.sibling-2 .footer1-logo a {
font-size: 16px;
font-weight: 400;
color: var(--primary-color2);
}
.footer-section.sibling-2 .footer-item h4 {
font-weight: 500;
}
.footer-section.sibling-2 .footer-item h4::after {
content: "";
background: linear-gradient(90deg, var(--primary-color2), transparent);
}
.footer-section.sibling-2 .link-list li:hover a {
color: var(--primary-color2);
}
.footer-section.sibling-2 .link-list li::after {
background: var(--primary-color2);
}
.footer-section.sibling-2 .link-list a {
color: var(--border-color);
}
.footer-section.sibling-2 .contact-list li .icon .bi {
border: 1px solid var(--primary-color2);
color: var(--primary-color2);
}
.footer-section.sibling-2 .contact-list li:hover .icon .bi {
background: var(--primary-color2);
color: var(--white);
}
.footer-section.sibling-2 .footer-social i:hover {
background: var(--primary-color2);
border: 1px solid var(--primary-color2);
color: var(--text-primary);
}
.footer-section.sibling-2 .footer-bottom p .egns-lab, .footer-section.sibling-2 .footer-bottom .info-single .info-text a .egns-lab, .info-single .info-text .footer-section.sibling-2 .footer-bottom a .egns-lab {
color: var(--primary-color2);
}
.footer-section.sibling-2 .footer-bottom .f-bottom-list a:hover {
color: var(--primary-color2);
}
.footer-section.sibling-3 .footer1-logo p, .footer-section.sibling-3 .footer1-logo .info-single .info-text a, .info-single .info-text .footer-section.sibling-3 .footer1-logo a {
font-size: 16px;
font-weight: 400;
color: var(--primary-color3);
}
.footer-section.sibling-3 .footer-item h4::after {
content: "";
background: linear-gradient(90deg, var(--primary-color3), transparent);
}
.footer-section.sibling-3 .link-list li:hover a {
color: var(--primary-color3);
}
.footer-section.sibling-3 .link-list li::after {
background: var(--primary-color3);
}
.footer-section.sibling-3 .link-list a {
color: var(--border-color);
}
.footer-section.sibling-3 .contact-list li .icon .bi {
border: 1px solid var(--primary-color3);
color: var(--primary-color3);
}
.footer-section.sibling-3 .contact-list li:hover .icon .bi {
background: var(--primary-color3);
color: var(--white);
}
.footer-section.sibling-3 .footer-social i:hover {
background: var(--primary-color3);
border: 1px solid var(--primary-color3);
color: var(--text-primary);
}
.footer-section.sibling-3 .footer-bottom p .egns-lab, .footer-section.sibling-3 .footer-bottom .info-single .info-text a .egns-lab, .info-single .info-text .footer-section.sibling-3 .footer-bottom a .egns-lab {
color: var(--primary-color3);
}
.footer-section.sibling-3 .footer-bottom .f-bottom-list a:hover {
color: var(--primary-color3);
} .blog-single1 {
overflow: hidden;
position: relative;
max-width: 470px;
margin: 0px auto;
margin-top: 40px;
}
.blog-single1 .image {
position: relative;
}
.blog-single1 .image span.blog-date {
position: absolute;
left: 20px;
bottom: 20px;
font-size: 15px;
font-weight: 500;
color: var(--text-primary);
background: var(--white);
padding: 6px 12px;
}
@media (max-width: 576px) {
.blog-single1 .image image {
width: 100%;
}
}
.blog-single1 .content {
padding-top: 24px;
}
.blog-single1 .content h4 {
margin-bottom: 15px;
}
.blog-single1 .content h4 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.45;
transition: all 0.4s ease;
}
.blog-single1 .content h4 a:hover {
color: var(--primary-color1);
}
.blog-single1 .content i {
margin-left: 5px;
vertical-align: baseline;
}
.blog-single2 {
overflow: hidden;
position: relative;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
}
.blog-single2:hover .image img {
transform: scale(1.1) rotate(2deg);
}
.blog-single2 .image {
position: relative;
overflow: hidden;
}
.blog-single2 .image img {
transition: all 0.6s ease;
}
@media (max-width: 576px) {
.blog-single2 .image img {
width: 100%;
}
}
.blog-single2 .image span.blog-category {
position: absolute;
left: 25px;
top: 25px;
font-size: 14px;
font-weight: 500;
color: var(--white);
background: var(--text-primary);
padding: 6px 12px;
}
.blog-single2 .content {
padding: 30px 20px;
text-align: center;
}
.blog-single2 .content h5 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.45;
transition: all 0.4s ease;
}
.blog-single2 .content h5 a:hover {
color: var(--primary-color1);
}
.blog-single2 .content .blog-date {
margin-top: 15px;
}
.blog-single2 .content .blog-date i {
font-size: 13px;
color: var(--text-secondary);
}
.blog-single2 .content .blog-date span {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
display: inline-block;
padding-left: 10px;
}
.blog-single2.sibling-2 {
box-shadow: unset;
overflow: unset;
margin-bottom: 25px;
}
.blog-single2.sibling-2:hover .content {
background: #fff7f5;
}
.blog-single2.sibling-2:hover .content h5 a {
color: var(--primary-color3);
}
.blog-single2.sibling-2:hover .content a .bi {
background: var(--primary-color3);
color: var(--white);
}
.blog-single2.sibling-2 .image img {
min-height: 330px;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
.blog-single2.sibling-2 .image img {
min-height: 300px;
}
}
@media (max-width: 991px) {
.blog-single2.sibling-2 .image img {
min-height: 280px;
}
}
.blog-single2.sibling-2 .content {
width: 90%;
background-color: var(--white);
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
margin: -90px auto 0 auto;
z-index: 1;
position: relative;
transition: all 0.55s ease;
position: relative;
padding: 30px 20px 40px 20px;
}
.blog-single2.sibling-2 .content .blog-date {
margin-top: 0;
margin-bottom: 5px;
}
.blog-single2.sibling-2 .content h5 a {
font-size: 2.4rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.45;
transition: all 0.4s ease;
}
.blog-single2.sibling-2 .content > a .bi {
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
border-radius: 50%;
border: 1px solid var(--primary-color3);
color: var(--primary-color3);
display: inline-block;
position: absolute;
bottom: -25px;
left: 50%;
transform: translateX(-50%);
font-size: 30px;
font-weight: 600;
background-color: var(--white);
transition: all 0.5s ease;
}
.blog-single2.sibling-3 {
box-shadow: unset;
overflow: unset;
}
.blog-single2.sibling-3 .image img {
min-height: 330px;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
.blog-single2.sibling-3 .image img {
min-height: 300px;
}
}
@media (max-width: 991px) {
.blog-single2.sibling-3 .image img {
min-height: 280px;
}
}
.blog-single2.sibling-3 .content {
width: 90%;
background-color: var(--white);
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
margin: -45px auto 0 auto;
z-index: 1;
position: relative;
transition: all 0.55s ease;
position: relative;
padding: 30px 20px;
}
.blog-single2.sibling-3 .content .blog-date {
margin-top: 0;
margin-bottom: 8px;
}
.blog-single2.sibling-3 .content h5 {
margin-bottom: 15px;
}
.blog-single2.sibling-3 .content h5 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.45;
transition: all 0.45s ease;
}
.blog-single2.sibling-3 .content h5 a:hover {
color: var(--primary-color1);
}
.blog-single2.sibling-4 {
box-shadow: unset;
overflow: unset;
}
.blog-single2.sibling-4 .image {
position: relative;
}
.blog-single2.sibling-4 .image .blog-date {
position: absolute;
left: 0px;
top: 20px;
background-color: var(--white);
padding: 5px 15px;
}
.blog-single2.sibling-4 .image .blog-date .bi {
margin-right: 8px;
}
.blog-single2.sibling-4 .image img {
min-height: 330px;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
.blog-single2.sibling-4 .image img {
min-height: 300px;
}
}
@media (max-width: 991px) {
.blog-single2.sibling-4 .image img {
min-height: 280px;
}
}
.blog-single2.sibling-4 .content {
background-color: var(--white);
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
z-index: 1;
position: relative;
transition: all 0.55s ease;
position: relative;
padding: 25px 20px;
text-align: left;
}
.blog-single2.sibling-4 .content .blog-date {
margin-top: 0;
margin-bottom: 8px;
}
.blog-single2.sibling-4 .content span.tour-category {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
display: block;
margin-bottom: 5px;
}
.blog-single2.sibling-4 .content h5 {
margin-bottom: 15px;
}
.blog-single2.sibling-4 .content h5 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.45;
transition: all 0.45s ease;
}
.blog-single2.sibling-4 .content h5 a:hover {
color: var(--primary-color1);
}
.blog-single2.sibling-5 .content h5 a:hover {
color: var(--primary-color1);
}
.blog-single3 {
overflow: hidden;
position: relative;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
max-width: 440px;
margin-left: auto;
margin-right: auto;
}
.blog-single3:hover .image img {
transform: scale(1.1);
}
.blog-single3:hover .image span.blog-date {
font-size: 15px;
font-weight: 500;
color: var(--white);
background: var(--text-primary);
}
.blog-single3:hover .image span.blog-date .bi {
color: var(--white);
font-size: 14px;
margin-right: 8px;
}
.blog-single3 .image {
position: relative;
overflow: hidden;
}
.blog-single3 .image img {
transition: all 0.55s ease;
}
.blog-single3 .image span.blog-date {
position: absolute;
left: 20px;
bottom: 20px;
font-size: 15px;
font-weight: 500;
color: var(--text-secondary);
background: var(--white);
padding: 6px 12px;
transition: all 0.45s ease;
}
.blog-single3 .image span.blog-date .bi {
color: var(--text-secondary);
font-size: 14px;
margin-right: 8px;
}
.blog-single3 .content {
background: #ffffff;
padding: 25px 25px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.blog-single3 .content {
padding: 20px;
}
}
.blog-single3 .content span.category {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 8px;
display: inline-block;
}
.blog-single3 .content h4 {
margin-bottom: 25px;
}
.blog-single3 .content h4 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.45;
transition: all 0.4s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.blog-single3 .content h4 a {
font-size: 2.2rem;
}
}
.blog-single3 .content h4 a:hover {
color: var(--text-secondary);
}
.blog-single3 .content i {
margin-left: 5px;
vertical-align: baseline;
}
.read-more-btn {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
transition: all 0.4s ease;
font-family: var(--font-work-sans);
position: relative;
padding-bottom: 5px;
display: inline-flex;
margin-top: 0px;
transition: all 0.55s ease;
transform: translateY(0px);
transition: all 0.4s ease;
}
.read-more-btn i {
margin-left: 10px;
}
.read-more-btn::after {
content: "";
width: 100%;
height: 1px;
border-bottom: 1px dashed #5e5e5e;
position: absolute;
left: 0;
bottom: 0;
transition: all 0.55s ease;
}
.read-more-btn:hover {
color: var(--primary-color1);
}
.read-more-btn:hover::after {
border-bottom: 1px dashed var(--primary-color1);
}
.read-more-btn.sibling-2 {
border: 1px solid #5e5e5e;
padding-bottom: unset;
padding: 8px 20px;
}
.read-more-btn.sibling-2::after {
content: unset;
}
.read-more-btn.sibling-2:hover {
background-color: var(--primary-color2);
color: var(--text-primary);
border: 1px solid var(--primary-color2);
}
h3.blog-details-subtitle {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.7;
margin-bottom: 10px;
}
.blog-details-single {
margin-bottom: 40px;
overflow: hidden;
}
.blog-details-single > img {
margin-bottom: 30px;
}
.blog-details-single p, .blog-details-single .info-single .info-text a, .info-single .info-text .blog-details-single a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
line-height: 1.7;
margin-bottom: 20px;
}
.blog-details-single blockquote {
background: #fff7f5;
padding: 40px 45px;
position: relative;
margin: 30px 0px;
}
.blog-details-single blockquote h4 {
font-size: 2.4rem;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-merriw);
font-style: italic;
line-height: 1.5;
}
.blog-details-single blockquote .quote-icon {
position: absolute;
right: 50px;
bottom: -12px;
width: 60px;
height: 60px;
line-height: 60px;
text-align: center;
border-radius: 50%;
border: 1px solid var(--primary-color1);
}
.blog-details-single blockquote .quote-icon svg {
fill: var(--primary-color1);
}
.blog-details-single .details-img-group {
margin-top: 0px;
margin-bottom: 35px;
}
.blog-details-single .blog-details-feature-list {
margin-bottom: 20px;
}
.blog-details-single .blog-details-feature-list li {
font-size: 18px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 12px;
}
.blog-details-single .blog-details-feature-list li:last-child {
margin-bottom: 0px;
}
.blog-details-single .blog-details-feature-list li::marker {
color: var(--primary-color1);
font-size: 24px;
}
.blog-share-area {
border-bottom: 1px solid #eeeeee;
padding-bottom: 15px;
}
.blog-share-area .blog-share {
overflow: hidden;
height: 24px;
cursor: pointer;
}
@media (max-width: 576px) {
.blog-share-area .blog-share {
margin: 10px 0 15px;
}
}
.blog-share-area .blog-share:hover .front {
transform: translateY(-24px);
}
.blog-share-area .blog-share:hover .back {
transform: translateY(-24px);
}
.blog-share-area .blog-share .front {
text-align: end;
transition: all 0.62s ease-in-out;
}
@media (max-width: 576px) {
.blog-share-area .blog-share .front {
text-align: center;
}
}
.blog-share-area .blog-share .front img {
vertical-align: baseline;
}
.blog-share-area .blog-share .front span {
text-transform: uppercase;
font-size: 1.6rem;
font-weight: 500;
color: var(--text-color);
display: inline-block;
margin-bottom: 0px;
margin-left: 5px;
}
.blog-share-area .blog-share .back {
text-align: end;
transition: all 0.62s ease-in-out;
}
@media (max-width: 576px) {
.blog-share-area .blog-share .back {
text-align: center;
}
}
.blog-share-area .blog-share .back .share-list {
margin: 0;
padding: 0;
list-style: none;
}
@media (max-width: 576px) {
.blog-share-area .blog-share .back .share-list {
justify-content: center !important;
}
}
.blog-share-area .blog-share .back .share-list a i {
color: var(--text-color2);
transition: all 0.35s ease-in-out;
height: 20px;
}
.blog-share-area .blog-share .back .share-list a:hover i {
color: var(--primary-color1);
}
.blog-tag-area {
display: flex;
justify-content: start;
align-items: center;
flex-wrap: wrap;
width: 100%;
}
.blog-tag-area h6 {
font-size: 15px;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin: 0;
}
.blog-tag-area a {
margin: 0 10px;
font-size: 17px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
transition: all 0.4s ease;
}
.blog-tag-area a:hover {
color: var(--primary-color1);
}
.blog-details-author {
padding: 25px;
margin: 70px 5px 5px;
display: flex;
align-items: center;
gap: 25px;
flex-wrap: nowrap;
background-color: #ffffff;
justify-content: flex-start;
border: 1.5px solid #eeeeee;
}
@media (max-width: 991px) {
.blog-details-author {
flex-wrap: wrap;
justify-content: center;
text-align: center;
}
}
.blog-details-author .author-image img {
max-height: 100px;
max-width: 100px;
border-radius: 50%;
}
.blog-details-author .author-content h5 {
font-size: 2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 10px;
}
.blog-details-author .author-content p, .blog-details-author .author-content .info-single .info-text a, .info-single .info-text .blog-details-author .author-content a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.blog-details-author .author-content .blog-author-social {
list-style: none;
margin: 0;
padding: 0;
margin-top: 10px;
}
.blog-details-author .author-content .blog-author-social li i {
color: var(--primary-color1);
transition: all 0.45s ease;
}
.blog-details-author .author-content .blog-author-social li i:hover {
transform: scale(1.1);
}
.post-formate-quote blockquote {
background: #fff7f5;
padding: 40px 45px;
position: relative;
margin: 30px 0px;
font-size: 2.4rem;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-merriw);
font-style: italic;
line-height: 1.8;
}
.post-formate-quote blockquote .quote-icon {
position: absolute;
right: 50px;
bottom: -12px;
width: 60px;
height: 60px;
line-height: 60px;
text-align: center;
border-radius: 50%;
border: 1px solid var(--primary-color1);
}
.post-formate-quote blockquote .quote-icon svg {
fill: var(--primary-color1);
}
.blog-thum-image {
margin-bottom: 20px;
}
.post-video iframe {
min-height: 480px;
height: 100%;
}
.post-audio .post-media iframe {
height: 100%;
min-height: 340px;
}
.blog-details .post-audio,
.blog-details .post-video {
margin-bottom: 20px;
}
.comment-area .comment-list {
padding: 0px;
margin: 35px 0 0 0;
list-style: none;
}
.comment-area .comment-list #respond.comment-respond {
background: #ffffff;
border: 1.5px solid #eeeeee;
padding: 40px;
margin: 0 0 40px 0px;
}
.comment-area .comment-list #respond.comment-respond h3#reply-title {
display: flex;
justify-content: space-between;
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.7;
margin-bottom: 10px;
}
.comment-area .comment-list #respond.comment-respond h3#reply-title a#cancel-comment-reply-link {
font-size: 16px;
color: var(--primary-color1);
}
.comment-area .comment-list #respond.comment-respond textarea {
background: none;
}
.comment-area .comment-list .single-comment {
border-radius: 5px;
border-bottom: 1px solid #eeeeee;
padding-bottom: 30px;
display: flex;
justify-content: start;
align-items: start;
flex-direction: row;
flex-wrap: nowrap;
margin-bottom: 35px;
gap: 20px;
}
@media (max-width: 991px) {
.comment-area .comment-list .single-comment {
flex-wrap: wrap;
}
}
.comment-area .comment-list .single-comment .image img {
border-radius: 90%;
min-width: 70px;
}
.comment-area .comment-list .comment-meta {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: nowrap;
gap: 10px;
margin-bottom: 15px;
}
@media (max-width: 576px) {
.comment-area .comment-list .comment-meta {
gap: 5px;
flex-wrap: wrap;
}
}
.comment-area .comment-list .comment-meta h5 {
font-size: 2rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-right: 0px;
}
.comment-area .comment-list .comment-meta span {
font-size: 14px;
font-weight: 500;
color: var(--text-color2);
}
.comment-area .comment-list .content p, .comment-area .comment-list .content .info-single .info-text a, .info-single .info-text .comment-area .comment-list .content a {
font-size: 16px;
font-weight: 400;
line-height: 1.8;
}
.comment-area .comment-list .content .reply-btn a {
font-size: 17px;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
padding-bottom: 3px;
border-bottom: 1px dashed var(--text-primary);
background-color: var(--white);
outline: none;
margin-top: 5px;
transition: all 0.4s ease;
}
.comment-area .comment-list .content .reply-btn a:hover {
color: var(--primary-color1);
border-bottom: 1px dashed var(--primary-color1);
}
.comment-area .comment-list .content .reply-btn a .bi {
margin-left: 5px;
}
.blog-comment-form {
margin-top: 55px;
}
.comment-form-area .contact-from-wrapper {
padding: 15px 55px 50px 55px;
}
@media (min-width: 768px) and (max-width: 991px) {
.comment-form-area .contact-from-wrapper {
padding: 15px 35px 50px 35px;
}
}
@media (max-width: 767px) {
.comment-form-area .contact-from-wrapper {
padding: 15px 25px 50px 25px;
}
} .testimonial-section .swiper {
padding: 12px;
margin: -12px;
}
.testimonial-section .testimonial-wrapper {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: nowrap;
width: 100%;
}
@media (max-width: 991px) {
.testimonial-section .testimonial-wrapper {
flex-wrap: wrap;
}
}
.testimonial-section .testimonial-wrapper .testimonial-area {
padding: 100px 0px;
width: 100%;
background: var(--text-primary);
min-height: 660px;
position: relative;
display: flex;
align-items: center;
}
@media (max-width: 991px) {
.testimonial-section .testimonial-wrapper .testimonial-area {
width: 100%;
min-height: auto;
padding: 60px 0px;
}
}
.testimonial-section .testimonial-wrapper .testimonial-area .testi-quote {
position: absolute;
top: 10%;
right: 5%;
}
.testimonial-section .testimonial-wrapper .newsletter-area {
min-height: 660px;
background: url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/newsletter-bg.png);
background-size: cover;
background-repeat: no-repeat;
background-size: cover;
padding: 70px 10px;
width: 42%;
min-width: 440px;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 991px) {
.testimonial-section .testimonial-wrapper .newsletter-area {
width: 100%;
}
}
@media (max-width: 576px) {
.testimonial-section .testimonial-wrapper .newsletter-area {
min-width: 280px;
}
}
.testimonial-section .testimonial-wrapper .newsletter-area .newsletter-form-box {
text-align: center;
padding: 50px 35px;
background: linear-gradient(152.97deg, rgba(0, 0, 0, 0.32) 0%, rgba(255, 255, 255, 0) 100%);
-webkit-backdrop-filter: blur(22px);
backdrop-filter: blur(22px);
width: 100%;
max-width: 400px;
border: 1px solid rgba(0, 255, 178, 0.15);
}
@media (max-width: 576px) {
.testimonial-section .testimonial-wrapper .newsletter-area .newsletter-form-box {
padding: 50px 25px;
}
}
.testimonial-section .testimonial-wrapper .newsletter-area .newsletter-form-box h3 {
font-size: 3.2rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 15px;
}
.testimonial-section .testimonial-wrapper .newsletter-area .newsletter-form-box p, .testimonial-section .testimonial-wrapper .newsletter-area .newsletter-form-box .info-single .info-text a, .info-single .info-text .testimonial-section .testimonial-wrapper .newsletter-area .newsletter-form-box a {
font-size: 17px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
}
.testimonial-section4 .swiper {
margin: -15px;
padding: 15px;
}
.newsletter-form {
margin-top: 40px;
}
.newsletter-form .form-inner {
width: 100%;
margin-bottom: 25px;
}
.newsletter-form .form-inner input, .newsletter-form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .newsletter-form .form-inner textarea {
width: 100%;
background: transparent;
border: 1px solid rgba(221, 221, 221, 0.431372549);
height: 52px;
line-height: 52px;
padding: 0px 20px;
color: var(--white);
transition: all 0.4s ease;
}
.newsletter-form .form-inner input:focus, .newsletter-form .asking-form-wrap .style-1 .form-inner textarea:focus, .asking-form-wrap .style-1 .newsletter-form .form-inner textarea:focus {
border: 1px solid var(--primary-color1);
}
.newsletter-form .form-inner input::-moz-placeholder, .newsletter-form .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .newsletter-form .form-inner textarea::-moz-placeholder {
font-size: 16px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
text-align: center;
}
.newsletter-form .form-inner input::placeholder, .newsletter-form .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .newsletter-form .form-inner textarea::placeholder {
font-size: 16px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
text-align: center;
}
.testimonial-wrap {
width: 100%;
max-width: 690px;
margin-left: auto;
margin-right: 40px;
padding: 30px 30px 30px 0px;
position: relative;
}
@media (max-width: 991px) {
.testimonial-wrap {
margin-left: auto;
margin-right: auto;
}
}
@media (max-width: 1399px) {
.testimonial-wrap {
padding: 20px;
}
}
.testimonial-single1 {
padding-bottom: 30px;
}
.testimonial-single1 .testimonial-content {
border: 1px solid rgba(249, 248, 248, 0.16);
padding: 35px 25px;
}
@media (min-width: 768px) and (max-width: 991px) {
.testimonial-single1 .testimonial-content {
padding: 30px 25px;
}
}
@media (min-width: 576px) and (max-width: 768px) {
.testimonial-single1 .testimonial-content {
padding: 25px 25px;
}
}
@media (max-width: 576px) {
.testimonial-single1 .testimonial-content {
padding: 25px 20px;
}
}
.testimonial-single1 .testimonial-content > p, .testimonial-single1 .info-single .info-text .testimonial-content > a, .info-single .info-text .testimonial-single1 .testimonial-content > a {
font-size: 2.4rem;
font-weight: 300;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 0px;
}
.testimonial-single1 .star-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 10px;
margin-bottom: 10px;
}
.testimonial-single1 .star-list li .bi {
color: var(--primary-color1);
}
.testimonial-single1 .testi-author1 {
display: flex;
align-items: center;
flex-direction: row;
justify-content: flex-start;
gap: 18px;
padding-top: 30px;
padding-left: 55px;
position: relative;
margin-top: 20px;
padding-bottom: 3px;
}
.testimonial-single1 .testi-author1::before {
content: "";
position: absolute;
top: -45px;
left: 60px;
width: 50px;
height: 50px;
background: #09100d;
border-bottom: 1px solid rgba(249, 248, 248, 0.16);
border-left: 1px solid rgba(249, 248, 248, 0.16);
transform: rotate(-45deg);
}
.testimonial-single1 .testi-author1 .image {
width: 60px;
height: 60px;
}
.testimonial-single1 .testi-author1 .image img {
width: 100%;
border-radius: 50%;
height: 100%;
}
.testimonial-single1 .testi-author1 .author-text h5 {
font-size: 2rem;
font-weight: 600;
color: var(--white);
font-family: var(--font-merriw);
}
.testimonial-single1 .testi-author1 .author-text p, .testimonial-single1 .testi-author1 .author-text .info-single .info-text a, .info-single .info-text .testimonial-single1 .testi-author1 .author-text a {
font-size: 16px;
font-weight: 400;
color: #cbcbcb;
margin-bottom: 0;
}
.testimonial-single1.siblling-2 {
position: relative;
padding: 0px 15px;
}
.testimonial-single1.siblling-2 svg {
fill: var(--text-light);
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -40px;
}
.testimonial-single1.siblling-2 .star-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: start;
gap: 10px;
margin-bottom: 10px;
}
.testimonial-single1.siblling-2 .star-list li .bi {
color: var(--primary-color2);
}
@media (max-width: 991px) {
.testimonial-single1.siblling-2 .star-list {
justify-content: start;
}
}
.testimonial-single1.siblling-2 > p, .info-single .info-text .testimonial-single1.siblling-2 > a {
font-size: 2.2rem;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
margin-bottom: 35px;
}
.testimonial-single1.siblling-2 .testi-author {
display: flex;
flex-direction: row;
align-items: center;
gap: 15px;
}
.testimonial-single1.siblling-2 .testi-author .image {
width: 60px;
height: 60px;
}
.testimonial-single1.siblling-2 .testi-author .image img {
width: 100%;
border-radius: 50%;
height: 100%;
}
.testimonial-single1.siblling-2 .author-text h5 {
font-size: 2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.testimonial-single1.siblling-2 .author-text p, .testimonial-single1.siblling-2 .author-text .info-single .info-text a, .info-single .info-text .testimonial-single1.siblling-2 .author-text a {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
margin-bottom: 0;
}
.testimonial-single1.sibling-3 {
text-align: center;
border: 1px solid #eeeeee;
padding: 30px 25px;
}
.testimonial-single1.sibling-3 > p, .info-single .info-text .testimonial-single1.sibling-3 > a {
font-size: 2.2rem;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
line-height: 1.6;
margin-bottom: 22px;
}
.testimonial-single1.sibling-3 .image {
position: relative;
}
.testimonial-single1.sibling-3 .image .testi-quote {
position: absolute;
top: -3px;
left: -15px;
width: 30px;
height: 30px;
line-height: 20px;
text-align: center;
border-radius: 50%;
background-color: rgba(213, 84, 55, 0.2);
padding: 5px;
}
.testimonial-single1.sibling-3 .testi-author {
display: flex;
flex-direction: column;
gap: 10px;
}
.testimonial-single1.sibling-3 .author-text h5 {
font-size: 2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-work-sans);
margin-bottom: 0px;
}
.testimonial-single1.sibling-4 {
text-align: left;
padding: 30px 25px;
background: #ffffff;
box-shadow: 4px 3px 15px rgba(16, 33, 34, 0.06);
}
.testimonial-single1.sibling-4 > p, .info-single .info-text .testimonial-single1.sibling-4 > a {
font-size: 2.2rem;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
line-height: 1.6;
margin-bottom: 22px;
}
.testimonial-single1.sibling-4 .image {
position: relative;
}
.testimonial-single1.sibling-4 .image > img {
width: 60px;
height: 60px;
}
.testimonial-single1.sibling-4 .image .testi-quote {
position: absolute;
top: -3px;
left: -15px;
width: 30px;
height: 30px;
line-height: 20px;
text-align: center;
border-radius: 50%;
background: var(--white);
padding: 5px;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
}
.testimonial-single1.sibling-4 .testi-author {
display: flex;
flex-direction: row;
gap: 25px;
margin-bottom: 15px;
align-items: center;
}
.testimonial-single1.sibling-4 .author-text h5 {
font-size: 2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 0px;
}
.testimonial-single1.sibling-4 .author-text span {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
display: block;
}
.swiper-pagination,
.testimonial1-pagination {
position: relative;
z-index: 89;
margin-top: -45px;
}
@media (max-width: 576px) {
.swiper-pagination,
.testimonial1-pagination {
margin-top: unset;
}
}
.swiper-pagination .swiper-pagination-bullet,
.testimonial1-pagination .swiper-pagination-bullet {
border: 1px solid var(--white);
width: 15px;
height: 15px;
z-index: 9;
background: var(--white);
}
.swiper-pagination .swiper-pagination-bullet-active,
.testimonial1-pagination .swiper-pagination-bullet-active {
position: relative;
border: 1px solid var(--primary-color1);
background: transparent;
}
.swiper-pagination .swiper-pagination-bullet-active::before,
.testimonial1-pagination .swiper-pagination-bullet-active::before {
content: "";
width: 8px;
height: 8px;
background: var(--primary-color1);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
}
.swiper-pagination.sibling-2,
.testimonial1-pagination.sibling-2 {
height: 16px;
bottom: 0;
margin-top: 50px;
}
.swiper-pagination.sibling-2 .swiper-pagination-bullet,
.testimonial1-pagination.sibling-2 .swiper-pagination-bullet {
position: relative;
}
.swiper-pagination.sibling-2 .swiper-pagination-bullet::before,
.testimonial1-pagination.sibling-2 .swiper-pagination-bullet::before {
content: "";
width: 9px;
height: 9px;
background: var(--text-primary);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
}
.swiper-pagination.sibling-2 .swiper-pagination-bullet-active,
.testimonial1-pagination.sibling-2 .swiper-pagination-bullet-active {
position: relative;
border: 1px solid var(--primary-color2);
background: transparent;
}
.swiper-pagination.sibling-2 .swiper-pagination-bullet-active::before,
.testimonial1-pagination.sibling-2 .swiper-pagination-bullet-active::before {
content: "";
width: 9px;
height: 9px;
background: var(--primary-color2);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
}
.swiper-pagination.sibling-3,
.testimonial1-pagination.sibling-3 {
height: 16px;
bottom: 0;
margin-top: 50px;
}
.swiper-pagination.sibling-3 .swiper-pagination-bullet,
.testimonial1-pagination.sibling-3 .swiper-pagination-bullet {
position: relative;
}
.swiper-pagination.sibling-3 .swiper-pagination-bullet::before,
.testimonial1-pagination.sibling-3 .swiper-pagination-bullet::before {
content: "";
width: 9px;
height: 9px;
background: var(--text-primary);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
}
.swiper-pagination.sibling-3 .swiper-pagination-bullet-active,
.testimonial1-pagination.sibling-3 .swiper-pagination-bullet-active {
position: relative;
border: 1px solid var(--primary-color3);
background: transparent;
}
.swiper-pagination.sibling-3 .swiper-pagination-bullet-active::before,
.testimonial1-pagination.sibling-3 .swiper-pagination-bullet-active::before {
content: "";
width: 9px;
height: 9px;
background: var(--primary-color3);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
}
.swiper-pagination.sibling-4,
.testimonial1-pagination.sibling-4 {
height: 16px;
bottom: 0;
margin-top: 50px;
}
.swiper-pagination.sibling-4 .swiper-pagination-bullet,
.testimonial1-pagination.sibling-4 .swiper-pagination-bullet {
position: relative;
}
.swiper-pagination.sibling-4 .swiper-pagination-bullet::before,
.testimonial1-pagination.sibling-4 .swiper-pagination-bullet::before {
content: "";
width: 9px;
height: 9px;
background: var(--text-primary);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
}
.swiper-pagination.sibling-4 .swiper-pagination-bullet-active,
.testimonial1-pagination.sibling-4 .swiper-pagination-bullet-active {
position: relative;
border: 1px solid var(--primary-color1);
background: transparent;
}
.swiper-pagination.sibling-4 .swiper-pagination-bullet-active::before,
.testimonial1-pagination.sibling-4 .swiper-pagination-bullet-active::before {
content: "";
width: 9px;
height: 9px;
background: var(--primary-color1);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
}
.swiper-pagination-number .swiper-pagination-bullet {
background: transparent;
font-size: 15px;
font-weight: 700;
color: var(--text-primary);
}
.swiper-pagination-number .swiper-pagination-bullet-active {
background: transparent;
font-size: 22px;
font-weight: 700;
color: var(--primary-color3);
}
.swiper-banner-pagination {
position: relative;
z-index: 89;
}
.swiper-banner-pagination .swiper-pagination-bullet {
border: 1px solid var(--white);
width: 15px;
height: 15px;
z-index: 9;
background: var(--white);
}
.swiper-banner-pagination .swiper-pagination-bullet-active {
position: relative;
border: 1px solid var(--primary-color1);
background: transparent;
}
.swiper-banner-pagination .swiper-pagination-bullet-active::before {
content: "";
width: 9px;
height: 9px;
background: var(--primary-color1);
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
z-index: -1;
} .intro-sectoin {
background-color: #fff7f5;
padding: 115px 15px 230px 15px;
}
.intro-sectoin .intro-content {
text-align: center;
}
.intro-sectoin .intro-content span {
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color2);
font-family: var(--font-work-sans);
position: relative;
text-transform: uppercase;
letter-spacing: 3px;
}
.intro-sectoin .intro-content span::before {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -60px;
width: 2px;
height: 40px;
background: var(--primary-color2);
opacity: 0.55;
}
.intro-sectoin .intro-content h2 {
font-size: 4.2rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 20px;
line-height: 1.4;
}
.intro-sectoin .intro-content p, .intro-sectoin .intro-content .info-single .info-text a, .info-single .info-text .intro-sectoin .intro-content a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 28px;
} .offer-single {
position: relative;
height: 300px;
z-index: 1;
display: flex;
justify-content: flex-end;
align-items: flex-start;
flex-direction: column;
padding: 30px 30px;
overflow: hidden;
}
.offer-single:hover .offer-bg {
transform: scale(1.1) rotate(2deg);
}
.offer-single .offer-badge {
position: absolute;
top: 25px;
right: 25px;
}
.offer-single .offer-badge .offer-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.offer-single .offer-badge .offer-text h5 {
font-family: "Leckerli One";
font-weight: 400;
font-size: 18px;
line-height: 24px;
color: #09100d;
text-transform: uppercase;
margin-bottom: 0;
}
.offer-single .offer-badge .offer-text h5 span {
white-space: nowrap;
}
.offer-single .offer-bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
z-index: -1;
transition: all 0.6s ease;
}
.offer-single .content a {
font-size: 2.2rem;
font-weight: 600;
color: var(--white);
font-family: var(--font-work-sans);
line-height: 1.2;
}
.offer-single .content span {
font-size: 1.8rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
display: block;
}
.offer-single.sibling-2 .content a {
font-size: 2.5rem;
font-weight: 600;
color: var(--white);
font-family: var(--font-merriw);
}
.offer-single.sibling-2 .content span {
font-size: 1.6rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
display: block;
margin-top: 5px;
}
.offer-section .swiper {
background: #ffffff;
box-shadow: 4px 3px 35px rgba(117, 117, 117, 0.12);
padding: 20px;
}
.offer-section.sibling-2 {
margin-top: unset;
} .feature-section {
background-image: url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/feature-bg.png);
background-size: cover;
background-repeat: no-repeat;
position: relative;
z-index: 1;
margin-bottom: 120px;
}
@media (max-width: 1199px) {
.feature-section {
margin-bottom: 0px;
}
}
.feature-section .feature-image {
transform: translateY(120px);
}
@media (min-width: 992px) and (max-width: 1199px) {
.feature-section .feature-image {
transform: translateY(0px);
}
}
.feature-section .feature-content {
padding: 50px 15px;
width: 100%;
max-width: 600px;
}
.feature-section .feature-content span {
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color2);
font-family: var(--font-work-sans);
text-transform: uppercase;
letter-spacing: 3px;
}
.feature-section .feature-content h2 {
font-size: 4.2rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 20px;
line-height: 1.4;
}
.feature-section .feature-content ul.feature-list {
list-style: none;
margin: 35px 0 25px 0;
padding: 0;
display: flex;
flex-direction: row;
justify-content: start;
flex-wrap: wrap;
}
.feature-section .feature-content ul.feature-list li {
font-size: 18px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 15px;
display: block;
position: relative;
padding-left: 30px;
min-width: 250px;
transition: all 0.35s ease;
}
.feature-section .feature-content ul.feature-list li:hover {
transform: translateX(10px);
}
.feature-section .feature-content ul.feature-list li svg {
position: absolute;
left: 0;
top: 8px;
fill: var(--text-secondary);
}
.feature2-list {
margin-bottom: 40px;
}
.feature2-list li {
font-size: 17px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 15px;
padding-left: 12px;
}
.feature2-list li:last-child {
margin-bottom: 0px;
}
.feature2-list li::marker {
content: "\f272";
font-family: "Bootstrap-icons";
font-weight: 500;
}
.feature3-list {
margin-bottom: 30px;
}
.feature3-list li {
font-size: 1.8rem;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 8px;
padding-left: 0px;
}
.feature3-list li:last-child {
margin-bottom: 0px;
}
.feature3-list li::marker {
color: var(--primary-color2);
}
.feature3-list.sibling-2 li {
font-size: 2rem;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.feature3-list.sibling-2 li::marker {
color: var(--primary-color1);
}
.feature-image-group {
position: relative;
margin-left: 0;
margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.feature-image-group {
margin-left: -20px;
}
}
@media (max-width: 991px) {
.feature-image-group {
margin-left: 0;
margin-top: 40px;
}
}
.feature-image-group .feature3-icon {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -30px;
z-index: 2;
}
.feature-image-group .feature-image {
position: relative;
width: 100%;
max-width: 320px;
height: auto;
}
.feature-image-group .feature-image::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: transparent;
width: 90%;
height: 90%;
border: 1px solid #e2e2e2;
}
.feature-image-group .feature-image.translate-y {
transform: translateY(30px);
} .tour-package-section {
padding-left: 3%;
padding-right: 3%;
}
.tour-package-section .swiper-wrapper {
padding-bottom: 60px;
}
.tour-package-section .swiper-wrapper .swiper-slide:nth-child(even) {
padding-top: 70px;
}
@media (max-width: 576px) {
.tour-package-section .swiper-wrapper .swiper-slide:nth-child(even) {
padding-top: 0px;
}
}
.tour-package-section .swiper-wrapper .swiper-slide-active p, .tour-package-section .swiper-wrapper .swiper-slide-active .info-single .info-text a, .info-single .info-text .tour-package-section .swiper-wrapper .swiper-slide-active a {
animation: unset;
}
.tour-package-single {
position: relative;
width: 100%;
max-width: 410px;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
.tour-package-single::before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: #000;
opacity: 0.3;
}
.tour-package-single:hover .package-content p, .tour-package-single:hover .package-content .info-single .info-text a, .info-single .info-text .tour-package-single:hover .package-content a {
height: 100%;
opacity: 1;
}
.tour-package-single .package-content {
padding: 60px 40px;
position: absolute;
bottom: 0;
left: 0;
height: auto;
transition: all 0.6s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
.tour-package-single .package-content {
padding: 60px 25px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.tour-package-single .package-content {
padding: 60px 25px;
}
}
@media (min-width: 576px) and (max-width: 768px) {
.tour-package-single .package-content {
padding: 60px 25px;
}
}
@media (max-width: 576px) {
.tour-package-single .package-content {
padding: 60px 25px;
}
}
.tour-package-single .package-content h4 {
font-size: 2.5rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 5px;
transition: all 0.6s ease;
line-height: 1.4;
}
.tour-package-single .package-content p, .tour-package-single .package-content .info-single .info-text a, .info-single .info-text .tour-package-single .package-content a {
font-size: 17px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
height: 0px;
opacity: 0;
transition: all 0.6s ease;
}
.tour-package-single .package-content span.price {
font-size: 2.2rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
}
.tour-package-single .explore-btn {
background-color: var(--text-primary);
font-size: 14px;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
border-radius: 50%;
width: 90px;
height: 90px;
text-align: center;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -50px;
z-index: 99;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.6s ease;
}
.tour-package-single .explore-btn:hover {
background: var(--primary-color2);
}
.tour-package-single2 {
overflow: hidden;
position: relative;
width: 100%;
max-width: 420px;
margin: 0 auto;
}
.tour-package-single2:hover .image img {
transform: scale(1.1);
}
.tour-package-single2:hover .image span.blog-date {
font-size: 15px;
font-weight: 500;
color: var(--white);
background: var(--primary-color2);
color: var(--text-primary);
}
.tour-package-single2:hover .image span.blog-date .bi {
color: var(--text-primary);
font-size: 14px;
margin-right: 8px;
}
.tour-package-single2 .image {
position: relative;
overflow: hidden;
}
.tour-package-single2 .image img {
height: 280px;
width: 100%;
transition: all 0.55s ease;
-o-object-fit: cover;
object-fit: cover;
}
.tour-package-single2 .image span.blog-date {
position: absolute;
left: 20px;
bottom: 20px;
font-size: 15px;
font-weight: 500;
color: var(--text-secondary);
background: var(--text-secondary);
color: var(--white);
padding: 6px 12px;
transition: all 0.45s ease;
}
.tour-package-single2 .image span.blog-date .bi {
color: var(--white);
font-size: 14px;
margin-right: 8px;
transition: all 0.45s ease;
}
.tour-package-single2 .content {
background: #ffffff;
padding: 25px 25px 35px 25px;
text-align: center;
border: 1px solid #eeeeee;
}
.tour-package-single2 .content span.category {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 8px;
display: inline-block;
}
.tour-package-single2 .content p, .tour-package-single2 .content .info-single .info-text a, .info-single .info-text .tour-package-single2 .content a {
margin-bottom: 28px;
}
.tour-package-single2 .content h4 {
margin-bottom: 10px;
}
.tour-package-single2 .content h4 a {
font-size: 2.4rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.49;
transition: all 0.4s ease;
}
.tour-package-single2 .content h4 a:hover {
color: var(--text-secondary);
}
.tour-package-single2 .content i {
margin-left: 5px;
vertical-align: baseline;
}
.tour-package-widget {
border: 1px solid rgba(238, 238, 238, 0.8);
padding: 25px 25px;
margin-bottom: 35px;
position: relative;        }
@media (max-width: 767px) {
.tour-package-widget {
padding: 25px 20px;
}
}
.tour-package-widget .select-widget .nice-select {
background-color: var(--white);
box-sizing: border-box;
clear: both;
cursor: pointer;
display: block;
float: left;
height: 50px;
line-height: 46px;
outline: none;
position: relative;
text-align: left !important;
transition: all 0.2s ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
border-radius: 0px;
border: 1px solid #eeeeee;
font-size: 18px;
}
.tour-package-widget .select-widget .nice-select::after {
border-bottom: 1px solid var(--text-primary);
border-right: 1px solid var(--text-primary);
}
.tour-package-widget .select-widget .nice-select .option {
min-height: 30px;
line-height: 30px;
font-size: 16px;
}
.tour-package-widget .select-widget .nice-select .option:hover {
background: var(--primary-color1);
color: var(--white);
}
.tour-package-widget .select-widget .nice-select .option.selected {
background: var(--primary-color1) !important;
}
.tour-package-widget .select-widget .nice-select .current {
font-size: 16px;
font-weight: 500;
color: var(--text-primary);
}
.tour-package-widget .select-widget .nice-select .list {
border: unset;
border: 1px solid rgba(41, 43, 49, 0.03);
margin-top: 6px;
z-index: 100;
border-radius: 0px;
width: 100%;
min-width: 80px;
}
.tour-package-widget .range-widget .ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 1.1em;
height: 1.1em;
cursor: pointer;
touch-action: none;
border: 1px solid var(--primary-color1-light) !important;
border-radius: 50%;
background: var(--white) !important;
transition: all 0.45s ease-in-out;
}
.tour-package-widget .range-widget .ui-slider .ui-slider-handle:hover {
background-color: var(--primary-color1) !important;
}
.tour-package-widget .range-widget .ui-widget.ui-widget-content {
background: white;
border: 1px solid var(--primary-color1-light);
border-radius: 3px;
}
.tour-package-widget .range-widget .ui-slider-horizontal {
height: 8px;
}
.tour-package-widget .range-widget .ui-slider-horizontal .ui-slider-handle {
top: -7px;
margin-left: -0.6em;
}
.tour-package-widget .range-widget .ui-slider-horizontal .ui-slider-handle:focus {
border: unset;
outline: unset;
background-color: var(--primary-color1) !important;
}
.tour-package-widget .range-widget .ui-widget-header {
border: 1px solid var(--primary-color1-light);
background: var(--primary-color1-light);
color: #333333;
font-weight: bold;
}
.tour-package-widget .range-widget button,
.tour-package-widget .range-widget input,
.tour-package-widget .range-widget .asking-form-wrap .style-1 .form-inner textarea,
.asking-form-wrap .style-1 .form-inner .tour-package-widget .range-widget textarea,
.tour-package-widget .range-widget optgroup,
.tour-package-widget .range-widget select,
.tour-package-widget .range-widget textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
border: 1px solid #eee;
padding: 4px 15px;
font-size: 16px;
width: 48%;
}
.tour-package-widget .container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 16px;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
font-weight: 500;
}
.tour-package-widget .container .bi {
color: #ffcc33;
margin-right: 3px;
}
.tour-package-widget .checkbox-container input, .tour-package-widget .checkbox-container .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .tour-package-widget .checkbox-container textarea {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.tour-package-widget .checkmark {
position: absolute;
top: 50%;
left: 0;
height: 20px;
width: 20px;
background-color: #eee;
transform: translateY(-50%);
}
.tour-package-widget .checkbox-container:hover input ~ .checkmark, .tour-package-widget .checkbox-container:hover .asking-form-wrap .style-1 .form-inner textarea ~ .checkmark, .asking-form-wrap .style-1 .form-inner .tour-package-widget .checkbox-container:hover textarea ~ .checkmark {
background-color: #ccc;
}
.tour-package-widget .checkbox-container input:checked ~ .checkmark, .tour-package-widget .checkbox-container .asking-form-wrap .style-1 .form-inner textarea:checked ~ .checkmark, .asking-form-wrap .style-1 .form-inner .tour-package-widget .checkbox-container textarea:checked ~ .checkmark {
background-color: var(--primary-color1);
}
.tour-package-widget .checkmark:after {
content: "";
position: absolute;
display: none;
}
.tour-package-widget .checkbox-container input:checked ~ .checkmark:after, .tour-package-widget .checkbox-container .asking-form-wrap .style-1 .form-inner textarea:checked ~ .checkmark:after, .asking-form-wrap .style-1 .form-inner .tour-package-widget .checkbox-container textarea:checked ~ .checkmark:after {
display: block;
}
.tour-package-widget .checkbox-container .checkmark:after {
left: 7px;
top: 4px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.clearfix::after {
content: "";
clear: both;
display: block;
}
h4.package-widget-title {
font-size: 2.2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 30px;
}
.package-filter-area {
margin-bottom: 40px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.package-filter-area h4 {
font-size: 2.5rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.tour-package-sidebar {
max-width: 100%;
}
.check-box-item {
margin-bottom: 35px;
}
.check-box-item h5 {
font-size: 2.2rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 20px;
font-family: var(--font-merriw);
} .about5-title > span {
font-size: 1.8rem;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
letter-spacing: 1px;
display: inline-block;
margin-bottom: 3px;
display: block;
margin-bottom: 0px;
text-transform: uppercase;
}
.about5-title h2 {
font-size: 4.2rem;
font-weight: 800;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.45;
margin-bottom: 20px;
}
.about5-title h2 span {
font-size: 4.2rem;
font-weight: 500;
color: var(--primary-color3);
font-family: var(--font-merriw);
}
.about5-title p, .about5-title .info-single .info-text a, .info-single .info-text .about5-title a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
line-height: 1.7;
margin-bottom: 20px;
}
.about5-title a {
font-size: 17px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.about3-title {
padding-right: 40px;
}
.about3-title > span {
font-size: 1.8rem;
font-weight: 400;
color: var(--primary-color2);
font-family: var(--font-work-sans);
letter-spacing: 1px;
display: inline-block;
margin-bottom: 3px;
text-transform: uppercase;
}
.about3-title h2 {
font-size: 3.9rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.4;
margin-bottom: 20px;
}
.about3-title p, .about3-title .info-single .info-text a, .info-single .info-text .about3-title a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
line-height: 1.7;
margin-bottom: 20px;
}
.about3-title a {
font-size: 17px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.about5-content {
padding-left: 45px;
}
@media (max-width: 991px) {
.about5-content {
padding-left: 0px;
}
}
.about5-content p, .about5-content .info-single .info-text a, .info-single .info-text .about5-content a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
margin-bottom: 15px;
}
.about5-content ul.about-list {
margin-bottom: 45px;
}
.about5-content ul.about-list li {
font-size: 2rem;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 10px;
}
.about5-content ul.about-list li:last-child {
margin-bottom: 0px;
}
.about5-content ul.about-list li::marker {
font-size: 120%;
color: var(--text-primary);
}
.about5-content .quote-area {
position: relative;
padding-left: 30px;
}
.about5-content .quote-area::before {
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0px;
height: 100%;
width: 2px;
background: var(--primary-color3);
}
.about5-content .quote-area > p, .about5-content .info-single .info-text .quote-area > a, .info-single .info-text .about5-content .quote-area > a {
font-size: 2rem;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
line-height: 1.7;
margin-bottom: 20px;
}
.about5-content .quote-area .author h5 {
font-size: 2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.about5-content .quote-area .author p, .about5-content .quote-area .author .info-single .info-text a, .info-single .info-text .about5-content .quote-area .author a {
font-size: 1.6rem;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
} .wild-package-section {
position: relative;
overflow: hidden;
z-index: 1;
}
.wild-package-section::before {
content: url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/wildtour-bg.png);
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.wild-package-section .container {
position: relative;
}
.wild-package-section .container::before {
content: "";
position: absolute;
top: 0;
left: -99.6%;
width: 100%;
background: #fff7f5;
height: 110%;
z-index: 9;
}
.wild-package-section .container .swiper {
overflow: visible;
}
.wild-package-single {
position: relative;
overflow: hidden;
border-radius: 0px;
min-height: 450px;
display: flex;
align-items: flex-end;
background: linear-gradient(179.97deg, rgba(32, 32, 32, 0) 20.42%, #202020 99.97%);
}
@media (min-width: 1400px) and (max-width: 1599px) {
.wild-package-single {
min-height: 450px;
}
}
@media (min-width: 1200px) and (max-width: 1399px) {
.wild-package-single {
min-height: 420px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.wild-package-single {
min-height: 380px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.wild-package-single {
min-height: 330px;
}
}
@media (max-width: 767px) {
.wild-package-single {
min-height: 300px;
}
}
.wild-package-single .wild-package-img {
position: absolute;
left: 0;
top: 0;
z-index: -1;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transform: scale(1);
transition: all 0.65s ease-in-out;
}
.wild-package-single .text {
margin-bottom: 35px;
padding-left: 30px;
transition: all 0.35s ease-in-out;
transform: scaleY(1);
}
.wild-package-single .text span {
font-size: 18px;
font-weight: 500;
font-family: var(--font-work-sans);
color: var(--white);
display: inline-block;
position: relative;
padding-bottom: 3px;
margin-bottom: 12px;
text-transform: capitalize;
}
.wild-package-single .text span::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
border-radius: 10px;
background: linear-gradient(90.05deg, #ffffff 0%, rgba(255, 255, 255, 0) 100.84%);
}
.wild-package-single .text h4 a {
font-size: 2.6rem;
font-weight: 600;
color: var(--white);
font-family: var(--font-merriw);
}
.wild-package-single .content-wrapper {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
opacity: 0;
transform: translateY(100%);
transition: all 0.65s ease;
}
.wild-package-single .content {
transition: all 0.65s ease-in-out;
background: var(--white);
width: 100%;
padding: 25px 30px;
}
.wild-package-single .content h4 {
font-size: 2.3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 10px;
}
.wild-package-single .content p, .wild-package-single .content .info-single .info-text a, .info-single .info-text .wild-package-single .content a {
font-size: 18px;
font-weight: 700;
color: var(--primary-color3);
font-family: var(--font-work-sans);
margin-bottom: 20px;
}
.wild-package-single .content .details-btn {
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
position: relative;
z-index: 1;
display: inline-block;
padding-bottom: 5px;
}
.wild-package-single .content .details-btn::before {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 45px;
height: 2px;
border-radius: 4px;
background: linear-gradient(90.05deg, #000000 0%, rgba(255, 255, 255, 0) 100.84%);
transition: all 0.4s ease;
}
.wild-package-single .content .details-btn:hover::before {
width: 100%;
}
.wild-package-single:hover .content-wrapper {
opacity: 1;
transform: translateY(0%);
}
.wild-package-single:hover .text {
opacity: 0;
transform: scaleY(1);
} .facility-single {
border: 1px dashed #5e5e5e;
padding: 25px 20px;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
transition: all 0.55s ease;
}
.facility-single:hover {
background: var(--primary-color2);
border: 1px dashed transparent;
}
@media (max-width: 767px) {
.facility-single {
gap: 15px;
}
}
.facility-single .text h4 {
font-size: 2.2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 10px;
}
.facility-single .text p, .facility-single .text .info-single .info-text a, .info-single .info-text .facility-single .text a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 0;
}
.facility-single2 {
background: #ffffff;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
text-align: center;
padding: 35px 25px;
position: relative;
z-index: 1;
overflow: hidden;
}
.facility-single2:hover::before {
transform: scale(1);
opacity: 1;
}
.facility-single2:hover .facility-content h4 {
font-size: 2.4rem;
font-weight: 700;
color: var(--white);
}
.facility-single2:hover .facility-content p, .facility-single2:hover .facility-content .info-single .info-text a, .info-single .info-text .facility-single2:hover .facility-content a {
font-size: 17px;
font-weight: 400;
color: var(--white);
}
.facility-single2::before {
content: "";
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: var(--primary-color1);
z-index: -1;
transform: scale(0.8);
opacity: 0;
transition: all 0.55s ease;
}
.facility-single2 .facility-icon {
margin-bottom: 30px;
}
.facility-single2 .facility-content h4 {
font-size: 2.4rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
transition: all 0.45s ease;
margin-bottom: 15px;
}
.facility-single2 .facility-content p, .facility-single2 .facility-content .info-single .info-text a, .info-single .info-text .facility-single2 .facility-content a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 0px;
transition: all 0.45s ease;
} .tour-guide-single {
overflow: hidden;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
border-radius: 0px;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 470px;
}
.tour-guide-single:hover .guide-image img {
transform: scale(1.1);
}
.tour-guide-single:hover .guide-image .social-area {
opacity: 1;
transform: translateY(0%);
}
.tour-guide-single .guide-image {
overflow: hidden;
position: relative;
}
.tour-guide-single .guide-image img {
transition: all 0.65s ease;
}
.tour-guide-single .guide-image .social-area {
background-color: rgba(9, 16, 13, 0.6);
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.65s ease;
opacity: 0;
transform: translateY(100%);
}
.tour-guide-single .guide-contnent {
padding: 20px 20px 25px 20px;
text-align: center;
transition: all 0.55s ease;
}
.tour-guide-single .guide-contnent h4 {
font-size: 2.4rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.tour-guide-single .guide-contnent p, .tour-guide-single .guide-contnent .info-single .info-text a, .info-single .info-text .tour-guide-single .guide-contnent a {
font-size: 17px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 0;
}
.tour-guide-single .guide-social {
margin: 0px 0 0 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
justify-content: center;
gap: 25px;
border-radius: 3px;
transition: all 0.45s ease;
}
.tour-guide-single .guide-social i {
border: 1px solid #eeeeee;
border-radius: 3px;
width: 25px;
height: 25px;
line-height: 24px;
color: #0f1012;
background: var(--white);
text-align: center;
font-size: 16px;
transition: all 0.5s ease-out 0s;
}
.tour-guide-single .guide-social i:hover {
background: var(--primary-color2);
border: 1px solid var(--primary-color2);
}
.tour-guide-single.sibling-2 .guide-contnent h4 {
font-size: 2.4rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.tour-guide-single2 {
background: var(--white);
border-radius: 0px;
transition: all 0.5s ease-in-out;
width: 100%;
max-width: 470px;
margin: 0 auto;
}
.tour-guide-single2:hover .tour-guide-image .tour-guide-content {
opacity: 1;
transform: translateX(-50%) scale(1);
}
.tour-guide-single2 .tour-guide-image {
position: relative;
}
.tour-guide-single2 .tour-guide-image .social-area {
position: absolute;
top: 30px;
left: 25px;
width: 45px;
height: 100%;
display: flex;
justify-content: start;
align-items: center;
flex-direction: column;
}
.tour-guide-single2 .tour-guide-image .social-area:hover .social-links {
transform: scaleY(1);
visibility: visible;
opacity: 1;
}
.tour-guide-single2 .tour-guide-image .social-area .social-links {
padding: 0;
margin: 0;
transform: scaleY(0);
transition: all 0.55s ease-in-out;
transform-origin: top;
visibility: hidden;
opacity: 0;
list-style: none;
margin: 0;
padding: 0;
}
.tour-guide-single2 .tour-guide-image .social-area .social-links a .bx {
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
border-radius: 50%;
background-color: var(--white);
font-size: 18px;
color: var(--primary-color1);
transition: all 0.42s ease-in-out;
}
.tour-guide-single2 .tour-guide-image .social-area .social-links a .bx:hover {
background-color: var(--primary-color1);
color: var(--white);
}
.tour-guide-single2 .tour-guide-image .social-area .social-plus {
width: 36px;
height: 36px;
line-height: 34px;
text-align: center;
border-radius: 50%;
background-color: var(--white);
transition: all 0.42s ease-in-out;
}
.tour-guide-single2 .tour-guide-image .social-area .social-plus:hover {
background-color: var(--primary-color1);
color: var(--white);
}
.tour-guide-single2 .tour-guide-image .social-area .social-plus:hover .bx {
font-size: 18px;
color: var(--white);
}
.tour-guide-single2 .tour-guide-image .social-area .social-plus .bx {
font-size: 18px;
color: var(--primary-color1);
transition: all 0.42s ease-in-out;
cursor: pointer;
}
.tour-guide-single2 .tour-guide-image .tour-guide-content {
background: #ffffff;
border-radius: 0px;
text-align: center;
padding: 20px 25px;
transition: all 0.45s ease-in;
width: 90%;
z-index: 1;
opacity: 0;
transition: all 0.65s ease;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%) scale(0.7);
z-index: 9;
}
.tour-guide-single2 .tour-guide-image .tour-guide-content .name {
font-size: 2.4rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 5px;
text-transform: capitalize;
}
.tour-guide-single2 .tour-guide-image .tour-guide-content .designation {
text-transform: capitalize;
font-size: 17px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 0;
}
.newsletter-section {
background-image: linear-gradient(rgba(8, 4, 17, 0.8), rgba(8, 4, 17, 0.8)), url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/newsletter3-bg.png);
background-size: cover;
background-repeat: no-repeat;
padding: 60px 0px;
}
.newsletter-section .newsletter-area .newsletter-title {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
@media (max-width: 991px) {
.newsletter-section .newsletter-area .newsletter-title {
margin-bottom: 30px;
}
}
.newsletter-section .newsletter-area .newsletter-title h5 {
font-size: 3rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 0;
}
.newsletter-section .newsletter-area .newsletter-wrap {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px;
}
@media (max-width: 767px) {
.newsletter-section .newsletter-area .newsletter-wrap {
gap: 0px;
}
}
.newsletter-section .newsletter-area .newsletter-wrap form {
width: 100%;
}
.newsletter-section .newsletter-area .newsletter-wrap form input, .newsletter-section .newsletter-area .newsletter-wrap form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .newsletter-section .newsletter-area .newsletter-wrap form textarea {
height: 60px;
line-height: 60px;
border: 1px solid var(--text-secondary);
width: 100%;
background-color: transparent;
padding: 20px;
color: var(--white);
transition: all 0.45s ease;
}
.newsletter-section .newsletter-area .newsletter-wrap form input:focus, .newsletter-section .newsletter-area .newsletter-wrap form .asking-form-wrap .style-1 .form-inner textarea:focus, .asking-form-wrap .style-1 .form-inner .newsletter-section .newsletter-area .newsletter-wrap form textarea:focus {
border: 1px solid var(--primary-color2);
}
@media (max-width: 767px) {
.newsletter-section .newsletter-area .newsletter-wrap form input, .newsletter-section .newsletter-area .newsletter-wrap form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .newsletter-section .newsletter-area .newsletter-wrap form textarea {
height: 50px;
}
}
.newsletter-section .newsletter-area .newsletter-wrap button {
height: 60px;
background: var(--primary-color2);
color: var(--white);
min-width: 120px;
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
position: relative;
z-index: 1;
}
@media (max-width: 767px) {
.newsletter-section .newsletter-area .newsletter-wrap button {
height: 50px;
}
}
.newsletter-section .newsletter-area .newsletter-wrap button::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--white);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.newsletter-section .newsletter-area .newsletter-wrap button:hover::after {
transform: scale(1);
opacity: 1;
}
.trip-category-section {
position: relative;
padding-bottom: 80px;
z-index: 1;
}
.trip-category-section .trip-bg {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: auto;
}
@media (max-width: 576px) {
.trip-category-section .trip-bg {
height: 340px;
-o-object-fit: cover;
object-fit: cover;
}
}
.trip-category-single {
overflow: hidden;
position: relative;
width: 100%;
max-width: 420px;
margin: 0 auto;
background: var(--white);
}
.trip-category-single:hover .trip-image img {
transform: scale(1.1);
}
.trip-category-single:hover .trip-content .trip-bottom .trip-meta-list {
margin-top: -25px;
}
.trip-category-single:hover .trip-content .trip-bottom .explore-btn {
margin-top: -25px;
}
.trip-category-single .trip-image {
position: relative;
overflow: hidden;
}
.trip-category-single .trip-image img {
transition: all 0.65s ease;
}
.trip-category-single .trip-image span.blog-date {
position: absolute;
right: 20px;
top: 20px;
font-size: 14px;
font-weight: 600;
color: var(--white);
background: #359d9e;
padding: 6px 12px;
}
@media (max-width: 576px) {
.trip-category-single .trip-image image {
width: 100%;
}
}
.trip-category-single .trip-content {
padding: 30px 20px;
border-left: 1px solid rgba(238, 238, 238, 0.8);
border-bottom: 1px solid rgba(238, 238, 238, 0.8);
border-right: 1px solid rgba(238, 238, 238, 0.8);
background-color: var(--white);
}
.trip-category-single .trip-content h4 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.5;
transition: all 0.4s ease;
}
.trip-category-single .trip-content h4 a:hover {
color: var(--primary-color1);
}
.trip-category-single .trip-content .explore-btn {
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.trip-category-single .trip-content .explore-btn i {
margin-left: 5px;
vertical-align: baseline;
}
.trip-category-single .trip-content .trip-text {
transition: all 0.55s ease;
}
.trip-category-single .trip-content .trip-text p, .trip-category-single .trip-content .trip-text .info-single .info-text a, .info-single .info-text .trip-category-single .trip-content .trip-text a {
transition: all 0.55s ease;
}
.trip-category-single .trip-content .trip-bottom {
width: 100%;
height: 25px;
overflow: hidden;
}
.trip-category-single .trip-content .trip-bottom .trip-meta-list {
margin-top: 0px;
transition: all 0.5s ease;
}
.trip-category-single .trip-content .trip-bottom .explore-btn {
margin-top: 0px;
transition: all 0.5s ease;
}
.trip-category-single .trip-meta-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
flex-direction: row;
}
.trip-category-single .trip-meta-list li {
font-size: 15px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
margin-right: 16px;
}
.trip-category-single .trip-meta-list li .bx {
font-size: 16px;
vertical-align: center;
margin-right: 8px;
margin-top: -3px;
} .info-title-area {
text-align: center;
margin-bottom: 50px;
}
.info-title-area h3 {
font-size: 4rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 20px;
margin-top: -5px;
}
.info-title-area p, .info-title-area .info-single .info-text a, .info-single .info-text .info-title-area a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.info-single {
background: #ffffff;
border: 1px solid #eeeeee;
padding: 35px 20px;
text-align: center;
transition: all 0.55s ease;
}
.info-single:hover {
border: 1px solid transparent;
}
.info-single:hover .info-icon::before {
transform: scale(1);
opacity: 1;
}
.info-single:hover .info-icon i {
color: var(--white);
}
.info-single .info-icon {
border: 1px solid #eeeeee;
margin: 0px auto 20px auto;
position: relative;
z-index: 1;
background: var(--white);
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
border-radius: 50%;
}
.info-single .info-icon::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: var(--primary-color1);
border-radius: 50%;
left: 0;
top: 0;
z-index: -1;
opacity: 1;
transition: all 0.55s ease;
opacity: 0;
transform: scale(0.3);
}
.info-single .info-icon svg {
width: 35px;
font-weight: 300;
transition: all 0.55s ease;
}
.info-single .info-text h3 {
font-size: 2.6rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 15px;
}
.info-single .info-text p, .info-single .info-text a {
font-size: 2rem;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 0px;
}
.info-single .info-text a {
display: block;
margin-bottom: 0px;
}
.contact-from-wrapper .form-inner {
padding: 15px 0px;
}
.review-item-list .rating {
border: none;
float: left;
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
direction: rtl;
}
.review-item-list .rating > input, .review-item-list .asking-form-wrap .style-1 .form-inner .rating > textarea, .asking-form-wrap .style-1 .form-inner .review-item-list .rating > textarea {
display: none;
}
.review-item-list .rating > label:before {
display: inline-block;
content: " \f586";
font-size: 19px;
font-family: bootstrap-icons !important;
}
.review-item-list .rating > label {
float: right;
}
.review-item-list .rating > input:checked ~ label, .review-item-list .asking-form-wrap .style-1 .form-inner .rating > textarea:checked ~ label, .asking-form-wrap .style-1 .form-inner .review-item-list .rating > textarea:checked ~ label,
.review-item-list .rating:not(:checked) > label:hover,
.review-item-list .rating:not(:checked) > label:hover ~ label {
color: var(--primary-color1);
}
.review-item-list .rating > input:checked + label:hover,
.review-item-list .rating > input:checked ~ label:hover,
.review-item-list .asking-form-wrap .style-1 .form-inner .rating > textarea:checked ~ label:hover,
.asking-form-wrap .style-1 .form-inner .review-item-list .rating > textarea:checked ~ label:hover,
.review-item-list .rating > label:hover ~ input:checked ~ label,
.review-item-list .asking-form-wrap .style-1 .form-inner .rating > label:hover ~ textarea:checked ~ label,
.asking-form-wrap .style-1 .form-inner .review-item-list .rating > label:hover ~ textarea:checked ~ label,
.review-item-list .rating > input:checked ~ label:hover ~ label,
.review-item-list .asking-form-wrap .style-1 .form-inner .rating > textarea:checked ~ label:hover ~ label,
.asking-form-wrap .style-1 .form-inner .review-item-list .rating > textarea:checked ~ label:hover ~ label {
color: var(--primary-color1);
}
.contact-from-wrapper {
background: #fff;
}
.contact-from-wrapper #respond {
margin: 0px;
background: #ffffff;
border: 1.5px solid #eeeeee;
padding: 40px 60px 50px 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
.contact-from-wrapper #respond {
padding: 10px 40px 45px 40px;
}
}
@media (min-width: 576px) and (max-width: 768px) {
.contact-from-wrapper #respond {
padding: 5px 30px 40px 30px;
border: none;
}
}
@media (max-width: 576px) {
.contact-from-wrapper #respond {
padding: 10px 25px 45px 25px;
border: none;
}
}
@media (max-width: 576px) {
.contact-from-wrapper #respond {
padding: 8px 0px;
}
}
.contact-from-wrapper #respond h3.comment-reply-title {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.7;
margin-bottom: 10px;
}
.contact-from-wrapper input[type=text], .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=text], .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=text],
.contact-from-wrapper input[type=email],
.contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=email],
.asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=email] {
width: 100%;
outline: none;
border: none;
border-bottom: 1px solid #eeeeee;
border-radius: 0px;
padding: 12px 0px;
transition: all 0.45s ease;
font-size: 16px;
color: var(--text-primary);
background: none;
}
.contact-from-wrapper input[type=text]::-moz-placeholder, .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=text]::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=text]::-moz-placeholder, .contact-from-wrapper input[type=email]::-moz-placeholder, .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=email]::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=email]::-moz-placeholder {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
-moz-transition: all 0.45s ease;
transition: all 0.45s ease;
}
.contact-from-wrapper input[type=text]::placeholder, .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=text]::placeholder, .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=text]::placeholder,
.contact-from-wrapper input[type=email]::placeholder,
.contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=email]::placeholder,
.asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=email]::placeholder {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
transition: all 0.45s ease;
}
.contact-from-wrapper input[type=text]:focus, .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=text]:focus, .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=text]:focus,
.contact-from-wrapper input[type=email]:focus,
.contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=email]:focus,
.asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=email]:focus {
border-bottom: 1px solid var(--primary-color1);
}
.contact-from-wrapper input[type=text]:focus::-moz-placeholder, .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=text]:focus::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=text]:focus::-moz-placeholder, .contact-from-wrapper input[type=email]:focus::-moz-placeholder, .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=email]:focus::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=email]:focus::-moz-placeholder {
color: var(--primary-color1);
}
.contact-from-wrapper input[type=text]:focus::placeholder, .contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=text]:focus::placeholder, .asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=text]:focus::placeholder,
.contact-from-wrapper input[type=email]:focus::placeholder,
.contact-from-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=email]:focus::placeholder,
.asking-form-wrap .style-1 .form-inner .contact-from-wrapper textarea[type=email]:focus::placeholder {
color: var(--primary-color1);
}
.contact-from-wrapper textarea {
width: 100%;
outline: none;
border: none;
border-bottom: 1px solid #eeeeee;
border-radius: 0px;
padding: 12px 0px;
transition: all 0.45s ease;
font-size: 16px;
color: var(--text-primary);
background: none;
height: 180px;
}
.contact-from-wrapper .submit-btn {
background: var(--primary-color1);
color: var(--white);
border-radius: 0;
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
white-space: nowrap;
border: 2px solid var(--primary-color1);
}
.contact-from-wrapper .submit-btn:hover {
color: var(--primary-color1);
background-color: #fff;
}
.error-wrapper {
padding: 0px 30px;
}
.error-wrapper .error-image {
background-size: cover;
background-repeat: no-repeat;
padding: 0 20px 30px 20px;
}
.error-wrapper .error-image img {
margin-bottom: 30px;
animation: jump 2s linear infinite alternate;
}
@keyframes jump {
0% {
transform: translateY(-5px);
}
100% {
transform: translateY(5px);
}
}
.error-wrapper .error-text p, .error-wrapper .error-text .info-single .info-text a, .info-single .info-text .error-wrapper .error-text a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-bottom: 30px;
line-height: 1.7;
} .faq-wrap .accordion-item {
margin-bottom: 24px;
border: none;
box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
}
.faq-wrap .accordion-item:last-child {
margin-bottom: 0;
}
.faq-wrap .accordion-button {
font-weight: 500;
font-size: 20px;
background: var(--white);
border-radius: 5px;
color: var(--text-primary);
font-family: var(--font-merriw);
padding: 25px 60px 25px 25px;
padding-right: 60px;
position: relative;
transition: 0.4s ease-in;
line-height: 1.7;
justify-content: flex-start;
word-break: break-all;
white-space: normal;
}
@media (max-width: 767px) {
.faq-wrap .accordion-button {
padding: 20px 55px 20px 20px;
}
}
.faq-wrap .accordion-button:hover {
color: #fff;
background: var(--primary-color1);
}
.faq-wrap .accordion-button:focus {
z-index: unset;
border-color: unset;
outline: 0;
background: var(--white);
box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
color: var(--text-primary);
}
.faq-wrap .accordion-button::after {
flex-shrink: 0;
margin-left: auto;
background-image: none;
background-repeat: unset;
background-size: unset;
font-family: bootstrap-icons !important;
font-size: 15px;
position: absolute;
right: 22px;
top: 50%;
transform: translateY(-50%);
content: "\f282";
transition: unset;
font-size: 20px;
color: var(--text-primary);
width: 32px;
height: 32px;
line-height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s ease;
}
.faq-wrap .accordion-button:not(.collapsed)::after {
background-image: none;
transform: unset;
font-family: bootstrap-icons !important;
content: "\f286";
top: 50%;
transform: translateY(-50%);
color: var(--white);
}
.faq-wrap .accordion-body {
font-weight: 400;
font-size: 17px;
line-height: 30px;
font-family: var(--font-work-sans);
border-top: none;
text-align: left;
padding: 25px;
}
.faq-wrap .accordion-button:not(.collapsed) {
box-shadow: unset;
color: var(--white);
border-radius: 5px 5px 0px 0px;
box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
background: var(--primary-color1);
}
.faq-wrap.sibling-2 .accordion-button {
font-size: 18px;
padding: 20px 60px 20px 20px;
word-break: break-all;
white-space: normal;
}
.sidebar-widget:last-child {
margin-bottom: 0px;
}
.sidebar-widget .newsletter-area {
background-image: url(//asturguias.com/wp-content/themes/astrip/assets/images/bg/side-newsletter.png);
padding: 35px 25px;
border-radius: 0px;
background-size: cover;
background-repeat: no-repeat;
}
.sidebar-widget .newsletter-area .banner-form-box {
border-radius: 0px;
border: 1px solid rgba(144, 185, 86, 0.33);
}
.sidebar-widget .newsletter-area .newsletter-title {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
@media (max-width: 991px) {
.sidebar-widget .newsletter-area .newsletter-title {
margin-bottom: 30px;
}
}
.sidebar-widget .newsletter-area .newsletter-title h5 {
font-size: 3rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
margin-bottom: 0;
}
.sidebar-widget .newsletter-area .newsletter-wrap {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px;
}
@media (max-width: 767px) {
.sidebar-widget .newsletter-area .newsletter-wrap {
gap: 0px;
}
}
.sidebar-widget .newsletter-area .newsletter-wrap form {
width: 100%;
}
.sidebar-widget .newsletter-area .newsletter-wrap form input, .sidebar-widget .newsletter-area .newsletter-wrap form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .sidebar-widget .newsletter-area .newsletter-wrap form textarea {
height: 60px;
line-height: 60px;
border: 1px solid var(--text-secondary);
width: 100%;
background-color: transparent;
padding: 20px;
color: var(--white);
transition: all 0.45s ease;
}
.sidebar-widget .newsletter-area .newsletter-wrap form input:focus, .sidebar-widget .newsletter-area .newsletter-wrap form .asking-form-wrap .style-1 .form-inner textarea:focus, .asking-form-wrap .style-1 .form-inner .sidebar-widget .newsletter-area .newsletter-wrap form textarea:focus {
border: 1px solid var(--primary-color2);
}
@media (max-width: 767px) {
.sidebar-widget .newsletter-area .newsletter-wrap form input, .sidebar-widget .newsletter-area .newsletter-wrap form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .sidebar-widget .newsletter-area .newsletter-wrap form textarea {
height: 50px;
}
}
.sidebar-widget .newsletter-area .newsletter-wrap button {
height: 60px;
background: var(--primary-color2);
color: var(--white);
min-width: 120px;
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
position: relative;
z-index: 1;
}
@media (max-width: 767px) {
.sidebar-widget .newsletter-area .newsletter-wrap button {
height: 50px;
}
}
.sidebar-widget .newsletter-area .newsletter-wrap button::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: var(--white);
width: 100%;
height: 100%;
transition: 0.5s;
z-index: -1;
transform: scale(0.6);
border-radius: 0px;
opacity: 0;
}
.sidebar-widget .newsletter-area .newsletter-wrap button:hover::after {
transform: scale(1);
opacity: 1;
}
.sidebar-offer {
position: relative;
z-index: 1;
}
.sidebar-offer::before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: #000;
opacity: 0.5;
}
@media (max-width: 576px) {
.sidebar-offer {
max-width: 435px;
margin: 0px auto;
}
}
.sidebar-offer img {
width: 100%;
}
.sidebar-offer::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
z-index: 1;
}
.sidebar-offer .offer-badge {
position: absolute;
right: 25px;
top: 25px;
}
.sidebar-offer .offer-content {
text-align: center;
padding: 0px 25px;
position: absolute;
bottom: 0;
left: 50%;
z-index: 2;
transform: translateX(-50%);
width: 100%;
}
.sidebar-offer .offer-content .review-area span {
font-size: 12px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
}
.sidebar-offer .offer-content .review-area .star-list li i {
font-size: 10px;
font-weight: 400;
color: var(--white);
}
.sidebar-offer .offer-content h4 {
margin-bottom: 10px;
}
.sidebar-offer .offer-content h4 a {
font-size: 2.4rem;
font-weight: 600;
color: var(--white);
font-family: var(--font-merriw);
}
.sidebar-offer .offer-content .price {
margin-bottom: 25px;
}
.sidebar-offer .offer-content .price span {
font-size: 16px;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
}
.sidebar-offer .offer-content .price del {
font-size: 1.4rem;
font-weight: 500;
color: #e6e6e6;
font-family: var(--font-work-sans);
} .desti-sidebar-widget {
margin-bottom: 60px;
}
.desti-sidebar-widget h4.widget-title {
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-top: -5px;
margin-bottom: 30px;
}
.sidebar-search form .form-inner {
border: 1px solid #eeeeee;
display: flex;
flex-direction: row;
padding: 15px 15px;
}
.sidebar-search form .form-inner input, .sidebar-search form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .sidebar-search form .form-inner textarea {
outline: none;
border: none;
width: 100%;
color: var(--text-primary);
padding: 0;
}
.sidebar-search form .form-inner input::-moz-placeholder, .sidebar-search form .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .sidebar-search form .form-inner textarea::-moz-placeholder {
font-size: 15px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
-moz-transition: all 0.45s ease;
transition: all 0.45s ease;
}
.sidebar-search form .form-inner input::placeholder, .sidebar-search form .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .sidebar-search form .form-inner textarea::placeholder {
font-size: 15px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
transition: all 0.45s ease;
}
.sidebar-search form .form-inner input:focus::-moz-placeholder, .sidebar-search form .asking-form-wrap .style-1 .form-inner textarea:focus::-moz-placeholder, .asking-form-wrap .style-1 .sidebar-search form .form-inner textarea:focus::-moz-placeholder {
color: var(--primary-color1);
}
.sidebar-search form .form-inner input:focus::placeholder, .sidebar-search form .asking-form-wrap .style-1 .form-inner textarea:focus::placeholder, .asking-form-wrap .style-1 .sidebar-search form .form-inner textarea:focus::placeholder {
color: var(--primary-color1);
}
.sidebar-search form .form-inner button {
border: none;
outline: none;
background-color: var(--white);
}
.sidebar-search form .form-inner button i {
font-size: 28px;
color: var(--text-primary);
transition: all 0.45s ease;
display: block;
}
.sidebar-search form .form-inner button:hover i {
color: var(--primary-color1);
}
.tour-package-list {
list-style: none;
margin: 0;
padding: 0;
}
.tour-package-list li {
margin-bottom: 25px;
}
.tour-package-list li:last-child {
margin-bottom: 0px;
}
.tour-package-list .sidebar-package-single {
display: flex;
flex-direction: row;
justify-content: start;
gap: 18px;
align-items: center;
}
.tour-package-list .sidebar-package-single img {
height: 90px;
width: 90px;
-o-object-fit: cover;
object-fit: cover;
}
.tour-package-list .sidebar-package-single .package-content h5 {
margin-bottom: 8px;
}
.tour-package-list .sidebar-package-single .package-content h5 a {
font-size: 17px;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.tour-package-list .sidebar-package-single .package-content span {
font-size: 16px;
font-weight: 500;
color: var(--text-secondary);
margin-bottom: 10px;
display: inline-block;
}
.tour-package-list .sidebar-package-single .package-content span .bi {
color: var(--primary-color1);
font-weight: 600;
}
.tour-package-list .sidebar-package-single .package-content .package-price {
font-size: 18px;
font-weight: 600;
color: var(--primary-color1);
font-family: var(--font-work-sans);
margin-bottom: 0px;
}
.tour-category .tour-category-list {
list-style: none;
margin: 0;
padding: 0;
}
.tour-category .tour-category-list li {
position: relative;
transition: all 0.65s ease;
margin-bottom: 20px;
}
.tour-category .tour-category-list li:last-child {
margin-bottom: 0px;
}
.tour-category .tour-category-list li a {
position: relative;
font-weight: 500;
font-size: 16px;
color: var(--text-primary);
display: block;
font-family: var(--font-exo);
transition: all 0.5s ease-out 0s;
}
.tour-category .tour-category-list li:hover::before {
color: var(--primary-color1);
}
.tour-category .tour-category-list li:hover a {
color: var(--primary-color1);
}
.sidebar-social-area .sidebar-social-list {
list-style: none;
margin: 0;
padding: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
gap: 25px;
}
.sidebar-social-area .sidebar-social-list i {
border: 1px solid #eeeeee;
width: 30px;
height: 30px;
line-height: 30px;
color: var(--text-secondary);
background: var(--white);
text-align: center;
font-size: 18px;
transition: all 0.45s ease-out 0s;
}
.sidebar-social-area .sidebar-social-list i:hover {
background: var(--primary-color1);
border: 1px solid var(--primary-color1);
color: var(--white);
} .destination-block h3 {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 22px;
}
.destination-block p, .destination-block .info-single .info-text a, .info-single .info-text .destination-block a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.desti-details-block {
margin-bottom: 50px;
}
.desti-details-block:last-child {
margin-bottom: 0px;
}
.desti-details-block h3 {
font-size: 3.5rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 25px;
}
.desti-details-block p, .desti-details-block .info-single .info-text a, .info-single .info-text .desti-details-block a {
margin-bottom: 25px;
}
.desti-details-block .desti-details-img {
margin: 33px 0px 33px 0px;
}
.desti-details-block h5 {
font-size: 19px;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
font-style: italic;
margin-bottom: 25px;
}
.desti-details-block h6 {
font-size: 17px;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.7;
margin-bottom: 25px;
margin-top: -5px;
}
.desti-details-block .desti-details-sm-img {
margin-top: 10px;
margin-bottom: 30px;
}
.desti-details-block .desti-details-sm-img p, .desti-details-block .desti-details-sm-img .info-single .info-text a, .info-single .info-text .desti-details-block .desti-details-sm-img a {
font-size: 16px;
font-weight: 500;
color: var(--text-secondary);
font-style: italic;
text-align: center;
margin-top: 20px;
margin-bottom: 0px;
}
.map-area {
height: 300px;
}
.map-area iframe {
height: 100%;
width: 100%;
filter: grayscale(199%) invert(98%) contrast(122%);
} .blog-standard-single {
position: relative;
background: #ffffff;
border: 1px solid #eeeeee;
padding: 30px 30px 40px 30px;
margin-bottom: 60px;
}
.blog-standard-single:last-child {
margin-bottom: 0px;
}
.blog-standard-single .blog-format {
margin-bottom: 30px;
position: relative;
}
.blog-standard-single .blog-format span.blog-date {
position: absolute;
bottom: 30px;
left: 35px;
font-size: 15px;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
padding: 5px 15px;
background: var(--white);
z-index: 9;
}
@media (max-width: 576px) {
.blog-standard-single .blog-format span.blog-date {
bottom: 20px;
left: 25px;
}
}
.blog-standard-single .blog-format .video-js {
width: 100%;
height: 400px;
position: relative;
z-index: 99;
}
.blog-standard-single .blog-content h3 {
margin-bottom: 10px;
}
.blog-standard-single .blog-content h3 a {
font-size: 3rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
transition: all 0.35s ease;
}
.blog-standard-single .blog-content h3:hover a {
color: var(--primary-color1);
}
.blog-standard-single .author-area {
margin-bottom: 20px;
}
.blog-standard-single .author-area p, .blog-standard-single .author-area .info-single .info-text a, .info-single .info-text .blog-standard-single .author-area a {
font-size: 17px;
font-weight: 400;
color: #9e9e9e;
font-family: var(--font-work-sans);
}
.blog-standard-single .author-area p a, .blog-standard-single .author-area .info-single .info-text a a, .info-single .info-text .blog-standard-single .author-area a a {
color: var(--primary-color1);
}
.blog-standard-single .blog-meta {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-top: 25px;
flex-wrap: wrap;
gap: 35px;
}
.blog-standard-single ul.share-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
flex-direction: row;
gap: 15px;
}
.blog-standard-single ul.share-list > li {
position: relative;
font-size: 17px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
padding-right: 15px;
cursor: pointer;
transition: all 0.45s ease;
}
.blog-standard-single ul.share-list > li:hover {
color: var(--primary-color1);
}
.blog-standard-single ul.share-list > li:hover .blog-social {
opacity: 1;
transform: translateY(0);
visibility: visible;
}
.blog-standard-single ul.share-list > li:last-child {
padding-right: 0px;
}
.blog-standard-single ul.share-list > li:last-child::after {
content: unset;
}
.blog-standard-single ul.share-list > li i {
margin-right: 8px;
}
.blog-standard-single ul.share-list > li::after {
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 16px;
background-color: var(--border-color);
}
.blog-standard-single ul.share-list > li ul.blog-social {
list-style: none;
margin: 0;
padding: 0;
gap: 10px;
position: absolute;
top: 29px;
right: -23px;
display: flex;
flex-direction: row;
padding: 2px 10px;
opacity: 0;
visibility: hidden;
transition: all 0.45s ease;
transform: translateY(-10px);
}
.blog-standard-single ul.share-list > li ul.blog-social li {
color: var(--text-primary);
transition: all 0.45s ease;
}
.blog-standard-single ul.share-list > li ul.blog-social li:hover {
color: var(--primary-color1);
}
@media (max-width: 991px) {
.blog-sidebar {
margin-top: 90px;
padding: 0px 10px;
}
}
.blog-widget-item {
margin-bottom: 60px;
clear: both;
display: table;
content: "";
width: 100%;
}
.blog-widget-item .trending-post-list {
list-style: none;
margin: 0;
padding: 0;
}
.blog-widget-item .trending-post-list li {
margin-bottom: 30px;
}
.blog-widget-item .trending-post-list li:last-child {
margin-bottom: 0px;
}
.blog-widget-item .trending-post-list .trending-post-single {
display: flex;
flex-direction: row;
justify-content: start;
gap: 15px;
align-items: center;
}
.blog-widget-item .trending-post-list .trending-post-single .post-content h6 {
margin-bottom: 10px;
}
.blog-widget-item .trending-post-list .trending-post-single .post-content h6 a {
font-size: 17px;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.55;
transition: all 0.45s ease;
}
.blog-widget-item .trending-post-list .trending-post-single .post-content h6:hover a {
color: var(--primary-color1);
}
.blog-widget-item .trending-post-list .trending-post-single .post-content span.post-date {
font-size: 15px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.blog-widget-item .trending-post-list .trending-post-single .package-image img {
max-width: 100px;
}
.blog-widget-item:last-child {
margin-bottom: 0px;
}
.blog-widget-title {
position: relative;
font-size: 2.4rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
display: inline-block;
padding-bottom: 12px;
margin-bottom: 30px;
}
.blog-widget-title::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 70px;
background: linear-gradient(90.04deg, var(--primary-color1) 0%, rgba(30, 204, 209, 0) 99.27%);
border-radius: 30px;
height: 2px;
}
.footer-social {
display: flex;
gap: 20px;
align-items: center;
}
.footer-social li a i {
border: 1px solid #eee;
width: 30px;
height: 30px;
line-height: 28px;
color: var(--text-secondary);
background: var(--white);
text-align: center;
font-size: 18px;
transition: all 0.45s ease-out 0s;
display: block;
}
.footer-social li a i:hover {
background: var(--primary-color1);
border: 1px solid var(--primary-color1);
color: var(--white);
} h3.tour-details-subtitle {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
line-height: 1.7;
margin-bottom: 25px;
}
.nav-btn-style {
background: var(--white);
min-width: 0px;
color: var(--text-secondary);
font-size: 20px;
font-weight: 500;
font-family: var(--font-work-sans);
padding: 10px 20px;
text-align: left;
transition: all 0.42s ease;
border-radius: 0px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.nav-btn-style {
padding: 10px 15px;
}
}
.nav-btn-style svg {
margin-right: 5px;
color: var(--text-secondary);
transition: all 0.42s ease;
}
.nav-btn-style:hover {
background-color: var(--primary-color1);
color: var(--white);
}
.nav-btn-style:hover svg {
fill: var(--white);
}
.destination-tab .nav {
display: flex;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
margin-bottom: 45px;
}
@media (max-width: 1199px) {
.destination-tab .nav {
padding: 20px;
gap: 12px;
}
}
.destination-tab .nav-pills .nav-link.active,
.destination-tab .nav-pills .show > .nav-link {
color: var(--white);
background-color: var(--primary-color1);
}
.destination-tab .nav-pills .nav-link.active svg,
.destination-tab .nav-pills .show > .nav-link svg {
fill: var(--white);
}
.destination-tab .nav-pills .nav-link {
border-left: 0;
font-size: 18px;
min-width: 165px;
text-align: center;
border-radius: 0rem;
border: 1px solid #eee;
}
@media (min-width: 1200px) and (max-width: 1399px) {
.destination-tab .nav-pills .nav-link {
min-width: 140px;
font-size: 18px;
}
}
@media (max-width: 767px) {
.destination-tab .nav-pills .nav-link {
border-left: 1px solid #eee;
}
}
.destination-tab .nav-pills .nav-link:first-child {
border-left: 1px solid #eee;
}
.destination-tab .nav-pills .nav-link:last-child {
border-right: 1px solid #eee;
}
@media (max-width: 576px) {
.destination-tab .nav-pills .nav-link {
width: 100%;
}
}
.booking-form-box .nav-pills .nav-link {
font-size: 16px;
font-weight: 500;
border-radius: 0rem;
color: var(--primary-color1);
border: 1px solid var(--primary-color1);
}
.booking-form-box .nav-pills .nav-link:hover {
color: var(--white);
}
.booking-form-box .nav-pills .nav-link.active,
.booking-form-box .nav-pills .show > .nav-link {
color: #fff;
background-color: var(--primary-color1);
}
.booking-form-box .separate-line {
opacity: 0.1;
margin: 20px 0px 36px 0px;
}
.separate-line2 {
opacity: 0.1;
margin: 30px 0px;
}
.text-danger {
color: #dc3545 !important;
margin-bottom: 10px;
display: block;
} .check-container {
display: flex;
justify-content: space-between;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 16px;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
font-weight: 500;
}
.check-container .bi {
color: #ffcc33;
margin-right: 3px;
}
.check-container span.price {
color: var(--text-primary);
font-weight: 600;
} .checkbox-container input, .checkbox-container .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .checkbox-container textarea {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
} .checkmark {
position: absolute;
top: 5px;
left: 0;
height: 20px;
width: 20px;
background-color: #eee;
} .checkbox-container:hover input ~ .checkmark, .checkbox-container:hover .asking-form-wrap .style-1 .form-inner textarea ~ .checkmark, .asking-form-wrap .style-1 .form-inner .checkbox-container:hover textarea ~ .checkmark {
background-color: #ccc;
} .checkbox-container input:checked ~ .checkmark, .checkbox-container .asking-form-wrap .style-1 .form-inner textarea:checked ~ .checkmark, .asking-form-wrap .style-1 .form-inner .checkbox-container textarea:checked ~ .checkmark {
background-color: var(--primary-color1);
} .checkmark:after {
content: "";
position: absolute;
display: none;
} .checkbox-container input:checked ~ .checkmark:after, .checkbox-container .asking-form-wrap .style-1 .form-inner textarea:checked ~ .checkmark:after, .asking-form-wrap .style-1 .form-inner .checkbox-container textarea:checked ~ .checkmark:after {
display: block;
} .checkbox-container .checkmark:after {
left: 7px;
top: 4px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.clearfix::after {
content: "";
clear: both;
display: block;
}
h4.package-widget-title {
font-size: 2.2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 30px;
}
.package-filter-area {
margin-bottom: 40px;
display: flex;
flex-direction: row;
padding: 0px 10px;
align-items: center;
justify-content: space-between;
}
.package-filter-area h4 {
font-size: 2.5rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.tour-package-sidebar {
max-width: 100%;
}
.check-box-item {
margin-bottom: 35px;
}
.check-box-item h5 {
font-size: 2.2rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 20px;
font-family: var(--font-merriw);
}
.booking-form-item-type {
text-align: left;
}
.booking-form-item-type h5 {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
font-family: var(--font-work-sans);
}
.total-price {
font-size: 16px;
font-weight: 500;
color: var(--text-secondary);
margin-top: 25px;
margin-bottom: 25px;
position: relative;
}
.total-price span {
font-size: 28px;
color: var(--text-primary);
font-weight: 700;
}
.total-price input, .total-price .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .total-price textarea {
width: 110px;
font-size: 28px;
font-weight: 700;
height: 35px;
border: none;
}
.sidebar-booking-form input[type=radio], .sidebar-booking-form .asking-form-wrap .style-1 .form-inner textarea[type=radio], .asking-form-wrap .style-1 .form-inner .sidebar-booking-form textarea[type=radio],
.sidebar-booking-form input[type=checked],
.sidebar-booking-form .asking-form-wrap .style-1 .form-inner textarea[type=checked],
.asking-form-wrap .style-1 .form-inner .sidebar-booking-form textarea[type=checked] {
width: 18px;
height: 18px;
margin-right: 10px;
}
.sidebar-booking-form label {
font-size: 18px;
display: flex;
text-align: left;
}
.sidebar-booking-form input, .sidebar-booking-form .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .sidebar-booking-form textarea {
accent-color: var(--text-secondary);
}
.radio-item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
position: relative;
}
.radio-item .custom-date {
display: inline-block;
position: absolute;
font-size: 16px;
font-weight: 600;
line-height: 1;
top: -13px;
left: 45px;
background: #fff;
padding: 5px;
}
.radio-item:last-child {
margin-bottom: 0px;
}
.radio-item > label {
width: 100%;
align-items: center;
}
.radio-item #customDateDatepicker {
width: 100%;
border: 1px solid var(--border-color);
padding: 8px 20px;
}
.radio-item .tour-date {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.radio-item .tour-date .radio-arrow .bi {
font-size: 22px;
color: var(--primary-color1);
}
.radio-item .tour-date .start-date span,
.radio-item .tour-date .end-date span {
color: var(--text-secondary);
}
.radio-item .tour-date .start-date span:first-child,
.radio-item .tour-date .end-date span:first-child {
font-size: 16px;
font-weight: 600;
display: block;
line-height: 1;
}
.radio-item .tour-date .start-date span:last-child,
.radio-item .tour-date .end-date span:last-child {
font-size: 15px;
font-weight: 400;
}
.number-input-item {
cursor: pointer;
display: flex;
justify-content: space-between;
margin-bottom: 30px;
align-items: center;
}
.number-input-item:last-child {
margin-bottom: 0px;
}
.number-input-item .number-input-lable {
min-width: 125px;
display: flex;
justify-content: space-between;
font-size: 18px;
font-weight: 500;
color: var(--text-primary);
gap: 15px;
}
.number-input-item .number-input-lable del {
font-size: 14px;
}
.number-input {
border: 1px solid var(--border-color);
display: flex;
align-items: center;
justify-content: center;
width: 135px;
border-radius: 50px;
padding: 4px 5px;
background-color: rgba(237, 237, 237, 0.237);
}
.number-input input, .number-input .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .number-input textarea {
width: 70px;
text-align: center;
border: none;
background-color: rgba(237, 237, 237, 0.237);
color: var(--text-primary);
font-size: 18px;
font-weight: 600;
padding: 0;
}
.number-input .minus-qty,
.number-input .plus-qty {
width: 25px;
height: 25px;
line-height: 21px;
font-size: 20px;
border-radius: 50%;
border: 1px solid var(--primary-color1);
color: var(--primary-color1);
text-align: center;
display: inline-block;
transition: all 0.4s ease;
}
.number-input .minus-qty:hover,
.number-input .plus-qty:hover {
background-color: var(--primary-color1);
color: var(--white);
}
.tour-information .details-img-group {
margin: 18px 0px 40px 0px;
}
.tour-information .tour-price {
display: inline-flex;
align-items: center;
margin-bottom: 10px;
}
.tour-information .tour-price h3 {
font-size: 3.5rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
}
.tour-information .tour-price h3 del {
font-size: 70%;
opacity: 0.5;
}
.tour-information .tour-price span {
display: inline-block;
margin-left: 10px;
font-size: 14px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-merriw);
}
.tour-information ul.tour-info-metalist {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: start;
align-items: center;
margin-bottom: 25px;
}
@media (max-width: 576px) {
.tour-information ul.tour-info-metalist {
flex-wrap: wrap;
gap: 5px;
}
}
.tour-information ul.tour-info-metalist li {
font-size: 16px;
font-weight: 600;
color: var(--text-secondary);
font-family: var(--font-work-sans);
margin-right: 35px;
}
.tour-information ul.tour-info-metalist li svg {
margin-top: -5px;
margin-right: 8px;
fill: var(--primary-color1);
}
.tour-information P {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
line-height: 1.7;
}
.tour-info-list-area {
border: 1px solid #eeeeee;
background-color: var(--white);
margin: 30px 0px 30px 0px;
}
.tour-info-list-area ul.info-list-1 {
list-style: none;
margin: 0;
padding: 0;
border-bottom: 1px solid #eeeeee;
padding: 30px;
}
@media (max-width: 767px) {
.tour-info-list-area ul.info-list-1 {
padding: 25px 20px;
}
}
.tour-info-list-area ul.info-list-1 > li {
display: block;
margin-bottom: 25px;
}
.tour-info-list-area ul.info-list-1 > li span:first-child {
font-size: 16px;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
width: 35%;
display: inline-block;
}
@media (max-width: 767px) {
.tour-info-list-area ul.info-list-1 > li span:first-child {
width: 100%;
margin-bottom: 8px;
}
}
.tour-info-list-area ul.info-list-1 > li span:last-child {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
width: 65%;
}
.tour-info-list-area ul.info-list-1 > li ul.info-sublist {
list-style: none;
margin: 0;
padding: 0;
width: 65%;
margin-left: auto;
margin-top: -25px;
gap: 20px;
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
@media (max-width: 767px) {
.tour-info-list-area ul.info-list-1 > li ul.info-sublist {
width: 100%;
margin-top: 10px;
margin-left: 0;
}
}
.tour-info-list-area ul.info-list-1 > li ul.info-sublist li {
display: inline-block;
width: 47%;
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
@media (max-width: 767px) {
.tour-info-list-area ul.info-list-1 > li ul.info-sublist li {
width: 100%;
}
}
.tour-info-list-area ul.info-list-1 > li ul.info-sublist i {
color: var(--primary-color1);
font-size: 20px;
font-weight: 500;
vertical-align: middle;
margin-right: 8px;
}
.tour-plan-single {
display: flex;
justify-content: flex-start;
align-items: flex-start;
gap: 25px;
border-bottom: 1px solid #eeeeee;
padding-bottom: 20px;
margin-bottom: 40px;
}
.tour-plan-single:last-child {
margin-bottom: 0;
border-bottom: 0;
}
@media (max-width: 576px) {
.tour-plan-single {
flex-wrap: wrap;
gap: 20px;
}
}
.tour-plan-single .plan-serial {
width: 54px;
height: 54px;
line-height: 54px;
text-align: center;
border-radius: 50%;
border: 1px solid var(--primary-color1);
min-width: 54px;
border-radius: 0px;
background: var(--white);
transition: all 0.45s cubic-bezier(0.84, 0.35, 0.39, 0.74);
}
.tour-plan-single .plan-serial span {
display: inline-block;
font-size: 2.8rem;
font-weight: 600;
color: var(--primary-color1);
font-family: var(--font-work-sans);
transition: all 0.45s cubic-bezier(0.84, 0.35, 0.39, 0.74);
}
.tour-plan-single h4.plan-title {
font-size: 2.2rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 20px;
}
.tour-plan-single p, .tour-plan-single .info-single .info-text a, .info-single .info-text .tour-plan-single a {
font-size: 17px;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.tour-plan-single:hover .plan-serial {
background: var(--primary-color1);
}
.tour-plan-single:hover .plan-serial span {
font-size: 2.8rem;
font-weight: 600;
color: var(--white);
}
.tour-plan-single .plan-list {
list-style: none;
margin: 0;
padding: 0;
margin-top: 25px;
}
.tour-plan-single .plan-list li {
font-size: 18px;
font-weight: 400;
color: var(--text-primary);
font-family: var(--font-work-sans);
margin-bottom: 15px;
position: relative;
padding-left: 25px;
}
.tour-plan-single .plan-list li::before {
content: "\f633";
font-family: "Bootstrap-icons";
position: absolute;
left: 0;
top: 5px;
font-weight: 300;
font-size: 14px;
color: var(--primary-color1);
}
.tour-location .map-area {
margin-bottom: 30px;
}
.tour-gallery {
position: relative;
overflow: hidden;
}
.tour-gallery a {
display: inline-block;
overflow: hidden;
}
.tour-gallery a img {
transition: all 0.55s ease;
}
.tour-gallery a:hover img {
width: 100%;
transform: scale(1.1);
}
.tour-review-area {
padding: 0px 10px;
}
.review-progress-box {
border: 1px solid #eeeeee;
margin: 45px 0px;
padding: 35px;
}
@media (max-width: 767px) {
.review-progress-box {
padding: 25px;
}
}
.review-progress-box .tour-review-number {
text-align: center;
}
@media (max-width: 991px) {
.review-progress-box .tour-review-number {
margin-bottom: 15px;
}
}
.review-progress-box .tour-review-number span {
font-size: 5rem;
font-weight: 500;
color: var(--primary-color1);
font-family: var(--font-work-sans);
}
.review-progress-box .tour-review-number h2 {
font-size: 2.5rem;
font-weight: 500;
color: var(--text-primary);
font-family: var(--font-work-sans);
}
.review-progress-box .progress-singl {
position: relative;
margin-bottom: 35px;
}
.review-progress-box .progress-singl:last-child {
margin-bottom: 0px;
}
.review-progress-box .progress-singl span {
position: absolute;
top: -6px;
font-size: 18px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.review-progress-box .progress-bar {
position: relative;
display: block;
text-align: right;
background: transparent;
color: var(--text-secondary);
font-size: 18px;
font-weight: 500;
font-style: normal;
overflow: visible;
}
.review-progress-box .progress-bar:after {
content: "";
position: absolute;
top: 25px;
left: 0;
display: block;
height: 6px;
border-radius: 5px;
width: var(--progress);
animation: progress 2s;
background: var(--primary-color1-light);
border-radius: 5px 0 0 5px;
border-right: 0;
outline: none;
z-index: 9;
}
.review-progress-box .progress-bar:before {
content: "";
position: absolute;
top: 25px;
left: 0;
display: block;
height: 6px;
border-radius: 5px;
width: 100%;
background: var(--primary-color1-light2);
border-radius: 5px 0 0 5px;
border-right: 0;
outline: none;
z-index: 9;
}
@keyframes progress {
from {
width: 0;
}
to {
width: var(--progress);
}
}
.review-commetn-area {
margin-bottom: 54px;
}
.review-commetn-area .review-comment-list {
padding: 0px;
margin: 35px 0 0 0;
list-style: none;
}
.review-commetn-area .review-comment-list > li:last-child .comment-item {
margin-bottom: 0px;
}
.review-commetn-area .review-comment-list > li .comment-reply {
margin: 0px;
padding: 0px 0px 0px 10%;
list-style: none;
}
.review-commetn-area .review-comment-list .comment-item {
border-radius: 5px;
border-bottom: 1px solid #eeeeee;
padding-bottom: 30px;
display: flex;
justify-content: start;
align-items: start;
flex-direction: row;
flex-wrap: nowrap;
gap: 20px;
margin-bottom: 35px;
}
.review-commetn-area .review-comment-list .comment-item .comment-title {
margin-bottom: 11px;
font-weight: 600;
font-size: 16px;
margin-top: 20px;
}
.review-commetn-area .review-comment-list .comment-item .image img {
height: auto;
width: 120px;
border-radius: 50%;
}
@media (max-width: 576px) {
.review-commetn-area .review-comment-list .comment-item {
flex-wrap: wrap;
}
}
.review-commetn-area .review-comment-list .comment-meta {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: nowrap;
gap: 10px;
margin-bottom: 15px;
}
@media (max-width: 576px) {
.review-commetn-area .review-comment-list .comment-meta {
gap: 5px;
flex-wrap: wrap;
}
}
.review-commetn-area .review-comment-list .comment-meta h5 {
font-size: 2rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-right: 0px;
}
.review-commetn-area .review-comment-list .comment-meta span {
font-size: 14px;
font-weight: 500;
color: var(--text-color2);
}
.review-commetn-area .review-comment-list .content p, .review-commetn-area .review-comment-list .content .info-single .info-text a, .info-single .info-text .review-commetn-area .review-comment-list .content a {
font-size: 16px;
font-weight: 400;
line-height: 1.8;
}
.review-commetn-area .review-comment-list .content .reply {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
padding-bottom: 3px;
border-bottom: 1px dashed var(--text-secondary);
background-color: var(--white);
outline: none;
margin-top: 5px;
transition: all 0.4s ease;
}
.review-commetn-area .review-comment-list .content .reply:hover {
color: var(--primary-color1);
border-bottom: 1px dashed var(--primary-color1);
}
.review-commetn-area .review-comment-list .content .reply .bi {
margin-left: 5px;
}
.review-item-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 20px;
margin-top: 25px;
}
.review-item-list > li {
display: inline-flex;
width: calc(33.33% - 20px);
align-items: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
.review-item-list > li {
width: calc(50% - 20px);
}
}
@media (max-width: 991px) {
.review-item-list > li {
width: calc(100% - 20px);
}
}
.review-item-list > li span {
display: inline-block;
margin-right: 15px;
font-size: 14px;
font-weight: 500;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.review-item-list > li .star-list {
font-size: 14px;
display: flex;
flex-direction: row;
list-style: none;
margin: 0;
padding: 0;
gap: 5px;
}
.review-item-list > li .star-list li {
color: var(--primary-color1);
}
.material-icons.star-icon {
font-size: 38px;
cursor: pointer;
}
.star-rating-wrapper {
margin-top: 30px;
margin-bottom: 20px;
}
.star-rating-wrapper ul.star-rating-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
}
.star-rating-wrapper ul.star-rating-list li {
margin-right: 10px;
}
.star-rating-wrapper ul.star-rating-list li span {
display: inline-block;
margin-top: 10px;
font-size: 18px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.booking-form-box {
position: relative;
z-index: 9;
text-align: center;
padding: 35px 30px;
background: #ffffff;
box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);
width: 100%;
margin: 0 auto 60px auto;
border-radius: 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.booking-form-box {
padding: 30px 20px;
}
}
@media (max-width: 991px) {
.booking-form-box {
margin-top: 20px;
}
}
@media (max-width: 576px) {
.booking-form-box {
padding: 40px 20px;
}
}
.booking-form-box h3 {
font-size: 2.8rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-merriw);
margin-bottom: 15px;
}
.booking-form-box p, .booking-form-box .info-single .info-text a, .info-single .info-text .booking-form-box a {
font-size: 17px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
}
.booking-form-box .banner-form {
margin-top: 40px;
}
.booking-form-box .banner-form .searchbox-input {
width: 100%;
}
.booking-form-box .banner-form .searchbox-input input, .booking-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .booking-form-box .banner-form .searchbox-input textarea {
width: 100%;
height: 50px;
border: unset;
background-color: var(--white);
padding-left: 10px;
color: var(--text-primary);
transition: all 0.45s ease;
}
.booking-form-box .banner-form .searchbox-input input:focus::-moz-placeholder, .booking-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea:focus::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .booking-form-box .banner-form .searchbox-input textarea:focus::-moz-placeholder {
color: var(--primary-color1);
}
.booking-form-box .banner-form .searchbox-input input:focus::placeholder, .booking-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea:focus::placeholder, .asking-form-wrap .style-1 .form-inner .booking-form-box .banner-form .searchbox-input textarea:focus::placeholder {
color: var(--primary-color1);
}
.booking-form-box .banner-form .searchbox-input input::-moz-placeholder, .booking-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .booking-form-box .banner-form .searchbox-input textarea::-moz-placeholder {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
-moz-transition: all 0.45s ease;
transition: all 0.45s ease;
}
.booking-form-box .banner-form .searchbox-input input::placeholder, .booking-form-box .banner-form .searchbox-input .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .form-inner .booking-form-box .banner-form .searchbox-input textarea::placeholder {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
transition: all 0.45s ease;
}
.booking-form-box .banner-form .searchbox-input textarea {
width: 100%;
border: none;
outline: none;
padding: 13px 10px;
background: transparent;
}
.booking-form-box .banner-form .searchbox-input textarea:focus::-moz-placeholder {
color: var(--primary-color1);
}
.booking-form-box .banner-form .searchbox-input textarea:focus::placeholder {
color: var(--primary-color1);
}
.booking-form-box .banner-form .searchbox-input textarea::-moz-placeholder {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
-moz-transition: all 0.45s ease;
transition: all 0.45s ease;
}
.booking-form-box .banner-form .searchbox-input textarea::placeholder {
font-size: 16px;
font-weight: 400;
color: var(--text-secondary);
font-family: var(--font-work-sans);
transition: all 0.45s ease;
}
.booking-form-box .banner-form .search-box-single {
display: flex;
flex-direction: row;
align-items: flex-start;
position: relative;
margin-bottom: 25px;
padding: 0px 20px;
border: 1px solid #eeeeee;
transition: all 0.45s ease;
}
@media (max-width: 576px) {
.booking-form-box .banner-form .search-box-single {
padding: 0px 12px;
}
}
.booking-form-box .banner-form .search-box-single .searchbox-icon {
padding-top: 13px;
}
.booking-form-box .banner-form .search-box-single .searchbox-icon .bi {
vertical-align: middle;
transition: all 0.45s ease;
}
.booking-form-box .banner-form .search-box-single:hover {
border: 1px solid var(--primary-color1);
}
.booking-form-box .banner-form .search-box-single:hover .bi {
color: var(--primary-color1);
}
.booking-form-box .nice-select {
background-color: #828286;
box-sizing: border-box;
clear: both;
cursor: pointer;
display: block;
float: left;
height: 50px;
line-height: 50px;
outline: none;
position: relative;
text-align: left !important;
transition: all 0.2s ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
border-radius: 0px;
border: unset;
padding-left: 10px;
}
.booking-form-box .nice-select::after {
border-bottom: 2px solid var(--white);
border-right: 2px solid var(--white);
}
.booking-form-box .nice-select .option {
min-height: 35px;
line-height: 35px;
font-size: 14px;
}
.booking-form-box .nice-select .option:hover {
background: var(--primary-color2);
color: var(--text-primary);
}
.booking-form-box .nice-select .option.selected {
background: var(--primary-color2) !important;
}
.booking-form-box .nice-select .current {
font-size: 1.6rem;
font-weight: 500;
color: var(--white);
}
.booking-form-box .nice-select .list {
border: unset;
border: 1px solid rgba(41, 43, 49, 0.03);
margin-top: 6px;
z-index: 100;
border-radius: 0px;
width: 100%;
min-width: 80px;
}
.ui-datepicker {
width: 17em;
padding: 0.5em 0.5em 0;
position: absolute;
top: 0px;
left: 0px;
display: none;
z-index: 13;
}
.calendar {
font-size: 16px;
}
.ui-datepicker td {
border: 0;
padding: 2px;
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: 0.2em 0;
background: var(--primary-color1);
border: 1px solid var(--primary-color1);
color: #fff;
border-radius: 0px;
}
div#ui-datepicker-div {
border: 1px solid transparent;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.07);
border-radius: 0px;
margin-top: 8px;
margin-left: -15px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
border: 1px solid transparent;
background: var(--white);
font-weight: normal;
padding: 4px;
transition: all 0.45s ease;
color: var(--text-color1);
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover,
.ui-button:hover,
html .ui-button.ui-state-disabled:hover:hover,
html .ui-button.ui-state-disabled:active:hover {
border: 1px solid var(--primary-color1);
color: var(--primary-color1);
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
border: 1px solid var(--primary-color1) !important;
color: var(--primary-color1) !important;
}
.ui-widget-header .ui-icon {
background-image: unset;
position: relative;
}
.ui-widget-header .ui-icon::after {
content: "\f12c";
position: absolute;
left: 0;
top: 0;
font-family: "bootstrap-icons";
color: var(--white);
z-index: 9;
}
.ui-datepicker-prev {
border: 1px solid var(--primary-color1);
}
.ui-datepicker-prev:hover {
border: 1px solid var(--primary-color1);
background-color: inherit;
}
.ui-datepicker-prev::after {
content: "\f12c";
font-family: "bootstrap-icons";
font-weight: 400;
position: absolute;
top: -1px;
left: 5px;
z-index: 9;
margin: auto;
font-size: 22px;
color: var(--white);
transition: all 0.35s ease;
}
.ui-datepicker-prev span.ui-icon {
display: none !important;
visibility: hidden;
}
.ui-datepicker-next {
border: 1px solid var(--primary-color1);
}
.ui-datepicker-next:hover {
border: 1px solid var(--primary-color1);
background-color: inherit;
}
.ui-datepicker-next::after {
content: "\f135";
font-family: "bootstrap-icons";
font-weight: 400;
position: absolute;
top: -1px;
left: 5px;
z-index: 9;
margin: auto;
font-size: 22px;
color: var(--white);
transition: all 0.35s ease;
}
.ui-datepicker-next span.ui-icon {
display: none !important;
visibility: hidden;
}
.image-gallery-single {
margin-bottom: 15px;
}
.image-gallery-single img {
width: 100%;
}
.image-gallery-single .image-view {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.75);
display: flex;
justify-content: center;
align-items: center;
transform: scale(0.7);
opacity: 0;
transition: all 0.45s ease-in-out;
}
.image-gallery-single .image-view .bi {
color: var(--primary-color1);
font-size: 35px;
opacity: 0;
transition: all 0.45s ease-in-out;
}
.image-gallery-single:hover .image-view {
transform: scale(1);
opacity: 1;
}
.image-gallery-single:hover .image-view .bi {
opacity: 1;
}
.video-gallery-single {
margin-bottom: 25px;
}
.video-gallery-single img {
width: 100%;
}
.form-wrapper {
border-radius: 5px;
box-shadow: 5px 7px 35px rgba(139, 139, 139, 0.1);
padding: 40px;
background: var(--white);
}
@media (max-width: 576px) {
.form-wrapper {
padding: 25px;
}
}
.form-wrapper .form-title {
text-align: center;
margin-bottom: 60px;
}
.form-wrapper .form-title h3 {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-merriw);
text-align: center;
margin-bottom: 20px;
}
.form-wrapper .form-title p, .form-wrapper .form-title .info-single .info-text a, .info-single .info-text .form-wrapper .form-title a {
font-size: 20px;
font-weight: 400;
color: var(--text-primary);
}
.form-wrapper .form-title p a, .form-wrapper .form-title .info-single .info-text a a, .info-single .info-text .form-wrapper .form-title a a {
font-weight: 600;
font-size: 20px;
text-transform: capitalize;
color: var(--text-primary);
}
.form-wrapper .form-title2 {
margin-bottom: 30px;
}
.form-wrapper .form-title2 h3 {
font-size: 35px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 15px;
}
.form-wrapper label {
color: var(--text-primary);
font-size: 16px;
font-weight: 500;
margin-bottom: 12px;
}
.form-wrapper input, .form-wrapper .asking-form-wrap .style-1 .form-inner textarea, .asking-form-wrap .style-1 .form-inner .form-wrapper textarea,
.form-wrapper textarea {
border: 1px solid #eeeeee;
height: 50px;
width: 100%;
padding: 10px 20px;
transition: 0.4s ease;
border-radius: 0px;
}
.form-wrapper input::-moz-placeholder, .form-wrapper .asking-form-wrap .style-1 .form-inner textarea::-moz-placeholder, .asking-form-wrap .style-1 .form-inner .form-wrapper textarea::-moz-placeholder, .form-wrapper textarea::-moz-placeholder {
font-size: 14px;
font-weight: 400;
}
.form-wrapper input::placeholder, .form-wrapper .asking-form-wrap .style-1 .form-inner textarea::placeholder, .asking-form-wrap .style-1 .form-inner .form-wrapper textarea::placeholder,
.form-wrapper textarea::placeholder {
font-size: 14px;
font-weight: 400;
}
.form-wrapper input:focus, .form-wrapper .asking-form-wrap .style-1 .form-inner textarea:focus, .asking-form-wrap .style-1 .form-inner .form-wrapper textarea:focus,
.form-wrapper textarea:focus {
border: 1px solid var(--primary-color1);
}
.form-wrapper textarea {
min-height: 150px;
}
.form-wrapper .check-box-text {
font-size: 16px;
}
.form-wrapper .form-inner {
margin-bottom: 18px;
position: relative;
}
.form-wrapper .form-inner i {
position: absolute;
right: 20px;
bottom: 14px;
}
.form-wrapper .form-agreement {
margin-bottom: 16px;
margin-top: 6px;
}
.form-wrapper .form-agreement label {
font-size: 16px;
font-weight: 400;
}
.form-wrapper .form-agreement label a {
font-weight: 600;
font-size: 16;
}
.form-wrapper .alternate-signup-box {
border: 1px solid #eeeeee;
border-radius: 3px;
padding: 20px;
text-align: center;
margin-top: 30px;
margin-bottom: 35px;
}
.form-wrapper .alternate-signup-box h6 {
font-size: 16px;
font-weight: 700;
color: var(--text-primary);
text-transform: uppercase;
margin-bottom: 20px;
}
.form-wrapper .alternate-signup-box .btn-group {
display: flex;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
}
.form-wrapper .alternate-signup-box .btn-group a {
font-size: 12px;
font-weight: 700;
text-align: center;
text-transform: uppercase;
display: inline-block;
padding: 12px 15px;
color: #fff;
border-radius: 0px;
transition: 0.5s ease;
}
.form-wrapper .alternate-signup-box .btn-group a:hover {
background: var(--text-primary);
}
.form-wrapper .alternate-signup-box .btn-group i {
font-size: 16px;
}
.form-wrapper .alternate-signup-box .google-btn {
background: #db4437;
}
.form-wrapper .alternate-signup-box .facebook-btn {
background: #4267b2;
}
.form-wrapper .form-poicy-area {
text-align: center;
}
.form-wrapper .form-poicy-area a {
font-weight: 600;
color: var(--primary-color1);
text-decoration: underline;
}
.form-wrapper .form-group input[type=checkbox], .form-wrapper .form-group .asking-form-wrap .style-1 .form-inner textarea[type=checkbox], .asking-form-wrap .style-1 .form-inner .form-wrapper .form-group textarea[type=checkbox] {
display: none;
cursor: pointer;
}
.form-wrapper input[type=checkbox] + label:before, .form-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=checkbox] + label:before, .asking-form-wrap .style-1 .form-inner .form-wrapper textarea[type=checkbox] + label:before {
content: "";
-webkit-appearance: none;
background-color: var(--text-primary);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
padding: 8px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 5px;
}
.form-wrapper input[type=checkbox]:checked + label:after, .form-wrapper .asking-form-wrap .style-1 .form-inner textarea[type=checkbox]:checked + label:after, .asking-form-wrap .style-1 .form-inner .form-wrapper textarea[type=checkbox]:checked + label:after {
content: "";
display: block;
position: absolute;
top: 7px;
left: 6px;
width: 4px;
height: 10px;
border: 1px solid #fff;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.gallery-layout .gallery-wrapper {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}
.gallery-layout .gallery-wrapper .col-equal {
background: #ccc;
width: calc(25% - 20px);
}
@media (max-width: 991px) {
.gallery-layout .gallery-wrapper .col-equal {
width: calc(50% - 20px);
}
}
@media (max-width: 767px) {
.gallery-layout .gallery-wrapper .col-equal {
min-width: 100%;
}
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2 {
position: relative;
overflow: hidden;
width: 100%;
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2:hover img {
transform: scale(1.1);
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2 img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transition: all 0.55s ease-in-out;
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content {
position: absolute;
bottom: 0px;
left: 0px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: fe;
justify-content: flex-end;
padding: 20px;
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content h4 {
margin-bottom: 6px;
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content h4 a {
font-size: 2.4rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-merriw);
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content p, .gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content .info-single .info-text a, .info-single .info-text .gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content a {
font-size: 16px;
font-weight: 400;
color: var(--white);
font-family: var(--font-work-sans);
margin-bottom: 0px;
}
.gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content p span, .gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content .info-single .info-text a span, .info-single .info-text .gallery-layout .gallery-wrapper .col-equal .destination-single2 .destination-content a span {
font-size: 17px;
font-weight: 700;
color: var(--white);
font-family: var(--font-work-sans);
}
#menu-login {
display: flex;
align-items: center;
gap: 20px;
}
.header-sticky-logo {
display: none;
}
.sticky .header-logo {
display: none;
}
.sticky .header-sticky-logo {
display: block;
}
.topbar-horizontal {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
.astrip-spinner.active {
position: absolute;
visibility: hidden;
display: inline-block;
background-color: #000;
opacity: 0.75;
width: 24px;
height: 24px;
border: none;
left: 46%;
border-radius: 100%;
padding: 0;
visibility: visible;
top: 10px;
opacity: 1;
}
.astrip-spinner::before {
position: absolute;
content: "";
background-color: #fbfbfc;
top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.newsletter-form input[type=submit]:hover, .newsletter-form .asking-form-wrap .style-1 .form-inner textarea[type=submit]:hover, .asking-form-wrap .style-1 .form-inner .newsletter-form textarea[type=submit]:hover {
color: #000;
background-color: #fff;
}
.enquiries_success_message p, .enquiries_success_message .info-single .info-text a, .info-single .info-text .enquiries_success_message a {
color: #007900;
font-weight: 500;
line-height: 24px;
}
.offer-single.sibling-2 .content span {
font-size: 1.6rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
display: unset;
margin-top: 5px;
}
.offer-single.sibling-2 .content span.tt {
font-size: 1.6rem;
font-weight: 500;
color: var(--white);
font-family: var(--font-work-sans);
display: block;
margin-top: 5px;
}
.ui-datepicker table {
border: none;
}
.ui-datepicker table tr {
border: none;
}
.content-none::after {
display: none;
}
.content-none::before {
display: none;
}
.swiper.breadcrumb-slider .swiper-slide {
position: relative;
min-height: 550px;
background-size: cover;
background-position: center center;
z-index: 1;
}
.swiper.breadcrumb-slider .swiper-slide::before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: #000;
opacity: 0.5;
z-index: -1;
}
.swiper.breadcrumb-slider .swiper-slide .breadcrumb-area {
display: flex;
flex-direction: column;
justify-content: center;
height: 550px;
}
.loading #tourFilterData {
opacity: 0.3;
}
.loading .circle-loader {
display: block;
}
.circle-loader {
position: relative;
left: 50%;
top: 350px;
width: 100px;
border: 3px dotted #FFF;
border-radius: 50%;
box-sizing: border-box;
animation: rotation 2s linear infinite;
transform: translateX(-50%);
display: none;
}
.circle-loader::after {
content: "";
box-sizing: border-box;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 3px dotted var(--primary-color1);
border-style: solid solid dotted;
width: 50px;
height: 50px;
border-radius: 50%;
animation: rotationBack 1s linear infinite;
transform-origin: center center;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes rotationBack {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
.package-sidebar-close {
display: none;
}
.no-package {
text-align: center;
max-width: 600px;
margin: 0 auto;
margin-top: 120px;
}
.no-package img {
width: 150px;
height: 150px;
margin-bottom: 20px;
}
.no-package span,
.no-package p,
.no-package .info-single .info-text a,
.info-single .info-text .no-package a {
font-size: 60px;
display: block;
line-height: 1;
color: var(--primary-color1);
text-transform: capitalize;
font-family: var(--font-satisfy);
}
.banner-form span.text-start.text-danger {
margin-top: -20px;
margin-bottom: 14px;
font-size: 15px;
}
@media only screen and (max-width: 991px) {
.tour-package-sidebar {
background: var(--white);
width: 100%;
max-width: 290px;
position: fixed;
top: 0;
left: 0;
transform: translateX(-100%);
opacity: 0;
transition: all 0.55s ease-in-out;
z-index: 999;
padding: 30px 20px;
height: 100%;
overflow: auto;
box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.07);
}
.tour-package-sidebar.show {
transform: translateX(0%);
opacity: 1;
}
.tour-package-sidebar .package-sidebar-close {
margin-bottom: 30px;
text-align: right;
display: block;
}
.tour-package-sidebar .package-sidebar-close i {
font-size: 28px;
color: var(--primary-color1);
}
}
@media only screen and (min-width: 1200px) and (max-width: 1450px) {
.banner-section1 .banner1-content {
padding: 120px 30px;
}
.banner-section1 .banner1-content span {
font-size: 1.5rem;
}
.banner-section1 .banner1-content h1,
.banner-section1 .banner1-content h2 {
font-size: 4.4rem;
line-height: 1.6;
}
.banner-section1 .banner1-content .info-single .info-text a,
.banner-section1 .banner1-content p,
.info-single .info-text .banner-section1 .banner1-content a {
font-size: 2.2rem;
font-weight: 400;
}
}