@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800";

/* ============================================
   COLOR SYSTEM - CSS Variables
   ============================================ */
:root {
    /* Primary Brand Colors */
    --primary-red: #e11a34;
    --primary-red-light: #ff4757;
    --primary-red-dark: #c0152a;
    --primary-red-muted: #ff6b7a;
    
    /* Neutral Colors */
    --dark-text: #192730;
    --dark-text-alt: #2c3e50;
    --light-bg: #f4f6f7;
    --light-bg-alt: #f8f9fa;
    --border-color: #e9ecef;
    --text-muted: #6c757d;
    --text-secondary: #6c6c6c;
    --white: #ffffff;
    
    /* Accent Colors */
    --purple: #5F4C8C;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* Semantic Colors */
    --link-color: var(--primary-red);
    --link-hover: var(--primary-red-dark);
    --button-bg: var(--primary-red);
    --button-hover: var(--primary-red-dark);
    --button-text: var(--white);
}

html {
    -webkit-text-size-adjust: none;
    touch-action: manipulation;
}

body {
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--dark-text);
    font-size: 1.2rem;
}

/* Skip to main content link - hidden by default, visible on focus */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

img {
    max-width: 100%
}

a:focus {
    text-decoration: none;
}

/* Keep outline for links except navigation and specific elements */
a:not(.navbar-nav a):not(.hero-scroll-indicator):not(.back-to-top):focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

button:focus {
    outline: none;
}

a,
a:hover {
    color: var(--link-color);
    cursor: pointer;
}

a:focus,
a:hover {
    text-decoration: none
}

i,
span,
a {
    display: inline-block
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: poppins, sans-serif;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0
}

h1 {
    font-size: 48px
}

h2 {
    font-size: 36px
}

@media (max-width: 767px) {
    h2 {
        font-size: 26px
    }
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 8px;
    position: relative;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #192730;
    margin: 0
}

.white-text {
    color: #fff;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%
}

.slick-slide {
    outline: 0
}

/* Enhanced Section Title Styling */
.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title .title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    display: block;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
}

.section-title .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-red-dark));
    border-radius: 2px;
}

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

.section-title.text-center .title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.text-left .title {
    text-align: left;
}

.section-title.text-left .title::after {
    left: 0;
    transform: none;
}

@media (min-width: 992px) {
    .section-title .title {
        font-size: 48px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-title .title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title .title {
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -0.3px;
    }
    
    .section-title .title::after {
        width: 50px;
        height: 3px;
        bottom: -10px;
    }
}

.section-title .text {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 32px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

@media (min-width: 992px) {
    .section-title .text {
        font-size: 19px;
        margin-top: 36px;
    }
}

@media (max-width: 767px) {
.section-title .text {
    font-size: 16px;
        margin-top: 28px;
        max-width: 100%;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 99999;
    -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    -ms-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
}

.preloader .loader-content {
    position: relative;
    display: inline-block;
}

.preloader .loader-logo {
    margin-bottom: 40px;
    -webkit-animation: loaderFadeIn 0.6s ease-out;
    -moz-animation: loaderFadeIn 0.6s ease-out;
    -o-animation: loaderFadeIn 0.6s ease-out;
    animation: loaderFadeIn 0.6s ease-out;
}

.preloader .loader-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.preloader .loader-text {
    margin-top: 30px;
    font-size: 16px;
    color: #6c6c6c;
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-animation: loaderPulse 1.5s ease-in-out infinite;
    -moz-animation: loaderPulse 1.5s ease-in-out infinite;
    -o-animation: loaderPulse 1.5s ease-in-out infinite;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.preloader .loader .ytp-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    z-index: 18;
    pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -moz-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -o-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    animation: ytp-spinner-linspin 1568.23529647ms linear infinite
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
    -moz-animation: ytp-spinner-easespin 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
    -o-animation: ytp-spinner-easespin 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(.4, 0, .2, 1) infinite both
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%
}

.preloader .loader .ytp-spinner-circle {
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    border-color: #e11a34 #e11a34 transparent;
    border-radius: 50%;
    border-width: 4px;
    -webkit-box-shadow: 0 0 10px rgba(225, 26, 52, 0.2);
    -moz-box-shadow: 0 0 10px rgba(225, 26, 52, 0.2);
    box-shadow: 0 0 10px rgba(225, 26, 52, 0.2);
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: transparent;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
    -moz-animation: ytp-spinner-left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
    -o-animation: ytp-spinner-left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: transparent;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
    -moz-animation: ytp-right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
    -o-animation: ytp-right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both
}

/* Loader Animations */
@-webkit-keyframes loaderFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes loaderFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes loaderPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Mobile loader adjustments */
@media (max-width: 767px) {
    .preloader .loader-logo {
        margin-bottom: 30px;
    }
    
    .preloader .loader-logo img {
        max-width: 150px;
    }
    
    .preloader .loader .ytp-spinner {
        width: 60px;
        height: 60px;
    }
    
    .preloader .loader-text {
        font-size: 14px;
        margin-top: 24px;
    }
}

@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg)
    }
    25% {
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg)
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        -moz-transform: rotate(405deg);
        -ms-transform: rotate(405deg);
        -o-transform: rotate(405deg);
        transform: rotate(405deg)
    }
    50% {
        -webkit-transform: rotate(540deg);
        -moz-transform: rotate(540deg);
        -ms-transform: rotate(540deg);
        -o-transform: rotate(540deg);
        transform: rotate(540deg)
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        -moz-transform: rotate(675deg);
        -ms-transform: rotate(675deg);
        -o-transform: rotate(675deg);
        transform: rotate(675deg)
    }
    75% {
        -webkit-transform: rotate(810deg);
        -moz-transform: rotate(810deg);
        -ms-transform: rotate(810deg);
        -o-transform: rotate(810deg);
        transform: rotate(810deg)
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        transform: rotate(945deg)
    }
    to {
        -webkit-transform: rotate(1080deg);
        -moz-transform: rotate(1080deg);
        -ms-transform: rotate(1080deg);
        -o-transform: rotate(1080deg);
        transform: rotate(1080deg)
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg)
    }
    25% {
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg)
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        -moz-transform: rotate(405deg);
        -ms-transform: rotate(405deg);
        -o-transform: rotate(405deg);
        transform: rotate(405deg)
    }
    50% {
        -webkit-transform: rotate(540deg);
        -moz-transform: rotate(540deg);
        -ms-transform: rotate(540deg);
        -o-transform: rotate(540deg);
        transform: rotate(540deg)
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        -moz-transform: rotate(675deg);
        -ms-transform: rotate(675deg);
        -o-transform: rotate(675deg);
        transform: rotate(675deg)
    }
    75% {
        -webkit-transform: rotate(810deg);
        -moz-transform: rotate(810deg);
        -ms-transform: rotate(810deg);
        -o-transform: rotate(810deg);
        transform: rotate(810deg)
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        transform: rotate(945deg)
    }
    to {
        -webkit-transform: rotate(1080deg);
        -moz-transform: rotate(1080deg);
        -ms-transform: rotate(1080deg);
        -o-transform: rotate(1080deg);
        transform: rotate(1080deg)
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg)
    }
    50% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    to {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg)
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg)
    }
    50% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    to {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg)
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg)
    }
    50% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -o-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    to {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg)
    }
}

@keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg)
    }
    50% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -o-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    to {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg)
    }
}

.buttons-title .title {
    font-size: 36px;
    line-height: 45px;
    color: #6c6c6c
}

@media (max-width: 767px) {
    .buttons-title .title {
        font-size: 24px;
        line-height: 35px
    }
}

.main-btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid transparent;
    padding: 0 32px;
    font-size: 16px;
    line-height: 46px;
    color: var(--primary-red);
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    position: relative;
    text-transform: uppercase
}

@media (max-width: 767px) {
    .main-btn {
        font-size: 14px;
        padding: 0 20px;
        line-height: 40px
    }
}

.secondary-btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid var(--primary-red);
    padding: 0 32px;
    font-size: 16px;
    line-height: 46px;
    color: var(--white);
    background-color: var(--primary-red);
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    position: relative;
    text-transform: uppercase
}

.secondary-btn:hover {
    color: var(--primary-red);
    background-color: transparent;
    border-color: var(--primary-red)
}

@media (max-width: 767px) {
    .secondary-btn {
        font-size: 14px;
        padding: 0 20px;
        line-height: 40px
    }
}

.standard-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .standard-buttons ul li {
        margin-left: 0
    }
}

.standard-buttons ul li:first-child {
    margin-left: 0
}

.standard-buttons .standard-one {
    border-color: #e11a34
}

.standard-buttons .standard-one:hover {
    color: #e11a34;
    background-color: #f4f6f7
}

.standard-buttons .standard-two {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34
}

.standard-buttons .standard-two:hover {
    color: #e11a34;
    background-color: transparent
}

.standard-buttons .standard-three {
    overflow: hidden;
    line-height: 50px;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    border: 0;
    line-height: 52px;
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .standard-buttons .standard-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .standard-buttons .standard-three {
        line-height: 44px
    }
}

.standard-buttons .standard-three:hover {
    background-position: right center
}

.standard-buttons .standard-four {
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .standard-buttons .standard-four {
        padding-left: 40px
    }
}

.standard-buttons .standard-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .standard-buttons .standard-four span {
        left: 15px
    }
}

.standard-buttons .standard-four:hover {
    color: #e11a34;
    background-color: #f4f6f7
}

.standard-buttons .standard-four:hover i {
    animation: iconTranslateY .5s forwards
}

.standard-buttons .standard-five {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .standard-buttons .standard-five {
        padding-left: 40px
    }
}

.standard-buttons .standard-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .standard-buttons .standard-five span {
        left: 15px
    }
}

.standard-buttons .standard-five:hover {
    color: #e11a34;
    background-color: transparent
}

.standard-buttons .standard-five:hover i {
    animation: iconTranslateY .5s forwards
}

.standard-buttons .standard-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 50px;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    border: 0;
    line-height: 52px;
    background-size: 200% auto
}

@media (max-width: 767px) {
    .standard-buttons .standard-six {
        padding-right: 40px;
        line-height: 44px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .standard-buttons .standard-six {
        line-height: 44px
    }
}

.standard-buttons .standard-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .standard-buttons .standard-six span {
        right: 15px
    }
}

.standard-buttons .standard-six:hover {
    background-position: right center
}

.standard-buttons .standard-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.rounded-img{
    border-radius: 40px;
}

.light-rounded-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .light-rounded-buttons ul li {
        margin-left: 0
    }
}

.light-rounded-buttons ul li:first-child {
    margin-left: 0
}

.light-rounded-buttons .main-btn {
    border-radius: 5px
}

.light-rounded-buttons .light-rounded-one {
    border-color: #e11a34
}

.light-rounded-buttons .light-rounded-one:hover {
    color: #e11a34;
    background-color: #fffafa;
}

.light-rounded-buttons .light-rounded-two {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34
}

.light-rounded-buttons .light-rounded-two:hover {
    color: #e11a34;
    background-color: transparent
}

.light-rounded-buttons .secondary-btn {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34
}

.light-rounded-buttons .secondary-btn:hover {
    color: #e11a34;
    background-color: transparent
}

.light-rounded-buttons .light-rounded-three {
    overflow: hidden;
    line-height: 50px;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    line-height: 52px;
    border: 0
}

@media (min-width: 768px) and (max-width: 991px) {
    .light-rounded-buttons .light-rounded-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .light-rounded-buttons .light-rounded-three {
        line-height: 44px
    }
}

.light-rounded-buttons .light-rounded-three:hover {
    background-position: right center
}

.light-rounded-buttons .light-rounded-four {
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .light-rounded-buttons .light-rounded-four {
        padding-left: 40px
    }
}

.light-rounded-buttons .light-rounded-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .light-rounded-buttons .light-rounded-four span {
        left: 15px
    }
}

.light-rounded-buttons .light-rounded-four:hover {
    color: #e11a34;
    background-color: #f4f6f7
}

.light-rounded-buttons .light-rounded-four:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.light-rounded-buttons .light-rounded-five {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .light-rounded-buttons .light-rounded-five {
        padding-left: 40px
    }
}

.light-rounded-buttons .light-rounded-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .light-rounded-buttons .light-rounded-five span {
        left: 15px
    }
}

.light-rounded-buttons .light-rounded-five:hover {
    color: #e11a34;
    background-color: transparent
}

.light-rounded-buttons .light-rounded-five:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.light-rounded-buttons .light-rounded-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 50px;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    line-height: 52px;
    border: 0
}

@media (min-width: 768px) and (max-width: 991px) {
    .light-rounded-buttons .light-rounded-six {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .light-rounded-buttons .light-rounded-six {
        padding-right: 40px;
        line-height: 44px
    }
}

.light-rounded-buttons .light-rounded-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .light-rounded-buttons .light-rounded-six span {
        right: 15px
    }
}

.light-rounded-buttons .light-rounded-six:hover {
    background-position: right center
}

.light-rounded-buttons .light-rounded-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.semi-rounded-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .semi-rounded-buttons ul li {
        margin-left: 0
    }
}

.semi-rounded-buttons ul li:first-child {
    margin-left: 0
}

.semi-rounded-buttons .main-btn {
    border-radius: 10px
}

.semi-rounded-buttons .semi-rounded-one {
    border-color: #e11a34
}

.semi-rounded-buttons .semi-rounded-one:hover {
    color: #e11a34;
    background-color: #f4f6f7
}

.semi-rounded-buttons .semi-rounded-two {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34
}

.semi-rounded-buttons .semi-rounded-two:hover {
    color: #e11a34;
    background-color: transparent
}

.semi-rounded-buttons .semi-rounded-three {
    overflow: hidden;
    line-height: 52px;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    border: 0;
    color: #fff
}

@media (min-width: 768px) and (max-width: 991px) {
    .semi-rounded-buttons .semi-rounded-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .semi-rounded-buttons .semi-rounded-three {
        line-height: 44px
    }
}

.semi-rounded-buttons .semi-rounded-three:hover {
    background-position: right center
}

.semi-rounded-buttons .semi-rounded-four {
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .semi-rounded-buttons .semi-rounded-four {
        padding-left: 40px
    }
}

.semi-rounded-buttons .semi-rounded-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .semi-rounded-buttons .semi-rounded-four span {
        left: 15px
    }
}

.semi-rounded-buttons .semi-rounded-four:hover {
    color: #e11a34;
    background-color: #f4f6f7
}

.semi-rounded-buttons .semi-rounded-four:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.semi-rounded-buttons .semi-rounded-five {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .semi-rounded-buttons .semi-rounded-five {
        padding-left: 40px
    }
}

.semi-rounded-buttons .semi-rounded-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .semi-rounded-buttons .semi-rounded-five span {
        left: 15px
    }
}

.semi-rounded-buttons .semi-rounded-five:hover {
    color: #e11a34;
    background-color: transparent
}

.semi-rounded-buttons .semi-rounded-five:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.semi-rounded-buttons .semi-rounded-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 52px;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    border: 0;
    color: #fff
}

@media (min-width: 768px) and (max-width: 991px) {
    .semi-rounded-buttons .semi-rounded-six {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .semi-rounded-buttons .semi-rounded-six {
        padding-right: 40px;
        line-height: 44px
    }
}

.semi-rounded-buttons .semi-rounded-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .semi-rounded-buttons .semi-rounded-six span {
        right: 15px
    }
}

.semi-rounded-buttons .semi-rounded-six:hover {
    background-position: right center
}

.semi-rounded-buttons .semi-rounded-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.rounded-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .rounded-buttons ul li {
        margin-left: 0
    }
}

.rounded-buttons ul li:first-child {
    margin-left: 0
}

.rounded-buttons a {
    border-radius: 50px
}

.rounded-buttons .rounded-one {
    border-color: #e11a34
}

.rounded-buttons .rounded-one:hover {
    color: #e11a34;
    background-color: #f4f6f7
}

.rounded-buttons .rounded-two {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34
}

.rounded-buttons .rounded-two:hover {
    color: #e11a34;
    background-color: transparent
}

.rounded-buttons .secondary-btn {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34
}

.rounded-buttons .secondary-btn:hover {
    color: #e11a34;
    background-color: transparent
}

.rounded-buttons .rounded-three {
    overflow: hidden;
    line-height: 52px;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    color: #fff;
    border: 0
}

@media (min-width: 768px) and (max-width: 991px) {
    .rounded-buttons .rounded-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-three {
        line-height: 44px
    }
}

.rounded-buttons .rounded-three:hover {
    background-position: right center
}

.rounded-buttons .rounded-four {
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-four {
        padding-left: 40px
    }
}

.rounded-buttons .rounded-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-four span {
        left: 15px
    }
}

.rounded-buttons .rounded-four:hover {
    color: #e11a34;
    background-color: #f4f6f7
}

.rounded-buttons .rounded-four:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.rounded-buttons .rounded-five {
    color: #fff;
    background-color: #e11a34;
    border-color: #e11a34;
    padding-left: 60px
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-five {
        padding-left: 40px
    }
}

.rounded-buttons .rounded-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-five span {
        left: 15px
    }
}

.rounded-buttons .rounded-five:hover {
    color: #e11a34;
    background-color: transparent
}

.rounded-buttons .rounded-five:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.rounded-buttons .rounded-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 52px;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    color: #fff;
    border: 0
}

@media (min-width: 768px) and (max-width: 991px) {
    .rounded-buttons .rounded-six {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-six {
        padding-right: 40px;
        line-height: 44px
    }
}

.rounded-buttons .rounded-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-six span {
        right: 15px
    }
}

.rounded-buttons .rounded-six:hover {
    background-position: right center
}

.rounded-buttons .rounded-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.success-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .success-buttons ul li {
        margin-left: 0
    }
}

.success-buttons ul li:first-child {
    margin-left: 0
}

.success-buttons .success-one {
    border-color: #4da422;
    color: #4da422
}

.success-buttons .success-one:hover {
    color: #4da422;
    background-color: rgba(77, 164, 34, .4)
}

.success-buttons .success-two {
    color: #fff;
    background-color: #4da422;
    border-color: #4da422
}

.success-buttons .success-two:hover {
    color: #4da422;
    background-color: transparent
}

.success-buttons .success-three {
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #4da422 0%, #69e02e 50%, #4da422 100%);
    background: -o-linear-gradient(left, #4da422 0%, #69e02e 50%, #4da422 100%);
    background: linear-gradient(to right, #4da422 0%, #69e02e 50%, #4da422 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .success-buttons .success-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .success-buttons .success-three {
        line-height: 44px
    }
}

.success-buttons .success-three:hover {
    background-position: right center
}

.success-buttons .success-four {
    padding-left: 60px;
    border-color: #4da422;
    color: #4da422
}

@media (max-width: 767px) {
    .success-buttons .success-four {
        padding-left: 40px
    }
}

.success-buttons .success-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .success-buttons .success-four span {
        left: 15px
    }
}

.success-buttons .success-four:hover {
    color: #4da422;
    background-color: rgba(77, 164, 34, .4)
}

.success-buttons .success-four:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.success-buttons .success-five {
    padding-left: 60px;
    color: #fff;
    background-color: #4da422;
    border-color: #4da422
}

@media (max-width: 767px) {
    .success-buttons .success-five {
        padding-left: 40px
    }
}

.success-buttons .success-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .success-buttons .success-five span {
        left: 15px
    }
}

.success-buttons .success-five:hover {
    color: #4da422;
    background-color: transparent
}

.success-buttons .success-five:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.success-buttons .success-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #4da422 0%, #69e02e 50%, #4da422 100%);
    background: -o-linear-gradient(left, #4da422 0%, #69e02e 50%, #4da422 100%);
    background: linear-gradient(to right, #4da422 0%, #69e02e 50%, #4da422 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .success-buttons .success-six {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .success-buttons .success-six {
        padding-right: 40px;
        line-height: 44px
    }
}

.success-buttons .success-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .success-buttons .success-six span {
        right: 15px
    }
}

.success-buttons .success-six:hover {
    background-position: right center
}

.success-buttons .success-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.warning-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .warning-buttons ul li {
        margin-left: 0
    }
}

.warning-buttons ul li:first-child {
    margin-left: 0
}

.warning-buttons .warning-one {
    border-color: #ffb400;
    color: #ffb400
}

.warning-buttons .warning-one:hover {
    color: #ffb400;
    background-color: rgba(255, 180, 0, .4)
}

.warning-buttons .warning-two {
    color: #fff;
    background-color: #ffb400;
    border-color: #ffb400
}

@media (min-width: 768px) and (max-width: 991px) {
    .warning-buttons .warning-two {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .warning-buttons .warning-two {
        padding-right: 40px;
        line-height: 44px
    }
}

.warning-buttons .warning-two:hover {
    color: #ffb400;
    background-color: transparent
}

.warning-buttons .warning-three {
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #ffb400 0%, #f7e500 50%, #ffb400 100%);
    background: -o-linear-gradient(left, #ffb400 0%, #f7e500 50%, #ffb400 100%);
    background: linear-gradient(to right, #ffb400 0%, #f7e500 50%, #ffb400 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .warning-buttons .warning-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .warning-buttons .warning-three {
        line-height: 44px
    }
}

.warning-buttons .warning-three:hover {
    background-position: right center
}

.warning-buttons .warning-four {
    padding-left: 60px;
    border-color: #ffb400;
    color: #ffb400
}

@media (max-width: 767px) {
    .warning-buttons .warning-four {
        padding-left: 40px
    }
}

.warning-buttons .warning-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .warning-buttons .warning-four span {
        left: 15px
    }
}

.warning-buttons .warning-four:hover {
    color: #ffb400;
    background-color: rgba(255, 180, 0, .4)
}

.warning-buttons .warning-four:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.warning-buttons .warning-five {
    padding-left: 60px;
    color: #fff;
    background-color: #ffb400;
    border-color: #ffb400
}

@media (max-width: 767px) {
    .warning-buttons .warning-five {
        padding-left: 40px
    }
}

.warning-buttons .warning-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .warning-buttons .warning-five span {
        left: 15px
    }
}

.warning-buttons .warning-five:hover {
    color: #ffb400;
    background-color: transparent
}

.warning-buttons .warning-five:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.warning-buttons .warning-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #ffb400 0%, #f7e500 50%, #ffb400 100%);
    background: -o-linear-gradient(left, #ffb400 0%, #f7e500 50%, #ffb400 100%);
    background: linear-gradient(to right, #ffb400 0%, #f7e500 50%, #ffb400 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .warning-buttons .warning-six {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .warning-buttons .warning-six {
        padding-right: 40px;
        line-height: 44px
    }
}

.warning-buttons .warning-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .warning-buttons .warning-six span {
        right: 15px
    }
}

.warning-buttons .warning-six:hover {
    background-position: right center
}

.warning-buttons .warning-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.info-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .info-buttons ul li {
        margin-left: 0
    }
}

.info-buttons ul li:first-child {
    margin-left: 0
}

.info-buttons .info-one {
    border-color: #00b8d8;
    color: #00b8d8
}

.info-buttons .info-one:hover {
    color: #00b8d8;
    background-color: rgba(0, 184, 216, .4)
}

.info-buttons .info-two {
    color: #fff;
    background-color: #00b8d8;
    border-color: #00b8d8
}

.info-buttons .info-two:hover {
    color: #00b8d8;
    background-color: transparent
}

.info-buttons .info-three {
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #00b8d8 0%, #32fbfc 50%, #00b8d8 100%);
    background: -o-linear-gradient(left, #00b8d8 0%, #32fbfc 50%, #00b8d8 100%);
    background: linear-gradient(to right, #00b8d8 0%, #32fbfc 50%, #00b8d8 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .info-buttons .info-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .info-buttons .info-three {
        line-height: 44px
    }
}

.info-buttons .info-three:hover {
    background-position: right center
}

.info-buttons .info-four {
    padding-left: 60px;
    border-color: #00b8d8;
    color: #00b8d8
}

@media (max-width: 767px) {
    .info-buttons .info-four {
        padding-left: 40px
    }
}

.info-buttons .info-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .info-buttons .info-four span {
        left: 15px
    }
}

.info-buttons .info-four:hover {
    color: #00b8d8;
    background-color: rgba(0, 184, 216, .4)
}

.info-buttons .info-four:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.info-buttons .info-five {
    padding-left: 60px;
    color: #fff;
    background-color: #00b8d8;
    border-color: #00b8d8
}

@media (max-width: 767px) {
    .info-buttons .info-five {
        padding-left: 40px
    }
}

.info-buttons .info-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .info-buttons .info-five span {
        left: 15px
    }
}

.info-buttons .info-five:hover {
    color: #00b8d8;
    background-color: transparent
}

.info-buttons .info-five:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.info-buttons .info-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #00b8d8 0%, #32fbfc 50%, #00b8d8 100%);
    background: -o-linear-gradient(left, #00b8d8 0%, #32fbfc 50%, #00b8d8 100%);
    background: linear-gradient(to right, #00b8d8 0%, #32fbfc 50%, #00b8d8 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .info-buttons .info-six {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .info-buttons .info-six {
        padding-right: 40px;
        line-height: 44px
    }
}

.info-buttons .info-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .info-buttons .info-six span {
        right: 15px
    }
}

.info-buttons .info-six:hover {
    background-position: right center
}

.info-buttons .info-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.danger-buttons ul li {
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px
}

@media (max-width: 767px) {
    .danger-buttons ul li {
        margin-left: 0
    }
}

.danger-buttons ul li:first-child {
    margin-left: 0
}

.danger-buttons .danger-one {
    border-color: #fc3832;
    color: #fc3832
}

.danger-buttons .danger-one:hover {
    color: #fc3832;
    background-color: rgba(252, 56, 50, .4)
}

.danger-buttons .danger-two {
    color: #fff;
    background-color: #fc3832;
    border-color: #fc3832
}

.danger-buttons .danger-two:hover {
    color: #fc3832;
    background-color: transparent
}

.danger-buttons .danger-three {
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #fc3832 0%, #dc312b 50%, #fc3832 100%);
    background: -o-linear-gradient(left, #fc3832 0%, #dc312b 50%, #fc3832 100%);
    background: linear-gradient(to right, #fc3832 0%, #dc312b 50%, #fc3832 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .danger-buttons .danger-three {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .danger-buttons .danger-three {
        line-height: 44px
    }
}

.danger-buttons .danger-three:hover {
    background-position: right center
}

.danger-buttons .danger-four {
    padding-left: 60px;
    border-color: #fc3832;
    color: #fc3832
}

@media (max-width: 767px) {
    .danger-buttons .danger-four {
        padding-left: 40px
    }
}

.danger-buttons .danger-four span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .danger-buttons .danger-four span {
        left: 15px
    }
}

.danger-buttons .danger-four:hover {
    color: #fc3832;
    background-color: rgba(252, 56, 50, .4)
}

.danger-buttons .danger-four:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.danger-buttons .danger-five {
    padding-left: 60px;
    color: #fff;
    background-color: #fc3832;
    border-color: #fc3832
}

@media (max-width: 767px) {
    .danger-buttons .danger-five {
        padding-left: 40px
    }
}

.danger-buttons .danger-five span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    left: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .danger-buttons .danger-five span {
        left: 15px
    }
}

.danger-buttons .danger-five:hover {
    color: #fc3832;
    background-color: transparent
}

.danger-buttons .danger-five:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

.danger-buttons .danger-six {
    padding-right: 60px;
    overflow: hidden;
    line-height: 52px;
    color: #fff;
    border: 0;
    background: -webkit-linear-gradient(left, #fc3832 0%, #dc312b 50%, #fc3832 100%);
    background: -o-linear-gradient(left, #fc3832 0%, #dc312b 50%, #fc3832 100%);
    background: linear-gradient(to right, #fc3832 0%, #dc312b 50%, #fc3832 100%);
    background-size: 200% auto
}

@media (min-width: 768px) and (max-width: 991px) {
    .danger-buttons .danger-six {
        line-height: 44px
    }
}

@media (max-width: 767px) {
    .danger-buttons .danger-six {
        padding-right: 40px;
        line-height: 44px
    }
}

.danger-buttons .danger-six span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    right: 30px;
    line-height: normal
}

@media (max-width: 767px) {
    .danger-buttons .danger-six span {
        right: 15px
    }
}

.danger-buttons .danger-six:hover {
    background-position: right center
}

.danger-buttons .danger-six:hover i {
    -webkit-animation: iconTranslateY .5s forwards;
    -moz-animation: iconTranslateY .5s forwards;
    -o-animation: iconTranslateY .5s forwards;
    animation: iconTranslateY .5s forwards
}

@-webkit-keyframes iconTranslateY {
    49% {
        -webkit-transform: translateY(100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}

@-moz-keyframes iconTranslateY {
    49% {
        -webkit-transform: translateY(100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}

@keyframes iconTranslateY {
    49% {
        -webkit-transform: translateY(100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}

.lg-btn {
    line-height: 64px!important;
    font-size: 18px
}

@media (max-width: 767px) {
    .lg-btn {
        font-size: 16px;
        line-height: 52px
    }
}

.el-btn {
    line-height: 80px!important;
    font-size: 20px
}

@media (max-width: 767px) {
    .el-btn {
        font-size: 18px;
        line-height: 74px
    }
}

.sm-btn {
    line-height: 40px!important;
    font-size: 12px
}

.regular-icon-buttons ul li {
    display: inline-block;
    margin-left: 10px;
    margin-top: 20px
}

.regular-icon-buttons ul li:first-child {
    margin-left: 0
}

.regular-icon-buttons ul li .regular-icon-light-one {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-one:hover {
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-two {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    border-radius: 5px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-two:hover {
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-three {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-three:hover {
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-four {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden
}

.regular-icon-buttons ul li .regular-icon-light-four:hover {
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-five {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    text-align: center;
    font-size: 24px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: relative;
    z-index: 5;
    overflow: hidden;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto
}

.regular-icon-buttons ul li .regular-icon-light-five:hover {
    background-position: right center
}

.regular-icon-buttons ul li .regular-icon-light-six {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    text-align: center;
    font-size: 24px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: relative;
    z-index: 5;
    overflow: hidden;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    border-radius: 5px
}

.regular-icon-buttons ul li .regular-icon-light-six:hover {
    background-position: right center
}

.regular-icon-buttons ul li .regular-icon-light-seven {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    text-align: center;
    font-size: 24px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: relative;
    z-index: 5;
    overflow: hidden;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    border-radius: 10px
}

.regular-icon-buttons ul li .regular-icon-light-seven:hover {
    background-position: right center
}

.regular-icon-buttons ul li .regular-icon-light-eight {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    text-align: center;
    font-size: 24px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: relative;
    z-index: 5;
    overflow: hidden;
    color: #fff;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    border-radius: 50%
}

.regular-icon-buttons ul li .regular-icon-light-eight:hover {
    background-position: right center
}

.regular-icon-buttons ul li .regular-icon-light-nine {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-nine:hover {
    color: #e11a34;
    background-color: transparent
}

.regular-icon-buttons ul li .regular-icon-light-ten {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    border-radius: 5px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-ten:hover {
    color: #e11a34;
    background-color: transparent
}

.regular-icon-buttons ul li .regular-icon-light-eleven {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-eleven:hover {
    color: #e11a34;
    background-color: transparent
}

.regular-icon-buttons ul li .regular-icon-light-twelve {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #e11a34;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    background-color: #e11a34
}

.regular-icon-buttons ul li .regular-icon-light-twelve:hover {
    color: #e11a34;
    background-color: transparent
}

.group-buttons .btn-group {
    margin-left: 30px
}

.group-buttons .group-one {
    margin-left: 0
}

.group-buttons .group-one .main-btn {
    background: 0 0;
    border: 2px solid #e11a34;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.group-buttons .group-one .main-btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0
}

.group-buttons .group-one .main-btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0
}

.group-buttons .group-one .main-btn:hover {
    background-color: #e11a34;
    color: #fff
}

.group-buttons .group-two .main-btn {
    background: 0 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    line-height: 52px;
    background: -webkit-linear-gradient(#e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(#e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(#e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: auto 200%;
    border-top: 0;
    border-bottom: 0;
    border-color: rgba(244, 246, 247, .2)
}

.group-buttons .group-two .main-btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0
}

.group-buttons .group-two .main-btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0
}

.group-buttons .group-two .main-btn:hover {
    background-position: bottom center
}

.group-buttons .group-three .main-btn {
    background: 0 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    line-height: 52px;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    border: 0
}

.group-buttons .group-three .main-btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0
}

.group-buttons .group-three .main-btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0
}

.group-buttons .group-three .main-btn:hover {
    background-position: right center
}

.group-buttons .group-four {
    margin-left: 0
}

.group-buttons .group-four .main-btn {
    background: 0 0;
    border: 2px solid #e11a34;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    padding: 0 12px
}

.group-buttons .group-four .main-btn i {
    font-size: 24px
}

.group-buttons .group-four .main-btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0
}

.group-buttons .group-four .main-btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0
}

.group-buttons .group-four .main-btn:hover {
    background-color: #e11a34;
    color: #fff
}

.group-buttons .group-five .main-btn {
    background: 0 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    line-height: 52px;
    background: -webkit-linear-gradient(#e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(#e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(#e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: auto 200%;
    border-top: 0;
    border-bottom: 0;
    border-color: rgba(244, 246, 247, .2);
    padding: 0 16px
}

.group-buttons .group-five .main-btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0
}

.group-buttons .group-five .main-btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0
}

.group-buttons .group-five .main-btn:hover {
    background-position: bottom center
}

.group-buttons .group-six .main-btn {
    background: 0 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    color: #fff;
    line-height: 52px;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 50%, #e11a34 100%);
    background-size: 200% auto;
    border: 0;
    padding: 0 16px
}

.group-buttons .group-six .main-btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0
}

.group-buttons .group-six .main-btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0
}

.group-buttons .group-six .main-btn:hover {
    background-position: right center
}

.form-elements-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 45px;
    color: #6c6c6c
}

@media (max-width: 767px) {
    .form-elements-title {
        font-size: 24px;
        line-height: 35px
    }
}

.form-group {
    margin-bottom: 0
}

.form-input .help-block {
    margin-top: 2px
}

.form-input.error label,
.capError small {
    color: #e11a34;
}

.form-input.error .input-items.default input,
.form-input.error .input-items.default textarea {
    border-color: #e11a34;
}

.form-input .help-block .list-unstyled li {
    font-size: 12px;
    line-height: 16px;
    color: #fc3832
}

.form-input label {
    line-height: 18px;
    color: #6c6c6c;
    margin-bottom: 8px;
    display: inline-block
}

.form-input .input-items {
    position: relative
}

.form-input .input-items input,
.form-input .input-items textarea {
    width: 100%;
    height: 44px;
    border: 2px solid;
    padding-left: 44px;
    padding-right: 12px;
    position: relative;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.form-input .input-items textarea {
    padding-top: 8px;
    height: 160px;
    resize: none
}

.form-input .input-items i {
    position: absolute;
    top: 11px;
    left: 13px;
    font-size: 20px;
    z-index: 9
}

.form-input .input-items.default input,
.form-input .input-items.default textarea {
    border-color: #ededed;
    color: #6c6c6c
}


/* .form-input .input-items.default input:focus,
.form-input .input-items.default textarea:focus {
    border-color: #e11a34
} */

.form-input .input-items.default input::placeholder,
.form-input .input-items.default textarea::placeholder {
    color: #cccccc;
    opacity: 1
}

.form-input .input-items.default input::-moz-placeholder,
.form-input .input-items.default textarea::-moz-placeholder {
    color: #cccccc;
    opacity: 1
}

.form-input .input-items.default input::-webkit-input-placeholder,
.form-input .input-items.default textarea::-webkit-input-placeholder {
    color: #cccccc;
    opacity: 1
}

.form-input .input-items.default i {
    color: #cccccc;
}

.form-input .input-items.active input,
.form-input .input-items.active textarea {
    border-color: #e11a34;
    color: #192730
}

.form-input .input-items.active input::placeholder,
.form-input .input-items.active textarea::placeholder {
    color: #192730;
    opacity: 1
}

.form-input .input-items.active input::-moz-placeholder,
.form-input .input-items.active textarea::-moz-placeholder {
    color: #192730;
    opacity: 1
}

.form-input .input-items.active input::-moz-placeholder,
.form-input .input-items.active textarea::-moz-placeholder {
    color: #192730;
    opacity: 1
}

.form-input .input-items.active input::-webkit-input-placeholder,
.form-input .input-items.active textarea::-webkit-input-placeholder {
    color: #192730;
    opacity: 1
}

.form-input .input-items.active i {
    color: #e11a34
}

.form-input .input-items.error input,
.form-input .input-items.error textarea {
    border-color: #fc3832;
    color: #fc3832
}

.form-input .input-items.error input::placeholder,
.form-input .input-items.error textarea::placeholder {
    color: #fc3832;
    opacity: 1
}

.form-input .input-items.error input::-moz-placeholder,
.form-input .input-items.error textarea::-moz-placeholder {
    color: #fc3832;
    opacity: 1
}

.form-input .input-items.error input::-moz-placeholder,
.form-input .input-items.error textarea::-moz-placeholder {
    color: #fc3832;
    opacity: 1
}

.form-input .input-items.error input::-webkit-input-placeholder,
.form-input .input-items.error textarea::-webkit-input-placeholder {
    color: #fc3832;
    opacity: 1
}

.form-input .input-items.error i {
    color: #fc3832
}

.form-input .input-items.success input,
.form-input .input-items.success textarea {
    border-color: #4da422;
    color: #4da422
}

.form-input .input-items.success input::placeholder,
.form-input .input-items.success textarea::placeholder {
    color: #4da422;
    opacity: 1
}

.form-input .input-items.success input::-moz-placeholder,
.form-input .input-items.success textarea::-moz-placeholder {
    color: #4da422;
    opacity: 1
}

.form-input .input-items.success input::-moz-placeholder,
.form-input .input-items.success textarea::-moz-placeholder {
    color: #4da422;
    opacity: 1
}

.form-input .input-items.success input::-webkit-input-placeholder,
.form-input .input-items.success textarea::-webkit-input-placeholder {
    color: #4da422;
    opacity: 1
}

.form-input .input-items.success i {
    color: #4da422
}

.form-input .input-items.disabled input,
.form-input .input-items.disabled textarea {
    border-color: #a4a4a4;
    color: #6c6c6c;
    background: 0 0
}

.form-input .input-items.disabled input::placeholder,
.form-input .input-items.disabled textarea::placeholder {
    color: #6c6c6c;
    opacity: 1
}

.form-input .input-items.disabled input::-moz-placeholder,
.form-input .input-items.disabled textarea::-moz-placeholder {
    color: #6c6c6c;
    opacity: 1
}

.form-input .input-items.disabled input::-moz-placeholder,
.form-input .input-items.disabled textarea::-moz-placeholder {
    color: #6c6c6c;
    opacity: 1
}

.form-input .input-items.disabled input::-webkit-input-placeholder,
.form-input .input-items.disabled textarea::-webkit-input-placeholder {
    color: #6c6c6c;
    opacity: 1
}

.form-input .input-items.disabled i {
    color: #6c6c6c
}

.form-style-two .form-input .input-items input,
.form-style-two .form-input .input-items textarea {
    border-radius: 5px;
    padding-left: 12px;
    padding-right: 44px
}

.form-style-two .form-input .input-items i {
    left: auto;
    right: 13px
}

.form-style-three .form-input {
    text-align: center
}

.form-style-three .form-input .input-items input,
.form-style-three .form-input .input-items textarea {
    border-radius: 50px;
    text-align: center
}

.form-style-four .form-input label {
    padding-left: 44px;
    margin-bottom: 0
}

.form-style-four .form-input .input-items input,
.form-style-four .form-input .input-items textarea {
    border-top: 0;
    border-left: 0;
    border-right: 0
}

.form-style-five .form-input {
    position: relative
}

.form-style-five .form-input label {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #fff;
    z-index: 5;
    padding: 0 5px
}

.form-style-five .form-input .input-items input,
.form-style-five .form-input .input-items textarea {
    border-radius: 5px
}

.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 10px 0; */
    z-index: 99
}

.navbar-area .navbar {
    position: relative;
    padding: 0
}

.canada-flag {
    font-size: 24px;
    line-height: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.navbar-area .navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    display: block;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.navbar-area .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px
}

.navbar-area .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0
}

.navbar-area .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px
}


/* 
@media (min-width: 992px) {
    .navbar-nav {
        position: absolute;
        right: 0px;
    }
} */

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-area .navbar .navbar-collapse {
        position: absolute;
        top: 122%;
        left: 0;
        width: 100%;
        background-color: #f4f6f7;
        z-index: 8;
        padding: 10px 0;
        -webkit-box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05);
        -moz-box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05);
        box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05)
    }
}

@media (max-width: 767px) {
    .navbar-area .navbar .navbar-collapse {
        position: absolute;
        top: 122%;
        left: -22px;
        width: 109%;
        height: 100vh;
        overflow: hidden;
        background-color: #f4f6f7;
        z-index: 8;
        padding: 15px 0;
        text-align: center;
        -webkit-box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05);
        -moz-box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05);
        box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05)
    }
}

.navbar-area .navbar .navbar-nav .nav-item {
    margin: 0 16px;
    position: relative
}

.navbar-area .navbar .navbar-nav .nav-item a {
    font-size: 16px;
    line-height: 27px;
    font-weight: 700;
    padding: 26px 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    opacity: .8;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media (max-width: 767px) {
    .navbar-area {
        padding: 10px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-area .navbar .navbar-nav .nav-item a {
        padding: 10px 0;
        display: block;
        color: #192730
    }
}

@media (max-width: 767px) {
    .navbar-area .navbar .navbar-nav .nav-item a {
        padding: 10px 0;
        display: block;
        color: #192730
    }
}

.navbar-area .navbar .navbar-nav .nav-item a::before {
    position: absolute;
    content: '';
    width: 32px;
    height: 4px;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, white 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, white 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, white 100%);
    left: 50%;
    margin: 0 2px;
    bottom: 14px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    -webkit-transform: translate(-50%) scaleX(0);
    -moz-transform: translate(-50%) scaleX(0);
    -ms-transform: translate(-50%) scaleX(0);
    -o-transform: translate(-50%) scaleX(0);
    transform: translate(-50%) scaleX(0)
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-area .navbar .navbar-nav .nav-item a::before {
        display: none
    }
}

@media (max-width: 767px) {
    .navbar-area .navbar .navbar-nav .nav-item a::before {
        display: none
    }
}

.navbar-area .navbar .navbar-nav .nav-item.active>a,
.navbar-area .navbar .navbar-nav .nav-item:hover>a {
    opacity: 1;
    color: #fff
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-area .navbar .navbar-nav .nav-item.active>a,
    .navbar-area .navbar .navbar-nav .nav-item:hover>a {
        color: #192730
    }
}

@media (max-width: 767px) {
    .navbar-area .navbar .navbar-nav .nav-item.active>a,
    .navbar-area .navbar .navbar-nav .nav-item:hover>a {
        color: #e12333!important;
    }
}

.navbar-area .navbar .navbar-nav .nav-item.active>a::before,
.navbar-area .navbar .navbar-nav .nav-item:hover>a::before {
    -webkit-transform: translate(-50%) scaleX(1);
    -moz-transform: translate(-50%) scaleX(1);
    -ms-transform: translate(-50%) scaleX(1);
    -o-transform: translate(-50%) scaleX(1);
    transform: translate(-50%) scaleX(1)
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-area .navbar .navbar-btn {
        position: absolute;
        right: 70px;
        top: 7px
    }
}

.navbar-area .navbar .navbar-btn li {
    display: inline-block;
    margin-right: 5px
}

.navbar-area .navbar .navbar-btn li a {
    padding: 8px 18px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    border: 2px solid;
    border-radius: 4px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.navbar-area .navbar .navbar-btn li a.light {
    border-color: #fff
}

.navbar-area .navbar .navbar-btn li a.light:hover {
    background-color: rgba(255, 255, 255, .4)
}

.navbar-area .navbar .navbar-btn li a.solid {
    background-color: #fff;
    border-color: #fff;
    color: #e11a34
}

.navbar-area .navbar .navbar-btn li a.solid:hover {
    background-color: transparent;
    color: #fff
}

.navbar-area.sticky {
    background-color: #fff;
    z-index: 999;
    position: fixed;
    -webkit-box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05);
    -moz-box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05);
    box-shadow: 0 10px 25px 0 rgba(18, 18, 18, .05)
}

.navbar-area .navbar-brand img {
    width: 75%;
}

@media (min-width: 992px) {
    .navbar-area.sticky .navbar-brand {
        width: 110px;
        overflow: hidden;
    }
    .navbar-area.sticky .navbar-brand img {
        max-width: unset!important;
        width: unset!important;
        height: 50px;
    }
}

.navbar-area.sticky .navbar-brand img {
    width: 65%;
}

.navbar-area.sticky .navbar .navbar-toggler .toggler-icon {
    background-color: #192730
}

.navbar-area.sticky .navbar .navbar-nav .nav-item a {
    color: #192730;
    opacity: .7
}

.navbar-area.sticky .navbar .navbar-nav .nav-item a::before {
    background: -webkit-linear-gradient(left, rgba(18, 18, 18, 0) 0%, #192730 100%);
    background: -o-linear-gradient(left, rgba(18, 18, 18, 0) 0%, #192730 100%);
    background: linear-gradient(to right, rgba(18, 18, 18, 0) 0%, #192730 100%)
}

.navbar-area.sticky .navbar .navbar-nav .nav-item.active,
.navbar-area.sticky .navbar .navbar-nav .nav-item:hover {
    color: #192730;
    opacity: 1
}

.navbar-area.sticky .navbar .navbar-btn li a.light {
    border-color: #e11a34;
    color: #e11a34
}

.navbar-area.sticky .navbar .navbar-btn li a.solid {
    border-color: #e11a34;
    background-color: #e11a34;
    color: #fff
}

.carousel-item {
    background: url('../img/niagara.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.carousel-item .container {
    width: 100%;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 100%);
    border-radius: 30px;
}

.carousel-item .slider-image-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 9
}

.carousel-item .slider-image-box .slider-image {
    max-width: 680px;
    width: 100%
}

.slider-content {
    position: relative;
    z-index: 9;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (min-width: 768px) {
    .slider-content {
        padding-top: 180px;
        padding-bottom: 180px;
    }
}

@media (min-width: 992px) {
    .slider-content {
        padding-top: 250px;
        padding-bottom: 200px;
    }
}


@media (max-width: 767px) {
    .navbar-brand img {
        width: 70%;
    }
    .navbar-btn {
        margin-top: 20px;
    }
    .super-visa-area .super-visa-image {
        text-align: center!important;
    }
    .carousel-item {
        min-height: 100vh;
        background-repeat: no-repeat;
        background-position: -200px 0px;
        background-attachment: fixed;
        background-color: #fff;
        -webkit-background-size: calc(290vw) calc(100vh);
        -moz-background-size: calc(290vw) calc(100vh);
        -o-background-size: calc(290vw) calc(100vh);
        background-size: calc(290vw) calc(100vh);
        display: flex;
        align-items: center;
    }
    .slider-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.slider-content .title {
    font-size: 88px;
    line-height: 96px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

@media (min-width: 992px) {
    .slider-content .title {
        font-size: 72px;
        line-height: 88px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider-content .title {
        font-size: 72px;
        line-height: 90px
    }
}

@media (max-width: 767px) {
    .slider-content .title {
        font-size: 44px;
        line-height: 57px
    }
}

.slider-content .text {
    color: #fff;
    font-size: 16px;
    line-height: 27px;
    margin-top: 16px
}

.slider-content .slider-btn {
    padding-top: 16px
}

.slider-content .slider-btn li {
    display: inline-block;
    margin: 16px 8px 0
}

@media (max-width: 767px) {
    .slider-content .slider-btn li {
        margin: 0 0 12px 0;
        display: block;
        width: 100%;
    }
    
    .slider-content .slider-btn li:last-child {
        margin-bottom: 0;
    }
    
    .slider-content .slider-btn li a {
        width: 100%;
        display: block;
    }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    display: block;
    text-align: center;
    margin-top: 50px;
    color: #fff;
    font-size: 32px;
    -webkit-animation: heroScrollBounce 2s ease-in-out infinite;
    -moz-animation: heroScrollBounce 2s ease-in-out infinite;
    -o-animation: heroScrollBounce 2s ease-in-out infinite;
    animation: heroScrollBounce 2s ease-in-out infinite;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    text-decoration: none;
    opacity: 0.8;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    color: #fff;
    text-decoration: none;
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
}

.hero-scroll-indicator:focus {
    outline: none;
}

.hero-scroll-indicator i {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@-webkit-keyframes heroScrollBounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@keyframes heroScrollBounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@media (max-width: 767px) {
    .hero-scroll-indicator {
        margin-top: 25px;
        font-size: 28px;
    }
    
    .hero-scroll-indicator:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.slider-content .slider-btn li a.rounded-one {
    background-color: #fff;
    border-color: #fff
}

.slider-content .slider-btn li a.rounded-one:hover {
    background-color: transparent;
    color: #fff
}

.slider-content .slider-btn li a.secondary-btn.rounded-one {
    background-color: #e11a34;
    border-color: #e11a34;
    color: #fff
}

.slider-content .slider-btn li a.secondary-btn.rounded-one:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff
}

.slider-content .slider-btn li a.rounded-two {
    border-color: #fff
}

.slider-content .slider-btn li a.rounded-two:hover {
    background-color: #fff;
    color: #e11a34
}

.carousel-indicators {
    margin-bottom: 50px
}

.carousel-indicators li {
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 50px;
    border: 0;
    margin: 0 2px
}

@media (min-width: 768px) and (max-width: 991px) {
    .carousel-indicators li {
        width: 13px;
        height: 13px
    }
}

@media (max-width: 767px) {
    .carousel-indicators li {
        width: 13px;
        height: 13px
    }
}

.carousel-indicators li.active {
    background-color: #fff;
    width: 16px;
    border-radius: 50px
}

@media (min-width: 768px) and (max-width: 991px) {
    .carousel-indicators li.active {
        width: 23px
    }
}

@media (max-width: 767px) {
    .carousel-indicators li.active {
        width: 23px
    }
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    top: 50%;
    font-size: 32px;
    color: #fff;
    bottom: auto;
    left: 60px;
    right: auto;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 5px
}

@media (min-width: 992px) {
    .carousel .carousel-control-prev,
    .carousel .carousel-control-next {
        left: 30px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .carousel .carousel-control-prev,
    .carousel .carousel-control-next {
        display: none
    }
}

@media (max-width: 767px) {
    .carousel .carousel-control-prev,
    .carousel .carousel-control-next {
        display: none
    }
}

.carousel .carousel-control-next {
    right: 60px;
    left: auto
}

@media (min-width: 992px) {
    .carousel .carousel-control-next {
        right: 30px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .carousel .carousel-control-next {
        right: 30px
    }
}

@media (max-width: 767px) {
    .carousel .carousel-control-next {
        right: 30px
    }
}

.features-area {
    background-color: #f4f6f7;
    padding-top: 120px;
    padding-bottom: 130px
}

.single-features {
    padding: 40px 20px 52px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.single-features:hover {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.single-features .features-title-icon .features-title a {
    font-size: 36px;
    line-height: 45px;
    color: #192730;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    font-weight: 400
}

@media (min-width: 992px) {
    .single-features .features-title-icon .features-title a {
        font-size: 24px;
        line-height: 35px
    }
}

@media (max-width: 767px) {
    .single-features .features-title-icon .features-title a {
        font-size: 24px;
        line-height: 35px
    }
}

@media (max-width: 767px) {
    .single-features .features-title-icon .features-title a {
        font-size: 36px;
        line-height: 45px
    }
}

.single-features .features-title-icon .features-title a:hover {
    color: #e11a34
}

.single-features .features-title-icon .features-icon {
    position: relative;
    display: inline-block
}

.single-features .features-title-icon .features-icon i {
    font-size: 58px;
    line-height: 70px;
    color: #e11a34;
    position: relative;
    z-index: 5
}

.single-features .features-title-icon .features-icon .shape {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.single-features .features-content .text {
    font-size: 14px;
    line-height: 20px;
    color: #192730;
    margin-top: 16px
}

.single-features .features-content .features-btn {
    color: #e11a34;
    font-size: 16px;
    font-weight: 700;
    margin-top: 29px
}

.packages-area .nav-pills .nav-link {
    font-weight: 500;
    padding: 1rem;
}

.packages-area .tab-pane ul {
    list-style: none;
    padding-left: 0;
}

.packages-area .tab-pane ul li {
    padding-left: 24px;
    position: relative;
}

.packages-area .tab-pane ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #e11a34;
    font-weight: 600;
    font-size: 18px;
}

.packages-area .single-features .features-title-icon .features-icon i {
    color: #5f4c8c;
}

.tools-style {
    -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .15);
    padding: 32px 24px 42px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: -webkit-linear-gradient(#5F4C8C 0%, #e11a34 100%);
    background: -o-linear-gradient(#5F4C8C 0%, #e11a34 100%);
    background: linear-gradient(#5F4C8C 0%, #e11a34 100%);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.tools-style:hover {
    -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, .2);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.tools-style .tools-icon .lni {
    font-size: 88px;
    color: #e2d9f1;
    margin-top: 40px;
    margin-bottom: 5px;
}

.tools-style .tools-icon img {
    width: 100px
}

.tools-style .tools-header .sub-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #fff;
    position: relative;
    margin-top: 24px
}

.tools-style .tools-header .month {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-top: 3px
}

@media (max-width: 767px) {
    .tools-style .tools-header .month .price {
        font-size: 24px;
        margin-top: 32px;
        line-height: 30px
    }
}

.tools-style .tools-list {
    margin-top: 24px
}

.tools-style .tools-list ul li {
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    margin-top: 16px
}

@media (min-width: 992px) {
    .tools-style .tools-list ul li {
        font-size: 14px;
        margin-top: 12px
    }
}

@media (max-width: 767px) {
    .tools-style .tools-list ul li {
        font-size: 14px;
        margin-top: 12px
    }
}

@media (max-width: 767px) {
    .tools-style .tools-list ul li {
        font-size: 16px;
        margin-top: 16px
    }
}

.tools-style .tools-list ul li i {
    color: #fff;
    margin-right: 8px
}

.tools-style .tools-btn {
    margin-top: 31px
}

.tools-style .tools-btn .main-btn {
    background-color: #fff;
    border-color: #fff
}

.tools-style .tools-btn .main-btn:hover {
    color: #e11a34;
    -webkit-box-shadow: 0 3px 16px 0 rgba(0, 0, 0, .16);
    -moz-box-shadow: 0 3px 16px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, .16)
}

.super-visa-area {
    padding-top: 80px;
    padding-bottom: 130px;
    background-color: #f4f6f7
}

.super-visa-area .super-visa-title .sub-title {
    font-size: 18px;
    font-weight: 400;
    color: #e11a34;
    text-transform: uppercase
}

@media (max-width: 767px) {
    .super-visa-area .super-visa-title .sub-title {
        font-size: 16px
    }
}

.super-visa-area .super-visa-title .title {
    font-size: 30px;
    padding-top: 10px
}

@media (min-width: 992px) {
    .super-visa-area .super-visa-title .title {
        font-size: 26px
    }
}

@media (max-width: 767px) {
    .super-visa-area .super-visa-title .title {
        font-size: 22px
    }
}

.super-visa-area .super-visa-accordion .accordion .card {
    border: 0;
    background: 0 0;
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 15px;
}

.super-visa-area .super-visa-accordion .accordion .card .card-header {
    padding: 0;
    border: 0;
    background: 0 0;
    margin-top: 40px;
}

.super-visa-area .super-visa-accordion .accordion .card .card-header a {
    font-size: 28px;
    font-weight: 500;
    display: block;
    position: relative;
    padding-right: 20px;
}

@media (min-width: 992px) {
    .super-visa-area .super-visa-accordion .accordion .card .card-header a {
        font-size: 26px
    }
}

@media (max-width: 767px) {
    .super-visa-area .super-visa-accordion .accordion .card .card-header a {
        font-size: 24px
    }
}

.super-visa-area .super-visa-accordion .accordion .card .card-header a::before {
    content: '\ea5e';
    font-family: lineicons;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.super-visa-area .super-visa-accordion .accordion .card .card-header .collapsed::before {
    content: '\ea58'
}

.super-visa-area .super-visa-accordion .accordion .card .card-body {
    background: #fff;
    margin-top: 15px;
}

.super-visa-area .super-visa-image img {
    width: 75%
}

.grey-bg {
    background: var(--light-bg);
}

/* Team Section Styling */
.team-area {
    position: relative;
}

.team-content-wrapper {
    padding: 20px 0;
}

.team-image-wrapper {
    position: relative;
    padding: 20px;
}

.team-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.team-image:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-features {
    margin-top: 30px;
}

.team-feature-item {
    padding: 20px 15px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 12px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    text-align: center;
}

.team-feature-item:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.team-feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(135deg, #e11a34 0%, #5F4C8C 100%);
    border-radius: 50%;
    margin: 0 auto;
    display: inline-block;
    -webkit-box-shadow: 0 4px 15px rgba(225, 26, 52, 0.3);
    -moz-box-shadow: 0 4px 15px rgba(225, 26, 52, 0.3);
    box-shadow: 0 4px 15px rgba(225, 26, 52, 0.3);
}

.team-feature-icon i {
    font-size: 28px;
    color: #fff;
    line-height: 60px;
}

.team-feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #192730;
    margin-bottom: 8px;
}

.team-feature-item p {
    font-size: 14px;
    color: #6c6c6c;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .team-area .section-title {
        padding-bottom: 30px !important;
    }
    
    .team-content-wrapper {
        padding: 10px 0;
        text-align: center;
    }
    
    .team-content-wrapper .text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .team-image-wrapper {
        padding: 15px;
        margin-bottom: 24px;
    }
    
    .team-image {
        max-width: 100%;
        width: 100%;
    }
    
    /* Remove hover effects on mobile */
    .team-image:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}


.team-style-eleven {
    position: relative;
    -webkit-box-shadow: 0 8px 16px 0 rgba(72, 127, 255, .1);
    -moz-box-shadow: 0 8px 16px 0 rgba(72, 127, 255, .1);
    box-shadow: 0 8px 16px 0 rgba(72, 127, 255, .1)
}

.team-style-eleven .team-image img {
    width: 100%
}

.team-style-eleven .team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding-top: 25px;
    padding-bottom: 25px;
    z-index: 5;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media (max-width: 767px) {
    .team-style-eleven .team-content {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.team-style-eleven .team-content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(left, #e11a34 0%, #5F4C8C 100%);
    background: -o-linear-gradient(left, #e11a34 0%, #5F4C8C 100%);
    background: linear-gradient(to right, #e11a34 0%, #5F4C8C 100%);
    z-index: -1;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    opacity: 0
}

.team-style-eleven .team-content .team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    visibility: hidden;
    opacity: 0
}

.team-style-eleven .team-content .team-social .social {
    background-color: #fff;
    display: inline-block;
    padding: 10px 20px 6px;
    border-radius: 50px
}

.team-style-eleven .team-content .team-social .social li {
    display: inline-block;
    margin: 0 8px
}

.team-style-eleven .team-content .team-social .social li a {
    font-size: 16px;
    color: #a4a4a4;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.team-style-eleven .team-content .team-social .social li a:hover {
    color: #e11a34
}

.team-style-eleven .team-content .team-name a {
    color: #192730;
    font-size: 24px;
    font-weight: 600;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media (max-width: 767px) {
    .team-style-eleven .team-content .team-name a {
        font-size: 18px
    }
}

.team-style-eleven .team-content .sub-title {
    font-size: 16px;
    color: #e11a34;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media (max-width: 767px) {
    .team-style-eleven .team-content .sub-title {
        font-size: 14px
    }
}

.team-style-eleven:hover .team-content {
    padding-top: 50px
}

@media (max-width: 767px) {
    .team-style-eleven:hover .team-content {
        padding-top: 35px
    }
}

.team-style-eleven:hover .team-content::before {
    opacity: 1
}

.team-style-eleven:hover .team-content .team-social {
    top: -20px;
    visibility: visible;
    opacity: 1
}

.team-style-eleven:hover .team-content .team-name a {
    color: #fff
}

.team-style-eleven:hover .team-content .sub-title {
    color: #fff
}

p.form-message.success,
p.form-message.error {
    font-size: 16px;
    color: #333;
    background: #ddd;
    padding: 10px 15px;
    margin-top: 15px;
    margin-left: 15px
}

p.form-message.success.form-message.error,
p.form-message.error.form-message.error {
    color: red
}

.quote-info .single-quote-info .quote-info-icon {
    flex-shrink: 0;
    margin-right: 16px;
}

.quote-info .single-quote-info .quote-info-icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    border-radius: 50%;
    display: block;
}

.quote-info .single-quote-info .quote-info-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.quote-info .single-quote-info .quote-info-content.media-body {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.quote-info .single-quote-info .quote-info-content .text {
    color: #192730
}

.quote-info .single-quote-info.quote-color-1 .quote-info-icon i {
    background-color: #192730
}

.quote-info .single-quote-info.quote-color-2 .quote-info-icon i {
    background-color: #fc3832
}

.quote-info .single-quote-info.quote-color-3 .quote-info-icon i {
    background-color: #5f4c8c
}

.quote-area .quote-title {
    font-size: 32px;
    font-weight: 700
}

/* Quote Iframe Wrapper */
.quote-iframe-wrapper {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: relative;
}

.iframe-container {
    position: relative;
    width: 100%;
    background-color: #fff;
    min-height: 800px;
    padding-top: 20px;
}

#quote-iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    display: block;
    background-color: #fff;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
.quote-iframe-wrapper:focus-within {
    outline: 2px solid #e11a34;
    outline-offset: 4px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .quote-iframe-wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0px 10px;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .iframe-container {
        min-height: 600px;
    }
    
    #quote-iframe {
        min-height: 600px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .iframe-container {
        min-height: 700px;
    }
    
    #quote-iframe {
        min-height: 700px;
    }
}

@media (min-width: 992px) {
    .iframe-container {
        min-height: 800px;
    }
    
    #quote-iframe {
        min-height: 800px;
    }
}

/* Large screens - allow more height */
@media (min-width: 1200px) {
    .iframe-container {
        min-height: 900px;
    }
    
    #quote-iframe {
        min-height: 900px;
    }
}

/* Loading state */
.quote-iframe-wrapper.loading {
    background-color: #f4f6f7;
}

.quote-iframe-wrapper.loading::after {
    content: "Loading quote form...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #192730;
    font-size: 16px;
    z-index: 1;
}

/* Quote CTA */
.quote-cta {
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.quote-cta .text {
    font-size: 24px;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 20px;
}

.quote-cta .main-btn.rounded-one {
    border-radius: 50px;
    border-color: var(--primary-red);
    color: var(--white);
    background-color: var(--primary-red);
}

.quote-cta .main-btn.rounded-one:hover {
    color: var(--white);
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
}

@media (max-width: 767px) {
    .quote-cta {
        margin-top: 30px;
        margin-bottom: 24px;
        padding: 24px 20px;
    }
    
    .quote-cta .text {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .quote-area .quote-title {
        font-size: 26px
    }
}

.quote-area .quote-title i {
    color: #192730;
    margin-right: 8px
}

.quote-title span {
    font-weight: 400
}

.footer-area {
    background-color: var(--light-bg);
    padding-top: 90px;
    padding-bottom: 120px
}

.footer-area .social li {
    display: inline-block;
    margin: 0 5px
}

.footer-area .social li a {
    font-size: 24px;
    color: var(--text-secondary);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.footer-area .social li a:hover {
    color: var(--primary-red)
}

.footer-area .footer-support {
    padding-top: 21px
}

.footer-area .footer-support span {
    font-size: 16px;
    line-height: 27px;
    color: var(--dark-text);
    font-weight: 600;
    margin-top: 9px;
    display: block
}

@media (max-width: 767px) {
    .footer-area .footer-support span {
        display: block
    }
}

.footer-area .footer-app-store {
    padding-top: 27px
}

.footer-area .footer-app-store ul li {
    display: inline-block;
    margin-right: 8px
}

@media (min-width: 992px) {
    .footer-area .footer-app-store ul li {
        margin-right: 6px
    }
}

.footer-area .footer-app-store ul li:last-child {
    margin-right: 0
}

@media (max-width: 767px) {
    .footer-area .footer-app-store ul li {
        width: auto
    }
}

.footer-area .copyright .text {
    color: var(--dark-text)
}

.footer-area.footer-dark {
    background-color: var(--dark-text)
}

.footer-area.footer-dark .social li a {
    color: var(--white)
}

.footer-area.footer-dark .footer-support {
    padding-top: 21px
}

.footer-area.footer-dark .footer-support span {
    color: var(--white)
}

.footer-area.footer-dark .footer-app-store {
    padding-top: 27px
}

.footer-area.footer-dark .footer-app-store ul li {
    color: #fff
}

.footer-area.footer-dark .copyright .text {
    color: var(--white)
}

/* Enhanced Footer Styling */
.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-area.footer-dark .footer-title {
    color: #fff;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.footer-logo img:hover {
    opacity: 0.8;
}

.footer-widget .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-links li a,
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    display: inline-block;
}

.footer-links li a:hover,
.footer-links a:hover {
    color: #e11a34;
}

.footer-links.d-flex a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.footer-links.d-flex a:hover {
    color: #e11a34;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact li i {
    margin-right: 12px;
    margin-top: 4px;
    font-size: 18px;
    color: #e11a34;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.footer-contact li a:hover {
    color: #e11a34;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-item {
    display: inline-block;
}

.badge-item img {
    max-width: 140px;
    height: auto;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.badge-item img:hover {
    opacity: 1;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.footer-area.footer-dark .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-area.footer-dark .copyright .text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-area.footer-dark .copyright .text.small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

@media (max-width: 767px) {
    .footer-area {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 24px !important;
    }
    
    .footer-logo img {
        max-width: 160px;
        height: auto;
    }
    
    .footer-widget .text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px !important;
        padding: 0 10px;
    }
    
    .footer-links.d-flex {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-links.d-flex a {
        margin: 0 !important;
        font-size: 14px;
        padding: 8px 0;
    }
    
    .footer-area.footer-dark .border-top {
        margin-top: 30px !important;
        padding-top: 24px !important;
    }
    
    .copyright .text {
        font-size: 13px !important;
    }
    
    .copyright .text.small {
        font-size: 12px !important;
        margin-top: 8px;
    }
}

.back-to-top {
    font-size: 20px;
    color: var(--white);
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    background-color: var(--primary-red);
    text-align: center;
    z-index: 99;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    display: none
}

.back-to-top:hover {
    color: var(--white);
    background-color: var(--primary-red-dark);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 26, 52, 0.3);
}

/* Professional Enhancements */
.quote-info .single-quote-info {
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    padding: 20px;
}

.quote-info .single-quote-info:hover {
    -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.quote-info .single-quote-info:focus {
    text-decoration: none;
    color: inherit;
    outline: 2px solid #e11a34;
    outline-offset: 2px;
}

.quote-info .single-quote-info h5 {
    color: #192730;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.quote-info .single-quote-info:hover h5 {
    color: #192730;
}

/* Improved button hover effects */
.main-btn, .secondary-btn {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.main-btn:hover, .secondary-btn:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 12px rgba(225, 26, 52, 0.3);
    -moz-box-shadow: 0 4px 12px rgba(225, 26, 52, 0.3);
    box-shadow: 0 4px 12px rgba(225, 26, 52, 0.3);
}

/* Better form styling */
.form-input input, .form-input textarea {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.form-input input:focus, .form-input textarea:focus {
    border-color: #e11a34;
    -webkit-box-shadow: 0 0 0 3px rgba(225, 26, 52, 0.1);
    -moz-box-shadow: 0 0 0 3px rgba(225, 26, 52, 0.1);
    box-shadow: 0 0 0 3px rgba(225, 26, 52, 0.1);
    outline: 2px solid #e11a34;
    outline-offset: 2px;
}

/* Enhanced button focus styles - subtle shadow only */
.main-btn:focus,
.secondary-btn:focus,
button:focus,
a.main-btn:focus,
a.secondary-btn:focus {
    box-shadow: 0 0 0 3px rgba(225, 26, 52, 0.2);
}

/* Ensure all interactive elements are keyboard accessible */
a[href]:not(.navbar-nav a):not(.hero-scroll-indicator):not(.back-to-top):focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
    outline: 2px solid #e11a34;
    outline-offset: 2px;
}

button:focus,
.navbar-nav a:focus,
.hero-scroll-indicator:focus,
.back-to-top:focus {
    outline: none;
}

/* Remove outline only for mouse users, keep for keyboard */
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* Improved accordion styling */
.super-visa-area .super-visa-accordion .accordion .card {
    border-radius: 8px;
    margin-bottom: 12px;
}

.super-visa-area .super-visa-accordion .accordion .card .card-body {
    border-radius: 0 0 8px 8px;
    padding: 20px;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    /* Reduce hover effects on mobile - use active states instead */
    .single-features:hover,
    .tools-style:hover,
    .quote-info .single-quote-info:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    
    /* Reduce shadow intensity on mobile for better performance */
    .single-features {
        -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }
    
    .tools-style {
        -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .12);
        -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .12);
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .12);
        padding: 24px 20px 32px;
    }
    
    .quote-info .single-quote-info {
        -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        padding: 18px 20px;
        min-height: 70px;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    /* Remove hover transform on mobile for quote info cards */
    .quote-info .single-quote-info:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    
    /* Better touch target for quote info cards */
    .quote-info .single-quote-info .quote-info-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        flex-shrink: 0;
        margin-right: 16px;
    }
    
    .quote-info .single-quote-info .quote-info-icon i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
    }
    
    .quote-info .single-quote-info .quote-info-content {
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    /* Ensure quote info cards are full width on mobile */
    .quote-info .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 16px;
    }
    
    .quote-info .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    /* Quote info card text styling on mobile */
    .quote-info .single-quote-info h5 {
        font-size: 16px;
        margin: 0 !important;
        line-height: 1.4;
        font-weight: 600;
    }
    
    .quote-info .single-quote-info .quote-info-content.media-body {
        margin: 0;
    }
    
    /* Button hover effects - use active/touch states */
    .main-btn:hover, .secondary-btn:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    
    .main-btn:active, .secondary-btn:active {
        -webkit-transform: scale(0.98);
        -moz-transform: scale(0.98);
        -ms-transform: scale(0.98);
        -o-transform: scale(0.98);
        transform: scale(0.98);
    }
    
    /* Better touch targets for mobile */
    .main-btn, .secondary-btn {
        min-height: 44px;
        padding: 0 24px;
    }
    
    /* Make all buttons 100% width on mobile (exclude navbar toggler) */
    .main-btn,
    .secondary-btn,
    .md-btn,
    .features-btn,
    button[type="button"]:not(.navbar-toggler),
    button[type="submit"],
    .sendFormBtn {
        width: 100% !important;
        display: block !important;
    }
    
    /* Ensure navbar toggler button is not affected */
    button.navbar-toggler {
        width: auto !important;
        display: inline-block !important;
    }
    
    /* Button containers - stack buttons vertically */
    .light-rounded-buttons,
    .light-rounded-buttons ul,
    .slider-btn,
    .slider-btn ul,
    .rounded-buttons,
    .rounded-buttons ul,
    .tools-btn {
        width: 100% !important;
    }
    
    .light-rounded-buttons a,
    .light-rounded-buttons button,
    .slider-btn li,
    .slider-btn li a,
    .rounded-buttons li,
    .rounded-buttons li a {
        width: 100% !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Remove horizontal margins between buttons on mobile */
    .light-rounded-buttons .mr-3,
    .slider-btn li {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 12px;
    }
    
    .slider-btn li:last-child,
    .light-rounded-buttons a:last-child,
    .light-rounded-buttons button:last-child {
        margin-bottom: 0;
    }
    
    /* Features buttons */
    .features-btn {
        width: 100% !important;
        display: block !important;
        text-align: center;
    }
    
    /* Navbar button - keep inline for navbar (only affects the FREE Quote button, not hamburger menu) */
    .navbar-area .navbar .navbar-btn {
        width: auto !important;
        display: inline-block !important;
    }
    
    .navbar-area .navbar .navbar-btn a {
        width: auto !important;
    }
    
    /* Ensure hamburger menu (navbar-toggler) is not affected */
    .navbar-toggler {
        width: auto !important;
        display: inline-block !important;
    }
    
    /* Adjust card padding for mobile */
    .single-features {
        padding: 30px 18px 40px;
    }
    
    /* Better spacing for list items on mobile */
    .packages-area .tab-pane ul li {
        padding-left: 20px;
        margin-bottom: 10px;
    }
    
    /* Reduce form focus shadow on mobile */
    .form-input input:focus, .form-input textarea:focus {
        -webkit-box-shadow: 0 0 0 2px rgba(225, 26, 52, 0.15);
        -moz-box-shadow: 0 0 0 2px rgba(225, 26, 52, 0.15);
        box-shadow: 0 0 0 2px rgba(225, 26, 52, 0.15);
    }
    
    /* ============================================
       COMPREHENSIVE MOBILE SPACING SYSTEM
       Following 8px spacing scale best practices
       ============================================ */
    
    /* Section Padding - Reduced for mobile */
    .pt-100 {
        padding-top: 60px !important;
    }
    
    .pb-130 {
        padding-bottom: 80px !important;
    }
    
    .pt-90 {
        padding-top: 50px !important;
    }
    
    .pt-60 {
        padding-top: 40px !important;
    }
    
    .pt-40 {
        padding-top: 30px !important;
    }
    
    .pt-md-80 {
        padding-top: 50px !important;
    }
    
    /* Container padding - Standardized (Bootstrap default is already 15px, but ensure consistency) */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Section titles spacing */
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title.pb-10 {
        padding-bottom: 20px !important;
    }
    
    .section-title.pb-25 {
        padding-bottom: 20px !important;
    }
    
    .section-title.pb-30 {
        padding-bottom: 24px !important;
    }
    
    .section-title.pb-50 {
        padding-bottom: 30px !important;
    }
    
    /* Content spacing */
    .text {
        margin-bottom: 16px;
    }
    
    /* Tab content padding */
    .tab-pane.px-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .tab-pane.pt-3 {
        padding-top: 20px !important;
    }
    
    /* Navigation tabs */
    .nav.nav-pills.mt-5 {
        margin-top: 30px !important;
    }
    
    .nav.nav-pills.mb-3 {
        margin-bottom: 24px !important;
    }
    
    /* Button spacing */
    .mt-3 {
        margin-top: 16px !important;
    }
    
    .mb-3 {
        margin-bottom: 16px !important;
    }
    
    .mt-4 {
        margin-top: 20px !important;
    }
    
    .mb-4 {
        margin-bottom: 20px !important;
    }
    
    .mt-5 {
        margin-top: 30px !important;
    }
    
    .mb-5 {
        margin-bottom: 30px !important;
    }
    
    .mt-20 {
        margin-top: 16px !important;
    }
    
    .mt-25 {
        margin-top: 20px !important;
    }
    
    .mt-30 {
        margin-top: 24px !important;
    }
    
    .mt-40 {
        margin-top: 30px !important;
    }
    
    .mt-45 {
        margin-top: 32px !important;
    }
    
    /* Button margins */
    .mr-1 {
        margin-right: 4px !important;
    }
    
    .mr-2 {
        margin-right: 8px !important;
    }
    
    .mr-3 {
        margin-right: 12px !important;
    }
    
    .ml-2 {
        margin-left: 8px !important;
    }
    
    /* Form spacing */
    .form-input.mt-25 {
        margin-top: 20px !important;
    }
    
    .form-input.mt-30 {
        margin-top: 24px !important;
    }
    
    .quote-wrapper.pt-60 {
        padding-top: 40px !important;
    }
    
    .quote-title.pb-10 {
        padding-bottom: 16px !important;
    }
    
    /* Quote info spacing */
    .quote-info.pt-90 {
        padding-top: 50px !important;
    }
    
    .single-quote-info.mt-20 {
        margin-top: 16px !important;
    }
    
    .single-quote-info .mt-3 {
        margin-top: 12px !important;
    }
    
    /* Alert spacing */
    .alert.mt-4 {
        margin-top: 20px !important;
    }
    
    /* Tools section */
    .tools-style.mt-30 {
        margin-top: 24px !important;
    }
    
    .tools-style .month.mt-4 {
        margin-top: 16px !important;
    }
    
    /* Features spacing */
    .single-features.mt-4 {
        margin-top: 24px !important;
    }
    
    .single-features.mt-md-5 {
        margin-top: 24px !important;
    }
    
    .single-features.mt-30 {
        margin-top: 24px !important;
    }
    
    .features-content.mt-4 {
        margin-top: 20px !important;
    }
    
    .features-content .mt-0 {
        margin-top: 0 !important;
    }
    
    .features-title-icon.mt-2 {
        margin-top: 12px !important;
    }
    
    /* Super visa spacing */
    .super-visa-area .mt-45 {
        margin-top: 32px !important;
    }
    
    .super-visa-area .text.mt-4 {
        margin-top: 20px !important;
    }
    
    .super-visa-area .mt-3 {
        margin-top: 16px !important;
    }
    
    .super-visa-image.mt-40 {
        margin-top: 30px !important;
    }
    
    /* Form message */
    .formMessage.mt-5 {
        margin-top: 30px !important;
    }
    
    .capError.mt-3 {
        margin-top: 16px !important;
    }
    
    .g-recaptcha.mt-4 {
        margin-top: 20px !important;
    }
    
    /* List item spacing */
    .packages-area .tab-pane ul li {
        margin-bottom: 12px;
        padding-left: 20px;
    }
    
    /* Light rounded buttons spacing */
    .light-rounded-buttons {
        margin-top: 24px;
    }
    
    .light-rounded-buttons .mt-3 {
        margin-top: 16px !important;
    }
    
    /* Slider content spacing */
    .slider-content .text {
        margin-top: 12px;
    }
    
    /* Team section specific */
    .team-content-wrapper .text.mb-4 {
        margin-bottom: 20px !important;
    }
    
    /* Contact section */
    .contact-area .quote-info.pt-40 {
        padding-top: 30px !important;
    }
    
    /* Footer spacing */
    .footer-logo.mt-30 {
        margin-top: 24px !important;
    }
    
    .copyright.mt-20 {
        margin-top: 16px !important;
    }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 991px) {
    .single-features:hover,
    .tools-style:hover {
        -webkit-transform: translateY(-2px);
        -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        -o-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}