/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/

:root {
    --color-primary: #FF014F;
    --color-primary-alt: #ff014dd9;
    --color-primary-2nd: #FF494A;
    --color-primary-3rd: #FDC448;
    --color-primary-4th: #0071ff;
    --color-secondary: #060606;
    --color-white: #ffffff;
    --color-gray: #9F9F9F;
    --color-gray-2: #141414;
    --color-subtitle: #f9004d;
    --background-color-1: #24243557;
    --background-color-2: #13131d;
    --background-color-3: #151521;
    --background-color-4: #242435;
    --background-color-5: #EDF5FF;
    --color-card: #1b1b1c;
    --gradient-box: linear-gradient(to right, #5237f9, #FF014F);
    --gradient-one: linear-gradient(to right bottom, #E42032, #1273EB);
    --gradient-two: linear-gradient(to right, #ED145B, #4A11EB);
    --gradient-three: linear-gradient(to right, #03041c, #0612b3);
    --text-gradient-one: linear-gradient(to right, #E42032, #4A11EB);
    --color-heading: #ffffff;
    --color-body: #9f9f9f;
    --color-dark: #1d1d1d;
    --color-text-1: #DEDEDE;
    --color-light-heading: #181c32;
    --color-light-body: #65676b;
    --color-border-white: #00000024;
    --color-midgray: #878787;
    --color-light: #E4E6EA;
    --color-lighter: #CED0D4;
    --color-lightest: #F0F2F5;
    --color-border: #ffffff14;
    --color-white: #ffffff;
    --color-white-75: rgba(255, 255, 255, 0.75);
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-facebook: #3B5997;
    --color-twitter: #1BA1F2;
    --color-youtube: #ED4141;
    --color-linkedin: #0077B5;
    --color-pinterest: #E60022;
    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
    --font-three: "fontawesome";
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-semi-bold: 600;
    --s-bold: 700;
    --s-extra-bold: 800;
    --s-black: 900;
    --border-width: 2px;
    --radius: 4px;
    --transition: all 0.4s ease-in-out;
    --font-size-b1: 16px;
    --font-size-b2: 18px;
    --font-size-b3: 22px;
    --line-height-b1: 1.75;
    --line-height-b2: 1.6;
    --line-height-b3: 1.7;
    --h1: 60px;
    --h2: 36px;
    --h3: 27px;
    --h4: 24px;
    --h5: 20px;
    --h6: 18px;
}

.container {
    max-width: 1290px;
}

body,
html {
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.875em;
    font-weight: 400;
    overflow-x: clip;
    background-color: var(--color-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    color: var(--color-heading);
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2em;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.cs_heading_font {
    font-family: var(--heading-font);
}

.cs_secondary_font {
    font-family: var(--body-font);
}

p {
    margin-bottom: 15px;
}

p:last-child {
    margin: 0;
}

ul {
    margin: 0 0 25px 0;
    padding-left: 20px;
    list-style: square outside none;
}

ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

address {
    margin: 0 0 15px;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

button {
    color: inherit;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: var(--color-primary);
}

table {
    width: 100%;
    margin-bottom: 25px;
}

table th {
    font-weight: 600;
    color: var(--body-color);
}

table td,
table th {
    border-top: 1px solid var(--color-border);
    padding: 11px 10px;
}

dl {
    margin-bottom: 25px;
}

dl dt {
    font-weight: 600;
}

b,
strong {
    font-weight: bold;
}

pre {
    color: var(--body-color);
    border: 1px solid var(--color-border);
    font-size: 18px;
    padding: 25px;
    border-radius: 5px;
}

kbd {
    font-size: 100%;
    background-color: var(--body-color);
    border-radius: 5px;
}

input,
textarea,
select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea {
    font-size: var(--font-size-b2);
    font-weight: 400;
    height: auto;
    line-height: 28px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 15px;
    outline: none;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--radius);
    background: transparent;
    transition: all 0.4s ease-out 0s;
    color: var(--color-body);
    width: 100%;
    border: var(--border-width) solid var(--color-border);
    min-height: 66px;
    border-radius: 10px;
    font-weight: 400;
    padding: 15px !important;
    font-size: 16px;
}

select option {
    color: var(--color-heading) !important;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    border-color: var(--color-primary);
}

.wpcf7-not-valid-tip {
    border-color: var(--color-primary);
}

input[type="submit"] {
    border: none !important;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 25px;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    outline: none;
    background-color: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    position: relative;
    width: fit-content;
}

textarea {
    resize: vertical;
    height: 160px;
    min-height: 160px;
}

label {
    margin-bottom: 8px;
}

select {
    padding: 12px 20px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--ternary);
    width: 100%;
}


/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/

.cs_preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-2);
    z-index: 99999;
}

.cs_preloader::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--color-gray-2);
    opacity: 0.08;
}

.cs_preloader .cs_preloader_shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 991px) {
    .cs_preloader .cs_preloader_shape {
        display: none;
    }
}

.cs_preloader .cs_preloader_shape_2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 991px) {
    .cs_preloader .cs_preloader_shape_2 {
        display: none;
    }
}

.cs_preloader_in {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 65px;
    height: 65px;
    font-size: 0;
    display: inline-block;
    margin: -32px 0 0 -32px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.cs_preloader_in span {
    background-color: var(--color-primary);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 65px;
    opacity: 0.5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.cs_preloader_in span:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*--------------------------------------------------------------
  3. Spacing
----------------------------------------------------------------*/

p.cs_mt_9 {
    margin-top: 9px;
}

.cs_mb_1 {
    margin-bottom: 1px;
}

.cs_mb_2 {
    margin-bottom: 2px;
}

.cs_mb_3 {
    margin-bottom: 3px;
}

.cs_mb_4 {
    margin-bottom: 4px;
}

.cs_mb_5 {
    margin-bottom: 5px;
}

.cs_mb_6 {
    margin-bottom: 6px;
}

.cs_mb_7 {
    margin-bottom: 7px;
}

.cs_mb_8 {
    margin-bottom: 8px;
}

.cs_mb_9 {
    margin-bottom: 9px;
}

.cs_mb_10 {
    margin-bottom: 10px;
}

.cs_mb_11 {
    margin-bottom: 11px;
}

.cs_mb_12 {
    margin-bottom: 12px !important;
}

.cs_mb_13 {
    margin-bottom: 13px;
}

.cs_mb_14 {
    margin-bottom: 14px;
}

.cs_mb_15 {
    margin-bottom: 15px;
}

.cs_mb_16 {
    margin-bottom: 16px;
}

.cs_mb_17 {
    margin-bottom: 17px;
}

.cs_mb_18 {
    margin-bottom: 18px;
}

.cs_mb_19 {
    margin-bottom: 19px;
}

.cs_mb_20 {
    margin-bottom: 20px;
}

.cs_mb_21 {
    margin-bottom: 21px;
}

.cs_mb_22 {
    margin-bottom: 22px;
}

.cs_mb_23 {
    margin-bottom: 23px;
}

.cs_mb_24 {
    margin-bottom: 24px;
}

.cs_mb_25 {
    margin-bottom: 25px;
}

.cs_mb_26 {
    margin-bottom: 26px;
}

.cs_mb_27 {
    margin-bottom: 27px;
}

.cs_mb_28 {
    margin-bottom: 28px;
}

.cs_mb_29 {
    margin-bottom: 29px;
}

.cs_mb_30 {
    margin-bottom: 30px;
}

.cs_mb_31 {
    margin-bottom: 31px;
}

.cs_mb_32 {
    margin-bottom: 32px;
}

.cs_mb_33 {
    margin-bottom: 33px;
}

.cs_mb_34 {
    margin-bottom: 34px;
}

.cs_mb_35 {
    margin-bottom: 35px;
}

.cs_mb_36 {
    margin-bottom: 36px;
}

.cs_mb_37 {
    margin-bottom: 37px;
}

.cs_mb_38 {
    margin-bottom: 38px;
}

.cs_mb_39 {
    margin-bottom: 39px;
}

.cs_mb_40 {
    margin-bottom: 40px;
}

.cs_mb_41 {
    margin-bottom: 41px;
}

.cs_mb_42 {
    margin-bottom: 42px;
}

.cs_mb_43 {
    margin-bottom: 43px;
}

.cs_mb_44 {
    margin-bottom: 44px;
}

.cs_mb_45 {
    margin-bottom: 45px;
}

.cs_mb_46 {
    margin-bottom: 46px;
}

.cs_mb_47 {
    margin-bottom: 47px;
}

.cs_mb_48 {
    margin-bottom: 48px;
}

.cs_mb_49 {
    margin-bottom: 49px;
}

.cs_mb_50 {
    margin-bottom: 50px;
}

.cs_mb_51 {
    margin-bottom: 51px;
}

.cs_mb_52 {
    margin-bottom: 52px;
}

.cs_mb_53 {
    margin-bottom: 53px;
}

.cs_mb_54 {
    margin-bottom: 54px;
}

.cs_mb_55 {
    margin-bottom: 55px;
}

.cs_mb_56 {
    margin-bottom: 56px;
}

.cs_mb_57 {
    margin-bottom: 57px;
}

.cs_mb_58 {
    margin-bottom: 58px;
}

.cs_mb_59 {
    margin-bottom: 59px;
}

.cs_mb_60 {
    margin-bottom: 60px;
}

@media screen and (min-width: 992px) {
    .cs_height_1 {
        height: 1px;
    }
    .cs_height_2 {
        height: 2px;
    }
    .cs_height_3 {
        height: 3px;
    }
    .cs_height_4 {
        height: 4px;
    }
    .cs_height_5 {
        height: 5px;
    }
    .cs_height_6 {
        height: 6px;
    }
    .cs_height_7 {
        height: 7px;
    }
    .cs_height_8 {
        height: 8px;
    }
    .cs_height_9 {
        height: 9px;
    }
    .cs_height_10 {
        height: 10px;
    }
    .cs_height_11 {
        height: 11px;
    }
    .cs_height_12 {
        height: 12px;
    }
    .cs_height_13 {
        height: 13px;
    }
    .cs_height_14 {
        height: 14px;
    }
    .cs_height_15 {
        height: 15px;
    }
    .cs_height_16 {
        height: 16px;
    }
    .cs_height_17 {
        height: 17px;
    }
    .cs_height_18 {
        height: 18px;
    }
    .cs_height_19 {
        height: 19px;
    }
    .cs_height_20 {
        height: 20px;
    }
    .cs_height_21 {
        height: 21px;
    }
    .cs_height_22 {
        height: 22px;
    }
    .cs_height_23 {
        height: 23px;
    }
    .cs_height_24 {
        height: 24px;
    }
    .cs_height_25 {
        height: 25px;
    }
    .cs_height_26 {
        height: 26px;
    }
    .cs_height_27 {
        height: 27px;
    }
    .cs_height_28 {
        height: 28px;
    }
    .cs_height_29 {
        height: 29px;
    }
    .cs_height_30 {
        height: 30px;
    }
    .cs_height_31 {
        height: 31px;
    }
    .cs_height_32 {
        height: 32px;
    }
    .cs_height_33 {
        height: 33px;
    }
    .cs_height_34 {
        height: 34px;
    }
    .cs_height_35 {
        height: 35px;
    }
    .cs_height_36 {
        height: 36px;
    }
    .cs_height_37 {
        height: 37px;
    }
    .cs_height_38 {
        height: 38px;
    }
    .cs_height_39 {
        height: 39px;
    }
    .cs_height_40 {
        height: 40px;
    }
    .cs_height_41 {
        height: 41px;
    }
    .cs_height_42 {
        height: 42px;
    }
    .cs_height_43 {
        height: 43px;
    }
    .cs_height_44 {
        height: 44px;
    }
    .cs_height_45 {
        height: 45px;
    }
    .cs_height_46 {
        height: 46px;
    }
    .cs_height_47 {
        height: 47px;
    }
    .cs_height_48 {
        height: 48px;
    }
    .cs_height_49 {
        height: 49px;
    }
    .cs_height_50 {
        height: 50px;
    }
    .cs_height_51 {
        height: 51px;
    }
    .cs_height_52 {
        height: 52px;
    }
    .cs_height_53 {
        height: 53px;
    }
    .cs_height_54 {
        height: 54px;
    }
    .cs_height_55 {
        height: 55px;
    }
    .cs_height_56 {
        height: 56px;
    }
    .cs_height_57 {
        height: 57px;
    }
    .cs_height_58 {
        height: 58px;
    }
    .cs_height_59 {
        height: 59px;
    }
    .cs_height_60 {
        height: 60px;
    }
    .cs_height_61 {
        height: 61px;
    }
    .cs_height_62 {
        height: 62px;
    }
    .cs_height_63 {
        height: 63px;
    }
    .cs_height_64 {
        height: 64px;
    }
    .cs_height_65 {
        height: 65px;
    }
    .cs_height_66 {
        height: 66px;
    }
    .cs_height_67 {
        height: 67px;
    }
    .cs_height_68 {
        height: 68px;
    }
    .cs_height_69 {
        height: 69px;
    }
    .cs_height_70 {
        height: 70px;
    }
    .cs_height_71 {
        height: 71px;
    }
    .cs_height_72 {
        height: 72px;
    }
    .cs_height_73 {
        height: 73px;
    }
    .cs_height_74 {
        height: 74px;
    }
    .cs_height_75 {
        height: 75px;
    }
    .cs_height_76 {
        height: 76px;
    }
    .cs_height_77 {
        height: 77px;
    }
    .cs_height_78 {
        height: 78px;
    }
    .cs_height_79 {
        height: 79px;
    }
    .cs_height_80 {
        height: 80px;
    }
    .cs_height_81 {
        height: 81px;
    }
    .cs_height_82 {
        height: 82px;
    }
    .cs_height_83 {
        height: 83px;
    }
    .cs_height_84 {
        height: 84px;
    }
    .cs_height_85 {
        height: 85px;
    }
    .cs_height_86 {
        height: 86px;
    }
    .cs_height_87 {
        height: 87px;
    }
    .cs_height_88 {
        height: 88px;
    }
    .cs_height_89 {
        height: 89px;
    }
    .cs_height_90 {
        height: 90px;
    }
    .cs_height_91 {
        height: 91px;
    }
    .cs_height_92 {
        height: 92px;
    }
    .cs_height_93 {
        height: 93px;
    }
    .cs_height_94 {
        height: 94px;
    }
    .cs_height_95 {
        height: 95px;
    }
    .cs_height_96 {
        height: 96px;
    }
    .cs_height_97 {
        height: 97px;
    }
    .cs_height_98 {
        height: 98px;
    }
    .cs_height_99 {
        height: 99px;
    }
    .cs_height_100 {
        height: 100px;
    }
    .cs_height_101 {
        height: 101px;
    }
    .cs_height_102 {
        height: 102px;
    }
    .cs_height_103 {
        height: 103px;
    }
    .cs_height_104 {
        height: 104px;
    }
    .cs_height_105 {
        height: 105px;
    }
    .cs_height_106 {
        height: 106px;
    }
    .cs_height_107 {
        height: 107px;
    }
    .cs_height_108 {
        height: 108px;
    }
    .cs_height_109 {
        height: 109px;
    }
    .cs_height_110 {
        height: 110px;
    }
    .cs_height_111 {
        height: 111px;
    }
    .cs_height_112 {
        height: 112px;
    }
    .cs_height_113 {
        height: 113px;
    }
    .cs_height_114 {
        height: 114px;
    }
    .cs_height_115 {
        height: 115px;
    }
    .cs_height_116 {
        height: 116px;
    }
    .cs_height_117 {
        height: 117px;
    }
    .cs_height_118 {
        height: 118px;
    }
    .cs_height_119 {
        height: 119px;
    }
    .cs_height_120 {
        height: 120px;
    }
    .cs_height_121 {
        height: 121px;
    }
    .cs_height_122 {
        height: 122px;
    }
    .cs_height_123 {
        height: 123px;
    }
    .cs_height_124 {
        height: 124px;
    }
    .cs_height_125 {
        height: 125px;
    }
    .cs_height_126 {
        height: 126px;
    }
    .cs_height_127 {
        height: 127px;
    }
    .cs_height_128 {
        height: 128px;
    }
    .cs_height_129 {
        height: 129px;
    }
    .cs_height_130 {
        height: 130px;
    }
    .cs_height_131 {
        height: 131px;
    }
    .cs_height_132 {
        height: 132px;
    }
    .cs_height_133 {
        height: 133px;
    }
    .cs_height_134 {
        height: 134px;
    }
    .cs_height_135 {
        height: 135px;
    }
    .cs_height_136 {
        height: 136px;
    }
    .cs_height_137 {
        height: 137px;
    }
    .cs_height_138 {
        height: 138px;
    }
    .cs_height_139 {
        height: 139px;
    }
    .cs_height_140 {
        height: 140px;
    }
    .cs_height_141 {
        height: 141px;
    }
    .cs_height_142 {
        height: 142px;
    }
    .cs_height_143 {
        height: 143px;
    }
    .cs_height_144 {
        height: 144px;
    }
    .cs_height_145 {
        height: 145px;
    }
    .cs_height_146 {
        height: 146px;
    }
    .cs_height_147 {
        height: 147px;
    }
    .cs_height_148 {
        height: 148px;
    }
    .cs_height_149 {
        height: 149px;
    }
    .cs_height_150 {
        height: 150px;
    }
}

@media screen and (max-width: 991px) {
    .cs_mb_lg_1 {
        margin-bottom: 1px;
    }
    .cs_mb_lg_2 {
        margin-bottom: 2px;
    }
    .cs_mb_lg_3 {
        margin-bottom: 3px;
    }
    .cs_mb_lg_4 {
        margin-bottom: 4px;
    }
    .cs_mb_lg_5 {
        margin-bottom: 5px;
    }
    .cs_mb_lg_6 {
        margin-bottom: 6px;
    }
    .cs_mb_lg_7 {
        margin-bottom: 7px;
    }
    .cs_mb_lg_8 {
        margin-bottom: 8px;
    }
    .cs_mb_lg_9 {
        margin-bottom: 9px;
    }
    .cs_mb_lg_10 {
        margin-bottom: 10px;
    }
    .cs_mb_lg_11 {
        margin-bottom: 11px;
    }
    .cs_mb_lg_12 {
        margin-bottom: 12px;
    }
    .cs_mb_lg_13 {
        margin-bottom: 13px;
    }
    .cs_mb_lg_14 {
        margin-bottom: 14px;
    }
    .cs_mb_lg_15 {
        margin-bottom: 15px;
    }
    .cs_mb_lg_16 {
        margin-bottom: 16px;
    }
    .cs_mb_lg_17 {
        margin-bottom: 17px;
    }
    .cs_mb_lg_18 {
        margin-bottom: 18px;
    }
    .cs_mb_lg_19 {
        margin-bottom: 19px;
    }
    .cs_mb_lg_20 {
        margin-bottom: 20px;
    }
    .cs_mb_lg_21 {
        margin-bottom: 21px;
    }
    .cs_mb_lg_22 {
        margin-bottom: 22px;
    }
    .cs_mb_lg_23 {
        margin-bottom: 23px;
    }
    .cs_mb_lg_24 {
        margin-bottom: 24px;
    }
    .cs_mb_lg_25 {
        margin-bottom: 25px;
    }
    .cs_mb_lg_26 {
        margin-bottom: 26px;
    }
    .cs_mb_lg_27 {
        margin-bottom: 27px;
    }
    .cs_mb_lg_28 {
        margin-bottom: 28px;
    }
    .cs_mb_lg_29 {
        margin-bottom: 29px;
    }
    .cs_mb_lg_30 {
        margin-bottom: 30px;
    }
    .cs_mb_lg_31 {
        margin-bottom: 31px;
    }
    .cs_mb_lg_32 {
        margin-bottom: 32px;
    }
    .cs_mb_lg_33 {
        margin-bottom: 33px;
    }
    .cs_mb_lg_34 {
        margin-bottom: 34px;
    }
    .cs_mb_lg_35 {
        margin-bottom: 35px;
    }
    .cs_mb_lg_36 {
        margin-bottom: 36px;
    }
    .cs_mb_lg_37 {
        margin-bottom: 37px;
    }
    .cs_mb_lg_38 {
        margin-bottom: 38px;
    }
    .cs_mb_lg_39 {
        margin-bottom: 39px;
    }
    .cs_mb_lg_40 {
        margin-bottom: 40px;
    }
    .cs_mb_lg_41 {
        margin-bottom: 41px;
    }
    .cs_mb_lg_42 {
        margin-bottom: 42px;
    }
    .cs_mb_lg_43 {
        margin-bottom: 43px;
    }
    .cs_mb_lg_44 {
        margin-bottom: 44px;
    }
    .cs_mb_lg_45 {
        margin-bottom: 45px;
    }
    .cs_mb_lg_46 {
        margin-bottom: 46px;
    }
    .cs_mb_lg_47 {
        margin-bottom: 47px;
    }
    .cs_mb_lg_48 {
        margin-bottom: 48px;
    }
    .cs_mb_lg_49 {
        margin-bottom: 49px;
    }
    .cs_mb_lg_50 {
        margin-bottom: 50px;
    }
    .cs_mb_lg_51 {
        margin-bottom: 51px;
    }
    .cs_mb_lg_52 {
        margin-bottom: 52px;
    }
    .cs_mb_lg_53 {
        margin-bottom: 53px;
    }
    .cs_mb_lg_54 {
        margin-bottom: 54px;
    }
    .cs_mb_lg_55 {
        margin-bottom: 55px;
    }
    .cs_mb_lg_56 {
        margin-bottom: 56px;
    }
    .cs_mb_lg_57 {
        margin-bottom: 57px;
    }
    .cs_mb_lg_58 {
        margin-bottom: 58px;
    }
    .cs_mb_lg_59 {
        margin-bottom: 59px;
    }
    .cs_mb_lg_60 {
        margin-bottom: 60px;
    }
    .cs_height_lg_1 {
        height: 1px;
    }
    .cs_height_lg_2 {
        height: 2px;
    }
    .cs_height_lg_3 {
        height: 3px;
    }
    .cs_height_lg_4 {
        height: 4px;
    }
    .cs_height_lg_5 {
        height: 5px;
    }
    .cs_height_lg_6 {
        height: 6px;
    }
    .cs_height_lg_7 {
        height: 7px;
    }
    .cs_height_lg_8 {
        height: 8px;
    }
    .cs_height_lg_9 {
        height: 9px;
    }
    .cs_height_lg_10 {
        height: 10px;
    }
    .cs_height_lg_11 {
        height: 11px;
    }
    .cs_height_lg_12 {
        height: 12px;
    }
    .cs_height_lg_13 {
        height: 13px;
    }
    .cs_height_lg_14 {
        height: 14px;
    }
    .cs_height_lg_15 {
        height: 15px;
    }
    .cs_height_lg_16 {
        height: 16px;
    }
    .cs_height_lg_17 {
        height: 17px;
    }
    .cs_height_lg_18 {
        height: 18px;
    }
    .cs_height_lg_19 {
        height: 19px;
    }
    .cs_height_lg_20 {
        height: 20px;
    }
    .cs_height_lg_21 {
        height: 21px;
    }
    .cs_height_lg_22 {
        height: 22px;
    }
    .cs_height_lg_23 {
        height: 23px;
    }
    .cs_height_lg_24 {
        height: 24px;
    }
    .cs_height_lg_25 {
        height: 25px;
    }
    .cs_height_lg_26 {
        height: 26px;
    }
    .cs_height_lg_27 {
        height: 27px;
    }
    .cs_height_lg_28 {
        height: 28px;
    }
    .cs_height_lg_29 {
        height: 29px;
    }
    .cs_height_lg_30 {
        height: 30px;
    }
    .cs_height_lg_31 {
        height: 31px;
    }
    .cs_height_lg_32 {
        height: 32px;
    }
    .cs_height_lg_33 {
        height: 33px;
    }
    .cs_height_lg_34 {
        height: 34px;
    }
    .cs_height_lg_35 {
        height: 35px;
    }
    .cs_height_lg_36 {
        height: 36px;
    }
    .cs_height_lg_37 {
        height: 37px;
    }
    .cs_height_lg_38 {
        height: 38px;
    }
    .cs_height_lg_39 {
        height: 39px;
    }
    .cs_height_lg_40 {
        height: 40px;
    }
    .cs_height_lg_41 {
        height: 41px;
    }
    .cs_height_lg_42 {
        height: 42px;
    }
    .cs_height_lg_43 {
        height: 43px;
    }
    .cs_height_lg_44 {
        height: 44px;
    }
    .cs_height_lg_45 {
        height: 45px;
    }
    .cs_height_lg_46 {
        height: 46px;
    }
    .cs_height_lg_47 {
        height: 47px;
    }
    .cs_height_lg_48 {
        height: 48px;
    }
    .cs_height_lg_49 {
        height: 49px;
    }
    .cs_height_lg_50 {
        height: 50px;
    }
    .cs_height_lg_51 {
        height: 51px;
    }
    .cs_height_lg_52 {
        height: 52px;
    }
    .cs_height_lg_53 {
        height: 53px;
    }
    .cs_height_lg_54 {
        height: 54px;
    }
    .cs_height_lg_55 {
        height: 55px;
    }
    .cs_height_lg_56 {
        height: 56px;
    }
    .cs_height_lg_57 {
        height: 57px;
    }
    .cs_height_lg_58 {
        height: 58px;
    }
    .cs_height_lg_59 {
        height: 59px;
    }
    .cs_height_lg_60 {
        height: 60px;
    }
    .cs_height_lg_61 {
        height: 61px;
    }
    .cs_height_lg_62 {
        height: 62px;
    }
    .cs_height_lg_63 {
        height: 63px;
    }
    .cs_height_lg_64 {
        height: 64px;
    }
    .cs_height_lg_65 {
        height: 65px;
    }
    .cs_height_lg_66 {
        height: 66px;
    }
    .cs_height_lg_67 {
        height: 67px;
    }
    .cs_height_lg_68 {
        height: 68px;
    }
    .cs_height_lg_69 {
        height: 69px;
    }
    .cs_height_lg_70 {
        height: 70px;
    }
    .cs_height_lg_71 {
        height: 71px;
    }
    .cs_height_lg_72 {
        height: 72px;
    }
    .cs_height_lg_73 {
        height: 73px;
    }
    .cs_height_lg_74 {
        height: 74px;
    }
    .cs_height_lg_75 {
        height: 75px;
    }
    .cs_height_lg_76 {
        height: 76px;
    }
    .cs_height_lg_77 {
        height: 77px;
    }
    .cs_height_lg_78 {
        height: 78px;
    }
    .cs_height_lg_79 {
        height: 79px;
    }
    .cs_height_lg_80 {
        height: 80px;
    }
    .cs_height_lg_81 {
        height: 81px;
    }
    .cs_height_lg_82 {
        height: 82px;
    }
    .cs_height_lg_83 {
        height: 83px;
    }
    .cs_height_lg_84 {
        height: 84px;
    }
    .cs_height_lg_85 {
        height: 85px;
    }
    .cs_height_lg_86 {
        height: 86px;
    }
    .cs_height_lg_87 {
        height: 87px;
    }
    .cs_height_lg_88 {
        height: 88px;
    }
    .cs_height_lg_89 {
        height: 89px;
    }
    .cs_height_lg_90 {
        height: 90px;
    }
    .cs_height_lg_91 {
        height: 91px;
    }
    .cs_height_lg_92 {
        height: 92px;
    }
    .cs_height_lg_93 {
        height: 93px;
    }
    .cs_height_lg_94 {
        height: 94px;
    }
    .cs_height_lg_95 {
        height: 95px;
    }
    .cs_height_lg_96 {
        height: 96px;
    }
    .cs_height_lg_97 {
        height: 97px;
    }
    .cs_height_lg_98 {
        height: 98px;
    }
    .cs_height_lg_99 {
        height: 99px;
    }
    .cs_height_lg_100 {
        height: 100px;
    }
    .cs_height_lg_101 {
        height: 101px;
    }
    .cs_height_lg_102 {
        height: 102px;
    }
    .cs_height_lg_103 {
        height: 103px;
    }
    .cs_height_lg_104 {
        height: 104px;
    }
    .cs_height_lg_105 {
        height: 105px;
    }
    .cs_height_lg_106 {
        height: 106px;
    }
    .cs_height_lg_107 {
        height: 107px;
    }
    .cs_height_lg_108 {
        height: 108px;
    }
    .cs_height_lg_109 {
        height: 109px;
    }
    .cs_height_lg_110 {
        height: 110px;
    }
    .cs_height_lg_111 {
        height: 111px;
    }
    .cs_height_lg_112 {
        height: 112px;
    }
    .cs_height_lg_113 {
        height: 113px;
    }
    .cs_height_lg_114 {
        height: 114px;
    }
    .cs_height_lg_115 {
        height: 115px;
    }
    .cs_height_lg_116 {
        height: 116px;
    }
    .cs_height_lg_117 {
        height: 117px;
    }
    .cs_height_lg_118 {
        height: 118px;
    }
    .cs_height_lg_119 {
        height: 119px;
    }
    .cs_height_lg_120 {
        height: 120px;
    }
    .cs_height_lg_121 {
        height: 121px;
    }
    .cs_height_lg_122 {
        height: 122px;
    }
    .cs_height_lg_123 {
        height: 123px;
    }
    .cs_height_lg_124 {
        height: 124px;
    }
    .cs_height_lg_125 {
        height: 125px;
    }
    .cs_height_lg_126 {
        height: 126px;
    }
    .cs_height_lg_127 {
        height: 127px;
    }
    .cs_height_lg_128 {
        height: 128px;
    }
    .cs_height_lg_129 {
        height: 129px;
    }
    .cs_height_lg_130 {
        height: 130px;
    }
    .cs_height_lg_131 {
        height: 131px;
    }
    .cs_height_lg_132 {
        height: 132px;
    }
    .cs_height_lg_133 {
        height: 133px;
    }
    .cs_height_lg_134 {
        height: 134px;
    }
    .cs_height_lg_135 {
        height: 135px;
    }
    .cs_height_lg_136 {
        height: 136px;
    }
    .cs_height_lg_137 {
        height: 137px;
    }
    .cs_height_lg_138 {
        height: 138px;
    }
    .cs_height_lg_139 {
        height: 139px;
    }
    .cs_height_lg_140 {
        height: 140px;
    }
    .cs_height_lg_141 {
        height: 141px;
    }
    .cs_height_lg_142 {
        height: 142px;
    }
    .cs_height_lg_143 {
        height: 143px;
    }
    .cs_height_lg_144 {
        height: 144px;
    }
    .cs_height_lg_145 {
        height: 145px;
    }
    .cs_height_lg_146 {
        height: 146px;
    }
    .cs_height_lg_147 {
        height: 147px;
    }
    .cs_height_lg_148 {
        height: 148px;
    }
    .cs_height_lg_149 {
        height: 149px;
    }
    .cs_height_lg_150 {
        height: 150px;
    }
}


/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/

.container-fluid {
    padding-left: 75px;
    padding-right: 75px;
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1400px) {
    .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1199px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        padding-left: 13px;
        padding-right: 13px;
    }
}

.cs_fs_18 {
    font-size: 18px;
    line-height: 1.66em;
}

.cs_fs_21 {
    font-size: 21px;
    line-height: 1.33em;
}

@media (max-width: 991px) {
    .cs_fs_21 {
        font-size: 20px;
    }
}

.cs_fs_28 {
    font-size: 28px;
    line-height: 1.36em;
}

@media (max-width: 1400px) {
    .cs_fs_28 {
        font-size: 26px;
    }
}

.cs_fs_38 {
    font-size: 38px;
    line-height: 1.32em;
}

@media (max-width: 1400px) {
    .cs_fs_38 {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .cs_fs_38 {
        font-size: 30px;
    }
}

.cs_fs_51 {
    font-size: 51px;
    line-height: 1.28em;
}

@media (max-width: 1400px) {
    .cs_fs_51 {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .cs_fs_51 {
        font-size: 40px;
    }
}

.cs_fs_70 {
    font-size: 70px;
    line-height: 1.28em;
}

@media (max-width: 1400px) {
    .cs_fs_70 {
        font-size: 62px;
    }
}

@media (max-width: 1199px) {
    .cs_fs_70 {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .cs_fs_70 {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .cs_fs_70 {
        font-size: 42px;
    }
}

.cs_light {
    font-weight: 300;
}

.cs_normal {
    font-weight: 400;
}

.cs_medium {
    font-weight: 500;
}

.cs_semibold {
    font-weight: 600;
}

.cs_bold {
    font-weight: 700;
}

.cs_extra_bold {
    font-weight: 800;
}

.cs_black {
    font-weight: 900;
}

.cs_radius_3 {
    border-radius: 3px;
}

.cs_radius_5 {
    border-radius: 5px;
}

.cs_radius_7 {
    border-radius: 7px;
}

.cs_radius_10 {
    border-radius: 10px;
}

.cs_radius_15 {
    border-radius: 15px;
}

.cs_pl_75 {
    padding-left: 75px;
}

@media (max-width: 1400px) {
    .cs_pl_75 {
        padding-left: 25px;
    }
}

@media (max-width: 991px) {
    .cs_pl_75 {
        padding-left: 0;
    }
}

.cs_pl_100 {
    padding-left: 100px;
}

@media (max-width: 1400px) {
    .cs_pl_100 {
        padding-left: 25px;
    }
}

@media (max-width: 991px) {
    .cs_pl_100 {
        padding-left: 0;
    }
}

.cs_pr_75 {
    padding-right: 75px;
}

@media (max-width: 1400px) {
    .cs_pr_75 {
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .cs_pr_75 {
        padding-right: 0;
    }
}

.cs_pr_95 {
    padding-right: 95px;
}

@media (max-width: 1400px) {
    .cs_pr_95 {
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .cs_pr_95 {
        padding-right: 0;
    }
}

.cs_pl_95 {
    padding-left: 95px;
}

@media (max-width: 1400px) {
    .cs_pl_95 {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .cs_pl_95 {
        padding-left: 0;
    }
}

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

@media (min-width: 1400px) {
    .cs_row_gap_50 {
        margin-left: -25px;
        margin-right: -25px;
    }
    .cs_row_gap_50>* {
        padding-left: 25px;
        padding-right: 25px;
    }
    .cs_row_gap_60 {
        margin-left: -30px;
        margin-right: -30px;
    }
    .cs_row_gap_60>* {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.cs_gap_y_24 {
    gap: 24px 0;
}

.cs_gap_y_30 {
    gap: 30px 0;
}

.cs_gap_y_35 {
    gap: 35px 0;
}

.cs_gap_y_40 {
    gap: 40px 0;
}

.cs_gap_y_45 {
    gap: 45px 0;
}

.cs_gap_y_50 {
    gap: 50px 0;
}

.cs_gap_y_60 {
    gap: 60px 0;
}

.cs_gap_y_65 {
    gap: 65px 0;
}

.cs_gap_y_80 {
    gap: 80px 0;
}

.cs_gap_y_100 {
    gap: 100px 0;
}

hr {
    margin: 0;
    padding: 0;
    border: none;
    border-top: 1px solid var(--color-border) !important;
    opacity: 1;
}

.cs_bg_filed {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cs_bg_fixed {
    background-attachment: fixed;
}

@media (max-width: 1370px) {
    .cs_bg_fixed {
        background-attachment: initial;
    }
}

.cs_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs_white_color {
    color: var(--white-color);
}

.cs_heading_color {
    color: var(--color-heading);
}

.cs_body_color {
    color: var(--body-color);
}

.cs_accent_color {
    color: var(--color-primary);
}

.cs_white_bg {
    background-color: var(--white-color);
}

.cs_heading_bg {
    background-color: var(--color-heading);
}

.cs_secondary_bg {
    background-color: var(--body-color);
}

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

.cs_gray_bg_2 {
    background-color: rgba(75, 175, 71, 0.05);
}

.cs_accent_bg {
    background-color: var(--color-primary);
}

label {
    display: inline-block;
    margin-bottom: 5px;
}

.cs_form_field {
    display: block;
    width: 100%;
    padding: 9px 20px;
    border: 1px solid var(--body-color);
    outline: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_form_field:focus {
    border-color: var(--color-primary);
}

.cs_form_field.cs_type_1 {
    background-color: var(--gray-color);
    border-color: transparent;
}

.cs_form_field.cs_type_1:focus {
    background-color: transparent;
    border-color: var(--color-primary);
}

.cs_form_field.cs_type_2 {
    background-color: #fff;
    border-color: transparent;
}

.cs_form_field.cs_type_2:focus {
    border-color: var(--color-primary);
}

.cs_shadow_1 {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(85, 85, 85, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(85, 85, 85, 0.2);
}

.cs_half_screen_right {
    height: 100%;
    width: 50vw;
}

@media (max-width: 1024px) {
    .cs_half_screen_right {
        width: 100%;
        margin-left: 0;
    }
}

.cs_half_screen_left {
    height: 100%;
    width: calc(50vw + 0px);
    margin-left: calc(-50vw + 100%);
}

@media (max-width: 1024px) {
    .cs_half_screen_left {
        width: 100%;
        margin-left: 0;
    }
}

.cs_full_screen_right {
    width: calc(50vw + 650px);
}

@media (max-width: 767px) {
    .cs_full_screen_right,
    .cs_full_screen_right.cs_variable_width_wrap {
        width: 100%;
    }
}

.cs_half_screen_thumb {
    height: 100%;
    width: 100%;
    min-height: 400px;
}

.cs_half_screen_left .elementor-element,
.cs_half_screen_right .elementor-element,
.cs_full_screen_right .elementor-element {
    height: 100%;
}


/* Start Accordion */

.cs_accordians.cs_style_1 .cs_accordian_title {
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_accordians.cs_style_1 .cs_accordian_body {
    padding: 0 45px 25px 25px;
    margin-top: -6px;
}

.cs_accordians.cs_style_1 .cs_accordian_body p {
    margin: 0;
}

.cs_accordians.cs_style_1 .cs_accordian_head {
    padding: 26px 45px 26px 25px;
    position: relative;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .cs_accordians.cs_style_1 .cs_accordian_head {
        padding: 20px 40px 20px 20px;
    }
}

.cs_accordians.cs_style_1 .cs_accordian_head:hover .cs_accordian_title {
    color: var(--color-primary);
}

.cs_accordians.cs_style_1 .cs_accordian {
    background-color: #fff;
}

.cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_head {
    pointer-events: none;
}

.cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_toggle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cs_accordians.cs_style_1 .cs_accordian:not(:last-child) {
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .cs_accordians.cs_style_1 .cs_accordian:not(:last-child) {
        margin-bottom: 15px;
    }
}

.cs_accordians.cs_style_1 .cs_accordian_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 32px;
    right: 25px;
}

@media (max-width: 1199px) {
    .cs_accordians.cs_style_1 .cs_accordian_toggle {
        top: 26px;
        right: 20px;
    }
}

.cs_accordian_border {
    border: 1px solid var(--color-border);
}


/* End Accordion */

.cs_btn.cs_style_1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 30px;
    outline: none;
    background-color: var(--color-primary);
    color: #fff;
    gap: 10px;
    border: none;
    -webkit-box-shadow: 6px 6px 0px 0px var(--dark-blue-color);
    box-shadow: 6px 6px 0px 0px var(--dark-blue-color);
    margin-bottom: 6px;
    min-width: max-content;
}

.cs_btn.cs_style_1 i {
    height: 10px;
    width: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
}

.cs_btn.cs_style_1 i svg {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_btn.cs_style_1 i svg:last-child {
    left: -15px;
    top: 15px;
    opacity: 0;
}

.cs_btn.cs_style_1:hover {
    -webkit-box-shadow: -6px -6px 0px 0px var(--dark-blue-color);
    box-shadow: -6px -6px 0px 0px var(--dark-blue-color);
}

.cs_btn.cs_style_1:hover i svg:first-child {
    left: 15px;
    top: -15px;
    opacity: 0;
}

.cs_btn.cs_style_1:hover i svg:last-child {
    left: 0px;
    top: 0px;
    opacity: 1;
}

.cs_btn.cs_style_1.cs_color_1 {
    background-color: var(--color-heading);
}

.cs_btn.cs_style_2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background-repeat: no-repeat;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
    background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
    -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
    transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
    background-size: 100% 1px;
    background-position: 0 calc(100% - 0px);
}

.cs_btn.cs_style_2 i {
    height: 10px;
    width: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
}

.cs_btn.cs_style_2 i svg {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_btn.cs_style_2 i svg:last-child {
    left: -15px;
    top: 15px;
    opacity: 0;
}

.cs_btn.cs_style_2:hover {
    background-position: 100% calc(100% - 0px);
    background-size: 0 1px;
}

.cs_btn.cs_style_2:hover i svg:first-child {
    left: 15px;
    top: -15px;
    opacity: 0;
}

.cs_btn.cs_style_2:hover i svg:last-child {
    left: 0px;
    top: 0px;
    opacity: 1;
}

.cs_btn.cs_style_2.cs_type_1 {
    background-position: 100% calc(100% - 0px);
    background-size: 0 1px;
    gap: 13px;
}

.cs_btn.cs_style_2.cs_type_1 i {
    -webkit-transform: rotate(90deg) scale(1.3);
    transform: rotate(90deg) scale(1.3);
}

.cs_btn.cs_style_2.cs_type_1:hover {
    background-size: 100% 1px;
    background-position: 0 calc(100% - 0px);
}

.cs_btn.cs_style_2.cs_type_1:hover i {
    -webkit-transform: rotate(0deg) scale(1.3);
    transform: rotate(0deg) scale(1.3);
}

.cs_social_btns.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    color: var(--color-heading);
}

.cs_social_btns.cs_style_1 a {
    height: 40px;
    width: 40px;
    border: 1px solid var(--body-color);
    border-radius: 50%;
}

.cs_social_btns.cs_style_1 a:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

.cs_list.cs_style_1 {
    padding-left: 0;
}

.cs_list.cs_style_1 li {
    position: relative;
    padding-left: 38px;
    font-size: inherit;
}

.cs_list.cs_style_1 li:not(:last-child) {
    margin-bottom: 37px;
}

.cs_list.cs_style_1 li .cs_list_icon {
    position: absolute;
    left: 0;
    top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_list.cs_style_2 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: inherit;
}

.cs_list.cs_style_2 li:not(:last-child) {
    margin-bottom: 38px;
}

.cs_list.cs_style_2 .cs_list_number {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-primary);
    min-width: 90px;
    padding-right: 15px;
    margin-top: -10px;
}

@media (max-width: 991px) {
    .cs_list.cs_style_2 .cs_list_number {
        min-width: 70px;
        margin-top: -2px;
    }
}

@media (max-width: 575px) {
    .cs_list.cs_style_2 .cs_list_number {
        min-width: 60px;
    }
}

.cs_list.cs_style_3 li {
    position: relative;
    padding-left: 47px;
    font-size: inherit;
}

.cs_list.cs_style_3 li:not(:last-child) {
    margin-bottom: 25px;
}

.cs_list.cs_style_3 li i {
    position: absolute;
    left: 0;
    top: -1px;
    height: 30px;
    width: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid var(--color-heading);
    border-radius: 5px;
    font-size: 14px;
}

.cs_video_block.cs_style_1 {
    height: 860px;
    width: 100%;
    position: relative;
}

@media (max-width: 991px) {
    .cs_video_block.cs_style_1 {
        height: 600px;
    }
}

@media (max-width: 575px) {
    .cs_video_block.cs_style_1 {
        height: 500px;
    }
}

.cs_video_block.cs_style_1::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.cs_video_block.cs_style_1:hover::before {
    opacity: 1;
}

.cs_video_block.cs_style_1.cs_type_1 {
    height: 650px;
}

@media (max-width: 575px) {
    .cs_video_block.cs_style_1.cs_type_1 {
        height: 450px;
    }
}

.cs_half_screen_left .cs_video_block.cs_style_1,
.cs_half_screen_right .cs_video_block.cs_style_1 {
    height: 100%;
    min-height: 700px;
}

@media (max-width: 991px) {
    .cs_half_screen_left .cs_video_block.cs_style_1,
    .cs_half_screen_right .cs_video_block.cs_style_1 {
        min-height: 600px;
    }
}

.cs_player_btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_player_btn:before,
.cs_player_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid currentColor;
    border-radius: 50%;
    -webkit-animation: playBtnAnim 4s linear infinite;
    animation: playBtnAnim 4s linear infinite;
}

.cs_player_btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@-webkit-keyframes playBtnAnim {
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes playBtnAnim {
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.cs_page_heading {
    height: 600px;
    padding: 120px 0 50px;
}

@media (max-width: 991px) {
    .cs_page_heading {
        height: 420px;
    }
}

.cs_page_heading .breadcrumb-item+.breadcrumb-item::before {
    content: "//";
    color: #fff;
}

.cs_page_heading .breadcrumb {
    color: var(--color-primary);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
}

.cs_page_heading .breadcrumb-item.active {
    color: #fff;
}

.cs_rating {
    width: 114px;
    height: 18px;
    position: relative;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_rating i {
    margin-right: 3px;
}

.cs_rating .cs_rating_percentage {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.cs_rating .cs_rating_percentage {
    width: 50%;
}

.cs_progress_heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.cs_progress_wrap {
    padding-top: 35px;
}

.cs_progress {
    background: rgba(85, 85, 85, 0.15);
    height: 10px;
}

.cs_progress .cs_progress_in {
    height: 100%;
    position: relative;
}

.cs_progress .cs_progress_in span {
    -webkit-box-shadow: 0px 0px 10px rgba(85, 85, 85, 0.2);
    box-shadow: 0px 0px 10px rgba(85, 85, 85, 0.2);
    background-color: #fff;
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5em;
    right: -18px;
    bottom: 100%;
    margin-bottom: 10px;
    padding: 4px 2px 3px;
    color: var(--color-heading);
    border-radius: 5px 5px 0 0;
    min-width: 36px;
    text-align: center;
}

.cs_progress .cs_progress_in span::before {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background-color: #fff;
    left: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -3px;
    margin-left: -4px;
}

.cs_progress_wrap_title {
    margin-bottom: -28px;
}

.cs_half_bg_wrap {
    position: relative;
}

.cs_half_bg_wrap>*:not(.cs_half_bg_top),
.cs_half_bg_wrap>*:not(.cs_half_bg_bottom) {
    position: relative;
    z-index: 6;
}

.cs_half_bg_wrap .cs_half_bg_bottom,
.cs_half_bg_wrap .cs_half_bg_top {
    position: absolute;
    width: 100%;
    left: 0;
}

.cs_half_bg_wrap .cs_half_bg_bottom {
    bottom: 0;
    height: 40%;
}

.cs_half_bg_wrap .cs_half_bg_top {
    top: 0;
    height: 59.3%;
}

.cs_half_bg_wrap .cs_half_bg_top.cs_type_1 {
    height: 77%;
}

.cs_donate_form_1 {
    padding: 50px 35px;
}

@media (max-width: 575px) {
    .cs_donate_form_1 {
        padding: 40px 20px;
    }
}

@media (max-width: 350px) {
    .cs_donate_form_1 {
        padding: 30px 15px;
    }
}

.cs_donate_form_1 .cs_fixed_amount_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .cs_donate_form_1 .cs_fixed_amount_wrap {
        gap: 10px;
    }
}

.cs_donate_form_1 .cs_fixed_amount_item {
    height: 50px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.cs_donate_form_1 .cs_fixed_amount_item label {
    margin: 0;
    height: 100%;
}

.cs_donate_form_1 .cs_fixed_amount_check {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
}

.cs_donate_form_1 .cs_fixed_amount_check:checked+label {
    background-color: var(--color-primary);
    color: #fff;
}

.cs_donate_form_1 .cs_input_amount,
.cs_donate_form_1 .cs_donate_input {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    height: 50px;
    padding: 5px 20px;
    border: none;
    background-color: #fff;
    outline: none;
}

.cs_donate_form_1 .cs_custom_amount_btn {
    display: block;
    width: 100%;
    background-color: #fff;
    border: none;
    height: 50px;
    margin-bottom: 20px;
    outline: none;
}

.cs_donate_form_1 .cs_custom_amount_btn:hover {
    color: #fff;
    background-color: var(--dark-blue-color);
}

.cs_negative_box_110 {
    position: relative;
    z-index: 10;
    margin-top: -110px;
}

.cs_funfact_1_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media (max-width: 1199px) {
    .cs_funfact_1_list {
        gap: 20px 30px;
    }
}

@media (max-width: 991px) {
    .cs_funfact_1_list {
        gap: 20px 0px;
    }
    .cs_funfact_1_list .cs_funfact.cs_style_1 {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .cs_funfact_1_list .cs_funfact.cs_style_1 {
        width: 100%;
    }
}

.cs_funfact.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 300px;
    gap: 22px;
}

@media (max-width: 575px) {
    .cs_funfact.cs_style_1 {
        max-width: 100%;
    }
}

.cs_funfact.cs_style_1 .cs_funfact_number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: var(--body-color);
}

.cs_funfact.cs_style_1 .cs_funfact_title {
    font-family: var(--heading-font);
}

.cs_funfact.cs_style_2 .cs_funfact_number {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-heading);
    line-height: 1.2em;
    margin-bottom: -3px;
}

.cs_funfact.cs_style_2 .cs_funfact_number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
}

.cs_funfact_2_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    gap: 28px 0;
}

.cs_funfact_2_list .cs_funfact.cs_style_2 {
    width: 50%;
    padding: 0 12px;
}

@media (max-width: 400px) {
    .cs_funfact_2_list .cs_funfact.cs_style_2 {
        width: 100%;
    }
}

.cs_funfact.cs_style_3 {
    height: 314px;
    width: 314px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    left: -50px;
    bottom: -50px;
    padding: 0 0 50px 50px;
}

.cs_shape_wrap {
    position: relative;
}

.cs_shape_wrap>*:not(.cs_shape) {
    position: relative;
    z-index: 4;
}

.cs_shape_wrap .cs_shape {
    position: absolute;
}

.cs_shape_wrap .cs_shape_position_1 {
    right: 0;
    bottom: 25%;
}

.cs_shape_wrap .cs_shape_position_2 {
    right: 0;
    top: 30px;
}

@media (max-width: 575px) {
    .cs_shape_wrap .cs_shape_position_2 {
        display: none;
    }
}

.cs_shape_wrap .cs_shape_position_3 {
    left: 0;
    top: 30px;
}

.cs_shape_wrap .cs_shape_position_4 {
    left: 6%;
    top: 17%;
}

.cs_shape_position_4 img {
    -webkit-animation: semiRotateAnim 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: semiRotateAnim 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs_shape_wrap .cs_shape_position_5 {
    right: 5%;
    bottom: 20%;
}

.cs_shape_position_5 img {
    -webkit-animation: spinAnimaiton 6s linear infinite;
    animation: spinAnimaiton 6s linear infinite;
}

.cs_shape_wrap .cs_shape_position_6 {
    right: 0;
    top: 25%;
}

.cs_shape_wrap .cs_shape_position_7 {
    left: 0;
    bottom: 20%;
}

.cs_shape_wrap .cs_shape_position_8 {
    right: 0;
    top: -25px;
}

@media (max-width: 767px) {
    .cs_shape_wrap .cs_shape_position_8 {
        display: none;
    }
}

@-webkit-keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }
    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

@keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }
    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

@-webkit-keyframes semiRotateAnim {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(25px) rotate(-53deg);
        transform: translateY(25px) rotate(-53deg);
    }
}

@keyframes semiRotateAnim {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(25px) rotate(-53deg);
        transform: translateY(25px) rotate(-53deg);
    }
}

.cs_layer_img_box {
    position: relative;
    padding-left: 15%;
    padding-bottom: 27%;
}

.cs_layer_img_box .cs_layer_img_1 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 33%;
    z-index: 2;
}

.cs_layer_img_box .cs_layer_img_1 img {
    border: 10px solid #fff;
}

.cs_layer_img_box.cs_type_1 {
    padding-bottom: 0;
}

.cs_layer_img_box.cs_type_1 .cs_layer_img_1 {
    padding-right: 50%;
    bottom: 75px;
}

.cs_layer_img_box.cs_type_2 {
    padding-left: 0;
    padding-right: 15%;
}

.cs_layer_img_box.cs_type_2 .cs_layer_img_1 {
    padding-right: 0;
    padding-left: 33%;
}

@media (max-width: 575px) {
    .cs_section_heading.cs_style_1 br {
        display: none;
    }
}

@media (max-width: 991px) {
    .cs_col_reverse_lg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.cs_experience_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    padding-top: 42px;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 1199px) {
    .cs_experience_box {
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .cs_experience_box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cs_experience_box .cs_experience_box_left {
    max-width: 140px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media (max-width: 1199px) {
    .cs_experience_box .cs_experience_box_left {
        max-width: 110px;
    }
}

@media (max-width: 400px) {
    .cs_experience_box .cs_experience_box_left {
        max-width: 100%;
    }
}

.cs_moving_text_wrap {
    font-family: helvetica;
    overflow-x: hidden;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-primary);
}

.cs_moving_text_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%;
}

.cs_moving_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    -webkit-animation: slide-left 20s linear infinite;
    animation: slide-left 20s linear infinite;
}

.cs_moving_text>* {
    margin: 0 20px;
}

@-webkit-keyframes slide-left {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-left {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.cs_gallery_list.cs_style_1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 24px;
}

@media (max-width: 991px) {
    .cs_gallery_list.cs_style_1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .cs_gallery_list.cs_style_1 {
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .cs_gallery_list.cs_style_1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cs_gallery_list.cs_style_1 .cs_gallery_item {
    display: block;
    height: 485px;
    position: relative;
}

@media (max-width: 1400px) {
    .cs_gallery_list.cs_style_1 .cs_gallery_item {
        height: 400px;
    }
}

@media (max-width: 1199px) {
    .cs_gallery_list.cs_style_1 .cs_gallery_item {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .cs_gallery_list.cs_style_1 .cs_gallery_item {
        height: 300px;
    }
}

@media (max-width: 380px) {
    .cs_gallery_list.cs_style_1 .cs_gallery_item {
        height: 250px;
    }
}

.cs_gallery_list.cs_style_1 .cs_gallery_item>img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 381px) {
    .cs_gallery_list.cs_style_1 .cs_gallery_item:nth-child(1),
    .cs_gallery_list.cs_style_1 .cs_gallery_item:nth-child(6),
    .cs_gallery_list.cs_style_1 .cs_gallery_item:nth-child(7) {
        grid-column: auto/span 2;
    }
}

.cs_gallery_list.cs_style_1 .cs_gallery_item:hover .cs_gallery_hover::before {
    opacity: 0.5;
}

.cs_gallery_list.cs_style_1 .cs_gallery_item:hover .cs_gallery_hover svg {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cs_gallery_list.cs_style_1 .cs_gallery_hover {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.cs_gallery_list.cs_style_1 .cs_gallery_hover::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background-color: var(--color-primary);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_gallery_list.cs_style_1 .cs_gallery_hover svg {
    position: relative;
    z-index: 2;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (max-width: 575px) {
    .cs_gallery_list.cs_style_1 .cs_gallery_hover svg {
        width: 40px;
        height: 40px;
    }
}

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

.cs_brand.cs_style_1 img,
.cs_brand.cs_style_1 a {
    display: inline-block;
}

.cs_map {
    height: 650px;
    margin-bottom: -134px;
}

@media (max-width: 991px) {
    .cs_map {
        height: 500px;
    }
}

.cs_map iframe {
    height: 100%;
    width: 100%;
    border: none;
}

.cs_details_content img {
    margin-bottom: 40px;
}

.cs_details_content h4 {
    font-size: 21px;
    line-height: 1.33em;
    font-weight: 600;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .cs_details_content h4 {
        font-size: 20px;
    }
}

.cs_details_content h3 {
    font-size: 28px;
    line-height: 1.36em;
    font-weight: 600;
    margin-bottom: 25px;
}

@media (max-width: 1400px) {
    .cs_details_content h3 {
        font-size: 26px;
    }
}

.cs_details_content h2 {
    font-size: 38px;
    line-height: 1.32em;
    font-weight: 600;
    margin-bottom: 25px;
}

@media (max-width: 1400px) {
    .cs_details_content h2 {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .cs_details_content h2 {
        font-size: 30px;
    }
}

.cs_details_content p {
    margin-bottom: 34px;
}

.cs_details_content>*:last-child {
    margin-bottom: 0;
}

.cs_details_content a {
    color: var(--color-primary);
}

.cs_details_content a:hover {
    text-decoration: underline;
}

.cs_details_content .cs_list.cs_style_2 h3 {
    margin-bottom: 10px;
}

.cs_details_content ul {
    list-style: disc;
    margin-bottom: 34px;
}

.cs_details_content ul li:not(:last-child) {
    margin-bottom: 5px;
}

.cs_details_content .cs_details_content_title {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.cs_tab {
    display: none;
}

.cs_tab.active {
    display: block;
}

.cs_scrollup {
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
    -webkit-box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
    box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
    cursor: pointer;
}

.cs_scrollup::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
    animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
}

.cs_scrollup.cs_scrollup_show {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cs_scrollup svg {
    position: relative;
    z-index: 2;
    color: var(--dark-blue-color);
}

@-webkit-keyframes scale_full {
    50% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}

@keyframes scale_full {
    50% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}

.cs_cursor_lg,
.cs_cursor_sm {
    position: fixed;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
}

@media (max-width: 991px) {
    .cs_cursor_lg,
    .cs_cursor_sm {
        display: none !important;
    }
}

.cs_cursor_lg {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    opacity: 0.2;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.cs_cursor_sm {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}


/* Spacing */

.pl--0 {
    padding-left: 0 !important;
}

.pr--0 {
    padding-right: 0 !important;
}

.pt--0 {
    padding-top: 0 !important;
}

.pb--0 {
    padding-bottom: 0 !important;
}

.mr--0 {
    margin-right: 0 !important;
}

.ml--0 {
    margin-left: 0 !important;
}

.mt--0 {
    margin-top: 0 !important;
}

.mb--0 {
    margin-bottom: 0 !important;
}

.mt--30 {
    margin-top: 30px;
}

.mt--15 {
    margin-top: 15px;
}

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

.ptb--5 {
    padding: 5px 0 !important;
}

.plr--5 {
    padding: 0 5px !important;
}

.pt--5 {
    padding-top: 5px !important;
}

.pb--5 {
    padding-bottom: 5px !important;
}

.pl--5 {
    padding-left: 5px !important;
}

.pr--5 {
    padding-right: 5px !important;
}

.mt--5 {
    margin-top: 5px !important;
}

.mb--5 {
    margin-bottom: 5px !important;
}

.mr--5 {
    margin-right: 5px !important;
}

.ml--5 {
    margin-left: 5px !important;
}

.ptb--10 {
    padding: 10px 0 !important;
}

.plr--10 {
    padding: 0 10px !important;
}

.pt--10 {
    padding-top: 10px !important;
}

.pb--10 {
    padding-bottom: 10px !important;
}

.pl--10 {
    padding-left: 10px !important;
}

.pr--10 {
    padding-right: 10px !important;
}

.mt--10 {
    margin-top: 10px !important;
}

.mb--10 {
    margin-bottom: 10px !important;
}

.mr--10 {
    margin-right: 10px !important;
}

.ml--10 {
    margin-left: 10px !important;
}

.ptb--15 {
    padding: 15px 0 !important;
}

.plr--15 {
    padding: 0 15px !important;
}

.pt--15 {
    padding-top: 15px !important;
}

.pb--15 {
    padding-bottom: 15px !important;
}

.pl--15 {
    padding-left: 15px !important;
}

.pr--15 {
    padding-right: 15px !important;
}

.mt--15 {
    margin-top: 15px !important;
}

.mb--15 {
    margin-bottom: 15px !important;
}

.mr--15 {
    margin-right: 15px !important;
}

.ml--15 {
    margin-left: 15px !important;
}

.ptb--20 {
    padding: 20px 0 !important;
}

.plr--20 {
    padding: 0 20px !important;
}

.pt--20 {
    padding-top: 20px !important;
}

.pb--20 {
    padding-bottom: 20px !important;
}

.pl--20 {
    padding-left: 20px !important;
}

.pr--20 {
    padding-right: 20px !important;
}

.mt--20 {
    margin-top: 20px !important;
}

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

.mr--20 {
    margin-right: 20px !important;
}

.ml--20 {
    margin-left: 20px !important;
}

.ptb--25 {
    padding: 25px 0 !important;
}

.plr--25 {
    padding: 0 25px !important;
}

.pt--25 {
    padding-top: 25px !important;
}

.pb--25 {
    padding-bottom: 25px !important;
}

.pl--25 {
    padding-left: 25px !important;
}

.pr--25 {
    padding-right: 25px !important;
}

.mt--25 {
    margin-top: 25px !important;
}

.mb--25 {
    margin-bottom: 25px !important;
}

.mr--25 {
    margin-right: 25px !important;
}

.ml--25 {
    margin-left: 25px !important;
}

.ptb--30 {
    padding: 30px 0 !important;
}

.plr--30 {
    padding: 0 30px !important;
}

.pt--30 {
    padding-top: 30px !important;
}

.pb--30 {
    padding-bottom: 30px !important;
}

.pl--30 {
    padding-left: 30px !important;
}

.pr--30 {
    padding-right: 30px !important;
}

.mt--30 {
    margin-top: 30px !important;
}

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

.mr--30 {
    margin-right: 30px !important;
}

.ml--30 {
    margin-left: 30px !important;
}

.ptb--35 {
    padding: 35px 0 !important;
}

.plr--35 {
    padding: 0 35px !important;
}

.pt--35 {
    padding-top: 35px !important;
}

.pb--35 {
    padding-bottom: 35px !important;
}

.pl--35 {
    padding-left: 35px !important;
}

.pr--35 {
    padding-right: 35px !important;
}

.mt--35 {
    margin-top: 35px !important;
}

.mb--35 {
    margin-bottom: 35px !important;
}

.mr--35 {
    margin-right: 35px !important;
}

.ml--35 {
    margin-left: 35px !important;
}

.ptb--40 {
    padding: 40px 0 !important;
}

.plr--40 {
    padding: 0 40px !important;
}

.pt--40 {
    padding-top: 40px !important;
}

.pb--40 {
    padding-bottom: 40px !important;
}

.pl--40 {
    padding-left: 40px !important;
}

.pr--40 {
    padding-right: 40px !important;
}

.mt--40 {
    margin-top: 40px !important;
}

.mb--40 {
    margin-bottom: 40px !important;
}

.mr--40 {
    margin-right: 40px !important;
}

.ml--40 {
    margin-left: 40px !important;
}

.ptb--45 {
    padding: 45px 0 !important;
}

.plr--45 {
    padding: 0 45px !important;
}

.pt--45 {
    padding-top: 45px !important;
}

.pb--45 {
    padding-bottom: 45px !important;
}

.pl--45 {
    padding-left: 45px !important;
}

.pr--45 {
    padding-right: 45px !important;
}

.mt--45 {
    margin-top: 45px !important;
}

.mb--45 {
    margin-bottom: 45px !important;
}

.mr--45 {
    margin-right: 45px !important;
}

.ml--45 {
    margin-left: 45px !important;
}

.ptb--50 {
    padding: 50px 0 !important;
}

.plr--50 {
    padding: 0 50px !important;
}

.pt--50 {
    padding-top: 50px !important;
}

.pb--50 {
    padding-bottom: 50px !important;
}

.pl--50 {
    padding-left: 50px !important;
}

.pr--50 {
    padding-right: 50px !important;
}

.mt--50 {
    margin-top: 50px !important;
}

.mb--50 {
    margin-bottom: 50px !important;
}

.mr--50 {
    margin-right: 50px !important;
}

.ml--50 {
    margin-left: 50px !important;
}

.ptb--55 {
    padding: 55px 0 !important;
}

.plr--55 {
    padding: 0 55px !important;
}

.pt--55 {
    padding-top: 55px !important;
}

.pb--55 {
    padding-bottom: 55px !important;
}

.pl--55 {
    padding-left: 55px !important;
}

.pr--55 {
    padding-right: 55px !important;
}

.mt--55 {
    margin-top: 55px !important;
}

.mb--55 {
    margin-bottom: 55px !important;
}

.mr--55 {
    margin-right: 55px !important;
}

.ml--55 {
    margin-left: 55px !important;
}

.ptb--60 {
    padding: 60px 0 !important;
}

.plr--60 {
    padding: 0 60px !important;
}

.pt--60 {
    padding-top: 60px !important;
}

.pb--60 {
    padding-bottom: 60px !important;
}

.pl--60 {
    padding-left: 60px !important;
}

.pr--60 {
    padding-right: 60px !important;
}

.mt--60 {
    margin-top: 60px !important;
}

.mb--60 {
    margin-bottom: 60px !important;
}

.mr--60 {
    margin-right: 60px !important;
}

.ml--60 {
    margin-left: 60px !important;
}

.ptb--65 {
    padding: 65px 0 !important;
}

.plr--65 {
    padding: 0 65px !important;
}

.pt--65 {
    padding-top: 65px !important;
}

.pb--65 {
    padding-bottom: 65px !important;
}

.pl--65 {
    padding-left: 65px !important;
}

.pr--65 {
    padding-right: 65px !important;
}

.mt--65 {
    margin-top: 65px !important;
}

.mb--65 {
    margin-bottom: 65px !important;
}

.mr--65 {
    margin-right: 65px !important;
}

.ml--65 {
    margin-left: 65px !important;
}

.ptb--70 {
    padding: 70px 0 !important;
}

.plr--70 {
    padding: 0 70px !important;
}

.pt--70 {
    padding-top: 70px !important;
}

.pb--70 {
    padding-bottom: 70px !important;
}

.pl--70 {
    padding-left: 70px !important;
}

.pr--70 {
    padding-right: 70px !important;
}

.mt--70 {
    margin-top: 70px !important;
}

.mb--70 {
    margin-bottom: 70px !important;
}

.mr--70 {
    margin-right: 70px !important;
}

.ml--70 {
    margin-left: 70px !important;
}

.ptb--75 {
    padding: 75px 0 !important;
}

.plr--75 {
    padding: 0 75px !important;
}

.pt--75 {
    padding-top: 75px !important;
}

.pb--75 {
    padding-bottom: 75px !important;
}

.pl--75 {
    padding-left: 75px !important;
}

.pr--75 {
    padding-right: 75px !important;
}

.mt--75 {
    margin-top: 75px !important;
}

.mb--75 {
    margin-bottom: 75px !important;
}

.mr--75 {
    margin-right: 75px !important;
}

.ml--75 {
    margin-left: 75px !important;
}

.ptb--80 {
    padding: 80px 0 !important;
}

.plr--80 {
    padding: 0 80px !important;
}

.pt--80 {
    padding-top: 80px !important;
}

.pb--80 {
    padding-bottom: 80px !important;
}

.pl--80 {
    padding-left: 80px !important;
}

.pr--80 {
    padding-right: 80px !important;
}

.mt--80 {
    margin-top: 80px !important;
}

.mb--80 {
    margin-bottom: 80px !important;
}

.mr--80 {
    margin-right: 80px !important;
}

.ml--80 {
    margin-left: 80px !important;
}

.ptb--85 {
    padding: 85px 0 !important;
}

.plr--85 {
    padding: 0 85px !important;
}

.pt--85 {
    padding-top: 85px !important;
}

.pb--85 {
    padding-bottom: 85px !important;
}

.pl--85 {
    padding-left: 85px !important;
}

.pr--85 {
    padding-right: 85px !important;
}

.mt--85 {
    margin-top: 85px !important;
}

.mb--85 {
    margin-bottom: 85px !important;
}

.mr--85 {
    margin-right: 85px !important;
}

.ml--85 {
    margin-left: 85px !important;
}

.ptb--90 {
    padding: 90px 0 !important;
}

.plr--90 {
    padding: 0 90px !important;
}

.pt--90 {
    padding-top: 90px !important;
}

.pb--90 {
    padding-bottom: 90px !important;
}

.pl--90 {
    padding-left: 90px !important;
}

.pr--90 {
    padding-right: 90px !important;
}

.mt--90 {
    margin-top: 90px !important;
}

.mb--90 {
    margin-bottom: 90px !important;
}

.mr--90 {
    margin-right: 90px !important;
}

.ml--90 {
    margin-left: 90px !important;
}

.ptb--95 {
    padding: 95px 0 !important;
}

.plr--95 {
    padding: 0 95px !important;
}

.pt--95 {
    padding-top: 95px !important;
}

.pb--95 {
    padding-bottom: 95px !important;
}

.pl--95 {
    padding-left: 95px !important;
}

.pr--95 {
    padding-right: 95px !important;
}

.mt--95 {
    margin-top: 95px !important;
}

.mb--95 {
    margin-bottom: 95px !important;
}

.mr--95 {
    margin-right: 95px !important;
}

.ml--95 {
    margin-left: 95px !important;
}

.ptb--100 {
    padding: 100px 0 !important;
}

.plr--100 {
    padding: 0 100px !important;
}

.pt--100 {
    padding-top: 100px !important;
}

.pb--100 {
    padding-bottom: 100px !important;
}

.pl--100 {
    padding-left: 100px !important;
}

.pr--100 {
    padding-right: 100px !important;
}

.mt--100 {
    margin-top: 100px !important;
}

.mb--100 {
    margin-bottom: 100px !important;
}

.mr--100 {
    margin-right: 100px !important;
}

.ml--100 {
    margin-left: 100px !important;
}

.ptb--105 {
    padding: 105px 0 !important;
}

.plr--105 {
    padding: 0 105px !important;
}

.pt--105 {
    padding-top: 105px !important;
}

.pb--105 {
    padding-bottom: 105px !important;
}

.pl--105 {
    padding-left: 105px !important;
}

.pr--105 {
    padding-right: 105px !important;
}

.mt--105 {
    margin-top: 105px !important;
}

.mb--105 {
    margin-bottom: 105px !important;
}

.mr--105 {
    margin-right: 105px !important;
}

.ml--105 {
    margin-left: 105px !important;
}

.ptb--110 {
    padding: 110px 0 !important;
}

.plr--110 {
    padding: 0 110px !important;
}

.pt--110 {
    padding-top: 110px !important;
}

.pb--110 {
    padding-bottom: 110px !important;
}

.pl--110 {
    padding-left: 110px !important;
}

.pr--110 {
    padding-right: 110px !important;
}

.mt--110 {
    margin-top: 110px !important;
}

.mb--110 {
    margin-bottom: 110px !important;
}

.mr--110 {
    margin-right: 110px !important;
}

.ml--110 {
    margin-left: 110px !important;
}

.ptb--115 {
    padding: 115px 0 !important;
}

.plr--115 {
    padding: 0 115px !important;
}

.pt--115 {
    padding-top: 115px !important;
}

.pb--115 {
    padding-bottom: 115px !important;
}

.pl--115 {
    padding-left: 115px !important;
}

.pr--115 {
    padding-right: 115px !important;
}

.mt--115 {
    margin-top: 115px !important;
}

.mb--115 {
    margin-bottom: 115px !important;
}

.mr--115 {
    margin-right: 115px !important;
}

.ml--115 {
    margin-left: 115px !important;
}

.ptb--120 {
    padding: 120px 0 !important;
}

.plr--120 {
    padding: 0 120px !important;
}

.pt--120 {
    padding-top: 120px !important;
}

.pb--120 {
    padding-bottom: 120px !important;
}

.pl--120 {
    padding-left: 120px !important;
}

.pr--120 {
    padding-right: 120px !important;
}

.mt--120 {
    margin-top: 120px !important;
}

.mb--120 {
    margin-bottom: 120px !important;
}

.mr--120 {
    margin-right: 120px !important;
}

.ml--120 {
    margin-left: 120px !important;
}

.ptb--125 {
    padding: 125px 0 !important;
}

.plr--125 {
    padding: 0 125px !important;
}

.pt--125 {
    padding-top: 125px !important;
}

.pb--125 {
    padding-bottom: 125px !important;
}

.pl--125 {
    padding-left: 125px !important;
}

.pr--125 {
    padding-right: 125px !important;
}

.mt--125 {
    margin-top: 125px !important;
}

.mb--125 {
    margin-bottom: 125px !important;
}

.mr--125 {
    margin-right: 125px !important;
}

.ml--125 {
    margin-left: 125px !important;
}

.ptb--130 {
    padding: 130px 0 !important;
}

.plr--130 {
    padding: 0 130px !important;
}

.pt--130 {
    padding-top: 130px !important;
}

.pb--130 {
    padding-bottom: 130px !important;
}

.pl--130 {
    padding-left: 130px !important;
}

.pr--130 {
    padding-right: 130px !important;
}

.mt--130 {
    margin-top: 130px !important;
}

.mb--130 {
    margin-bottom: 130px !important;
}

.mr--130 {
    margin-right: 130px !important;
}

.ml--130 {
    margin-left: 130px !important;
}

.ptb--135 {
    padding: 135px 0 !important;
}

.plr--135 {
    padding: 0 135px !important;
}

.pt--135 {
    padding-top: 135px !important;
}

.pb--135 {
    padding-bottom: 135px !important;
}

.pl--135 {
    padding-left: 135px !important;
}

.pr--135 {
    padding-right: 135px !important;
}

.mt--135 {
    margin-top: 135px !important;
}

.mb--135 {
    margin-bottom: 135px !important;
}

.mr--135 {
    margin-right: 135px !important;
}

.ml--135 {
    margin-left: 135px !important;
}

.ptb--140 {
    padding: 140px 0 !important;
}

.plr--140 {
    padding: 0 140px !important;
}

.pt--140 {
    padding-top: 140px !important;
}

.pb--140 {
    padding-bottom: 140px !important;
}

.pl--140 {
    padding-left: 140px !important;
}

.pr--140 {
    padding-right: 140px !important;
}

.mt--140 {
    margin-top: 140px !important;
}

.mb--140 {
    margin-bottom: 140px !important;
}

.mr--140 {
    margin-right: 140px !important;
}

.ml--140 {
    margin-left: 140px !important;
}

.ptb--145 {
    padding: 145px 0 !important;
}

.plr--145 {
    padding: 0 145px !important;
}

.pt--145 {
    padding-top: 145px !important;
}

.pb--145 {
    padding-bottom: 145px !important;
}

.pl--145 {
    padding-left: 145px !important;
}

.pr--145 {
    padding-right: 145px !important;
}

.mt--145 {
    margin-top: 145px !important;
}

.mb--145 {
    margin-bottom: 145px !important;
}

.mr--145 {
    margin-right: 145px !important;
}

.ml--145 {
    margin-left: 145px !important;
}

.ptb--150 {
    padding: 150px 0 !important;
}

.plr--150 {
    padding: 0 150px !important;
}

.pt--150 {
    padding-top: 150px !important;
}

.pb--150 {
    padding-bottom: 150px !important;
}

.pl--150 {
    padding-left: 150px !important;
}

.pr--150 {
    padding-right: 150px !important;
}

.mt--150 {
    margin-top: 150px !important;
}

.mb--150 {
    margin-bottom: 150px !important;
}

.mr--150 {
    margin-right: 150px !important;
}

.ml--150 {
    margin-left: 150px !important;
}

.ptb--155 {
    padding: 155px 0 !important;
}

.plr--155 {
    padding: 0 155px !important;
}

.pt--155 {
    padding-top: 155px !important;
}

.pb--155 {
    padding-bottom: 155px !important;
}

.pl--155 {
    padding-left: 155px !important;
}

.pr--155 {
    padding-right: 155px !important;
}

.mt--155 {
    margin-top: 155px !important;
}

.mb--155 {
    margin-bottom: 155px !important;
}

.mr--155 {
    margin-right: 155px !important;
}

.ml--155 {
    margin-left: 155px !important;
}

.ptb--160 {
    padding: 160px 0 !important;
}

.plr--160 {
    padding: 0 160px !important;
}

.pt--160 {
    padding-top: 160px !important;
}

.pb--160 {
    padding-bottom: 160px !important;
}

.pl--160 {
    padding-left: 160px !important;
}

.pr--160 {
    padding-right: 160px !important;
}

.mt--160 {
    margin-top: 160px !important;
}

.mb--160 {
    margin-bottom: 160px !important;
}

.mr--160 {
    margin-right: 160px !important;
}

.ml--160 {
    margin-left: 160px !important;
}

.ptb--165 {
    padding: 165px 0 !important;
}

.plr--165 {
    padding: 0 165px !important;
}

.pt--165 {
    padding-top: 165px !important;
}

.pb--165 {
    padding-bottom: 165px !important;
}

.pl--165 {
    padding-left: 165px !important;
}

.pr--165 {
    padding-right: 165px !important;
}

.mt--165 {
    margin-top: 165px !important;
}

.mb--165 {
    margin-bottom: 165px !important;
}

.mr--165 {
    margin-right: 165px !important;
}

.ml--165 {
    margin-left: 165px !important;
}

.ptb--170 {
    padding: 170px 0 !important;
}

.plr--170 {
    padding: 0 170px !important;
}

.pt--170 {
    padding-top: 170px !important;
}

.pb--170 {
    padding-bottom: 170px !important;
}

.pl--170 {
    padding-left: 170px !important;
}

.pr--170 {
    padding-right: 170px !important;
}

.mt--170 {
    margin-top: 170px !important;
}

.mb--170 {
    margin-bottom: 170px !important;
}

.mr--170 {
    margin-right: 170px !important;
}

.ml--170 {
    margin-left: 170px !important;
}

.ptb--175 {
    padding: 175px 0 !important;
}

.plr--175 {
    padding: 0 175px !important;
}

.pt--175 {
    padding-top: 175px !important;
}

.pb--175 {
    padding-bottom: 175px !important;
}

.pl--175 {
    padding-left: 175px !important;
}

.pr--175 {
    padding-right: 175px !important;
}

.mt--175 {
    margin-top: 175px !important;
}

.mb--175 {
    margin-bottom: 175px !important;
}

.mr--175 {
    margin-right: 175px !important;
}

.ml--175 {
    margin-left: 175px !important;
}

.ptb--180 {
    padding: 180px 0 !important;
}

.plr--180 {
    padding: 0 180px !important;
}

.pt--180 {
    padding-top: 180px !important;
}

.pb--180 {
    padding-bottom: 180px !important;
}

.pl--180 {
    padding-left: 180px !important;
}

.pr--180 {
    padding-right: 180px !important;
}

.mt--180 {
    margin-top: 180px !important;
}

.mb--180 {
    margin-bottom: 180px !important;
}

.mr--180 {
    margin-right: 180px !important;
}

.ml--180 {
    margin-left: 180px !important;
}

.ptb--185 {
    padding: 185px 0 !important;
}

.plr--185 {
    padding: 0 185px !important;
}

.pt--185 {
    padding-top: 185px !important;
}

.pb--185 {
    padding-bottom: 185px !important;
}

.pl--185 {
    padding-left: 185px !important;
}

.pr--185 {
    padding-right: 185px !important;
}

.mt--185 {
    margin-top: 185px !important;
}

.mb--185 {
    margin-bottom: 185px !important;
}

.mr--185 {
    margin-right: 185px !important;
}

.ml--185 {
    margin-left: 185px !important;
}

.ptb--190 {
    padding: 190px 0 !important;
}

.plr--190 {
    padding: 0 190px !important;
}

.pt--190 {
    padding-top: 190px !important;
}

.pb--190 {
    padding-bottom: 190px !important;
}

.pl--190 {
    padding-left: 190px !important;
}

.pr--190 {
    padding-right: 190px !important;
}

.mt--190 {
    margin-top: 190px !important;
}

.mb--190 {
    margin-bottom: 190px !important;
}

.mr--190 {
    margin-right: 190px !important;
}

.ml--190 {
    margin-left: 190px !important;
}

.ptb--195 {
    padding: 195px 0 !important;
}

.plr--195 {
    padding: 0 195px !important;
}

.pt--195 {
    padding-top: 195px !important;
}

.pb--195 {
    padding-bottom: 195px !important;
}

.pl--195 {
    padding-left: 195px !important;
}

.pr--195 {
    padding-right: 195px !important;
}

.mt--195 {
    margin-top: 195px !important;
}

.mb--195 {
    margin-bottom: 195px !important;
}

.mr--195 {
    margin-right: 195px !important;
}

.ml--195 {
    margin-left: 195px !important;
}

.ptb--200 {
    padding: 200px 0 !important;
}

.plr--200 {
    padding: 0 200px !important;
}

.pt--200 {
    padding-top: 200px !important;
}

.pb--200 {
    padding-bottom: 200px !important;
}

.pl--200 {
    padding-left: 200px !important;
}

.pr--200 {
    padding-right: 200px !important;
}

.mt--200 {
    margin-top: 200px !important;
}

.mb--200 {
    margin-bottom: 200px !important;
}

.mr--200 {
    margin-right: 200px !important;
}

.ml--200 {
    margin-left: 200px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .ptb_lp--5 {
        padding: 5px 0;
    }
    .plr_lp--5 {
        padding: 0 5px;
    }
    .pt_lp--5 {
        padding-top: 5px;
    }
    .pb_lp--5 {
        padding-bottom: 5px;
    }
    .pl_lp--5 {
        padding-left: 5px;
    }
    .pr_lp--5 {
        padding-right: 5px;
    }
    .mt_lp--5 {
        margin-top: 5px;
    }
    .mb_lp--5 {
        margin-bottom: 5px;
    }
    .ptb_lp--10 {
        padding: 10px 0;
    }
    .plr_lp--10 {
        padding: 0 10px;
    }
    .pt_lp--10 {
        padding-top: 10px;
    }
    .pb_lp--10 {
        padding-bottom: 10px;
    }
    .pl_lp--10 {
        padding-left: 10px;
    }
    .pr_lp--10 {
        padding-right: 10px;
    }
    .mt_lp--10 {
        margin-top: 10px;
    }
    .mb_lp--10 {
        margin-bottom: 10px;
    }
    .ptb_lp--15 {
        padding: 15px 0;
    }
    .plr_lp--15 {
        padding: 0 15px;
    }
    .pt_lp--15 {
        padding-top: 15px;
    }
    .pb_lp--15 {
        padding-bottom: 15px;
    }
    .pl_lp--15 {
        padding-left: 15px;
    }
    .pr_lp--15 {
        padding-right: 15px;
    }
    .mt_lp--15 {
        margin-top: 15px;
    }
    .mb_lp--15 {
        margin-bottom: 15px;
    }
    .ptb_lp--20 {
        padding: 20px 0;
    }
    .plr_lp--20 {
        padding: 0 20px;
    }
    .pt_lp--20 {
        padding-top: 20px;
    }
    .pb_lp--20 {
        padding-bottom: 20px;
    }
    .pl_lp--20 {
        padding-left: 20px;
    }
    .pr_lp--20 {
        padding-right: 20px;
    }
    .mt_lp--20 {
        margin-top: 20px;
    }
    .mb_lp--20 {
        margin-bottom: 20px;
    }
    .ptb_lp--25 {
        padding: 25px 0;
    }
    .plr_lp--25 {
        padding: 0 25px;
    }
    .pt_lp--25 {
        padding-top: 25px;
    }
    .pb_lp--25 {
        padding-bottom: 25px;
    }
    .pl_lp--25 {
        padding-left: 25px;
    }
    .pr_lp--25 {
        padding-right: 25px;
    }
    .mt_lp--25 {
        margin-top: 25px;
    }
    .mb_lp--25 {
        margin-bottom: 25px;
    }
    .ptb_lp--30 {
        padding: 30px 0;
    }
    .plr_lp--30 {
        padding: 0 30px;
    }
    .pt_lp--30 {
        padding-top: 30px;
    }
    .pb_lp--30 {
        padding-bottom: 30px;
    }
    .pl_lp--30 {
        padding-left: 30px;
    }
    .pr_lp--30 {
        padding-right: 30px;
    }
    .mt_lp--30 {
        margin-top: 30px;
    }
    .mb_lp--30 {
        margin-bottom: 30px;
    }
    .ptb_lp--35 {
        padding: 35px 0;
    }
    .plr_lp--35 {
        padding: 0 35px;
    }
    .pt_lp--35 {
        padding-top: 35px;
    }
    .pb_lp--35 {
        padding-bottom: 35px;
    }
    .pl_lp--35 {
        padding-left: 35px;
    }
    .pr_lp--35 {
        padding-right: 35px;
    }
    .mt_lp--35 {
        margin-top: 35px;
    }
    .mb_lp--35 {
        margin-bottom: 35px;
    }
    .ptb_lp--40 {
        padding: 40px 0;
    }
    .plr_lp--40 {
        padding: 0 40px;
    }
    .pt_lp--40 {
        padding-top: 40px;
    }
    .pb_lp--40 {
        padding-bottom: 40px;
    }
    .pl_lp--40 {
        padding-left: 40px;
    }
    .pr_lp--40 {
        padding-right: 40px;
    }
    .mt_lp--40 {
        margin-top: 40px;
    }
    .mb_lp--40 {
        margin-bottom: 40px;
    }
    .ptb_lp--45 {
        padding: 45px 0;
    }
    .plr_lp--45 {
        padding: 0 45px;
    }
    .pt_lp--45 {
        padding-top: 45px;
    }
    .pb_lp--45 {
        padding-bottom: 45px;
    }
    .pl_lp--45 {
        padding-left: 45px;
    }
    .pr_lp--45 {
        padding-right: 45px;
    }
    .mt_lp--45 {
        margin-top: 45px;
    }
    .mb_lp--45 {
        margin-bottom: 45px;
    }
    .ptb_lp--50 {
        padding: 50px 0;
    }
    .plr_lp--50 {
        padding: 0 50px;
    }
    .pt_lp--50 {
        padding-top: 50px;
    }
    .pb_lp--50 {
        padding-bottom: 50px;
    }
    .pl_lp--50 {
        padding-left: 50px;
    }
    .pr_lp--50 {
        padding-right: 50px;
    }
    .mt_lp--50 {
        margin-top: 50px;
    }
    .mb_lp--50 {
        margin-bottom: 50px;
    }
    .ptb_lp--55 {
        padding: 55px 0;
    }
    .plr_lp--55 {
        padding: 0 55px;
    }
    .pt_lp--55 {
        padding-top: 55px;
    }
    .pb_lp--55 {
        padding-bottom: 55px;
    }
    .pl_lp--55 {
        padding-left: 55px;
    }
    .pr_lp--55 {
        padding-right: 55px;
    }
    .mt_lp--55 {
        margin-top: 55px;
    }
    .mb_lp--55 {
        margin-bottom: 55px;
    }
    .ptb_lp--60 {
        padding: 60px 0;
    }
    .plr_lp--60 {
        padding: 0 60px;
    }
    .pt_lp--60 {
        padding-top: 60px;
    }
    .pb_lp--60 {
        padding-bottom: 60px;
    }
    .pl_lp--60 {
        padding-left: 60px;
    }
    .pr_lp--60 {
        padding-right: 60px;
    }
    .mt_lp--60 {
        margin-top: 60px;
    }
    .mb_lp--60 {
        margin-bottom: 60px;
    }
    .ptb_lp--65 {
        padding: 65px 0;
    }
    .plr_lp--65 {
        padding: 0 65px;
    }
    .pt_lp--65 {
        padding-top: 65px;
    }
    .pb_lp--65 {
        padding-bottom: 65px;
    }
    .pl_lp--65 {
        padding-left: 65px;
    }
    .pr_lp--65 {
        padding-right: 65px;
    }
    .mt_lp--65 {
        margin-top: 65px;
    }
    .mb_lp--65 {
        margin-bottom: 65px;
    }
    .ptb_lp--70 {
        padding: 70px 0;
    }
    .plr_lp--70 {
        padding: 0 70px;
    }
    .pt_lp--70 {
        padding-top: 70px;
    }
    .pb_lp--70 {
        padding-bottom: 70px;
    }
    .pl_lp--70 {
        padding-left: 70px;
    }
    .pr_lp--70 {
        padding-right: 70px;
    }
    .mt_lp--70 {
        margin-top: 70px;
    }
    .mb_lp--70 {
        margin-bottom: 70px;
    }
    .ptb_lp--75 {
        padding: 75px 0;
    }
    .plr_lp--75 {
        padding: 0 75px;
    }
    .pt_lp--75 {
        padding-top: 75px;
    }
    .pb_lp--75 {
        padding-bottom: 75px;
    }
    .pl_lp--75 {
        padding-left: 75px;
    }
    .pr_lp--75 {
        padding-right: 75px;
    }
    .mt_lp--75 {
        margin-top: 75px;
    }
    .mb_lp--75 {
        margin-bottom: 75px;
    }
    .ptb_lp--80 {
        padding: 80px 0;
    }
    .plr_lp--80 {
        padding: 0 80px;
    }
    .pt_lp--80 {
        padding-top: 80px;
    }
    .pb_lp--80 {
        padding-bottom: 80px;
    }
    .pl_lp--80 {
        padding-left: 80px;
    }
    .pr_lp--80 {
        padding-right: 80px;
    }
    .mt_lp--80 {
        margin-top: 80px;
    }
    .mb_lp--80 {
        margin-bottom: 80px;
    }
    .ptb_lp--85 {
        padding: 85px 0;
    }
    .plr_lp--85 {
        padding: 0 85px;
    }
    .pt_lp--85 {
        padding-top: 85px;
    }
    .pb_lp--85 {
        padding-bottom: 85px;
    }
    .pl_lp--85 {
        padding-left: 85px;
    }
    .pr_lp--85 {
        padding-right: 85px;
    }
    .mt_lp--85 {
        margin-top: 85px;
    }
    .mb_lp--85 {
        margin-bottom: 85px;
    }
    .ptb_lp--90 {
        padding: 90px 0;
    }
    .plr_lp--90 {
        padding: 0 90px;
    }
    .pt_lp--90 {
        padding-top: 90px;
    }
    .pb_lp--90 {
        padding-bottom: 90px;
    }
    .pl_lp--90 {
        padding-left: 90px;
    }
    .pr_lp--90 {
        padding-right: 90px;
    }
    .mt_lp--90 {
        margin-top: 90px;
    }
    .mb_lp--90 {
        margin-bottom: 90px;
    }
    .ptb_lp--95 {
        padding: 95px 0;
    }
    .plr_lp--95 {
        padding: 0 95px;
    }
    .pt_lp--95 {
        padding-top: 95px;
    }
    .pb_lp--95 {
        padding-bottom: 95px;
    }
    .pl_lp--95 {
        padding-left: 95px;
    }
    .pr_lp--95 {
        padding-right: 95px;
    }
    .mt_lp--95 {
        margin-top: 95px;
    }
    .mb_lp--95 {
        margin-bottom: 95px;
    }
    .ptb_lp--100 {
        padding: 100px 0;
    }
    .plr_lp--100 {
        padding: 0 100px;
    }
    .pt_lp--100 {
        padding-top: 100px;
    }
    .pb_lp--100 {
        padding-bottom: 100px;
    }
    .pl_lp--100 {
        padding-left: 100px;
    }
    .pr_lp--100 {
        padding-right: 100px;
    }
    .mt_lp--100 {
        margin-top: 100px;
    }
    .mb_lp--100 {
        margin-bottom: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ptb_lg--5 {
        padding: 5px 0 !important;
    }
    .plr_lg--5 {
        padding: 0 5px !important;
    }
    .pt_lg--5 {
        padding-top: 5px !important;
    }
    .pb_lg--5 {
        padding-bottom: 5px !important;
    }
    .pl_lg--5 {
        padding-left: 5px !important;
    }
    .pr_lg--5 {
        padding-right: 5px !important;
    }
    .mt_lg--5 {
        margin-top: 5px !important;
    }
    .mb_lg--5 {
        margin-bottom: 5px !important;
    }
    .ml_lg--5 {
        margin-left: 5px !important;
    }
    .ptb_lg--10 {
        padding: 10px 0 !important;
    }
    .plr_lg--10 {
        padding: 0 10px !important;
    }
    .pt_lg--10 {
        padding-top: 10px !important;
    }
    .pb_lg--10 {
        padding-bottom: 10px !important;
    }
    .pl_lg--10 {
        padding-left: 10px !important;
    }
    .pr_lg--10 {
        padding-right: 10px !important;
    }
    .mt_lg--10 {
        margin-top: 10px !important;
    }
    .mb_lg--10 {
        margin-bottom: 10px !important;
    }
    .ml_lg--10 {
        margin-left: 10px !important;
    }
    .ptb_lg--15 {
        padding: 15px 0 !important;
    }
    .plr_lg--15 {
        padding: 0 15px !important;
    }
    .pt_lg--15 {
        padding-top: 15px !important;
    }
    .pb_lg--15 {
        padding-bottom: 15px !important;
    }
    .pl_lg--15 {
        padding-left: 15px !important;
    }
    .pr_lg--15 {
        padding-right: 15px !important;
    }
    .mt_lg--15 {
        margin-top: 15px !important;
    }
    .mb_lg--15 {
        margin-bottom: 15px !important;
    }
    .ml_lg--15 {
        margin-left: 15px !important;
    }
    .ptb_lg--20 {
        padding: 20px 0 !important;
    }
    .plr_lg--20 {
        padding: 0 20px !important;
    }
    .pt_lg--20 {
        padding-top: 20px !important;
    }
    .pb_lg--20 {
        padding-bottom: 20px !important;
    }
    .pl_lg--20 {
        padding-left: 20px !important;
    }
    .pr_lg--20 {
        padding-right: 20px !important;
    }
    .mt_lg--20 {
        margin-top: 20px !important;
    }
    .mb_lg--20 {
        margin-bottom: 20px !important;
    }
    .ml_lg--20 {
        margin-left: 20px !important;
    }
    .ptb_lg--25 {
        padding: 25px 0 !important;
    }
    .plr_lg--25 {
        padding: 0 25px !important;
    }
    .pt_lg--25 {
        padding-top: 25px !important;
    }
    .pb_lg--25 {
        padding-bottom: 25px !important;
    }
    .pl_lg--25 {
        padding-left: 25px !important;
    }
    .pr_lg--25 {
        padding-right: 25px !important;
    }
    .mt_lg--25 {
        margin-top: 25px !important;
    }
    .mb_lg--25 {
        margin-bottom: 25px !important;
    }
    .ml_lg--25 {
        margin-left: 25px !important;
    }
    .ptb_lg--30 {
        padding: 30px 0 !important;
    }
    .plr_lg--30 {
        padding: 0 30px !important;
    }
    .pt_lg--30 {
        padding-top: 30px !important;
    }
    .pb_lg--30 {
        padding-bottom: 30px !important;
    }
    .pl_lg--30 {
        padding-left: 30px !important;
    }
    .pr_lg--30 {
        padding-right: 30px !important;
    }
    .mt_lg--30 {
        margin-top: 30px !important;
    }
    .mb_lg--30 {
        margin-bottom: 30px !important;
    }
    .ml_lg--30 {
        margin-left: 30px !important;
    }
    .ptb_lg--35 {
        padding: 35px 0 !important;
    }
    .plr_lg--35 {
        padding: 0 35px !important;
    }
    .pt_lg--35 {
        padding-top: 35px !important;
    }
    .pb_lg--35 {
        padding-bottom: 35px !important;
    }
    .pl_lg--35 {
        padding-left: 35px !important;
    }
    .pr_lg--35 {
        padding-right: 35px !important;
    }
    .mt_lg--35 {
        margin-top: 35px !important;
    }
    .mb_lg--35 {
        margin-bottom: 35px !important;
    }
    .ml_lg--35 {
        margin-left: 35px !important;
    }
    .ptb_lg--40 {
        padding: 40px 0 !important;
    }
    .plr_lg--40 {
        padding: 0 40px !important;
    }
    .pt_lg--40 {
        padding-top: 40px !important;
    }
    .pb_lg--40 {
        padding-bottom: 40px !important;
    }
    .pl_lg--40 {
        padding-left: 40px !important;
    }
    .pr_lg--40 {
        padding-right: 40px !important;
    }
    .mt_lg--40 {
        margin-top: 40px !important;
    }
    .mb_lg--40 {
        margin-bottom: 40px !important;
    }
    .ml_lg--40 {
        margin-left: 40px !important;
    }
    .ptb_lg--45 {
        padding: 45px 0 !important;
    }
    .plr_lg--45 {
        padding: 0 45px !important;
    }
    .pt_lg--45 {
        padding-top: 45px !important;
    }
    .pb_lg--45 {
        padding-bottom: 45px !important;
    }
    .pl_lg--45 {
        padding-left: 45px !important;
    }
    .pr_lg--45 {
        padding-right: 45px !important;
    }
    .mt_lg--45 {
        margin-top: 45px !important;
    }
    .mb_lg--45 {
        margin-bottom: 45px !important;
    }
    .ml_lg--45 {
        margin-left: 45px !important;
    }
    .ptb_lg--50 {
        padding: 50px 0 !important;
    }
    .plr_lg--50 {
        padding: 0 50px !important;
    }
    .pt_lg--50 {
        padding-top: 50px !important;
    }
    .pb_lg--50 {
        padding-bottom: 50px !important;
    }
    .pl_lg--50 {
        padding-left: 50px !important;
    }
    .pr_lg--50 {
        padding-right: 50px !important;
    }
    .mt_lg--50 {
        margin-top: 50px !important;
    }
    .mb_lg--50 {
        margin-bottom: 50px !important;
    }
    .ml_lg--50 {
        margin-left: 50px !important;
    }
    .ptb_lg--55 {
        padding: 55px 0 !important;
    }
    .plr_lg--55 {
        padding: 0 55px !important;
    }
    .pt_lg--55 {
        padding-top: 55px !important;
    }
    .pb_lg--55 {
        padding-bottom: 55px !important;
    }
    .pl_lg--55 {
        padding-left: 55px !important;
    }
    .pr_lg--55 {
        padding-right: 55px !important;
    }
    .mt_lg--55 {
        margin-top: 55px !important;
    }
    .mb_lg--55 {
        margin-bottom: 55px !important;
    }
    .ml_lg--55 {
        margin-left: 55px !important;
    }
    .ptb_lg--60 {
        padding: 60px 0 !important;
    }
    .plr_lg--60 {
        padding: 0 60px !important;
    }
    .pt_lg--60 {
        padding-top: 60px !important;
    }
    .pb_lg--60 {
        padding-bottom: 60px !important;
    }
    .pl_lg--60 {
        padding-left: 60px !important;
    }
    .pr_lg--60 {
        padding-right: 60px !important;
    }
    .mt_lg--60 {
        margin-top: 60px !important;
    }
    .mb_lg--60 {
        margin-bottom: 60px !important;
    }
    .ml_lg--60 {
        margin-left: 60px !important;
    }
    .ptb_lg--65 {
        padding: 65px 0 !important;
    }
    .plr_lg--65 {
        padding: 0 65px !important;
    }
    .pt_lg--65 {
        padding-top: 65px !important;
    }
    .pb_lg--65 {
        padding-bottom: 65px !important;
    }
    .pl_lg--65 {
        padding-left: 65px !important;
    }
    .pr_lg--65 {
        padding-right: 65px !important;
    }
    .mt_lg--65 {
        margin-top: 65px !important;
    }
    .mb_lg--65 {
        margin-bottom: 65px !important;
    }
    .ml_lg--65 {
        margin-left: 65px !important;
    }
    .ptb_lg--70 {
        padding: 70px 0 !important;
    }
    .plr_lg--70 {
        padding: 0 70px !important;
    }
    .pt_lg--70 {
        padding-top: 70px !important;
    }
    .pb_lg--70 {
        padding-bottom: 70px !important;
    }
    .pl_lg--70 {
        padding-left: 70px !important;
    }
    .pr_lg--70 {
        padding-right: 70px !important;
    }
    .mt_lg--70 {
        margin-top: 70px !important;
    }
    .mb_lg--70 {
        margin-bottom: 70px !important;
    }
    .ml_lg--70 {
        margin-left: 70px !important;
    }
    .ptb_lg--75 {
        padding: 75px 0 !important;
    }
    .plr_lg--75 {
        padding: 0 75px !important;
    }
    .pt_lg--75 {
        padding-top: 75px !important;
    }
    .pb_lg--75 {
        padding-bottom: 75px !important;
    }
    .pl_lg--75 {
        padding-left: 75px !important;
    }
    .pr_lg--75 {
        padding-right: 75px !important;
    }
    .mt_lg--75 {
        margin-top: 75px !important;
    }
    .mb_lg--75 {
        margin-bottom: 75px !important;
    }
    .ml_lg--75 {
        margin-left: 75px !important;
    }
    .ptb_lg--80 {
        padding: 80px 0 !important;
    }
    .plr_lg--80 {
        padding: 0 80px !important;
    }
    .pt_lg--80 {
        padding-top: 80px !important;
    }
    .pb_lg--80 {
        padding-bottom: 80px !important;
    }
    .pl_lg--80 {
        padding-left: 80px !important;
    }
    .pr_lg--80 {
        padding-right: 80px !important;
    }
    .mt_lg--80 {
        margin-top: 80px !important;
    }
    .mb_lg--80 {
        margin-bottom: 80px !important;
    }
    .ml_lg--80 {
        margin-left: 80px !important;
    }
    .ptb_lg--85 {
        padding: 85px 0 !important;
    }
    .plr_lg--85 {
        padding: 0 85px !important;
    }
    .pt_lg--85 {
        padding-top: 85px !important;
    }
    .pb_lg--85 {
        padding-bottom: 85px !important;
    }
    .pl_lg--85 {
        padding-left: 85px !important;
    }
    .pr_lg--85 {
        padding-right: 85px !important;
    }
    .mt_lg--85 {
        margin-top: 85px !important;
    }
    .mb_lg--85 {
        margin-bottom: 85px !important;
    }
    .ml_lg--85 {
        margin-left: 85px !important;
    }
    .ptb_lg--90 {
        padding: 90px 0 !important;
    }
    .plr_lg--90 {
        padding: 0 90px !important;
    }
    .pt_lg--90 {
        padding-top: 90px !important;
    }
    .pb_lg--90 {
        padding-bottom: 90px !important;
    }
    .pl_lg--90 {
        padding-left: 90px !important;
    }
    .pr_lg--90 {
        padding-right: 90px !important;
    }
    .mt_lg--90 {
        margin-top: 90px !important;
    }
    .mb_lg--90 {
        margin-bottom: 90px !important;
    }
    .ml_lg--90 {
        margin-left: 90px !important;
    }
    .ptb_lg--95 {
        padding: 95px 0 !important;
    }
    .plr_lg--95 {
        padding: 0 95px !important;
    }
    .pt_lg--95 {
        padding-top: 95px !important;
    }
    .pb_lg--95 {
        padding-bottom: 95px !important;
    }
    .pl_lg--95 {
        padding-left: 95px !important;
    }
    .pr_lg--95 {
        padding-right: 95px !important;
    }
    .mt_lg--95 {
        margin-top: 95px !important;
    }
    .mb_lg--95 {
        margin-bottom: 95px !important;
    }
    .ml_lg--95 {
        margin-left: 95px !important;
    }
    .ptb_lg--100 {
        padding: 100px 0 !important;
    }
    .plr_lg--100 {
        padding: 0 100px !important;
    }
    .pt_lg--100 {
        padding-top: 100px !important;
    }
    .pb_lg--100 {
        padding-bottom: 100px !important;
    }
    .pl_lg--100 {
        padding-left: 100px !important;
    }
    .pr_lg--100 {
        padding-right: 100px !important;
    }
    .mt_lg--100 {
        margin-top: 100px !important;
    }
    .mb_lg--100 {
        margin-bottom: 100px !important;
    }
    .ml_lg--100 {
        margin-left: 100px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ptb_md--0 {
        padding: 0 !important;
    }
    .pl_md--0 {
        padding-left: 0 !important;
    }
    .pr_md--0 {
        padding-right: 0 !important;
    }
    .pt_md--0 {
        padding-top: 0 !important;
    }
    .pb_md--0 {
        padding-bottom: 0 !important;
    }
    .mr_md--0 {
        margin-right: 0 !important;
    }
    .ml_md--0 {
        margin-left: 0 !important;
    }
    .mt_md--0 {
        margin-top: 0 !important;
    }
    .mb_md--0 {
        margin-bottom: 0 !important;
    }
    .ptb_md--250 {
        padding: 250px 0 !important;
    }
    .ptb_md--5 {
        padding: 5px 0 !important;
    }
    .plr_md--5 {
        padding: 0 5px !important;
    }
    .pt_md--5 {
        padding-top: 5px !important;
    }
    .pb_md--5 {
        padding-bottom: 5px !important;
    }
    .pl_md--5 {
        padding-left: 5px !important;
    }
    .pr_md--5 {
        padding-right: 5px !important;
    }
    .mt_md--5 {
        margin-top: 5px !important;
    }
    .mb_md--5 {
        margin-bottom: 5px !important;
    }
    .ptb_md--10 {
        padding: 10px 0 !important;
    }
    .plr_md--10 {
        padding: 0 10px !important;
    }
    .pt_md--10 {
        padding-top: 10px !important;
    }
    .pb_md--10 {
        padding-bottom: 10px !important;
    }
    .pl_md--10 {
        padding-left: 10px !important;
    }
    .pr_md--10 {
        padding-right: 10px !important;
    }
    .mt_md--10 {
        margin-top: 10px !important;
    }
    .mb_md--10 {
        margin-bottom: 10px !important;
    }
    .ptb_md--15 {
        padding: 15px 0 !important;
    }
    .plr_md--15 {
        padding: 0 15px !important;
    }
    .pt_md--15 {
        padding-top: 15px !important;
    }
    .pb_md--15 {
        padding-bottom: 15px !important;
    }
    .pl_md--15 {
        padding-left: 15px !important;
    }
    .pr_md--15 {
        padding-right: 15px !important;
    }
    .mt_md--15 {
        margin-top: 15px !important;
    }
    .mb_md--15 {
        margin-bottom: 15px !important;
    }
    .ptb_md--20 {
        padding: 20px 0 !important;
    }
    .plr_md--20 {
        padding: 0 20px !important;
    }
    .pt_md--20 {
        padding-top: 20px !important;
    }
    .pb_md--20 {
        padding-bottom: 20px !important;
    }
    .pl_md--20 {
        padding-left: 20px !important;
    }
    .pr_md--20 {
        padding-right: 20px !important;
    }
    .mt_md--20 {
        margin-top: 20px !important;
    }
    .mb_md--20 {
        margin-bottom: 20px !important;
    }
    .ptb_md--25 {
        padding: 25px 0 !important;
    }
    .plr_md--25 {
        padding: 0 25px !important;
    }
    .pt_md--25 {
        padding-top: 25px !important;
    }
    .pb_md--25 {
        padding-bottom: 25px !important;
    }
    .pl_md--25 {
        padding-left: 25px !important;
    }
    .pr_md--25 {
        padding-right: 25px !important;
    }
    .mt_md--25 {
        margin-top: 25px !important;
    }
    .mb_md--25 {
        margin-bottom: 25px !important;
    }
    .ptb_md--30 {
        padding: 30px 0 !important;
    }
    .plr_md--30 {
        padding: 0 30px !important;
    }
    .pt_md--30 {
        padding-top: 30px !important;
    }
    .pb_md--30 {
        padding-bottom: 30px !important;
    }
    .pl_md--30 {
        padding-left: 30px !important;
    }
    .pr_md--30 {
        padding-right: 30px !important;
    }
    .mt_md--30 {
        margin-top: 30px !important;
    }
    .mb_md--30 {
        margin-bottom: 30px !important;
    }
    .ptb_md--35 {
        padding: 35px 0 !important;
    }
    .plr_md--35 {
        padding: 0 35px !important;
    }
    .pt_md--35 {
        padding-top: 35px !important;
    }
    .pb_md--35 {
        padding-bottom: 35px !important;
    }
    .pl_md--35 {
        padding-left: 35px !important;
    }
    .pr_md--35 {
        padding-right: 35px !important;
    }
    .mt_md--35 {
        margin-top: 35px !important;
    }
    .mb_md--35 {
        margin-bottom: 35px !important;
    }
    .ptb_md--40 {
        padding: 40px 0 !important;
    }
    .plr_md--40 {
        padding: 0 40px !important;
    }
    .pt_md--40 {
        padding-top: 40px !important;
    }
    .pb_md--40 {
        padding-bottom: 40px !important;
    }
    .pl_md--40 {
        padding-left: 40px !important;
    }
    .pr_md--40 {
        padding-right: 40px !important;
    }
    .mt_md--40 {
        margin-top: 40px !important;
    }
    .mb_md--40 {
        margin-bottom: 40px !important;
    }
    .ptb_md--45 {
        padding: 45px 0 !important;
    }
    .plr_md--45 {
        padding: 0 45px !important;
    }
    .pt_md--45 {
        padding-top: 45px !important;
    }
    .pb_md--45 {
        padding-bottom: 45px !important;
    }
    .pl_md--45 {
        padding-left: 45px !important;
    }
    .pr_md--45 {
        padding-right: 45px !important;
    }
    .mt_md--45 {
        margin-top: 45px !important;
    }
    .mb_md--45 {
        margin-bottom: 45px !important;
    }
    .ptb_md--50 {
        padding: 50px 0 !important;
    }
    .plr_md--50 {
        padding: 0 50px !important;
    }
    .pt_md--50 {
        padding-top: 50px !important;
    }
    .pb_md--50 {
        padding-bottom: 50px !important;
    }
    .pl_md--50 {
        padding-left: 50px !important;
    }
    .pr_md--50 {
        padding-right: 50px !important;
    }
    .mt_md--50 {
        margin-top: 50px !important;
    }
    .mb_md--50 {
        margin-bottom: 50px !important;
    }
    .ptb_md--55 {
        padding: 55px 0 !important;
    }
    .plr_md--55 {
        padding: 0 55px !important;
    }
    .pt_md--55 {
        padding-top: 55px !important;
    }
    .pb_md--55 {
        padding-bottom: 55px !important;
    }
    .pl_md--55 {
        padding-left: 55px !important;
    }
    .pr_md--55 {
        padding-right: 55px !important;
    }
    .mt_md--55 {
        margin-top: 55px !important;
    }
    .mb_md--55 {
        margin-bottom: 55px !important;
    }
    .ptb_md--60 {
        padding: 60px 0 !important;
    }
    .plr_md--60 {
        padding: 0 60px !important;
    }
    .pt_md--60 {
        padding-top: 60px !important;
    }
    .pb_md--60 {
        padding-bottom: 60px !important;
    }
    .pl_md--60 {
        padding-left: 60px !important;
    }
    .pr_md--60 {
        padding-right: 60px !important;
    }
    .mt_md--60 {
        margin-top: 60px !important;
    }
    .mb_md--60 {
        margin-bottom: 60px !important;
    }
    .ptb_md--65 {
        padding: 65px 0 !important;
    }
    .plr_md--65 {
        padding: 0 65px !important;
    }
    .pt_md--65 {
        padding-top: 65px !important;
    }
    .pb_md--65 {
        padding-bottom: 65px !important;
    }
    .pl_md--65 {
        padding-left: 65px !important;
    }
    .pr_md--65 {
        padding-right: 65px !important;
    }
    .mt_md--65 {
        margin-top: 65px !important;
    }
    .mb_md--65 {
        margin-bottom: 65px !important;
    }
    .ptb_md--70 {
        padding: 70px 0 !important;
    }
    .plr_md--70 {
        padding: 0 70px !important;
    }
    .pt_md--70 {
        padding-top: 70px !important;
    }
    .pb_md--70 {
        padding-bottom: 70px !important;
    }
    .pl_md--70 {
        padding-left: 70px !important;
    }
    .pr_md--70 {
        padding-right: 70px !important;
    }
    .mt_md--70 {
        margin-top: 70px !important;
    }
    .mb_md--70 {
        margin-bottom: 70px !important;
    }
    .ptb_md--75 {
        padding: 75px 0 !important;
    }
    .plr_md--75 {
        padding: 0 75px !important;
    }
    .pt_md--75 {
        padding-top: 75px !important;
    }
    .pb_md--75 {
        padding-bottom: 75px !important;
    }
    .pl_md--75 {
        padding-left: 75px !important;
    }
    .pr_md--75 {
        padding-right: 75px !important;
    }
    .mt_md--75 {
        margin-top: 75px !important;
    }
    .mb_md--75 {
        margin-bottom: 75px !important;
    }
    .ptb_md--80 {
        padding: 80px 0 !important;
    }
    .plr_md--80 {
        padding: 0 80px !important;
    }
    .pt_md--80 {
        padding-top: 80px !important;
    }
    .pb_md--80 {
        padding-bottom: 80px !important;
    }
    .pl_md--80 {
        padding-left: 80px !important;
    }
    .pr_md--80 {
        padding-right: 80px !important;
    }
    .mt_md--80 {
        margin-top: 80px !important;
    }
    .mb_md--80 {
        margin-bottom: 80px !important;
    }
    .ptb_md--85 {
        padding: 85px 0 !important;
    }
    .plr_md--85 {
        padding: 0 85px !important;
    }
    .pt_md--85 {
        padding-top: 85px !important;
    }
    .pb_md--85 {
        padding-bottom: 85px !important;
    }
    .pl_md--85 {
        padding-left: 85px !important;
    }
    .pr_md--85 {
        padding-right: 85px !important;
    }
    .mt_md--85 {
        margin-top: 85px !important;
    }
    .mb_md--85 {
        margin-bottom: 85px !important;
    }
    .ptb_md--90 {
        padding: 90px 0 !important;
    }
    .plr_md--90 {
        padding: 0 90px !important;
    }
    .pt_md--90 {
        padding-top: 90px !important;
    }
    .pb_md--90 {
        padding-bottom: 90px !important;
    }
    .pl_md--90 {
        padding-left: 90px !important;
    }
    .pr_md--90 {
        padding-right: 90px !important;
    }
    .mt_md--90 {
        margin-top: 90px !important;
    }
    .mb_md--90 {
        margin-bottom: 90px !important;
    }
    .ptb_md--95 {
        padding: 95px 0 !important;
    }
    .plr_md--95 {
        padding: 0 95px !important;
    }
    .pt_md--95 {
        padding-top: 95px !important;
    }
    .pb_md--95 {
        padding-bottom: 95px !important;
    }
    .pl_md--95 {
        padding-left: 95px !important;
    }
    .pr_md--95 {
        padding-right: 95px !important;
    }
    .mt_md--95 {
        margin-top: 95px !important;
    }
    .mb_md--95 {
        margin-bottom: 95px !important;
    }
    .ptb_md--100 {
        padding: 100px 0 !important;
    }
    .plr_md--100 {
        padding: 0 100px !important;
    }
    .pt_md--100 {
        padding-top: 100px !important;
    }
    .pb_md--100 {
        padding-bottom: 100px !important;
    }
    .pl_md--100 {
        padding-left: 100px !important;
    }
    .pr_md--100 {
        padding-right: 100px !important;
    }
    .mt_md--100 {
        margin-top: 100px !important;
    }
    .mb_md--100 {
        margin-bottom: 100px !important;
    }
}

@media only screen and (max-width: 767px) {
    .ptb_sm--250 {
        padding: 250px 0 !important;
    }
    .ptb_sm--0 {
        padding: 0 !important;
    }
    .pl_sm--0 {
        padding-left: 0 !important;
    }
    .pr_sm--0 {
        padding-right: 0 !important;
    }
    .pt_sm--0 {
        padding-top: 0 !important;
    }
    .pb_sm--0 {
        padding-bottom: 0 !important;
    }
    .mr_sm--0 {
        margin-right: 0 !important;
    }
    .ml_sm--0 {
        margin-left: 0 !important;
    }
    .mt_sm--0 {
        margin-top: 0 !important;
    }
    .mb_sm--0 {
        margin-bottom: 0 !important;
    }
    .pt_sm--150 {
        padding-top: 150px !important;
    }
    .pb_sm--110 {
        padding-bottom: 110px !important;
    }
    .ptb_sm--5 {
        padding: 5px 0 !important;
    }
    .plr_sm--5 {
        padding: 0 5px !important;
    }
    .pt_sm--5 {
        padding-top: 5px !important;
    }
    .pb_sm--5 {
        padding-bottom: 5px !important;
    }
    .pl_sm--5 {
        padding-left: 5px !important;
    }
    .pr_sm--5 {
        padding-right: 5px !important;
    }
    .mt_sm--5 {
        margin-top: 5px !important;
    }
    .ml_sm--5 {
        margin-left: 5px !important;
    }
    .mr_sm--5 {
        margin-right: 5px !important;
    }
    .mb_sm--5 {
        margin-bottom: 5px !important;
    }
    .ptb_sm--10 {
        padding: 10px 0 !important;
    }
    .plr_sm--10 {
        padding: 0 10px !important;
    }
    .pt_sm--10 {
        padding-top: 10px !important;
    }
    .pb_sm--10 {
        padding-bottom: 10px !important;
    }
    .pl_sm--10 {
        padding-left: 10px !important;
    }
    .pr_sm--10 {
        padding-right: 10px !important;
    }
    .mt_sm--10 {
        margin-top: 10px !important;
    }
    .ml_sm--10 {
        margin-left: 10px !important;
    }
    .mr_sm--10 {
        margin-right: 10px !important;
    }
    .mb_sm--10 {
        margin-bottom: 10px !important;
    }
    .ptb_sm--15 {
        padding: 15px 0 !important;
    }
    .plr_sm--15 {
        padding: 0 15px !important;
    }
    .pt_sm--15 {
        padding-top: 15px !important;
    }
    .pb_sm--15 {
        padding-bottom: 15px !important;
    }
    .pl_sm--15 {
        padding-left: 15px !important;
    }
    .pr_sm--15 {
        padding-right: 15px !important;
    }
    .mt_sm--15 {
        margin-top: 15px !important;
    }
    .ml_sm--15 {
        margin-left: 15px !important;
    }
    .mr_sm--15 {
        margin-right: 15px !important;
    }
    .mb_sm--15 {
        margin-bottom: 15px !important;
    }
    .ptb_sm--20 {
        padding: 20px 0 !important;
    }
    .plr_sm--20 {
        padding: 0 20px !important;
    }
    .pt_sm--20 {
        padding-top: 20px !important;
    }
    .pb_sm--20 {
        padding-bottom: 20px !important;
    }
    .pl_sm--20 {
        padding-left: 20px !important;
    }
    .pr_sm--20 {
        padding-right: 20px !important;
    }
    .mt_sm--20 {
        margin-top: 20px !important;
    }
    .ml_sm--20 {
        margin-left: 20px !important;
    }
    .mr_sm--20 {
        margin-right: 20px !important;
    }
    .mb_sm--20 {
        margin-bottom: 20px !important;
    }
    .ptb_sm--25 {
        padding: 25px 0 !important;
    }
    .plr_sm--25 {
        padding: 0 25px !important;
    }
    .pt_sm--25 {
        padding-top: 25px !important;
    }
    .pb_sm--25 {
        padding-bottom: 25px !important;
    }
    .pl_sm--25 {
        padding-left: 25px !important;
    }
    .pr_sm--25 {
        padding-right: 25px !important;
    }
    .mt_sm--25 {
        margin-top: 25px !important;
    }
    .ml_sm--25 {
        margin-left: 25px !important;
    }
    .mr_sm--25 {
        margin-right: 25px !important;
    }
    .mb_sm--25 {
        margin-bottom: 25px !important;
    }
    .ptb_sm--30 {
        padding: 30px 0 !important;
    }
    .plr_sm--30 {
        padding: 0 30px !important;
    }
    .pt_sm--30 {
        padding-top: 30px !important;
    }
    .pb_sm--30 {
        padding-bottom: 30px !important;
    }
    .pl_sm--30 {
        padding-left: 30px !important;
    }
    .pr_sm--30 {
        padding-right: 30px !important;
    }
    .mt_sm--30 {
        margin-top: 30px !important;
    }
    .ml_sm--30 {
        margin-left: 30px !important;
    }
    .mr_sm--30 {
        margin-right: 30px !important;
    }
    .mb_sm--30 {
        margin-bottom: 30px !important;
    }
    .ptb_sm--35 {
        padding: 35px 0 !important;
    }
    .plr_sm--35 {
        padding: 0 35px !important;
    }
    .pt_sm--35 {
        padding-top: 35px !important;
    }
    .pb_sm--35 {
        padding-bottom: 35px !important;
    }
    .pl_sm--35 {
        padding-left: 35px !important;
    }
    .pr_sm--35 {
        padding-right: 35px !important;
    }
    .mt_sm--35 {
        margin-top: 35px !important;
    }
    .ml_sm--35 {
        margin-left: 35px !important;
    }
    .mr_sm--35 {
        margin-right: 35px !important;
    }
    .mb_sm--35 {
        margin-bottom: 35px !important;
    }
    .ptb_sm--40 {
        padding: 40px 0 !important;
    }
    .plr_sm--40 {
        padding: 0 40px !important;
    }
    .pt_sm--40 {
        padding-top: 40px !important;
    }
    .pb_sm--40 {
        padding-bottom: 40px !important;
    }
    .pl_sm--40 {
        padding-left: 40px !important;
    }
    .pr_sm--40 {
        padding-right: 40px !important;
    }
    .mt_sm--40 {
        margin-top: 40px !important;
    }
    .ml_sm--40 {
        margin-left: 40px !important;
    }
    .mr_sm--40 {
        margin-right: 40px !important;
    }
    .mb_sm--40 {
        margin-bottom: 40px !important;
    }
    .ptb_sm--45 {
        padding: 45px 0 !important;
    }
    .plr_sm--45 {
        padding: 0 45px !important;
    }
    .pt_sm--45 {
        padding-top: 45px !important;
    }
    .pb_sm--45 {
        padding-bottom: 45px !important;
    }
    .pl_sm--45 {
        padding-left: 45px !important;
    }
    .pr_sm--45 {
        padding-right: 45px !important;
    }
    .mt_sm--45 {
        margin-top: 45px !important;
    }
    .ml_sm--45 {
        margin-left: 45px !important;
    }
    .mr_sm--45 {
        margin-right: 45px !important;
    }
    .mb_sm--45 {
        margin-bottom: 45px !important;
    }
    .ptb_sm--50 {
        padding: 50px 0 !important;
    }
    .plr_sm--50 {
        padding: 0 50px !important;
    }
    .pt_sm--50 {
        padding-top: 50px !important;
    }
    .pb_sm--50 {
        padding-bottom: 50px !important;
    }
    .pl_sm--50 {
        padding-left: 50px !important;
    }
    .pr_sm--50 {
        padding-right: 50px !important;
    }
    .mt_sm--50 {
        margin-top: 50px !important;
    }
    .ml_sm--50 {
        margin-left: 50px !important;
    }
    .mr_sm--50 {
        margin-right: 50px !important;
    }
    .mb_sm--50 {
        margin-bottom: 50px !important;
    }
    .ptb_sm--55 {
        padding: 55px 0 !important;
    }
    .plr_sm--55 {
        padding: 0 55px !important;
    }
    .pt_sm--55 {
        padding-top: 55px !important;
    }
    .pb_sm--55 {
        padding-bottom: 55px !important;
    }
    .pl_sm--55 {
        padding-left: 55px !important;
    }
    .pr_sm--55 {
        padding-right: 55px !important;
    }
    .mt_sm--55 {
        margin-top: 55px !important;
    }
    .ml_sm--55 {
        margin-left: 55px !important;
    }
    .mr_sm--55 {
        margin-right: 55px !important;
    }
    .mb_sm--55 {
        margin-bottom: 55px !important;
    }
    .ptb_sm--60 {
        padding: 60px 0 !important;
    }
    .plr_sm--60 {
        padding: 0 60px !important;
    }
    .pt_sm--60 {
        padding-top: 60px !important;
    }
    .pb_sm--60 {
        padding-bottom: 60px !important;
    }
    .pl_sm--60 {
        padding-left: 60px !important;
    }
    .pr_sm--60 {
        padding-right: 60px !important;
    }
    .mt_sm--60 {
        margin-top: 60px !important;
    }
    .ml_sm--60 {
        margin-left: 60px !important;
    }
    .mr_sm--60 {
        margin-right: 60px !important;
    }
    .mb_sm--60 {
        margin-bottom: 60px !important;
    }
    .ptb_sm--65 {
        padding: 65px 0 !important;
    }
    .plr_sm--65 {
        padding: 0 65px !important;
    }
    .pt_sm--65 {
        padding-top: 65px !important;
    }
    .pb_sm--65 {
        padding-bottom: 65px !important;
    }
    .pl_sm--65 {
        padding-left: 65px !important;
    }
    .pr_sm--65 {
        padding-right: 65px !important;
    }
    .mt_sm--65 {
        margin-top: 65px !important;
    }
    .ml_sm--65 {
        margin-left: 65px !important;
    }
    .mr_sm--65 {
        margin-right: 65px !important;
    }
    .mb_sm--65 {
        margin-bottom: 65px !important;
    }
    .ptb_sm--70 {
        padding: 70px 0 !important;
    }
    .plr_sm--70 {
        padding: 0 70px !important;
    }
    .pt_sm--70 {
        padding-top: 70px !important;
    }
    .pb_sm--70 {
        padding-bottom: 70px !important;
    }
    .pl_sm--70 {
        padding-left: 70px !important;
    }
    .pr_sm--70 {
        padding-right: 70px !important;
    }
    .mt_sm--70 {
        margin-top: 70px !important;
    }
    .ml_sm--70 {
        margin-left: 70px !important;
    }
    .mr_sm--70 {
        margin-right: 70px !important;
    }
    .mb_sm--70 {
        margin-bottom: 70px !important;
    }
    .ptb_sm--75 {
        padding: 75px 0 !important;
    }
    .plr_sm--75 {
        padding: 0 75px !important;
    }
    .pt_sm--75 {
        padding-top: 75px !important;
    }
    .pb_sm--75 {
        padding-bottom: 75px !important;
    }
    .pl_sm--75 {
        padding-left: 75px !important;
    }
    .pr_sm--75 {
        padding-right: 75px !important;
    }
    .mt_sm--75 {
        margin-top: 75px !important;
    }
    .ml_sm--75 {
        margin-left: 75px !important;
    }
    .mr_sm--75 {
        margin-right: 75px !important;
    }
    .mb_sm--75 {
        margin-bottom: 75px !important;
    }
    .ptb_sm--80 {
        padding: 80px 0 !important;
    }
    .plr_sm--80 {
        padding: 0 80px !important;
    }
    .pt_sm--80 {
        padding-top: 80px !important;
    }
    .pb_sm--80 {
        padding-bottom: 80px !important;
    }
    .pl_sm--80 {
        padding-left: 80px !important;
    }
    .pr_sm--80 {
        padding-right: 80px !important;
    }
    .mt_sm--80 {
        margin-top: 80px !important;
    }
    .ml_sm--80 {
        margin-left: 80px !important;
    }
    .mr_sm--80 {
        margin-right: 80px !important;
    }
    .mb_sm--80 {
        margin-bottom: 80px !important;
    }
    .ptb_sm--85 {
        padding: 85px 0 !important;
    }
    .plr_sm--85 {
        padding: 0 85px !important;
    }
    .pt_sm--85 {
        padding-top: 85px !important;
    }
    .pb_sm--85 {
        padding-bottom: 85px !important;
    }
    .pl_sm--85 {
        padding-left: 85px !important;
    }
    .pr_sm--85 {
        padding-right: 85px !important;
    }
    .mt_sm--85 {
        margin-top: 85px !important;
    }
    .ml_sm--85 {
        margin-left: 85px !important;
    }
    .mr_sm--85 {
        margin-right: 85px !important;
    }
    .mb_sm--85 {
        margin-bottom: 85px !important;
    }
    .ptb_sm--90 {
        padding: 90px 0 !important;
    }
    .plr_sm--90 {
        padding: 0 90px !important;
    }
    .pt_sm--90 {
        padding-top: 90px !important;
    }
    .pb_sm--90 {
        padding-bottom: 90px !important;
    }
    .pl_sm--90 {
        padding-left: 90px !important;
    }
    .pr_sm--90 {
        padding-right: 90px !important;
    }
    .mt_sm--90 {
        margin-top: 90px !important;
    }
    .ml_sm--90 {
        margin-left: 90px !important;
    }
    .mr_sm--90 {
        margin-right: 90px !important;
    }
    .mb_sm--90 {
        margin-bottom: 90px !important;
    }
    .ptb_sm--95 {
        padding: 95px 0 !important;
    }
    .plr_sm--95 {
        padding: 0 95px !important;
    }
    .pt_sm--95 {
        padding-top: 95px !important;
    }
    .pb_sm--95 {
        padding-bottom: 95px !important;
    }
    .pl_sm--95 {
        padding-left: 95px !important;
    }
    .pr_sm--95 {
        padding-right: 95px !important;
    }
    .mt_sm--95 {
        margin-top: 95px !important;
    }
    .ml_sm--95 {
        margin-left: 95px !important;
    }
    .mr_sm--95 {
        margin-right: 95px !important;
    }
    .mb_sm--95 {
        margin-bottom: 95px !important;
    }
    .ptb_sm--100 {
        padding: 100px 0 !important;
    }
    .plr_sm--100 {
        padding: 0 100px !important;
    }
    .pt_sm--100 {
        padding-top: 100px !important;
    }
    .pb_sm--100 {
        padding-bottom: 100px !important;
    }
    .pl_sm--100 {
        padding-left: 100px !important;
    }
    .pr_sm--100 {
        padding-right: 100px !important;
    }
    .mt_sm--100 {
        margin-top: 100px !important;
    }
    .ml_sm--100 {
        margin-left: 100px !important;
    }
    .mr_sm--100 {
        margin-right: 100px !important;
    }
    .mb_sm--100 {
        margin-bottom: 100px !important;
    }
    .pl_sm--0 {
        padding-left: 0;
    }
    .pr_sm--0 {
        padding-right: 0;
    }
    .pt_sm--0 {
        padding-top: 0;
    }
    .pb_sm--0 {
        padding-bottom: 0;
    }
    .mr_sm--0 {
        margin-right: 0;
    }
    .ml_sm--0 {
        margin-left: 0;
    }
    .mt_sm--0 {
        margin-top: 0;
    }
    .mb_sm--0 {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .ptb_mobile--5 {
        padding: 5px 0 !important;
    }
    .plr_mobile--5 {
        padding: 0 5px !important;
    }
    .pt_mobile--5 {
        padding-top: 5px !important;
    }
    .pb_mobile--5 {
        padding-bottom: 5px !important;
    }
    .pl_mobile--5 {
        padding-left: 5px !important;
    }
    .pr_mobile--5 {
        padding-right: 5px !important;
    }
    .mt_mobile--5 {
        margin-top: 5px !important;
    }
    .mb_mobile--5 {
        margin-bottom: 5px !important;
    }
    .ptb_mobile--10 {
        padding: 10px 0 !important;
    }
    .plr_mobile--10 {
        padding: 0 10px !important;
    }
    .pt_mobile--10 {
        padding-top: 10px !important;
    }
    .pb_mobile--10 {
        padding-bottom: 10px !important;
    }
    .pl_mobile--10 {
        padding-left: 10px !important;
    }
    .pr_mobile--10 {
        padding-right: 10px !important;
    }
    .mt_mobile--10 {
        margin-top: 10px !important;
    }
    .mb_mobile--10 {
        margin-bottom: 10px !important;
    }
    .ptb_mobile--15 {
        padding: 15px 0 !important;
    }
    .plr_mobile--15 {
        padding: 0 15px !important;
    }
    .pt_mobile--15 {
        padding-top: 15px !important;
    }
    .pb_mobile--15 {
        padding-bottom: 15px !important;
    }
    .pl_mobile--15 {
        padding-left: 15px !important;
    }
    .pr_mobile--15 {
        padding-right: 15px !important;
    }
    .mt_mobile--15 {
        margin-top: 15px !important;
    }
    .mb_mobile--15 {
        margin-bottom: 15px !important;
    }
    .ptb_mobile--20 {
        padding: 20px 0 !important;
    }
    .plr_mobile--20 {
        padding: 0 20px !important;
    }
    .pt_mobile--20 {
        padding-top: 20px !important;
    }
    .pb_mobile--20 {
        padding-bottom: 20px !important;
    }
    .pl_mobile--20 {
        padding-left: 20px !important;
    }
    .pr_mobile--20 {
        padding-right: 20px !important;
    }
    .mt_mobile--20 {
        margin-top: 20px !important;
    }
    .mb_mobile--20 {
        margin-bottom: 20px !important;
    }
    .ptb_mobile--25 {
        padding: 25px 0 !important;
    }
    .plr_mobile--25 {
        padding: 0 25px !important;
    }
    .pt_mobile--25 {
        padding-top: 25px !important;
    }
    .pb_mobile--25 {
        padding-bottom: 25px !important;
    }
    .pl_mobile--25 {
        padding-left: 25px !important;
    }
    .pr_mobile--25 {
        padding-right: 25px !important;
    }
    .mt_mobile--25 {
        margin-top: 25px !important;
    }
    .mb_mobile--25 {
        margin-bottom: 25px !important;
    }
    .ptb_mobile--30 {
        padding: 30px 0 !important;
    }
    .plr_mobile--30 {
        padding: 0 30px !important;
    }
    .pt_mobile--30 {
        padding-top: 30px !important;
    }
    .pb_mobile--30 {
        padding-bottom: 30px !important;
    }
    .pl_mobile--30 {
        padding-left: 30px !important;
    }
    .pr_mobile--30 {
        padding-right: 30px !important;
    }
    .mt_mobile--30 {
        margin-top: 30px !important;
    }
    .mb_mobile--30 {
        margin-bottom: 30px !important;
    }
    .ptb_mobile--35 {
        padding: 35px 0 !important;
    }
    .plr_mobile--35 {
        padding: 0 35px !important;
    }
    .pt_mobile--35 {
        padding-top: 35px !important;
    }
    .pb_mobile--35 {
        padding-bottom: 35px !important;
    }
    .pl_mobile--35 {
        padding-left: 35px !important;
    }
    .pr_mobile--35 {
        padding-right: 35px !important;
    }
    .mt_mobile--35 {
        margin-top: 35px !important;
    }
    .mb_mobile--35 {
        margin-bottom: 35px !important;
    }
    .ptb_mobile--40 {
        padding: 40px 0 !important;
    }
    .plr_mobile--40 {
        padding: 0 40px !important;
    }
    .pt_mobile--40 {
        padding-top: 40px !important;
    }
    .pb_mobile--40 {
        padding-bottom: 40px !important;
    }
    .pl_mobile--40 {
        padding-left: 40px !important;
    }
    .pr_mobile--40 {
        padding-right: 40px !important;
    }
    .mt_mobile--40 {
        margin-top: 40px !important;
    }
    .mb_mobile--40 {
        margin-bottom: 40px !important;
    }
    .ptb_mobile--45 {
        padding: 45px 0 !important;
    }
    .plr_mobile--45 {
        padding: 0 45px !important;
    }
    .pt_mobile--45 {
        padding-top: 45px !important;
    }
    .pb_mobile--45 {
        padding-bottom: 45px !important;
    }
    .pl_mobile--45 {
        padding-left: 45px !important;
    }
    .pr_mobile--45 {
        padding-right: 45px !important;
    }
    .mt_mobile--45 {
        margin-top: 45px !important;
    }
    .mb_mobile--45 {
        margin-bottom: 45px !important;
    }
    .ptb_mobile--50 {
        padding: 50px 0 !important;
    }
    .plr_mobile--50 {
        padding: 0 50px !important;
    }
    .pt_mobile--50 {
        padding-top: 50px !important;
    }
    .pb_mobile--50 {
        padding-bottom: 50px !important;
    }
    .pl_mobile--50 {
        padding-left: 50px !important;
    }
    .pr_mobile--50 {
        padding-right: 50px !important;
    }
    .mt_mobile--50 {
        margin-top: 50px !important;
    }
    .mb_mobile--50 {
        margin-bottom: 50px !important;
    }
    .ptb_mobile--55 {
        padding: 55px 0 !important;
    }
    .plr_mobile--55 {
        padding: 0 55px !important;
    }
    .pt_mobile--55 {
        padding-top: 55px !important;
    }
    .pb_mobile--55 {
        padding-bottom: 55px !important;
    }
    .pl_mobile--55 {
        padding-left: 55px !important;
    }
    .pr_mobile--55 {
        padding-right: 55px !important;
    }
    .mt_mobile--55 {
        margin-top: 55px !important;
    }
    .mb_mobile--55 {
        margin-bottom: 55px !important;
    }
    .ptb_mobile--60 {
        padding: 60px 0 !important;
    }
    .plr_mobile--60 {
        padding: 0 60px !important;
    }
    .pt_mobile--60 {
        padding-top: 60px !important;
    }
    .pb_mobile--60 {
        padding-bottom: 60px !important;
    }
    .pl_mobile--60 {
        padding-left: 60px !important;
    }
    .pr_mobile--60 {
        padding-right: 60px !important;
    }
    .mt_mobile--60 {
        margin-top: 60px !important;
    }
    .mb_mobile--60 {
        margin-bottom: 60px !important;
    }
    .ptb_mobile--65 {
        padding: 65px 0 !important;
    }
    .plr_mobile--65 {
        padding: 0 65px !important;
    }
    .pt_mobile--65 {
        padding-top: 65px !important;
    }
    .pb_mobile--65 {
        padding-bottom: 65px !important;
    }
    .pl_mobile--65 {
        padding-left: 65px !important;
    }
    .pr_mobile--65 {
        padding-right: 65px !important;
    }
    .mt_mobile--65 {
        margin-top: 65px !important;
    }
    .mb_mobile--65 {
        margin-bottom: 65px !important;
    }
    .ptb_mobile--70 {
        padding: 70px 0 !important;
    }
    .plr_mobile--70 {
        padding: 0 70px !important;
    }
    .pt_mobile--70 {
        padding-top: 70px !important;
    }
    .pb_mobile--70 {
        padding-bottom: 70px !important;
    }
    .pl_mobile--70 {
        padding-left: 70px !important;
    }
    .pr_mobile--70 {
        padding-right: 70px !important;
    }
    .mt_mobile--70 {
        margin-top: 70px !important;
    }
    .mb_mobile--70 {
        margin-bottom: 70px !important;
    }
    .ptb_mobile--75 {
        padding: 75px 0 !important;
    }
    .plr_mobile--75 {
        padding: 0 75px !important;
    }
    .pt_mobile--75 {
        padding-top: 75px !important;
    }
    .pb_mobile--75 {
        padding-bottom: 75px !important;
    }
    .pl_mobile--75 {
        padding-left: 75px !important;
    }
    .pr_mobile--75 {
        padding-right: 75px !important;
    }
    .mt_mobile--75 {
        margin-top: 75px !important;
    }
    .mb_mobile--75 {
        margin-bottom: 75px !important;
    }
    .ptb_mobile--80 {
        padding: 80px 0 !important;
    }
    .plr_mobile--80 {
        padding: 0 80px !important;
    }
    .pt_mobile--80 {
        padding-top: 80px !important;
    }
    .pb_mobile--80 {
        padding-bottom: 80px !important;
    }
    .pl_mobile--80 {
        padding-left: 80px !important;
    }
    .pr_mobile--80 {
        padding-right: 80px !important;
    }
    .mt_mobile--80 {
        margin-top: 80px !important;
    }
    .mb_mobile--80 {
        margin-bottom: 80px !important;
    }
    .ptb_mobile--85 {
        padding: 85px 0 !important;
    }
    .plr_mobile--85 {
        padding: 0 85px !important;
    }
    .pt_mobile--85 {
        padding-top: 85px !important;
    }
    .pb_mobile--85 {
        padding-bottom: 85px !important;
    }
    .pl_mobile--85 {
        padding-left: 85px !important;
    }
    .pr_mobile--85 {
        padding-right: 85px !important;
    }
    .mt_mobile--85 {
        margin-top: 85px !important;
    }
    .mb_mobile--85 {
        margin-bottom: 85px !important;
    }
    .ptb_mobile--90 {
        padding: 90px 0 !important;
    }
    .plr_mobile--90 {
        padding: 0 90px !important;
    }
    .pt_mobile--90 {
        padding-top: 90px !important;
    }
    .pb_mobile--90 {
        padding-bottom: 90px !important;
    }
    .pl_mobile--90 {
        padding-left: 90px !important;
    }
    .pr_mobile--90 {
        padding-right: 90px !important;
    }
    .mt_mobile--90 {
        margin-top: 90px !important;
    }
    .mb_mobile--90 {
        margin-bottom: 90px !important;
    }
    .ptb_mobile--95 {
        padding: 95px 0 !important;
    }
    .plr_mobile--95 {
        padding: 0 95px !important;
    }
    .pt_mobile--95 {
        padding-top: 95px !important;
    }
    .pb_mobile--95 {
        padding-bottom: 95px !important;
    }
    .pl_mobile--95 {
        padding-left: 95px !important;
    }
    .pr_mobile--95 {
        padding-right: 95px !important;
    }
    .mt_mobile--95 {
        margin-top: 95px !important;
    }
    .mb_mobile--95 {
        margin-bottom: 95px !important;
    }
    .ptb_mobile--100 {
        padding: 100px 0 !important;
    }
    .plr_mobile--100 {
        padding: 0 100px !important;
    }
    .pt_mobile--100 {
        padding-top: 100px !important;
    }
    .pb_mobile--100 {
        padding-bottom: 100px !important;
    }
    .pl_mobile--100 {
        padding-left: 100px !important;
    }
    .pr_mobile--100 {
        padding-right: 100px !important;
    }
    .mt_mobile--100 {
        margin-top: 100px !important;
    }
    .mb_mobile--100 {
        margin-bottom: 100px !important;
    }
}

.slick-gutter-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.slick-gutter-5 .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
}

.slick-gutter-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.slick-gutter-10 .slick-slide {
    padding-left: 10px;
    padding-right: 10px;
}

.slick-gutter-15 {
    margin-left: -15px;
    margin-right: -15px;
}

.slick-gutter-15 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
}

.slick-gutter-20 {
    margin-left: -20px;
    margin-right: -20px;
}

.slick-gutter-20 .slick-slide {
    padding-left: 20px;
    padding-right: 20px;
}

.slick-gutter-25 {
    margin-left: -25px;
    margin-right: -25px;
}

.slick-gutter-25 .slick-slide {
    padding-left: 25px;
    padding-right: 25px;
}

.slick-gutter-30 {
    margin-left: -30px;
    margin-right: -30px;
}

.slick-gutter-30 .slick-slide {
    padding-left: 30px;
    padding-right: 30px;
}

.slick-gutter-35 {
    margin-left: -35px;
    margin-right: -35px;
}

.slick-gutter-35 .slick-slide {
    padding-left: 35px;
    padding-right: 35px;
}

.slick-gutter-40 {
    margin-left: -40px;
    margin-right: -40px;
}

.slick-gutter-40 .slick-slide {
    padding-left: 40px;
    padding-right: 40px;
}

.slick-gutter-45 {
    margin-left: -45px;
    margin-right: -45px;
}

.slick-gutter-45 .slick-slide {
    padding-left: 45px;
    padding-right: 45px;
}

.slick-gutter-50 {
    margin-left: -50px;
    margin-right: -50px;
}

.slick-gutter-50 .slick-slide {
    padding-left: 50px;
    padding-right: 50px;
}

.slick-gutter-55 {
    margin-left: -55px;
    margin-right: -55px;
}

.slick-gutter-55 .slick-slide {
    padding-left: 55px;
    padding-right: 55px;
}

.slick-gutter-60 {
    margin-left: -60px;
    margin-right: -60px;
}

.slick-gutter-60 .slick-slide {
    padding-left: 60px;
    padding-right: 60px;
}

.slick-gutter-65 {
    margin-left: -65px;
    margin-right: -65px;
}

.slick-gutter-65 .slick-slide {
    padding-left: 65px;
    padding-right: 65px;
}

.slick-gutter-70 {
    margin-left: -70px;
    margin-right: -70px;
}

.slick-gutter-70 .slick-slide {
    padding-left: 70px;
    padding-right: 70px;
}

.slick-gutter-75 {
    margin-left: -75px;
    margin-right: -75px;
}

.slick-gutter-75 .slick-slide {
    padding-left: 75px;
    padding-right: 75px;
}

.slick-gutter-80 {
    margin-left: -80px;
    margin-right: -80px;
}

.slick-gutter-80 .slick-slide {
    padding-left: 80px;
    padding-right: 80px;
}

.slick-gutter-85 {
    margin-left: -85px;
    margin-right: -85px;
}

.slick-gutter-85 .slick-slide {
    padding-left: 85px;
    padding-right: 85px;
}

.slick-gutter-90 {
    margin-left: -90px;
    margin-right: -90px;
}

.slick-gutter-90 .slick-slide {
    padding-left: 90px;
    padding-right: 90px;
}

.slick-gutter-95 {
    margin-left: -95px;
    margin-right: -95px;
}

.slick-gutter-95 .slick-slide {
    padding-left: 95px;
    padding-right: 95px;
}

.slick-gutter-100 {
    margin-left: -100px;
    margin-right: -100px;
}

.slick-gutter-100 .slick-slide {
    padding-left: 100px;
    padding-right: 100px;
}

.mt-dec-30 {
    margin-top: -30px !important;
}

.mt_dec--30 {
    margin-top: -30px !important;
}

.mt-dec-100 {
    margin-top: -100px !important;
}

@media only screen and (max-width: 479px) {
    .small-margin-pricing {
        margin-bottom: 25px !important;
    }
}

@media only screen and (max-width: 479px) {
    .contact-input {
        margin-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mb_dec--35 {
        margin-bottom: -50px;
    }
}

@media only screen and (max-width: 767px) {
    .mb_dec--35 {
        margin-bottom: -75px;
    }
}

@media only screen and (max-width: 575px) {
    .mb_dec--35 {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .mt-contact-sm {
        margin-top: 30px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-pb {
        padding-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-input {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-input {
        padding-bottom: 30px;
    }
}

.pb_xl--130 {
    padding-bottom: 130px;
}

@media only screen and (max-width: 1199px) {
    .pb_xl--130 {
        padding-bottom: 110px;
    }
}

@media only screen and (max-width: 1199px) {
    .mt_experience {
        margin-top: -10px;
    }
}

.mt_dec--120 {
    margin-top: -120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .plr_md--0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.padding-contorler-am-slide {
    padding-left: 246px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .padding-contorler-am-slide {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .padding-contorler-am-slide {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .padding-contorler-am-slide {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .padding-contorler-am-slide {
        padding-left: 15px;
    }
}

.padding-contorler-am-slide-11 {
    padding-left: 246px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .padding-contorler-am-slide-11 {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .padding-contorler-am-slide-11 {
        padding-left: 0;
    }
}

.padding-contorler-am-slide-right {
    padding-right: 200px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .padding-contorler-am-slide-right {
        padding-right: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .padding-contorler-am-slide-right {
        padding-right: 30px;
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .padding-contorler-am-slide-right {
        padding-right: 30px;
        padding-top: 50px;
    }
}

:root {
    --duration-announcement-bar: 250ms;
    --duration-medium: 300ms;
    --duration-long: 500ms;
    --duration-extra-long: 600ms;
    --duration-extra-longer: 750ms;
    --duration-extended: 3s;
    --animation-slide-in: slideIn var(--duration-extra-long) ease forwards;
    --animation-fade-in: fadeInUp var(--duration-extra-long) ease forwards;
    --animation-zoom-in: zoomIn var(--duration-extra-longer) ease forwards;
    --animation-zoom-out: zoomOut var(--duration-extra-longer) ease forwards;
}


/* Animations */

@media (prefers-reduced-motion: no-preference) {
    .animate--ambient>img,
    .animate--ambient>svg {
        animation: animateAmbient 30s linear infinite;
    }
    @keyframes animateAmbient {
        0% {
            transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
        }
        100% {
            transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
        }
    }
    .tmp-scroll-trigger:is(.tmp-zoom-in, .zoom_out, .tmp-fade-in, .slide_in) {
        opacity: 0.01;
    }
    .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen).tmp-zoom-in {
        animation: var(--animation-zoom-in);
        animation-delay: calc(var(--animation-order) * 75ms);
    }
    .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen).zoom_out {
        animation: var(--animation-zoom-out);
        animation-delay: calc(var(--animation-order) * 75ms);
    }
    .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen).tmp-fade-in {
        animation: var(--animation-fade-in);
        animation-delay: calc(var(--animation-order) * 75ms);
    }
    .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen).slide_in {
        animation: var(--animation-slide-in);
        animation-delay: calc(var(--animation-order) * 75ms);
    }
    .tmp-scroll-trigger.tmp-scroll-trigger--design-mode.tmp-fade-in,
    .tmp-scroll-trigger.tmp-scroll-trigger--design-mode.slide_in,
    .tmp-scroll-trigger.tmp-scroll-trigger--design-mode .slider,
    .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen).tmp-scroll-trigger--cancel {
        opacity: 1;
        animation: none;
        transition: none;
    }
    .tmp-scroll-trigger[animation-end] {
        opacity: 1;
        animation: none !important;
        transition: none;
    }
    /* .collection-tab__tab-content
      .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen).tmp-zoom-in {
      animation-delay: calc(0.5s + var(--animation-order) * 75ms);
    } */
    .tmp-scroll-trigger.tmp-scroll-trigger--design-mode.slide_in {
        transform: translateY(0);
    }
    @keyframes slideIn {
        from {
            transform: translateY(1rem);
            opacity: 0.01;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    @keyframes zoomIn {
        from {
            opacity: 0;
            transform: scale(1.05);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    @keyframes zoomOut {
        from {
            opacity: 0;
            transform: scale(1);
        }
        to {
            opacity: 1;
            transform: scale(1.05);
        }
    }
}

@media screen and (max-width: 989px) {
    .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen) .slider--tablet {
        animation: var(--animation-slide-in);
    }
}

@media screen and (min-width: 990px) {
    .tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen) .slider--desktop {
        animation: var(--animation-slide-in);
    }
}

.tmp-scroll-trigger.tmp-scroll-trigger--design-mode.tmp-fade-in,
.tmp-scroll-trigger.tmp-scroll-trigger--design-mode.slide_in,
.tmp-scroll-trigger.tmp-scroll-trigger--design-mode .slider,
.tmp-scroll-trigger:not(.tmp-scroll-trigger--offscreen).tmp-scroll-trigger--cancel {
    opacity: 1;
    animation: none;
    transition: none;
}

.tmp-scroll-trigger.tmp-scroll-trigger--design-mode.slide_in {
    transform: translateY(0);
}

@keyframes slideIn {
    from {
        transform: translateY(2rem);
        opacity: 0.01;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0.01;
    }
    to {
        opacity: 1;
    }
}

.animation-order-0 {
    --animation-order: 0;
}

.animation-order-1 {
    --animation-order: 1;
}

.animation-order-2 {
    --animation-order: 2;
}

.animation-order-3 {
    --animation-order: 3;
}

.animation-order-4 {
    --animation-order: 4;
}

.animation-order-5 {
    --animation-order: 5;
}

.animation-order-6 {
    --animation-order: 6;
}

.animation-order-7 {
    --animation-order: 7;
}

.animation-order-8 {
    --animation-order: 8;
}

.animation-order-9 {
    --animation-order: 9;
}

.animation-order-10 {
    --animation-order: 10;
}

.animation-order-11 {
    --animation-order: 11;
}

.animation-order-12 {
    --animation-order: 12;
}

.animation-order-13 {
    --animation-order: 13;
}

.animation-order-14 {
    --animation-order: 14;
}

.animation-order-15 {
    --animation-order: 15;
}

.animation-order-16 {
    --animation-order: 16;
}

.animation-order-17 {
    --animation-order: 17;
}

.animation-order-18 {
    --animation-order: 18;
}

.animation-order-19 {
    --animation-order: 19;
}

.animation-order-20 {
    --animation-order: 20;
}

.animation-order-21 {
    --animation-order: 21;
}

.animation-order-22 {
    --animation-order: 22;
}

.animation-order-23 {
    --animation-order: 23;
}

.animation-order-24 {
    --animation-order: 24;
}

.animation-order-25 {
    --animation-order: 25;
}

.animation-order-26 {
    --animation-order: 26;
}

.animation-order-27 {
    --animation-order: 27;
}

.animation-order-28 {
    --animation-order: 28;
}

.animation-order-29 {
    --animation-order: 29;
}

.animation-order-30 {
    --animation-order: 30;
}

.animation-order-31 {
    --animation-order: 31;
}

.animation-order-32 {
    --animation-order: 32;
}

.animation-order-33 {
    --animation-order: 33;
}

.animation-order-34 {
    --animation-order: 34;
}

.animation-order-35 {
    --animation-order: 35;
}

.animation-order-36 {
    --animation-order: 36;
}

.animation-order-37 {
    --animation-order: 37;
}

.animation-order-38 {
    --animation-order: 38;
}

.animation-order-39 {
    --animation-order: 39;
}

.animation-order-40 {
    --animation-order: 40;
}

.animation-order-41 {
    --animation-order: 41;
}

.animation-order-42 {
    --animation-order: 42;
}

.animation-order-43 {
    --animation-order: 43;
}

.animation-order-44 {
    --animation-order: 44;
}

.animation-order-45 {
    --animation-order: 45;
}

.animation-order-46 {
    --animation-order: 46;
}

.animation-order-47 {
    --animation-order: 47;
}

.animation-order-48 {
    --animation-order: 48;
}

.animation-order-49 {
    --animation-order: 49;
}

.animation-order-50 {
    --animation-order: 50;
}


/*===============================
  Scroll To Top
  ===============================*/

.scrollToTop {
    display: none !important;
    height: 55px;
    width: 55px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0f0f0f;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 999;
    transition: 0.5s ease all;
}

@media only screen and (max-width: 575px) {
    .scrollToTop {
        height: 40px;
        width: 40px;
    }
}

.scrollToTop.active-progress {
    display: block !important;
}

.scrollToTop:hover {
    transform: translateY(-15%);
}

.scrollToTop .arrowUp {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.scrollToTop .arrowUp i {
    font-size: 19px;
}

.scrollToTop .water {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background-color: var(--color-primary);
    transition: all 0.3s;
}

.scrollToTop .water svg use {
    margin-bottom: -1px;
    position: relative;
    bottom: -1px;
    fill: var(--color-primary) !important;
}

.scrollToTop .water_wave {
    width: 200%;
    position: absolute;
    bottom: 100%;
}

.scrollToTop .water_wave_back {
    right: 0;
    fill: var(--color-heading);
    animation: wave-back 1.4s infinite linear;
}

.scrollToTop .water_wave_front {
    left: 0;
    fill: rgba(122, 37, 158, 0.8784313725);
    margin-bottom: -1px;
    animation: wave-front 0.7s infinite linear;
}

@keyframes wave-front {
    100% {
        transform: translateX(-50%);
    }
}

@keyframes wave-back {
    100% {
        transform: translateX(50%);
    }
}

.ready-chatting-option {
    max-width: max-content;
}

.ready-chatting-option.chat-visible label {
    bottom: 90px !important;
}

@media only screen and (max-width: 575px) {
    .ready-chatting-option.chat-visible label {
        bottom: 70px !important;
    }
}

.ready-chatting-option #click {
    display: none;
}

.ready-chatting-option label {
    bottom: 20px;
    height: 55px;
    width: 55px;
    background: var(--color-primary);
    text-align: center;
    line-height: 55px;
    border-radius: 50px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    position: fixed !important;
    right: 20px;
    z-index: 1019;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 50;
}

@media only screen and (max-width: 575px) {
    .ready-chatting-option label {
        height: 40px;
        width: 40px;
    }
}

.ready-chatting-option label::before {
    display: none;
}

.ready-chatting-option label::after {
    display: none;
}

.ready-chatting-option label i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    font-size: 22px;
    color: #fff;
}

.ready-chatting-option label i.fas {
    opacity: 0;
    pointer-events: none;
}

.ready-chatting-option #click:checked~label i.fas {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) rotate(180deg);
}

.ready-chatting-option #click:checked~label i.fab {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(180deg);
}

.ready-chatting-option .wrapper {
    position: fixed;
    right: 90px;
    bottom: 30px;
    max-width: 400px;
    background: var(--color-gray-2);
    border-radius: 5px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 1100;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media only screen and (max-width: 575px) {
    .ready-chatting-option .wrapper {
        max-width: 280px;
        right: 65px;
    }
}

@media only screen and (max-width: 479px) {
    .ready-chatting-option .wrapper {
        right: 15px;
        bottom: 90px;
    }
}

.ready-chatting-option #click:checked~.wrapper {
    opacity: 1;
    bottom: 85px;
    pointer-events: auto;
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.07);
}

@media only screen and (max-width: 479px) {
    .ready-chatting-option #click:checked~.wrapper {
        bottom: 112px;
    }
}

.ready-chatting-option .wrapper .head-text {
    line-height: 60px;
    color: #fff;
    border-radius: 5px 5px 0 0;
    padding: 0 20px;
    font-weight: 500;
    font-size: 20px;
    background: var(--color-primary);
}

.ready-chatting-option .wrapper .chat-box {
    padding: 20px;
    width: 100%;
}

@media only screen and (max-width: 575px) {
    .ready-chatting-option .wrapper .chat-box {
        padding: 10px;
    }
}

.ready-chatting-option .chat-box .desc-text {
    color: var(--color-body);
    text-align: center;
    line-height: 25px;
    font-size: 17px;
    font-weight: 500;
}

.ready-chatting-option .chat-box form {
    padding: 10px 15px;
    margin: 20px 0;
    border-radius: 5px;
    border: 2px solid var(--color-border);
}

.ready-chatting-option .chat-box form .field {
    height: 50px;
    width: 100%;
    margin-top: 20px;
}

.ready-chatting-option .chat-box form .field:last-child {
    margin-bottom: 15px;
}

.ready-chatting-option form .field input,
.ready-chatting-option form .field button,
.ready-chatting-option form .textarea textarea {
    width: 100%;
    height: 100%;
    padding-left: 20px;
    border: 2px solid var(--color-border);
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--color-body);
    font-family: var(--font-secondary);
    height: 50px !important;
    min-height: 50px;
}

.ready-chatting-option form .field input:focus,
.ready-chatting-option form .textarea textarea:focus {
    border-color: var(--color-primary);
}

.ready-chatting-option form .field input::placeholder,
.ready-chatting-option form .textarea textarea::placeholder {
    color: var(--color-body);
    transition: all 0.3s ease;
}

.ready-chatting-option form .field input:focus::placeholder,
.ready-chatting-option form .textarea textarea:focus::placeholder {
    color: var(--color-body);
}

.ready-chatting-option .chat-box form .textarea {
    height: 70px;
    width: 100%;
}

.ready-chatting-option .chat-box form .textarea textarea {
    height: 100%;
    border-radius: 5px;
    resize: none;
    padding: 15px 20px;
    font-size: 16px;
    max-height: 70px !important;
    min-height: 70px;
}

.ready-chatting-option .chat-box form .field button {
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: var(--color-primary);
    transition: all 0.3s ease;
    min-height: 50px;
}

.ready-chatting-option .chat-box form .field button:active {
    transform: scale(0.97);
}

.ready-chatting-option p,
.ready-chatting-option input,
.ready-chatting-option textarea {
    font-family: var(--font-primary) !important;
    font-weight: 400;
}

.tmp-btn {
    padding: 0 30px;
    background: var(--color-primary);
    /* height: 60px; */
    line-height: 45px;
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    border-radius: 6px;
    border: 0 none;
    outline: none;
    text-decoration: none;
    font-family: var(--font-secondary);
    text-transform: capitalize;
    text-align: center;
}

.tmp-btn.btn-border {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-body);
    line-height: 57px;
}

.tmp-btn.btn-border:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.tmp-btn.btn-border.color-white-off {
    border-color: var(--color-border-2);
    color: var(--color-white-off);
}

.tmp-btn.btn-border.color-white-off:hover {
    border-color: var(--color-primary);
    color: var(--color-white);
}

.tmp-btn.btn-active {
    background: var(--color-primary);
    border: 2px solid transparent;
    color: var(--color-white);
}

.tmp-btn.btn-gradient {
    color: var(--color-white);
    background-size: 300% 100%;
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary), var(--color-secondary), var(--color-primary));
}

.tmp-btn.btn-gradient.btn-gradient-2 {
    background-image: linear-gradient(to right, var(--color-pink), var(--color-violet), var(--color-violet), var(--color-pink));
}

.tmp-btn.btn-gradient.btn-gradient-3 {
    background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary), var(--color-primary), var(--color-secondary));
}

.tmp-btn.btn-gradient:hover {
    background-color: inherit;
    background-position: 102% 0;
    transition: all 0.4s ease-in-out;
}

.tmp-btn.tmp-marquee-btn {
    overflow: hidden;
}

.tmp-btn.tmp-marquee-btn span {
    display: inline-flex;
    position: relative;
    z-index: 3;
    line-height: 1.2;
}

.tmp-btn.tmp-marquee-btn span::after {
    content: attr(data-text);
    position: absolute;
    white-space: nowrap;
    top: 50%;
    left: 100%;
    transform: translate(100%, -50%);
}

.tmp-btn.tmp-marquee-btn.marquee-text-y span::after {
    top: 100%;
    left: 50%;
    transform: translate(-50%, 100%);
}

.tmp-btn.tmp-marquee-btn.marquee-auto span {
    animation: btnTxtMarqueeX 2s linear infinite;
}

.tmp-btn.tmp-switch-btn {
    overflow: hidden;
}

.tmp-btn.tmp-switch-btn span {
    display: inline-flex;
    position: relative;
    z-index: 3;
    transition: opacity 0.65s, transform 0.85s;
    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}

.tmp-btn.tmp-switch-btn span::after {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    opacity: 0;
    transition: inherit;
    left: 100%;
    transform: translate(50%, -50%);
}

.tmp-btn.tmp-switch-btn.tmp-switch-y span::after {
    left: 50%;
    transform: translate(-50%, 100%);
}

.tmp-btn.icon-hover .btn-text {
    transition-timing-function: cubic-bezier(0, 0.71, 0.4, 1);
    display: inline-block;
    transition: transform 0.5s;
    transform: translateX(7px);
}

.tmp-btn.icon-hover .btn-icon {
    margin-inline-start: -7px;
    display: inline-block;
}

.tmp-btn.icon-hover .btn-icon i {
    transition-timing-function: cubic-bezier(0, 0.71, 0.4, 1);
    display: inline-block;
    opacity: 0;
    transform: translateX(-7px);
    transition: opacity 0.25s, transform 0.5s;
    padding-left: 0;
}

.tmp-btn.icon-hover.icon-hover-left .btn-text {
    transform: translateX(-7px);
}

.tmp-btn.icon-hover.icon-hover-left .btn-icon {
    margin-inline-start: 0;
    margin-inline-end: -7px;
}

.tmp-btn.icon-hover.icon-hover-left .btn-icon i {
    transform: translateX(7px);
}

.tmp-btn.icon-hover.icon-hover-left:hover .btn-icon i {
    transform: translateX(-7px);
}

.tmp-btn.icon-hover.icon-hover-left:hover .btn-text {
    transform: translateX(7px);
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tmp-btn.hover-icon-reverse .btn-text {
    display: inline-block;
    transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
    margin-inline-start: -23px;
}

.tmp-btn.hover-icon-reverse .btn-icon {
    display: inline-block;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}

.tmp-btn.hover-icon-reverse .btn-icon+.btn-icon,
.tmp-btn.hover-icon-reverse .btn-icon+br+.btn-icon {
    margin-inline-end: 0;
    margin-inline-start: 8px;
    display: inline-block;
    margin-inline-start: 0;
    margin-inline-end: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition-delay: 0s;
    order: -2;
}

.tmp-btn.hover-icon-reverse .btn-icon+.btn-icon i,
.tmp-btn.hover-icon-reverse .btn-icon+br+.btn-icon i {
    padding-left: 0;
    padding-right: 6px;
}

.tmp-btn.rounded-player {
    border-radius: 100%;
    width: 100px;
    height: 100px;
    padding: 0;
    line-height: 100px;
    display: inline-block;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.rounded-player {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}

.tmp-btn.rounded-player span {
    display: inline-block;
}

.tmp-btn.rounded-player span i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
}

.tmp-btn.rounded-player.border {
    background-image: inherit;
    border-color: var(--color-white) !important;
    border-width: 2px !important;
}

.tmp-btn.rounded-player.border:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary) !important;
}

.tmp-btn.rounded-player.sm-size {
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.tmp-btn.rounded-player:focus {
    outline: none;
    color: var(--color-white);
}

.tmp-btn.rounded-player:hover {
    transform: scale(1.1);
    background: var(--color-primary);
}

.tmp-btn.rounded-player-2 {
    border: 0;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    position: relative;
    border-radius: 100%;
    background: var(--color-white);
    margin: 0 auto;
    display: inline-block;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.rounded-player-2 {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 575px) {
    .tmp-btn.rounded-player-2 {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.tmp-btn.rounded-player-2 .play-icon {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tmp-btn.rounded-player-2 .play-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-6px, -9px);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-large {
    width: 60px;
    height: 60px;
    margin-left: 0;
    margin-top: 0;
}

.tmp-btn.rounded-player-2.sm-size {
    width: 70px;
    height: 70px;
    line-height: 70px;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.rounded-player-2.sm-size {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

.tmp-btn.rounded-player-2.btn-theme-color {
    background: var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-theme-color::after {
    border-color: var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-theme-color::before {
    border-color: var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-theme-color .play-icon::before {
    border-left: 15px solid var(--color-white);
}

.tmp-btn.rounded-player-2.btn-theme-color:hover {
    color: inherit;
    background: var(--color-primary);
}

.tmp-btn.rounded-player-2:hover {
    color: inherit;
    background: var(--color-white);
}

.tmp-btn.with-animation::after,
.tmp-btn.with-animation::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 50%;
    border: 1.5px solid var(--color-white);
}

.tmp-btn.with-animation::before {
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.tmp-btn.with-animation::after {
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}

.tmp-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translate3d(0, -2px, 0);
}

.tmp-btn:hover.icon-hover .btn-text {
    transform: translateX(-7px);
}

.tmp-btn:hover.icon-hover .btn-icon i {
    opacity: 1;
    transform: translateX(7px);
}

.tmp-btn:hover.hover-icon-reverse .btn-text {
    transition-delay: 0.1s;
    transform: translateX(23px);
}

.tmp-btn:hover.hover-icon-reverse .btn-icon {
    opacity: 0;
    transition-delay: 0s;
    transform: translateX(10px);
}

.tmp-btn:hover.hover-icon-reverse .btn-icon+.btn-icon,
.tmp-btn:hover.hover-icon-reverse .btn-icon+br+.btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.225s;
}

.tmp-btn:hover.tmp-switch-btn span {
    transform: translateX(-200%);
}

.tmp-btn:hover.tmp-switch-btn span::after {
    opacity: 1;
    transform: translate(100%, -50%);
}

.tmp-btn:hover.tmp-switch-btn.tmp-switch-y span {
    transform: translateY(-200%);
}

.tmp-btn:hover.tmp-switch-btn.tmp-switch-y span::after {
    transform: translate(-50%, 150%);
}

.tmp-btn:hover.tmp-marquee-btn span {
    animation: btnTxtMarqueeX 2s linear infinite;
}

.tmp-btn:hover.tmp-marquee-btn.marquee-text-y span {
    animation: btnTxtMarqueeY 0.5s linear infinite;
}

.tmp-btn.btn-xs {
    padding: 0 14px;
    font-size: var(--font-size-b3);
    height: 30px;
    line-height: 29px;
    font-size: 14px;
}

.tmp-btn.btn-sm {
    padding: 0 22px;
    font-size: var(--font-size-b3);
    height: 45px;
    line-height: 43px;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.btn-sm {
        padding: 0 10px;
    }
}

.tmp-btn.btn-md {
    padding: 0 25px;
    height: 50px;
    line-height: 48px;
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.btn-md {
        padding: 0 15px;
        line-height: 51px;
    }
}

.tmp-btn.btn-md.btn-border {
    line-height: 47px;
}

.tmp-btn.btn-lg {
    height: 70px;
    line-height: 70px;
    padding: 0 35px;
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.btn-lg {
        padding: 0 17px;
    }
}

.tmp-btn.btn-xl {
    padding: 0 45px;
    font-size: 20px;
    height: 75px;
    line-height: 75px;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.btn-xl {
        padding: 0 20px;
        font-size: 16px;
        height: 55px;
        line-height: 55px;
    }
}

.tmp-btn.btn-xxl {
    padding: 0 60px;
    font-size: 22px;
    height: 100px;
    line-height: 100px;
}

@media only screen and (max-width: 767px) {
    .tmp-btn.btn-xxl {
        padding: 0 20px;
        font-size: 18px;
        height: 70px;
        line-height: 70px;
    }
}

.tmp-btn i {
    padding-left: 6px;
    display: inline-block;
    top: 2px;
    position: relative;
    font-size: 17px;
}

.tmp-btn i.image-icon {
    top: inherit;
    transition: 0.4s;
}

.tmp-btn.btn-border-gradient {
    background: linear-gradient(90deg, #CFA2E8, #637FEA);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    color: var(--color-heading);
    box-shadow: 0 10px 13px 0 rgba(209, 211, 237, 0.39);
    border-radius: 0;
}

.tmp-btn.btn-border-gradient::before {
    content: "";
    z-index: -1;
    top: 3px;
    left: 3px;
    position: absolute;
    background: #fff;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
}

.tmp-btn.btn-border-gradient.radius-round {
    border-radius: 500px;
}

.tmp-btn.btn-border-gradient.radius-round::before {
    border-radius: 500px;
}

.tmp-btn.hover-transform-none:hover {
    transform: none;
}

.radius-round {
    border-radius: 500px !important;
}


/*-----------------------
    Portfolio Arrow Icon  
-------------------------*/

.tmp-arrow-icon-btn {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    border: 2px solid var(--color-border);
    color: var(--color-white);
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    background: transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
    min-width: 50px;
}

.tmp-arrow-icon-btn .btn-inner {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.tmp-arrow-icon-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    margin-top: -9px;
    margin-left: -4px;
    z-index: 1;
    font-size: 18px;
    color: var(--color-heading);
}

.tmp-arrow-icon-btn i.tmp-icon {
    transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.tmp-arrow-icon-btn i.tmp-icon-bottom {
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transform: translateY(300%) translateX(-475%);
}

.tmp-arrow-icon-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tmp-arrow-icon-btn:hover i.tmp-icon {
    transform: translateY(-300%) translateX(475%);
}

.tmp-arrow-icon-btn:hover i.tmp-icon-bottom {
    transform: translateY(0) translateX(0) scale(1.1);
}

.tmp-arrow-icon-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}


/*--------------------
    Read More Btn  
---------------------*/

.read-more-btn {
    color: var(--color-heading);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
}

.read-more-btn.v2:hover {
    color: var(--color-primary);
}

.service-item.current .read-more-btn:hover {
    color: var(--color-heading);
}


/*--------------------
    Custom Button  
----------------------*/

.custom-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-btn.v2 {
    border: 1px solid var(--color-primary);
}

.custom-btn.v2:hover {
    background: #fff;
}

.custom-btn.v3 {
    border: 1px solid #ffffff;
    background: #ffffff;
}

.custom-btn.v3 i {
    color: var(--color-primary);
}

.custom-btn.v3:hover {
    background: var(--color-primary);
}

.custom-btn.v3:hover i {
    color: #fff;
}

.custom-btn i {
    transition: all 0.4s ease;
}

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

.custom-btn:hover i {
    transform: rotate(0deg);
}