/***#######CLEARING BROWSER DEFAULTS#######***/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
select {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

/**fixing firefox focus issues**/
a:focus {
    outline: none;
}

button:focus {
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
}

/**solving rendering issues**/
img {
    -webkit-backface-visibility: hidden;
    /* IE 9 */
    -webkit-transform: translateZ(0);
    /* Chrome, Safari, Opera */
    transform: translateZ(0);
}

/**resetting form fields**/
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.input-def {
    background-color: rgba(0, 0, 0, 0);
    border: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/***#######CLEARING BROWSER DEFAULTS ENDS#######***/
/***#######BLOCKS CSS#######***/
/***======UTILITY CLASSES======***/
.row,
.fl-lt,
.n-row {
    float: left;
}

.fl-rt {
    float: right;
}

.row,
.n-row {
    width: 100%;
}

.ht-100 {
    height: 100%;
}

.n-row {
    padding-left: 6%;
    padding-right: 6%;
}

.n-row2 {
    padding-left: 10%;
    padding-right: 10%;
}

/**text aligns**/
.t-lt {
    text-align: left;
}

.t-rt {
    text-align: right;
}

.t-cen {
    text-align: center;
}

/**centering elements**/
.v-cen {
    position: relative;
    -webkit-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0);
    top: 50%;
}

.h-cen {
    position: relative;
    -webkit-transform: translateX(-50%) translateZ(0);
    transform: translateX(-50%) translateZ(0);
    left: 50%;
}

.hv-cen {
    left: 50%;
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
}

/**disabling elements**/
.disab {
    display: none;
}

.disab-o {
    opacity: 0;
}

.disab-z {
    z-index: -1;
}

.disab-y {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.disab-o-y {
    opacity: 0;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}

.disab-o-y2 {
    opacity: 0;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
}

/**overflow hidden**/
.ovr-hid {
    overflow: hidden;
}

.ovr-y-hid {
    overflow-y: hidden;
}

.ovr-x-hid {
    overflow-x: hidden;
}

/**overflow wrap and no select**/
.overflow-wrap {
    border: 1px solid transparent;
}

.no-select {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
     supported by Chrome and Opera */
}

/**render in GPU**/
.gpu-fix {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/**clear fix**/
.clr-all {
    clear: both;
}

.clr-l {
    clear: left;
}

.clr-r {
    clear: right;
}

/***======RESPONSIVE BLOCKS======***/
/**block float**/
.blc-rt {
    float: right;
}

.blc-lt {
    float: left;
}

/**block padding**/
.blc-pad-10 {
    padding: 0 10px;
}

.blc-pad-15 {
    padding: 0 15px;
}

.blc-pad-20 {
    padding: 0 20px;
}

/*block padding left*/
.blc-pad-10-l {
    padding-left: 10px;
}

.blc-pad-15-l {
    padding-left: 15px;
}

.blc-pad-20-l {
    padding-left: 20px;
}

/*block padding-right*/
.blc-pad-10-r {
    padding-right: 10px;
}

.blc-pad-15-r {
    padding-right: 15px;
}

.blc-pad-20-r {
    padding-right: 20px;
}

/**block sizing based on different viewports**/
/*desktops*/
.blc-10 {
    min-height: 1px;
    width: 10%;
}

.blc-8_3 {
    min-height: 1px;
    width: 8.33%;
}

.blc-12_5 {
    min-height: 1px;
    width: 12.5%;
}

.blc-16_6 {
    min-height: 1px;
    width: 16.66%;
}

.blc-20 {
    min-height: 1px;
    width: 20%;
}

.blc-25 {
    min-height: 1px;
    width: 25%;
}

.blc-30 {
    min-height: 1px;
    width: 30%;
}

.blc-33 {
    min-height: 1px;
    width: 33%;
}

.blc-35 {
    min-height: 1px;
    width: 35%;
}

.blc-40 {
    min-height: 1px;
    width: 40%;
}

.blc-45 {
    min-height: 1px;
    width: 45%;
}

.blc-50 {
    min-height: 1px;
    width: 50%;
}

.blc-55 {
    min-height: 1px;
    width: 55%;
}

.blc-60 {
    min-height: 1px;
    width: 60%;
}

.blc-65 {
    min-height: 1px;
    width: 65%;
}

.blc-70 {
    min-height: 1px;
    width: 70%;
}

.blc-75 {
    min-height: 1px;
    width: 75%;
}

.blc-80 {
    min-height: 1px;
    width: 80%;
}

.blc-85 {
    min-height: 1px;
    width: 85%;
}

.blc-90 {
    min-height: 1px;
    width: 90%;
}

.blc-100 {
    min-height: 1px;
    width: 100%;
}

/**hide elements**/
.d-hide {
    display: none;
}

/*Desktop to Mobile & Tablet*/
@media only screen and (min-width: 240px) and (max-width: 1023px) {

    /***CONVERTING DESKTOP BLOCKS TO TABLET & MOBILE BLOCKS (Width = 100%)****/
    .blc-10 {
        min-height: 1px;
        width: 100%;
    }

    .blc-8_3 {
        min-height: 1px;
        width: 100%;
    }

    .blc-12_5 {
        min-height: 1px;
        width: 100%;
    }

    .blc-16_6 {
        min-height: 1px;
        width: 100%;
    }

    .blc-20 {
        min-height: 1px;
        width: 100%;
    }

    .blc-25 {
        min-height: 1px;
        width: 100%;
    }

    .blc-30 {
        min-height: 1px;
        width: 100%;
    }

    .blc-33 {
        min-height: 1px;
        width: 100%;
    }

    .blc-35 {
        min-height: 1px;
        width: 100%;
    }

    .blc-40 {
        min-height: 1px;
        width: 100%;
    }

    .blc-45 {
        min-height: 1px;
        width: 100%;
    }

    .blc-50 {
        min-height: 1px;
        width: 100%;
    }

    .blc-55 {
        min-height: 1px;
        width: 100%;
    }

    .blc-60 {
        min-height: 1px;
        width: 100%;
    }

    .blc-65 {
        min-height: 1px;
        width: 100%;
    }

    .blc-70 {
        min-height: 1px;
        width: 100%;
    }

    .blc-75 {
        min-height: 1px;
        width: 100%;
    }

    .blc-80 {
        min-height: 1px;
        width: 100%;
    }

    .blc-85 {
        min-height: 1px;
        width: 100%;
    }

    .blc-90 {
        min-height: 1px;
        width: 100%;
    }

    .blc-100 {
        min-height: 1px;
        width: 100%;
    }

    /***CONVERTING DESKTOP BLOCKS TO TABLET BLOCKS ENDS***/
}

/*Desktop to Mobile & Tablet Ends*/
/*laptops*/
@media only screen and (min-width: 1024px) and (max-width: 1599px) {
    .blc-8_3-l {
        min-height: 1px;
        width: 8.33%;
    }

    .blc-10-l {
        min-height: 1px;
        width: 10%;
    }

    .blc-12_5-l {
        min-height: 1px;
        width: 12.5%;
    }

    .blc-16_6-l {
        min-height: 1px;
        width: 16.66%;
    }

    .blc-20-l {
        min-height: 1px;
        width: 20%;
    }

    .blc-25-l {
        min-height: 1px;
        width: 25%;
    }

    .blc-30-l {
        min-height: 1px;
        width: 30%;
    }

    .blc-33-l {
        min-height: 1px;
        width: 33%;
    }

    .blc-35-l {
        min-height: 1px;
        width: 35%;
    }

    .blc-40-l {
        min-height: 1px;
        width: 40%;
    }

    .blc-45-l {
        min-height: 1px;
        width: 45%;
    }

    .blc-50-l {
        min-height: 1px;
        width: 50%;
    }

    .blc-55-l {
        min-height: 1px;
        width: 55%;
    }

    .blc-60-l {
        min-height: 1px;
        width: 60%;
    }

    .blc-65-l {
        min-height: 1px;
        width: 65%;
    }

    .blc-70-l {
        min-height: 1px;
        width: 70%;
    }

    .blc-75-l {
        min-height: 1px;
        width: 75%;
    }

    .blc-80-l {
        min-height: 1px;
        width: 80%;
    }

    .blc-85-l {
        min-height: 1px;
        width: 85%;
    }

    .blc-90-l {
        min-height: 1px;
        width: 90%;
    }

    .blc-100-l {
        min-height: 1px;
        width: 100%;
    }

    /**hide elements**/
    .d-hide {
        display: block;
    }

    .l-hide {
        display: none;
    }
}

/*media query for laptop blocks ends*/
/*tablets*/
@media only screen and (min-width: 500px) and (max-width: 1023px) {
    .blc-8_3-t {
        min-height: 1px;
        width: 8.33%;
    }

    .blc-10-t {
        min-height: 1px;
        width: 10%;
    }

    .blc-12_5-t {
        min-height: 1px;
        width: 12.5%;
    }

    .blc-16_6-t {
        min-height: 1px;
        width: 16.66%;
    }

    .blc-20-t {
        min-height: 1px;
        width: 20%;
    }

    .blc-25-t {
        min-height: 1px;
        width: 25%;
    }

    .blc-30-t {
        min-height: 1px;
        width: 30%;
    }

    .blc-33-t {
        min-height: 1px;
        width: 33%;
    }

    .blc-35-t {
        min-height: 1px;
        width: 35%;
    }

    .blc-40-t {
        min-height: 1px;
        width: 40%;
    }

    .blc-45-t {
        min-height: 1px;
        width: 45%;
    }

    .blc-50-t {
        min-height: 1px;
        width: 50%;
    }

    .blc-55-t {
        min-height: 1px;
        width: 55%;
    }

    .blc-60-t {
        min-height: 1px;
        width: 60%;
    }

    .blc-65-t {
        min-height: 1px;
        width: 65%;
    }

    .blc-70-t {
        min-height: 1px;
        width: 70%;
    }

    .blc-75-t {
        min-height: 1px;
        width: 75%;
    }

    .blc-80-t {
        min-height: 1px;
        width: 80%;
    }

    .blc-85-t {
        min-height: 1px;
        width: 85%;
    }

    .blc-90-t {
        min-height: 1px;
        width: 90%;
    }

    .blc-100-t {
        min-height: 1px;
        width: 100%;
    }

    /**hide elements**/
    .d-hide {
        display: block;
    }

    .t-hide {
        display: none;
    }
}

/*media query for tablet blocks ends*/
/*mobile*/
/*mobile medium and large*/
@media only screen and (min-width: 240px) and (max-width: 499px) {
    .blc-8_3-m {
        min-height: 1px;
        width: 8.33%;
    }

    .blc-10-m {
        min-height: 1px;
        width: 10%;
    }

    .blc-12_5-m {
        min-height: 1px;
        width: 12.5%;
    }

    .blc-16_6-m {
        min-height: 1px;
        width: 16.66%;
    }

    .blc-20-m {
        min-height: 1px;
        width: 20%;
    }

    .blc-25-m {
        min-height: 1px;
        width: 25%;
    }

    .blc-30-m {
        min-height: 1px;
        width: 30%;
    }

    .blc-33-m {
        min-height: 1px;
        width: 33%;
    }

    .blc-35-m {
        min-height: 1px;
        width: 35%;
    }

    .blc-40-m {
        min-height: 1px;
        width: 40%;
    }

    .blc-50-m {
        min-height: 1px;
        width: 50%;
    }

    .blc-55-m {
        min-height: 1px;
        width: 55%;
    }

    .blc-60-m {
        min-height: 1px;
        width: 60%;
    }

    .blc-65-m {
        min-height: 1px;
        width: 65%;
    }

    .blc-70-m {
        min-height: 1px;
        width: 70%;
    }

    .blc-75-m {
        min-height: 1px;
        width: 75%;
    }

    .blc-80-m {
        min-height: 1px;
        width: 80%;
    }

    .blc-85-m {
        min-height: 1px;
        width: 85%;
    }

    .blc-90-m {
        min-height: 1px;
        width: 90%;
    }

    .blc-100-m {
        min-height: 1px;
        width: 100%;
    }

    /**hide elements**/
    .d-hide {
        display: block;
    }

    .m-hide {
        display: none;
    }
}

/*mobile small*/
@media only screen and (min-width: 240px) and (max-width: 320px) {
    .blc-8_3-m_s {
        min-height: 1px;
        width: 8.33%;
    }

    .blc-10-m_s {
        min-height: 1px;
        width: 10%;
    }

    .blc-12_5-m_s {
        min-height: 1px;
        width: 12.5%;
    }

    .blc-16_6-m_s {
        min-height: 1px;
        width: 16.66%;
    }

    .blc-20-m_s {
        min-height: 1px;
        width: 20%;
    }

    .blc-25-m_s {
        min-height: 1px;
        width: 25%;
    }

    .blc-30-m_s {
        min-height: 1px;
        width: 30%;
    }

    .blc-33-m_s {
        min-height: 1px;
        width: 33%;
    }

    .blc-35-m_s {
        min-height: 1px;
        width: 35%;
    }

    .blc-40-m {
        min-height: 1px;
        width: 40%;
    }

    .blc-45-m {
        min-height: 1px;
        width: 45%;
    }

    .blc-50-m_s {
        min-height: 1px;
        width: 50%;
    }

    .blc-55-m_s {
        min-height: 1px;
        width: 55%;
    }

    .blc-60-m_s {
        min-height: 1px;
        width: 60%;
    }

    .blc-65-m_s {
        min-height: 1px;
        width: 65%;
    }

    .blc-70-m_s {
        min-height: 1px;
        width: 70%;
    }

    .blc-75-m_s {
        min-height: 1px;
        width: 75%;
    }

    .blc-80-m_s {
        min-height: 1px;
        width: 80%;
    }

    .blc-85-m_s {
        min-height: 1px;
        width: 85%;
    }

    .blc-90-m_s {
        min-height: 1px;
        width: 90%;
    }

    .blc-100-m_s {
        min-height: 1px;
        width: 100%;
    }

    /**hide elements**/
    .d-hide {
        display: block;
    }

    .m_s-hide {
        display: none;
    }
}

/*media query for mobile blocks ends*/
/***#######RESPONSIVE BLOCKS ENDS#######***/
/***====COLORS====***/
/***main colors***/
/***accent colors***/
/***base color***/
/***====FONT SIZES====***/
/***====TEXT COLORS====***/
/***====BORDER COLORS====***/
/***====BACKGROUND COLORS====***/
/***====LINK COLORS====***/
/***====ICON COLORS====***/
/***====HEADER====***/
/***====CONSTANT VALUES====***/
/***====RESPONSIVE VALUES====***/
/***====BODY====***/
/***IMPORTING FONTS***/
/***Montserrat***/
/***Lora***/
/***bop***/
/*@font-face {
    font-family: 'bop';
    src: url('../fonts/bop-webfont.woff2') format('woff2'),
         url('../fonts/bop-webfont.woff') format('woff'),
         url('../fonts/bop-webfont.svg#bop') format('svg');
    font-weight: normal;
    font-style: normal;

}*/
/*@font-face {
  font-family: 'MyWebFont';
  src: url('webfont.eot'); /* IE9 Compat Modes */
/*src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
/* url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
/* url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
/* url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
/* url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
/*}*/
html {
    font-size: 1vw;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/***Resetting all tag color***/
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    color: #5fbb46;
}

/***Default Fonts Sizes***/
h1 {
    font-size: 6em;
}

h2 {
    font-size: 5em;
}

h3 {
    font-size: 4em;
}

h4 {
    font-size: 3em;
}

h5 {
    font-size: 2em;
}

h6 {
    font-size: 1em;
}

p {
    color: #5e7085;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.6em;
}

a {
    transition: 0.3s;
}

a.link:hover {
    opacity: 0.6;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

/***====PRE LOADER====***/
/***complete red line***/
@keyframes loadRed {
    0% {
        width: 0%;
    }

    62% {
        width: 56%;
    }

    82% {
        width: 56%;
    }

    100% {
        width: 89%;
    }
}

/***====LOGO ANIMATION====***/
@keyframes drawMoveLogo {
    0% {
        fill: rgba(0, 0, 0, 0);
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        width: 30%;
    }

    45% {
        fill: rgba(0, 0, 0, 0);
        left: 50%;
        top: 50%;
        stroke-dashoffset: 0px;
        transform: translateY(-50%) translateX(-50%);
        width: 30%;
    }

    52% {
        fill: #5fbb46;
        left: 50%;
        top: 50%;
        stroke-dashoffset: 0px;
        transform: translateY(-50%) translateX(-50%);
        width: 30%;
    }

    72% {
        fill: #5fbb46;
        left: 50%;
        top: 50%;
        stroke-dashoffset: 0px;
        transform: translateY(-50%) translateX(-50%);
        width: 13%;
    }

    80% {
        fill: #5fbb46;
        left: 50%;
        top: 50%;
        stroke-dashoffset: 0px;
        transform: translateY(-50%) translateX(-50%);
        width: 13%;
    }

    89% {
        fill: #5fbb46;
        stroke-dashoffset: 0px;
        left: 0;
        top: 0;
        transform: translateX(2vw) translateY(1vw);
        width: 13%;
    }

    100% {
        fill: #5fbb46;
        stroke-dashoffset: 0px;
        left: 0;
        top: 0;
        transform: translateX(2vw) translateY(1vw);
        width: 15%;
    }
}

/***====CAR BRANDS====***/
@keyframes popBrandLogo {
    0% {
        transform: scale(0.01);
    }

    40% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/***====SLIDER CONTROL LINE====***/
@keyframes step1 {
    0% {
        transform: scale(0.001, 1);
    }

    100% {
        transform: scale(0.54, 1);
    }
}

@keyframes step2 {
    0% {
        transform: scale(0.54, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes step3 {
    0% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes step4 {
    0% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes stepBt1 {
    0% {
        transform: scale(0.001, 1);
    }

    100% {
        transform: scale(0.001, 1);
    }
}

@keyframes stepBt2 {
    0% {
        transform: scale(0.54, 1);
    }

    100% {
        transform: scale(0.54, 1);
    }
}

@keyframes stepBt3 {
    0% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes stepBt4 {
    0% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes dot1 {
    0% {
        left: 0;
    }

    100% {
        left: 54%;
    }
}

@keyframes dot2 {
    0% {
        left: 54%;
    }

    100% {
        left: 100%;
    }
}

@keyframes dot3 {
    0% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes dot4 {
    0% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes dotBt1 {
    0% {
        left: 0;
    }

    100% {
        left: 0;
    }
}

@keyframes dotBt2 {
    0% {
        left: 54%;
    }

    100% {
        left: 54%;
    }
}

@keyframes dotBt3 {
    0% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes dotBt4 {
    0% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes defBlink {
    0% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.1;
    }
}

@keyframes hoverBlink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes defState {
    0% {
        opacity: 0;
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes defState2 {
    0% {
        opacity: 0;
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes animState {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-10%);
    }
}

@keyframes animState2 {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-10%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flideInLt {
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flideInRt {
    0% {
        opacity: 0;
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flideOutLt {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-10%);
    }
}

@keyframes flideOutRt {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(10%);
    }
}

@keyframes flideUp {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveLtRt {
    0% {
        transform: translateX(10%);
    }

    50% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(10%);
    }
}

@keyframes growPaths {
    0% {
        opacity: 0;
        transform: scale(0.001);
    }

    33% {
        opacity: 1;
        transform: scale(1);
    }

    67% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes growPaths2 {
    0% {
        opacity: 0;
        transform: scale(0.001, 1) translateX(-20%);
    }

    33% {
        opacity: 0;
        transform: scale(0.001, 1) translateX(-20%);
    }

    67% {
        opacity: 1;
        transform: scale(1, 1) translateX(0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1) translateX(0);
    }
}

@keyframes growPaths3 {
    0% {
        opacity: 0;
        transform: scale(0.001, 1) translateX(-10%);
    }

    33% {
        opacity: 0;
        transform: scale(0.001, 1) translateX(-10%);
    }

    67% {
        opacity: 0;
        transform: scale(0.001, 1) translateX(-10%);
    }

    90% {
        opacity: 1;
        transform: scale(1, 1) translateX(0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1) translateX(0);
    }
}

/***==BUTTONS==***/
.sm-btn {
    display: inline-block;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.9em 3em;
    transition: all 0.5s ease;
}

.small-btn-r {
    border: 1px solid #5e7085;
    background-color: #5e7085;
    color: #fff;
    font-size: 0.95em;
    float: left;
    letter-spacing: 0.05em;
    padding: 0.5em 1.2em;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.small-btn-r:hover {
    background-color: #fff;
    color: #5e7085;
}

.small-btn-w {
    background-color: #5e7085;
    color: #5fbb46;
    display: inline-block;
    font-size: 1.05em;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.7em 2em;
    transition: all 0.5s ease;
}

.small-btn-w:hover {
    background-color: #5fbb46;
    color: #5e7085;
}

.lg-btn,
.lg-btn-b,
.lg-btn-w {
    background-color: #5fbb46;
    border: 1px solid #5fbb46;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.9em 3.8em;
    transition: all 0.5s ease;
}

.lg-btn:hover,
.lg-btn-b:hover,
.lg-btn-w:hover {
    background-color: #fff;
    color: #5fbb46;
}

.xlg-btn {
    background-color: #5fbb46;
    border: 1px solid #5fbb46;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6em;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 1.1em 4em;
    transition: all 0.5s ease;
}

.xlg-btn:hover {
    background-color: #fff;
    color: #5fbb46;
}

.lg-btn-b {
    border: 1px solid #5fbb46;
}

.lg-btn-b:hover {
    background-color: #5fbb46;
    color: #fff;
}

.lg-btn-w {
    background-color: #5e7085;
    color: #5fbb46;
}

.lg-btn-w:hover {
    background-color: #5fbb46;
    color: #5e7085;
}

.r-btn {
    border: 0.05em solid #5fbb46;
    border-radius: 7em;
    padding: 0.8em 2.5em;
}

.r-btn.pr {
    background-color: #5fbb46;
    color: #ffffff;
}

.r-btn-lg {
    border: 0.05em solid #5fbb46;
    border-radius: 5em;
    display: inline-block;
    font-size: 1.5em;
    padding: 0.8em 2.2em;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.r-btn-lg.pr {
    background-color: #5fbb46;
    color: #ffffff;
}

.r-btn-lg.pr:hover {
    background-color: #ffffff;
    color: #5fbb46;
}

/***==BUTTONS ENDS==***/
/***==LINKS==***/
.link-blc {
    font-size: 1.2em;
    font-weight: 600;
}

.link-blc.pad {
    padding-bottom: 1em;
}

.link-r {
    color: #5fbb46;
    transition: all 0.4s ease;
}

.link-r:hover {
    opacity: 0.6;
}

.txt-link {
    cursor: pointer;
    font-size: 1.7em;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.txt-link.one {
    color: #5fbb46;
}

.txt-link span {
    color: #5fbb46;
    float: left;
}

.txt-link .icon {
    animation: moveLtRt 1s linear infinite;
    margin: 2% 0.5em 0 0.5em;
    width: 1.2em;
}

.txt-link.pad-t {
    display: inline-block;
    padding-top: 0.3em;
}

.in-link {
    color: #5fbb46;
    transition: opacity 0.4s ease;
}

.in-link:hover {
    opacity: 0.6;
}

/***==LINKS ENDS==***/
/***==BORDER ELEMENT==***/
.red-bord {
    border-top: 0.4em solid #5e7085;
    display: inline-block;
    float: left;
    width: 7em;
}

.red-bord.mar {
    padding-bottom: 0.5em;
}

.red-bord.mar2 {
    padding-bottom: 1em;
}

.red-bord.mar3 {
    padding-bottom: 1.5em;
}

.red-bord.mar4 {
    padding-bottom: 3.5em;
}

.red-bord.no-ft {
    float: none;
}

.red-bord-s {
    border-top: 0.2em solid #5e7085;
    float: left;
    width: 4em;
}

.red-bord-s.mar {
    padding-bottom: 0.6em;
}

/***==BORDER ELEMENT ENDS==***/
/***==TITLES==***/
.main-title {
    font-size: 5.5em;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0.25em;
}

.main-title.dark {
    color: #5e7085;
}

.main-title.bord {
    border-bottom: 0.08em solid #eeeeee;
}

.main-title.pad-t {
    padding-top: 1em;
}

.main-title.pad-t2 {
    padding-top: 1.5em;
}

.main-title.sm {
    font-size: 4em;
    letter-spacing: 0.02em;
    line-height: 1.2em;
    padding-bottom: 0.1em;
}

.main-title .inc-txt {
    color: #000000;
    display: block;
    /* font-family: 'Lora', serif;*/
    font-size: 0.5em;
    /*font-style: italic;*/
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.6em;
}

.main-title .inc-img {
    float: left;
    padding-bottom: 0.1em;
    width: 100%;
}

.main-title .inc-img img {
    float: left;
    width: 14%;
}

.med-titl {
    color: #5e7085;
    display: inline-block;
    font-size: 3.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-bottom: 0.2em;
}

.med-titl.pad-r {
    padding-right: 10%;
}

.med-titl.w {
    color: #fff;
}

.med-titl.bord {
    border-bottom: 0.03em solid #5e7085;
    padding-left: 0.2em;
    padding-right: 0.2em;
}

.med-titl.mar {
    margin-bottom: 0.6em;
}

.med-titl.no-pad {
    padding: 0;
}

.med-titl2 {
    color: #ffffff;
    font-size: 4.85em;
    font-weight: 700;
    padding-left: 6vw;
    text-align: right;
}

.med-titl2.pad-r {
    padding-right: 10%;
}

.med-titl2.w {
    color: #fff;
}

.med-titl2.bord {
    border-bottom: 0.03em solid #5e7085;
    padding-left: 0.2em;
    padding-right: 0.2em;
}

.med-titl2.mar {
    margin-bottom: 0.6em;
}

.med-titl2.no-pad {
    padding: 0;
}

/**med title 3*/
.med-titl3 {
    color: #000;
    display: inline-block;
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-bottom: 0.2em;
}

.med-titl3.pad-r {
    padding-right: 10%;
}

.med-titl3.w {
    color: #fff;
}

.med-titl3.bord {
    border-bottom: 0.03em solid #000;
    padding-left: 0.2em;
    padding-right: 0.2em;
}

.med-titl3.mar {
    margin-bottom: 0.6em;
}

.med-titl3.no-pad {
    padding: 0;
}



.titl-bord-thin {
    border: 1px solid #ffffff;
    float: left;
    opacity: 0.6;
    width: 100%;
}

.sm-titl {
    font-size: 2.1em;
    font-weight: 500;
    padding-bottom: 0.5em;
}

.sm-titl.bld {
    font-weight: 600;
}

.sm-titl2 {
    color: #3d4d60;
    font-size: 2.8em;
    padding-bottom: 0.3em;
}

.sm-titl2.bld {
    font-weight: 600;
}

.mc-titl {
    font-size: 1.4em;
    font-weight: 700;
    padding-bottom: 0.9em;
}

.mc-titl.r {
    color: #5fbb46;
}

.mc-titl.b {
    color: #000000;
}

.mc-titl.pad-b2 {
    padding-bottom: 0.5em;
}

.mc-titl.no-pad {
    padding: 0;
}

.xs-titl {
    font-size: 1.1em;
    font-weight: 600;
    padding-bottom: 0.9em;
}

.xs-titl.r {
    color: #5fbb46;
}

.xs-titl.b {
    color: #000000;
}

.xs-titl.pad-b2 {
    padding-bottom: 0.5em;
}

.xs-titl.no-pad {
    padding: 0;
}

.titl-b {
    color: #ffffff;
    font-size: 5em;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding-bottom: 0.6em;
}

.titl-b span {
    display: block;
    font-family: 'Lora', serif;
    font-size: 0.5em;
    font-style: italic;
    letter-spacing: 0.1em;
    padding-bottom: 0.2em;
}

.med-txt {
    font-size: 1.4em;
    line-height: 1.7em;
    padding-bottom: 1.7em;
}

.med-txt.light {
    opacity: 0.7;
}

.sm-txt {
    color: #000000;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.8em;
    padding-bottom: 1.5em;
}

.sm-txt.light {
    opacity: 0.7;
}

.sm-txt.bld {
    font-weight: 600;
}

.sm-txt2 {
    color: #5e7085;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.8em;
    padding-bottom: 0.8em;
}

.sm-txt2.light {
    opacity: 0.7;
}

.sm-txt2.bld {
    font-weight: 600;
}

.xs-txt {
    color: #5e7085;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.4em;
    padding-bottom: 1em;
}

.xs-txt.light {
    opacity: 0.7;
}

.xs-txt.bld {
    font-weight: 600;
}

.titl-bord {
    border-top: 0.5em solid #5fbb46;
    display: inline-block;
    width: 9vw;
}

.titl-bord.mar-b {
    margin-bottom: 1em;
}

.text-letr {
    color: #b3dca2;
    float: left;
    font-size: 32em;
    font-weight: 600;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
     supported by Chrome and Opera */
}

/***==TITLES ENDS==***/
/***==PARA==***/
.p-lg {
    font-size: 1.4em;
    letter-spacing: 0.04em;
    line-height: 1.4em;
    padding-bottom: 0.5em;
}

.p-lg.g {
    color: #ffffff;
}

.p-md {
    font-size: 1.2em;
    letter-spacing: 0.04em;
    line-height: 1.4em;
    padding-bottom: 0.5em;
}

.p-md.r {
    color: #5e7085;
}

.w {
    color: #fff;
}

.bd {
    font-weight: 800;
}

.pad-b {
    padding-bottom: 6em;
}

.pad-b2 {
    padding-bottom: 4em;
}

.pad-b3 {
    padding-bottom: 2em;
}

.pad-r {
    padding-right: 2em;
}

.pad-t {
    padding-top: 2%;
}

.pad-t2 {
    padding-top: 4%;
}

.mar-b {
    margin-bottom: 2em;
}

.mar-b2 {
    margin-bottom: 3em;
}

.mar-b3 {
    margin-bottom: 4em;
}

/***==PARA ENDS==***/
/***==LISTS==***/
.list {
    float: left;
    padding-left: 1em;
    width: 100%;
}

.list li {
    float: left;
    font-size: 1em;
    letter-spacing: 0.04em;
    line-height: 1.5em;
    padding-bottom: 0.5em;
    width: 100%;
}

.list li .pre {
    float: left;
    width: 2%;
}

.list li .txt {
    float: left;
}

.list.pad-l {
    padding-left: 1.5em;
}

.list.pad-b {
    padding-bottom: 1.5em;
}

.list.disc {
    list-style: disc;
}

.list.priv {
    list-style: disc;
}

.list.priv li {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.sm-list li {
    color: #999999;
    font-size: 1.1em;
    font-weight: 600;
    padding-bottom: 0.9em;
}

.sm-list .link-r {
    color: #5fbb46;
}

.sty-list {
    float: left;
    width: 100%;
}

.sty-list li {
    float: left;
    font-size: 1.3em;
    line-height: 1.4em;
    padding-bottom: 1em;
    width: 100%;
}

.sty-list li .sty {
    margin: 1% 0.5em 0 0;
    height: 0.5em;
    width: 0.5em;
    background-color: #5fbb46;
    border-radius: 50%;
}

.sty-list li .txt {
    font-weight: 600;
}

.sty-list li span {
    float: left;
}

.sty-list.light {
    color: #5e7085;
}

.sty-list.pad-l {
    padding-left: 1.5em;
}

.sty-list.pad-b {
    padding-bottom: 1em;
}

.sty-list.pad-t {
    padding-top: 1.5em;
}

.xs-list {
    padding-left: 1em;
}

.xs-list li {
    color: #5e7085;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.4em;
    padding-bottom: 0.7em;
}

.xxs-list {
    padding-left: 1em;
    padding-top: 0.7em;
}

.xxs-list li {
    color: #5e7085;
    font-size: 0.8em;
    font-weight: 500;
    line-height: 1.4em;
    padding-bottom: 0.7em;
}

/***==LISTS ENDS==***/
/***==SECTION==***/
.sec-pad {
    padding-bottom: 8%;
    padding-top: 8%;
}

.sec-pad2 {
    padding-bottom: 4%;
    padding-top: 4%;
}

.sec-pad3 {
    padding-bottom: 6%;
    padding-top: 6%;
}

.sec-pad4 {
    padding-bottom: 5%;
    padding-top: 5%;
}

.sec-pad-b {
    padding-bottom: 7%;
}

.sec-pad-b2 {
    padding-bottom: 4%;
}

.sec-pad-t {
    padding-top: 7%;
}

.sec-pad-t2 {
    padding-top: 4%;
}

.sec-dark {
    background-color: #eeeeee;
}

/***==SECTION ENDS==***/
/***==ROW==***/
.row-pad {
    padding-bottom: 7%;
    padding-top: 7%;
}

.row-pad2 {
    padding-bottom: 6%;
    padding-top: 6%;
}

.row-pad-b {
    padding-bottom: 7%;
}

.row-pad-t {
    padding-top: 6%;
}

/***==ROW ENDS==***/
.text-mod {
    padding-bottom: 1.5em;
}

.text-titl,
.text-txt {
    float: left;
}

.txt-blc {
    bottom: 0;
    position: absolute;
}

.text-txt {
    height: 28vw;
    padding-left: 2%;
    padding-top: 10%;
    position: relative;
}

.tab-btns {
    text-align: center;
    padding-bottom: 2.5em;
    /*&.one li{
      margin: 0 2% 2em 2%;
  }
  
  &.two li{
      margin: 0 8% 2em 8%;
  }
  
  &.three li{
      margin: 0 12% 2em 12%;
  }
  
  &.four li{
      margin: 0 6% 2em 6%;
  }
  
  &.five li{
      margin: 0 10% 2em 10%;
  }
  
  &.six li{
      margin: 0 10% 2em 10%;
  }*/
}

.tab-btns li {
    color: #cccccc;
    cursor: pointer;
    float: left;
    font-size: 1.6em;
    font-weight: 600;
    padding-bottom: 2em;
    text-align: center;
    transition: color 0.3s ease, border 0.3s ease;
    width: 33.33%;
}

.tab-bord {
    display: inline-block;
    border-top: 0.1em solid #cccccc;
    transition: border 0.3s ease;
    width: 8.5em;
}

.tab-btn {
    display: inline-block;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: #5fbb46;
}

.tab-btn:hover .tab-bord {
    border-top: 0.1em solid #5fbb46;
}

.tab-btn.active {
    color: #5fbb46;
}

.tab-btn.active .tab-bord {
    border-top: 0.1em solid #5fbb46;
}

.one .tab-btn {
    float: left;
}

.three .tab-btn {
    float: right;
}

.tab {
    float: left;
    transition: opacity 0.5s ease;
    width: 100%;
}

.tab-lt,
.tab-rt {
    float: left;
    margin-bottom: 10%;
    width: 50%;
}

.tab-img {
    height: 23vw;
}

.tab-vid iframe {
    float: left;
    height: 23vw;
    width: 100%;
}

.tab-rt {
    height: 23vw;
    padding-left: 5%;
    position: relative;
}

/***==COMMON FORM==***/
.form-sec {
    background-color: #b3dca2;
    padding: 4% 7%;
}

.form-mod {
    padding: 1.5% 0 3% 0;
}

.form-blc {
    float: left;
}

.form-blc:nth-child(1) {
    padding-right: 0.7vw;
}

.form-blc:nth-child(2) {
    padding-left: 0.7vw;
}

.form-blc input,
.form-blc select {
    border: 2px solid #cccccc;
    color: #000000;
    font-size: 1.3em;
    height: 3.5em;
    margin-bottom: 1em;
    padding-left: 3%;
    transition: border 0.5s ease;
    width: 100%;
}

.form-blc input:focus,
.form-blc select:focus {
    border: 2px solid #5fbb46;
}

.form-blc textarea {
    border: 2px solid #cccccc;
    color: #000000;
    float: left;
    font-size: 1.3em;
    height: 17em;
    padding-top: 2%;
    padding-left: 3%;
    transition: border 0.5s ease;
    width: 100%;
}

.form-blc textarea:focus {
    border: 2px solid #5fbb46;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #cccccc;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #cccccc;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #cccccc;
}

.submit-btn,
.submit-btn-r {
    cursor: pointer;
    display: inline-block;
    font-size: 1.4em;
    letter-spacing: 0.05em;
    margin-top: 1em;
    padding: 0.9em 3.8em;
    transition: all 0.5s ease;
}

.submit-btn-r {
    background-color: #5fbb46;
    border: 1px solid #5fbb46;
    color: #ffffff;
    clear: both;
}

.submit-btn-r:hover {
    background-color: #5e7085;
    border: 1px solid #5e7085;
    color: #ffffff;
}

/***==CENTER CARD==***/
.cen-card {
    padding: 53vh 14% 10% 14%;
}

.cen-card-inr {
    background-color: rgba(242, 247, 226, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 9% 8% 6% 8%;
}

.icon-grid {
    padding-top: 3%;
}

.icon-grid li {
    float: left;
    padding: 0 2%;
    width: 20%;
}

.icon-grid2 {
    padding-top: 3%;
}

.icon-grid2 li {
    float: left;
    padding: 0 4%;
    width: 25%;
}

.icon-grid3 {
    padding: 3% 18% 0 18%;
}

.icon-grid3 li {
    float: left;
    padding: 0 4%;
    width: 33.33%;
}

.icon-img {
    float: left;
    padding-bottom: 1.5em;
    width: 100%;
}

.icon-img img {
    background-color: #5fbb46;
    border-radius: 50%;
    float: left;
    padding: 10%;
    width: 100%;
}

.icon-titl {
    color: #5e7085;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5em;
}

/***==COMMON POPUP==***/
#pro-card-blc {
    padding: 3% 0 5% 0;
}

.pro-card {
    margin-bottom: 2%;
}

.pro-card-img,
.pro-card-btn {
    background-color: #5fbb46;
    float: left;
    height: 5vw;
    width: 100%;
}

.pc-btn2 {
    background-color: #999999;
}

.pro-card-btn {
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.pro-card-img {
    display: none;
    background-position: center;
    background-size: cover;
}

.pro-btn-txt {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 600;
    padding: 0 4%;
    position: relative;
    top: calc(50% - 0.6em);
    transition: color 0.5s ease;
}

.pro-btn-txt span {
    float: left;
    width: 94%;
}

.pro-icon {
    float: left;
    position: relative;
    width: 3%;
}

.pro-icon img {
    position: absolute;
    transition: opacity 0.5s ease;
    width: 100%;
}

.pro-minus {
    opacity: 0;
}

.pro-card-btn.actv {
    background-color: #fff;
}

.pro-card-btn.actv .pro-btn-txt {
    color: #5fbb46;
}

.pro-card-btn.actv .pro-minus {
    opacity: 1;
}

.pro-card-btn.actv .pro-plus {
    opacity: 1;
}

.pro-card-data {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.c-actv {
    max-height: 90vw;
    padding: 2% 0;
}

.c-actv.actv-xxlg {
    max-height: 655vw;
    transition: max-height 2s ease, padding 0.9s ease;
}

.c-actv.actv-xlg {
    max-height: 220vw;
    transition: max-height 2s ease, padding 0.9s ease;
}

.c-actv.actv-lg {
    max-height: 140vw;
    transition: max-height 1.5s ease, padding 0.9s ease;
}

.c-actv.actv-md {
    max-height: 110vw;
    transition: max-height 0.9s ease, padding 0.9s ease;
}

/***==COMMON BANNER BLOCKS==***/
.ban2-lt {
    float: left;
    width: 46%;
    padding: 7% 3% 0 0;
}

.ban2-lt-inr {
    display: inline-block;
}

.ban2-rt {
    float: left;
    padding-right: 6vw;
    width: 54%;
}

.ban2-img {
    background-size: cover;
    background-position: center;
    box-shadow: 0.7vw 0.7vw 1vw 0 rgba(0, 0, 0, 0.3);
    float: left;
    height: 32vw;
    width: 100%;
}

.ban2-img.about {
    background-image: url(../visual/images/banner/about2.jpg);
}

.ban2-img.initiatives {
    background-image: url(../visual/images/banner/initiatives2.jpg);
}

.ban2-img.services {
    background-image: url(../visual/images/banner/veritaz_services.jpg);
}

.ban2-img.resources {
    background-image: url(../visual/images/banner/resources.jpg);
}

.ban2-img.csr {
    background-image: url(../visual/images/banner/csr.jpg);
}

.ban2-img.sports {
    background-image: url(../visual/images/banner/initiatives.jpg);
}

/***==COMMON BAN TEXT BLOCKS==***/
#ban-txt-blc {
    padding-top: 7%;
}

.ban-txt-lt {
    float: left;
    width: 35%;
}

.ban-txt-rt {
    float: left;
    width: 65%;
}

/***==SIMPLE SLLIDER==***/
.sslide-lt,
.sslide-rt {
    float: left;
    width: 50%;
}

.sslide-rt {
    height: 26vw;
    overflow: hidden;
    overflow-y: auto;
    padding-left: 7%;
}

.swiper-slide.sslide-img {
    background-color: #5fbb46;
    background-size: cover;
}

.sslide-ctrls {
    float: left;
    width: 10%;
}

.sslide-btn,
.sslide-btn2 {
    background-color: #3d4d60;
    border-bottom: 0.08em solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    float: left;
    font-size: 1.5em;
    padding: 0.5em 0;
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
}

.sslide-btn:hover,
.sslide-btn2:hover {
    opacity: 0.5;
}

.sslide-btn.btn-disab,
.sslide-btn2.btn-disab {
    opacity: 0.5;
}

.sslide-btn2 {
    margin: 0 0.2em;
    padding: 0.5em 1em;
    width: auto;
}

#rsrc-gall-btns {
    display: inline-block;
}

.sslide-img,
.sslide-titl,
.sslide-txt {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.flideInLt {
    animation: flideInLt 0.5s ease;
}

.flideInRt {
    animation: flideInRt 0.5s ease;
}

/***==XTRA TEXT==***/
.xtra-txt {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.xtra-txt.actv {
    max-height: 60vw;
}

/***==COMMON POPUP==***/
#popup-main {
    background-color: rgba(0, 0, 0, 0.9);
    height: 100vh;
    position: fixed;
    transition: opacity 0.6s ease;
    z-index: 2100;
}

#close-popup,
#popup-msg {
    position: absolute;
}

#popup-msg {
    color: #ffffff;
    float: left;
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

#popup-msg.error {
    color: #5fbb46;
}

#close-popup {
    cursor: pointer;
    height: 7.2vw;
    right: 0;
    width: 7.2vw;
    z-index: 1;
}

/***==COMMON POPUP ENDS==***/
/***==LOADERS==***/
.spin-load {
    animation: spin 0.6s ease infinite;
    border: 0.2em solid rgba(0, 0, 0, 0);
    border-top: 0.2em solid #eeeeee;
    border-radius: 50%;
    float: left;
    height: 1.14em;
    width: 1.14em;
}

/**
 * Swiper 4.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 14, 2018
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: .2s top, .2s -webkit-transform;
    transition: .2s top, .2s -webkit-transform;
    -o-transition: .2s transform, .2s top;
    transition: .2s transform, .2s top;
    transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s left, .2s -webkit-transform;
    transition: .2s left, .2s -webkit-transform;
    -o-transition: .2s transform, .2s left;
    transition: .2s transform, .2s left;
    transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s right, .2s -webkit-transform;
    transition: .2s right, .2s -webkit-transform;
    -o-transition: .2s transform, .2s right;
    transition: .2s transform, .2s right;
    transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px;
}

/***====STRUCTURE STARTS====***/
/***==PRE-LOADER==***/
/***main loader container***/
#pre-load-main {
    background-color: #fff;
    height: 100vh;
    position: fixed;
    transition: opacity 0.5s ease;
    z-index: 1000;
}

/***lines***/
#red-line {
    border-top: 5px solid #5fbb46;
    transition: width 0.3s ease;
}

/**line loading animation**/
.load-line {
    animation: loadRed 3s ease forwards;
}

/***==LOGO PLAY==***/
#logo-play-main,
#logo-svg-cont {
    position: fixed;
}

#logo-play-main {
    background-color: #fff;
    height: 100vh;
    opacity: 0.7;
    z-index: 50;
}

#logo-svg-cont {
    background-color: #fff;
    height: 100vh;
    transition: opacity 1s ease;
    z-index: 221;
}

/***logo svg***/
.logo-svg-init {
    fill: rgba(0, 0, 0, 0);
    left: 50%;
    position: relative;
    stroke: #5fbb46;
    stroke-dasharray: 350px;
    stroke-dashoffset: 350px;
    stroke-width: 1px;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 30%;
}

.logo-svg-draw {
    animation: drawMoveLogo 4.5s ease forwards;
}

#logo-loader {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 6em;
}

#path1,
#path2,
#path3 {
    opacity: 0;
    transform-origin: center bottom;
}

#path1 {
    animation: growPaths 2s ease forwards infinite;
}

#path2 {
    animation: growPaths2 2s ease forwards infinite;
}

#path3 {
    animation: growPaths3 2s ease forwards infinite;
}

/***===WRAPPER===***/
#wrapper {
    overflow: hidden;
}

/***==MAIN==***/
main {
    min-height: 100vh;
}

#other-main {
    padding-top: 7%;
}

/***==HEADER==***/
#header {
    background-color: #fff;
    padding-bottom: 0.7%;
    position: fixed;
    z-index: 200;
}

/***NAV***/
#nav {
    height: 100%;
}

/***logo***/
#logo {
    float: left;
    height: 100%;
    padding: 1vw 4vw 0.5vw 0;
    transition: opacity 0.4s ease, padding 0.3s ease;
    width: 20%;
}

#logo a {
    position: relative;
}

#logo a img {
    position: absolute;
    transition: opacity 0.3s ease;
}

#logo-light {
    opacity: 0;
}

/***main nav links***/
#nav-links-main {
    float: left;
    height: 100%;
    width: 80%;
}

#nav-links {
    float: right;
}

#nav-links > li {
    display: inline-block;
    line-height: 5vw;
    padding: 1.2vw 1em 0 1em;
    position: relative;
}

#nav-links > li > a {
    border-bottom: 0.2em solid rgba(0, 0, 0, 0);
    color: #5e7085;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0.04em;
    transform: translateZ(0);
    transition: border-bottom 0.4s ease, opacity 0.6s ease, color 0.3s ease;
}

#nav-links > li > a:hover {
    border-bottom: 0.2em solid #b3dca2;
}

#nav-links > li > a.r-btn.pr {
    border: 1px solid #5fbb46;
    color: #fff;
    padding: 0.4em 1.2em;
    transition: background-color 0.4s ease, color 0.3s ease;
}

#nav-links > li > a.r-btn.pr:hover {
    background-color: #fff;
    color: #5fbb46;
}

#nav-links > li ul {
    display: none;
}

#nav-links > li .actv-link {
    border-bottom: 0.2em solid #b3dca2;
}

#nav-links > li:hover ul {
    display: block;
}

#nav-links .nav-sublinks {
    animation: fadeIn 1s ease;
    background-color: #5e7085;
    left: 50%;
    padding: 5% 0;
    position: absolute;
    top: 6vw;
    transform: translateX(-50%) translateZ(0);
    /*width: 300%;*/
}

#nav-links .nav-sublinks li {
    float: left;
    line-height: 1.4em;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

#nav-links .nav-sublinks li a {
    /*border-bottom: 0.05em solid $baseColor;*/
    color: #fff;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.08em;
    float: left;
    padding: 0.8em 1.5em 0.8em 1.5em;
    transition: border-bottom 0.4s ease, opacity 0.6s ease, color 0.6s ease;
    width: 100%;
}

#nav-links .nav-sublinks li a:hover {
    /*border-bottom: 0.05em solid $primaryColor;*/
    color: #5fbb46;
}

.nav-links-fade {
    opacity: 0.2;
}

/***nav contact***/
#nav-contact {
    float: left;
    width: 12.5%;
}

#nav-fon {
    color: #5e7085;
    font-size: 1.06em;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 6vw;
}

/***top social icons***/
#social-icons-main {
    float: left;
    height: 100%;
    padding-right: 1.5%;
    width: 10%;
}

.social-icons {
    float: right;
}

.social-icons li {
    float: left;
    line-height: 6vw;
    padding: 0 0.7em;
}

.social-icons a {
    color: #b3dca2;
    font-size: 1.1em;
    transition: color 0.4s ease, opacity 0.6s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #5fbb46;
}

.social-links-fade {
    opacity: 0.5;
}

/***active header***/
#header.dark {
    background-color: #3d4d60;
}

#header.dark #nav-links > li > a {
    color: #ffffff;
}

#header.dark #nav-links > li > a.r-btn.pr:hover {
    color: #5fbb46;
}

#header.dark #logo #logo-dark {
    opacity: 0;
}

#header.dark #logo #logo-light {
    opacity: 1;
}

/***main menu button***/
/*#menu-btn-main {
    height: 100%;
    float: left;
    width: 5%;
}

#menu-btn-inr {
    float: right;
    height: $headerHt;
    padding: 23%;
    perspective: 20em;
    width: $headerHt;
}

.menu-btn-s {
    border: 1px solid $accCol1;
    cursor: pointer;
    float: left;
    height: 100%;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;

    &:hover {
        opacity: 0.5;
    }
}

#open-btn,
#close-btn {
    position: absolute;
    height: 100%;
    width: 100%
}


open close btn visibility
.menu-close #close-btn {
    opacity: 0;
}

.menu-open #open-btn {
    opacity: 0;
}*/
/***====HOME PAGE====***/
/***==MAIN==***/
/***product slider***/
#pro-sec {
    background-image: url(../visual/images/home/2.jpg);
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    padding-top: 3em;
}

/**slides**/
#product-slider {
    cursor: -webkit-grab;
    padding: 4% 0 2% 0;
}

.swiper-container {
    width: 100%;
    height: 60vh;
}

#home-slider.swiper-container{
    height: 100vh;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#home-slider.swiper-container .swiper-slide{
    text-align: left;
}

.pro-card,
.pro-img,
.pro-txt {
    height: 100%;
}

.pro-card {
    position: relative;
}

.pro-card:hover .pro-txt {
    opacity: 1;
}

.pro-img,
.pro-txt {
    padding: 8%;
    position: absolute;
}

.pro-img {
    background-size: cover;
    background-position: center;
}

.pro-titl {
    color: #ffffff;
    font-size: 2.3em;
    line-height: 1.2em;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.pro-txt {
    background-color: #fff;
    border: 0.1em solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pro-txt-inr {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.pro-txt-inr .sm-titl {
    padding-bottom: 0.7em;
}

.pro-txt-inr p {
    padding-bottom: 1.5em;
}

.pro-txt-inr a {
    background-color: #5fbb46;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3em;
    line-height: 2.3em;
    text-align: center;
    width: 2.3em;
}

.slide-ctrl-main {
    padding-top: 2%;
}

.slide-ctrls {
    background-color: #5fbb46;
    border-radius: 5em;
    cursor: pointer;
    display: inline-block;
    padding: 0.7em 0;
}

.slide-ctrls li {
    color: #ffffff;
    font-size: 1.6em;
    padding-left: 1.5em;
    padding-right: 0.5em;
    transition: opacity 0.4s ease;
}

.slide-ctrls li:hover {
    opacity: 0.5;
}

.slide-ctrls li:focus {
    border: 0;
    outline: 0;
}

.slide-ctrls li:first-child {
    border-right: 1px solid #fff;
    padding-left: 0.5em;
    padding-right: 1.5em;
}

#about-sec {
    background-image: url(../visual/images/banner/index_about.jpg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 3%;
    padding-top: 9%;
}

.big-blc {
    background-color: rgba(242, 247, 226, 0.95);
    border: 0.1em solid rgba(0, 0, 0, 0.1);
    float: right;
    padding: 5%;
    text-align: center;
    width: 60%;
}

/***home slider extra text***/
.radio-txt{
    font-size: 1.7em;
    position: absolute;
    z-index: 1;
}

.r-txt1{
    color: #fff;
    left: 78%;
    top: 19%;
}

.r-txt2{
    color: #666;
    left: 78%;
    top: 19%;
    
}



/***main menu button***/
#menu-btn-main {
    display: none;
    height: 100%;
    float: left;
    width: 5%;
}

#menu-btn-inr {
    float: right;
    height: 6vw;
    padding: 23%;
    perspective: 20em;
    width: 6vw;
}

.menu-btn-s {
    /*border: 1px solid $primaryColor;*/
    cursor: pointer;
    float: left;
    height: 100%;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;
}

.menu-btn-s:hover {
    opacity: 0.5;
}

#open-btn,
#close-btn {
    position: absolute;
    height: 100%;
    width: 100%;
}

/*open close btn visibility*/
.menu-close #close-btn {
    opacity: 0;
}

.menu-open #open-btn {
    opacity: 0;
}

#menu-main {
    background-color: #fff;
    display: none;
    float: left;
    height: 100vh;
    position: fixed;
    right: 0;
    transition: transform 0.6s ease;
    width: 100%;
    z-index: 210;
}

#menu-inr {
    padding: 22% 10% 4% 10%;
}

.menu-disab {
    transform: translateX(100%);
}

#m-close-btn {
    cursor: pointer;
    height: 12vw;
    position: absolute;
    right: 3%;
    top: 1.5%;
    transition: opacity 0.4s ease;
    width: 12vw;
}

#m-close-btn:hover {
    opacity: 0.6;
}

#m-links-main {
    margin-bottom: 3vh;
}

#m-links {
    float: left;
    width: 50%;
}

#m-links li {
    float: left;
    position: relative;
    width: 100%;
}

#m-links li a {
    color: #5e7085;
    float: left;
    font-size: 1.5em;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    padding-bottom: 1.5em;
    text-transform: uppercase;
    transition: opacity 0.7s ease;
    width: 100%;
    /*&:hover .m-link {
          border-bottom: 0.1em solid $linkCol1;
      }*/
}

#m-links li a .m-link {
    /*border-bottom: 0.1em solid rgba(0, 0, 0, 0);*/
    color: #5e7085;
    line-height: 1.1;
    padding-bottom: 0.2em;
    transition: border 0.5s ease, opacity 0.5s ease;
}

#m-links li:hover .m-sublinks {
    animation: fadeIn 0.4s ease;
    display: block;
}

.sub-links {
    border: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid #5e7085;
    float: right;
    transform: translateY(50%);
}

.m-link-disab {
    opacity: 0.3;
}

#m-links .m-sublinks {
    display: none;
    float: left;
    padding-left: 10%;
    padding-top: 5%;
    position: absolute;
    transform: translateX(100%) translateZ(0);
    width: 100%;
}

#m-links .m-sublinks a {
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.4em;
    padding-bottom: 2.5vh;
}

#m-contact-main,
#m-social-main {
    float: left;
}

#m-contact li {
    color: #8e9196;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-bottom: 0.2em;
}

#m-social {
    float: left;
    padding-top: 0.5em;
}

#m-social li {
    float: left;
    padding-right: 2.6em;
}

#m-social li a {
    color: #8e9196;
    font-size: 1.8em;
    transition: opacity 0.5s ease;
}

#m-social li a:hover {
    opacity: 0.3;
}

/***====HOME PAGE ENDS====***/
/***====AUTOMOBILES PAGE====***/
#grid-one-main {
    padding: 5em 0;
    transition: all 0.7s ease;
}

.grid-lt {
    float: left;
    width: 45%;
}

.grid-rt {
    float: left;
    width: 55%;
}

.grid-blc {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    float: left;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.grid-blc:hover .grid-blc-back {
    transition: transform 1.5s ease;
    transform: scale(1.05);
}

.grid-blc-back {
    background-position: center;
    background-size: cover;
    height: 100%;
    position: absolute;
    transition: transform 0.8s ease;
}

.grid-blc-inr {
    float: left;
    padding: 0 4em;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    width: 100%;
}

.g-blc-s {
    height: 24vw;
}

.g-blc-l {
    height: 48vw;
}

.grid-img {
    float: left;
    padding-bottom: 1.2em;
    width: 5.5em;
}

.grid-img.jeep {
    width: 7em;
}

.grid-img.policyboss {
    width: 9em;
}

.grid-img.rupeeboss {
    width: 9em;
}

.grid-titl {
    color: #fff;
    float: left;
    font-size: 2.8em;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    padding-bottom: 0.5em;
    width: 100%;
}

#home-footer {
    bottom: 0;
    padding: 0 3%;
    position: absolute;
    z-index: 220;
}

#copyright {
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 5em;
}

/***====OTHER PAGES====***/
#main-banner {
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100vh;
    padding-top: 34vh;
    position: relative;
}

#main-banner.mar {
    margin-bottom: 7%;
}

#main-banner.home {
    background-image: url(../visual/images/home/index-hero.jpg);
}

.covid-banner{
    height: 100%;
    padding-top: 15vh;
}

.home-ban-lt, .home-ban-rt{
    width: 50%
}

.home-ban-lt{
    padding: 4.2% 11.5% 0 7%;
}

.hm-b-img1{
    padding-bottom: 8%;
}

.hm-b-img2{
    padding: 0 40% 5% 0;
}

.hm-b-link3{
    float: left;
    width: 33%;
}

.home-ban-rt{
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 2.5% 0 6.8%;
}

#main-banner1.home1{
    background-image: url(../visual/images/covid/bg.png);
    background-size: cover;
    height: 100%;
}

#banner-2 {
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: 8vw;
    padding-top: 20vh;
    position: relative;
}

#banner-2.quikclot {
    background-image: url(../visual/images/product/quikclot/quikclot.jpg);
}

#banner-2.blastsax {
    background-image: url(../visual/images/product/blastsax/bg-blastsax.jpg);
}

#banner-2.floodsax {
    background-image: url(../visual/images/product/floodsax/bg-floodsax.jpg);
}

#banner-2.technical {
    background-image: url(../visual/images/product/techprotect/bg-technical-protective.jpg);
}

#banner-2.jungle {
    background-image: url(../visual/images/product/junglegear/bg-protective-gear-jungle.jpg);
}

#banner-2.emerlight {
    background-image: url(../visual/images/product/emerlight/bg-emer-lighting.jpg);
}

#banner-2.turf {
    background-image: url(../visual/images/product/turf/bg-tiger.jpg);
}

#banner-2.procrowd {
    background-image: url(../visual/images/product/procrowd/bg-potective-gear-crowd.jpg);
}

#banner-2.workwear {
    background-image: url(../visual/images/product/workwear/bg-workwear.jpg);
}

#banner-2.emerrel {
    background-image: url(../visual/images/product/emerrel/bg-emer-relief.jpg);
}

#banner-3 {
    background-color: #eeeeee;
    background-image: url(../visual/images/banner/about.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 4.5%;
    margin-bottom: 8%;
    margin-top: 7vw;
    padding-bottom: 4%;
    position: relative;
}

/*#ban-txt {
    text-align: center;
}*/
.pro-inr-titl {
    border-bottom: 1px solid #5e7085;
    color: #5e7085;
    font-size: 1.7em;
    font-weight: 700;
    margin-bottom: 1.4em;
    padding-bottom: 0.6em;
}

.pro-inr-grid {
    float: left;
    padding-bottom: 0;
    width: 100%;
}

.pro-inr-grid li {
    float: left;
    margin-bottom: 3%;
    padding: 0 0.5%;
    width: 33.33%;
}

.pro-grid-btn {
    cursor: pointer;
}

.pro-grid-img {
    background-color: #eeeeee;
    background-position: center;
    background-size: cover;
    height: 19vw;
}

.pro-grid-titl {
    color: #5e7085;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 2em;
}

.pro-inr-grid2 {
    float: left;
    padding-bottom: 0;
    width: 100%;
}

.pro-inr-grid2 li {
    cursor: pointer;
    float: left;
    margin-top: 1%;
    margin-bottom: 2%;
    padding: 0 0.5%;
    width: 25%;
}

.pro-grid-img2 {
    background-color: #5fbb46;
    background-position: center;
    background-size: cover;
    height: 12vw;
}

.pro-grid-titl2 {
    color: #5e7085;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.8em;
    margin-top: 0.5em;
    margin-bottom: 0.3em;
}

.pro-bord {
    border-bottom: 0.7em solid #5fbb46;
    float: left;
    margin-bottom: 1em;
    width: 100%;
}

.pro-popup {
    max-height: 100vh;
    overflow-y: auto;
    padding: 5% 0;
}

#pro-content {
    background-color: #fff;
    padding-bottom: 3%;
}

.pro-con-blc {
    float: left;
    padding: 3% 3% 0 3%;
    width: 50%;
}

.pro-con-blc2 {
    float: left;
    padding: 3% 3% 0 3%;
    width: 100%;
}

.pro-con-img {
    background-position: center;
    background-size: cover;
    height: 22vw;
}

.pro-pop-titl {
    border-bottom: 1px solid #5e7085;
    color: #5fbb46;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 0.5em;
    padding-bottom: 0.4em;
}

.pro-pop-titl.dark {
    color: #5e7085;
}

.prop-pop-txt {
    color: #5e7085;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.8em;
}

.pro-pop-list li {
    color: #5e7085;
    display: inline-block;
    float: none;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.6em;
    margin: 0;
    margin-bottom: 0.3em;
    width: 100%;
}

.pro-pop-list .pad-b {
    padding-bottom: 1.5em;
}

.pro-l-dash {
    float: left;
    padding-right: 0.2em;
    width: 2%;
}

.pro-l-txt {
    float: left;
    width: 97%;
}

.pro-pop-list ul {
    font-size: 0.6em;
    float: left;
    padding-bottom: 1em;
    padding-left: 4%;
}

.pro-pop-list ul li {
    display: block;
    list-style: disc;
}

.pro-l-dash2 {
    color: #5fbb46;
    padding-right: 0.2em;
}

.pro-l-txt2 {
    padding-bottom: 0.3em;
    float: left;
    padding-left: 1em;
    width: 100%;
}

.pro-l-titl {
    color: #5fbb46;
}

.pro-pop-btn {
    padding-top: 5%;
}

.flideUp {
    animation: flideUp 0.6s ease;
}

.logo-grid {
    padding: 4.5% 0 8% 0;
    text-align: center;
}

.logo-grid.emp {
    padding: 0;
}

.logo-grid.emp li {
    height: 9vw;
}

.logo-grid.emp li:nth-last-child(odd) {
    background: #5fbb46;
}

.logo-grid.emp li:nth-last-child(even) {
    background: #5e7085;
}

.logo-grid li {
    display: inline-block;
    margin-bottom: 1%;
    padding-right: 0.8%;
    width: 16.4%;
}

.logo-grid li img {
    float: left;
    width: 100%;
}

.logo-grid.inr {
    padding: 1em 0 0 0;
}

.logo-grid.logo-lt li {
    float: left;
}

.sslide-img-main {
    float: left;
    width: 90%;
}

#sslide-img {
    transition: 0.4s;
}

#resource-gallery {
    height: 22vw;
    width: 100%;
}

#sports-gallery-main {
    height: 100%;
}

#sports-gall {
    height: 31vw;
    position: relative;
}

#sports-gall .swiper-container {
    height: 100%;
}

#sports-gall .swiper-container .swiper-slide {
    background-size: cover;
}

.ovr-slider-ctrls {
    padding: 0 2%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    z-index: 1;
    width: 100%;
}

.ovr-slide-btn {
    color: #5fbb46;
    cursor: pointer;
    font-size: 4em;
    margin-left: -10%;
    opacity: 1;
    transition: 0.4s;
}

.ovr-slide-btn:hover {
    opacity: 0.6;
}

.ovr-slide-btn:focus {
    outline: 0;
}

.ovr-slide-btn-rt {
    float: right;
    margin-left: 0;
    margin-right: -10%;
}

.s-tab-ctrls {
    padding-top: 3%;
}

.tab-btn {
    background-color: #eeeeee;
    color: #666666;
    cursor: pointer;
    float: left;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 3em;
    text-align: center;
    transition: 0.3s;
    width: 50%;
}

.tab-btn.tab-actv {
    background-color: #5fbb46;
    color: #ffffff;
}

.s-tab {
    padding: 2em 0;
    transition: 0.4s;
}

.serv-part.sty-list li {
    padding-bottom: 0;
}

.pdfs {
    float: left;
    width: 100%;
}

.pdfs li {
    float: left;
    height: 15em;
    padding: 1%;
    width: 25%;
}

.pdfs li a {
    background-image: url(../visual/images/common/pdf.jpg);
    background-size: cover;
    background-position: center;
    float: left;
    height: 100%;
    transition: 0.4s;
    width: 100%;
}

.pdfs li a .pdf-titl {
    color: #5e7085;
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.4em;
    text-align: center;
    padding: 0 5%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    word-break: break-all;
}

.pdfs li a:hover {
    opacity: 0.6;
}

.sitemap-blc {
    float: left;
    padding: 0 10%;
    width: 100%;
}

.sitemap-blc ul li {
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.4em;
    list-style: disc;
    padding-bottom: 0.5em;
}

.sitemap-blc ul li a {
    color: #5e7085;
    transition: 0.3s;
}

.sitemap-blc ul li a:hover {
    opacity: 0.7;
}

.sitemap-blc ul li ul {
    padding: 2% 0 0 3%;
}

.sitemap-blc ul li ul li {
    font-size: 0.8em;
}

.sitemap-blc ul li ul li a {
    color: #5fbb46;
}

#footer-top {
    border-top: 1px solid #cccccc;
    padding: 3% 6% 3% 6%;
}

#footer-logo,
#footer-addr,
#footer-social,
#footer-contact,
.footer-addr {
    float: left;
    padding-left: 4.5em;
}

#footer-logo {
    border-right: 1px solid #cccccc;
    padding: 5% 6% 7% 0;
    width: 22%;
}

#footer-addr {
    width: 50%;
}

.footer-addr {
    font-size: 0.85em;
    width: 37%;
}

.footer-titl {
    color: #000000;
    font-size: 1.4em;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding-bottom: 0.6em;
    text-transform: uppercase;
}

.footer-txt {
    color: #000000;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.8em;
    padding-right: 10%;
}

.footer-addr .footer-txt {
    font-size: 1.2em;
}

#footer-contact {
    padding-left: 8em;
    width: 24%;
}

#foot-contact-det li {
    color: #999999;
    font-size: 1em;
    padding-bottom: 0.3em;
}

.flideUp {
    animation: flideUp 0.4s ease;
}

/***shop pages***/
.pro-cat-blc{
    float: left;
    padding: 0 0.5%;
    width: 33%;
}

.pro-blc-img{
    background-size: cover;
    height: 33vw;
    margin-bottom: 1.5em;
}

.pro-blc-titl{
    color: #000;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.7em;
}

.pro-blc-btn{
    text-align: center;
    margin-bottom: 1.5em;
}

.pro-blc-btn .r-btn{
    padding: 0.35em 1.8em;
    font-weight: 500;
    font-size: 1.2em;

}

.mob_buy_now{
    display: none;
    float: left;
    margin-top: 1.7em;
    margin-left: 10em;
}
/***Shop pages ends***/

/***====OTHER PAGES ENDS====***/
/***====MAIN FOOTER====***/
#footer-inr {
    background-color: #5fbb46;
}

#footer-links,
#footer-social {
    float: left;
    padding: 1.7em 0;
    width: 50%;
}

#footer-links ul li {
    border-right: 0.05em solid #ffffff;
    color: #ffffff;
    float: left;
    font-size: 1.4em;
    padding: 0 1.4em;
}

#footer-links ul li:first-child {
    padding-left: 0;
}

#footer-links ul li:last-child {
    border: 0;
}

#footer-links ul li a {
    color: #ffffff;
    float: left;
    transition: color 0.4s ease;
}

#footer-links ul li a:hover {
    color: #b3dca2;
}

#foot-social-ico {
    float: right;
}

#foot-social-ico li {
    float: left;
    padding-left: 3em;
}

#foot-social-ico li a {
    color: #ffffff;
    font-size: 1.6em;
    transition: color 0.4s ease;
}

#foot-social-ico li a:hover {
    color: #b3dca2;
}

/***====MAIN FOOTER ENDS====***/
/***====STRUCTURE ENDS====***/
/***=====FOR ZOOM IN LEVEL 1=====***/
@media only screen and (min-width: 960px) and (max-width: 1150px) {
    html {
        font-size: 1.15vw;
    }
}

/***=====FOR MOBILE AND TABLETS=====***/
@media only screen and (min-width: 280px) and (max-width: 960px) and (orientation: portrait) {

    /***Main Common***/
    html {
        font-size: 2.8vw;
    }

    .m-hide {
        display: none;
    }

    #nav-links-main {
        display: none;
    }

    #social-icons-main {
        display: none;
    }

    #menu-main {
        display: block;
    }

    #menu-btn-main {
        display: block;
        float: right;
        width: 17%;
    }

    #header.light #menu-btn-main {
        display: block;
    }

    #menu-btn-inr {
        padding: 12%;
    }

    #nav.n-row {
        padding: 0 1%;
    }

    .n-row,
    .n-row2 {
        padding-left: 6%;
        padding-right: 6%;
    }
    
    /***HOME SLIDER***/
    #main-banner1.home1{
        background-image: url(../visual/images/covid/bg-m.png);
        background-size: 100%;
        height: 100%;
    }
    
    .hm-b-img2{
        display: none;
    }
    
    .covid-banner {
        padding-top: 8.3vh;
    }
    
    .home-ban-lt, .home-ban-rt {
        width: 100%;
    }
    
    .home-ban-lt {
        padding: 8.5vh 14.5% 0 7%;
    }
    
    .hm-b-link3 {
        float: left;
        width: 41%;
    }
    
    .home-ban-rt{
        padding:  0 0 0 6.5%;
        right: -2%;
    }

    #header {
        height: 17vw;
    }

    #logo {
        padding: 3vw 0 2vw 2vw;
        width: 26%;
    }

    #menu-btn-inr {
        height: 100%;
        width: 100%;
    }

    #main-banner {
        background-size: 130%;
    }

    #product-slider {
        padding: 10% 0 10% 0;
    }

    .big-blc {
        width: 100%;
    }

    #about-sec {
        padding-bottom: 10%;
        padding-top: 24%;
    }

    /***==SECTION==***/
    .sec-pad {
        padding-bottom: 12%;
        padding-top: 12%;
    }

    .sec-pad2 {
        padding-bottom: 6%;
        padding-top: 6%;
    }

    .sec-pad3 {
        padding-bottom: 8%;
        padding-top: 8%;
    }

    .sec-pad4 {
        padding-bottom: 10%;
        padding-top: 10%;
    }

    .sec-pad-b {
        padding-bottom: 12%;
    }

    .sec-pad-b2 {
        padding-bottom: 6%;
    }

    .sec-pad-t {
        padding-top: 12%;
    }

    .sec-pad-t2 {
        padding-top: 6%;
    }

    .s-txt {
        font-size: 1em;
    }

    .main-title {
        font-size: 4.4em;
    }

    .med-titl {
        font-size: 2.8em;
    }

    .med-titl2 {
        color: #5e7085;
        font-size: 2.4em;
    }
    
    .med-titl3 {
        color: #000;
        font-size: 2.8em;
    }

    .titl-bord-thin {
        border: 1px solid #5e7085;
    }

    .sm-titl {
        font-size: 1.4em;
    }

    .sm-titl2 {
        font-size: 1.8em;
    }

    .xtra-txt.actv {
        max-height: 245vw;
    }

    .sty-list li {
        font-size: 0.9em;
    }

    .ban2-lt,
    .ban2-rt {
        width: 100%;
    }

    .ban2-lt {
        padding: 30% 3% 10% 0;
        width: 100%;
    }

    .ban2-rt {
        padding: 0 6%;
    }

    .ban2-img {
        height: 56vw;
    }

    .ban-txt-lt,
    .ban-txt-rt {
        width: 100%;
    }

    .ban-txt-lt {
        padding-bottom: 3%;
    }

    #banner-3 {
        padding-bottom: 10%;
    }

    .logo-grid li {
        width: 32%;
    }

    .sslide-lt,
    .sslide-rt {
        width: 100%;
    }

    .sslide-lt {
        padding-bottom: 8%;
    }

    .sslide-rt {
        height: 70vw;
        padding: 0;
    }

    .sslide-img {
        background-color: #5fbb46;
        background-size: cover;
    }
    
    /***extra slider text***/
    .r-txt1 {
        left: 40%;
        top: 10%;
    }
    
    .r-txt2{
        left: 40%;
        top: 10%;
    }

    #resource-gallery {
        height: 44vw;
    }

    .ban-gall.ban2-rt {
        padding: 0 10%;
    }

    #sports-gall {
        height: 54vw;
    }

    .ovr-slide-btn {
        margin-left: -14%;
    }

    .ovr-slide-btn-rt {
        margin-right: -14%;
    }

    .pdfs li {
        padding: 2%;
        width: 100%;
    }

    #banner-2 {
        margin-top: 17vw;
        padding-top: 55vh;
    }

    .main-title.sm {
        font-size: 3em;
    }

    .cen-card {
        padding: 7vh 0% 10% 0%;
    }

    .icon-grid li,
    .icon-grid2 li,
    .icon-grid3 li {
        display: inline-block;
        float: none;
        padding: 0 5%;
        width: 48%;
    }

    .icon-titl {
        float: left;
        height: 7em;
        width: 100%;
    }

    .icon-grid3 {
        padding: 3% 0 0 0;
    }

    .pro-icon {
        width: 6%;
    }

    .pro-card-img,
    .pro-card-btn {
        height: 12vw;
    }

    .pro-btn-txt {
        font-size: 1.2em;
    }

    .c-actv {
        max-height: 130em;
    }

    .c-actv.actv-xxlg {
        max-height: 1260em;
        transition: max-height 2s ease, padding 2s ease;
    }

    .c-actv.actv-xlg {
        max-height: 340em;
        transition: max-height 2s ease, padding 2s ease;
    }

    .c-actv.actv-lg {
        max-height: 270em;
        transition: max-height 1.5s ease, padding 1.5s ease;
    }

    .c-actv.actv-md {
        max-height: 200em;
        transition: max-height 0.9s ease, padding 0.9s ease;
    }

    .pro-l-dash {
        width: 4%;
    }

    .pro-l-txt {
        width: 95%;
    }

    .pro-inr-grid li {
        width: 50%;
    }

    .pro-grid-img {
        height: 26vw;
    }

    .pro-grid-titl {
        font-size: 1em;
    }

    .pro-con-blc {
        float: left;
        padding: 6% 6% 0 6%;
        width: 100%;
    }

    .pro-con-img {
        height: 45vw;
    }

    .pro-inr-grid2 li {
        width: 50%;
    }

    .pro-grid-img2 {
        height: 26vw;
    }

    .form-mod {
        padding: 0.5% 0 10% 0;
    }

    .form-blc input {
        font-size: 1em;
    }

    .form-blc textarea {
        font-size: 1em;
    }

    .form-blc:nth-child(1),
    .form-blc:nth-child(2) {
        padding: 0;
    }

    .submit-btn,
    .submit-btn-r,
    .submit-btn-r,
    .form-btn {
        font-size: 1.2em;
    }

    .tab-btn {
        width: 100%;
    }
    
    /***shop pages***/
    .pro-cat{
        margin-top: 2em;
    }
    
    .pro-cat-blc{
        width: 100%;
        margin-bottom: 2.5em;    
    }
    
    .pro-blc-img{
        height: 105vw;
    }
    
    .pro-blc-titl{
        font-size: 1.5em;
    }
    
    .mob_buy_now{
        display: inline-block;
    }
    /***Shop pages ends***/
    

    #footer-logo {
        border: 0;
        width: 40%;
    }

    #footer-addr,
    .footer-addr {
        padding: 4% 0 6% 0;
        width: 100%;
    }

    #footer-social {
        display: none;
    }

    #footer-links {
        font-size: 0.8em;
        width: 100%;
    }
}

@media only screen and (min-width: 280px) and (max-width: 960px) and (orientation: landscape) {
    html {
        font-size: 1.1vw;
    }
}

/***=====FOR TABLETS=====***/
@media only screen and (min-width: 768px) and (max-width: 960px) {
    html {
        font-size: 1.8vw;
    }

    #header {
        height: 13vw;
    }

    #logo {
        width: 21%;
    }

    #menu-btn-main {
        width: 13%;
    }

    #m-close-btn {
        height: 9vw;
        width: 9vw;
    }

    #m-links li a {
        font-size: 2em;
    }

    #ban-cont2 {
        padding-top: 46%;
    }

    .main-title {
        font-size: 6em;
    }

    .main-title.sm {
        font-size: 4em;
    }

    .med-titl {
        font-size: 2.8em;
    }

    .med-titl2 {
        color: #5e7085;
        font-size: 3.4em;
    }

    .titl-bord-thin {
        border: 1px solid #5e7085;
    }

    .sm-titl {
        font-size: 2.4em;
    }

    .sm-titl2 {
        font-size: 2.8em;
    }

    .xtra-txt.actv {
        max-height: 245vw;
    }

    .sty-list li {
        font-size: 1.1em;
    }

    .sslide-rt {
        height: 35vw;
        padding: 0;
    }

    .pdfs li {
        width: 50%;
    }

    #banner-2 {
        margin-top: 13vw;
        padding-top: 70vh;
    }

    .icon-grid li,
    .icon-grid2 li,
    .icon-grid3 li {
        width: 32%;
    }

    .pro-btn-txt {
        font-size: 1.4em;
    }

    .pro-icon {
        width: 4.5%;
    }

    .pro-grid-titl {
        font-size: 1.3em;
    }

    #foot-logo {
        padding-top: 0.5em;
        width: 18%;
    }
}

/***=====FOR SMARTPHONES=====***/

/*# sourceMappingURL=style.css.map */