/* ============================================= */
/* !!!!         VARIABLES STYLE CSS         !!!! */
/* ============================================= */
:root {
    --primary-font: 'Roboto', sans-serif;
    --theme-color: #7928ca;
    --linear-gradient: linear-gradient(141.55deg, #7928ca 3.46%, #ff0080 99.86%), #7928ca;
    --text-color: #444444;
    --border-color: #DDDDDD;
    --black: #000000;
    --white: #ffffff;
    --h1: normal 600 51px/1.2 var(--primary-font);
    --h2: normal 600 41px/1.2 var(--primary-font);
    --h3: normal 600 26px/1.2 var(--primary-font);
    --h4: normal 600 22px/1.2 var(--primary-font);
    --h5: normal 600 18px/1.2 var(--primary-font);
    --h6: normal 600 14px/1.2 var(--primary-font);
    --common-text: normal 400 16px/1.4 var(--primary-font);
}

/* ============================================= */
/* !!!!        SITE GLOBAL STYLE CSS        !!!! */
/* ============================================= */
*,
:after,
:before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    vertical-align: inherit;
}

html {
    outline: none;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body,
html {
    scrollbar-width: none;
}


svg,
img {
    max-width: 100%;
    display: block;
}

a,
.btn,
button {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    color: inherit;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    display: inline-block;
}



.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

::-webkit-input-placeholder {
    color: var(--theme-color);
}

:-ms-input-placeholder {
    color: var(--theme-color);
}

::placeholder {
    color: var(--theme-color);
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}

body {
    color: var(--black);
    font: var(--common-text);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p,
li,
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font: var(--common-text);
}

h1,
.h1 {
    font: var(--h1);
}

h2,
.h2 {
    font: var(--h2);
}

h3,
.h3 {
    font: var(--h3);
}

h4,
.h4 {
    font: var(--h4);
}

h5,
.h5 {
    font: var(--h5);
}

h6,
.h6 {
    font: var(--h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.uppercase {
    text-transform: uppercase;
}

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

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

b {
    font-weight: bold;
    display: inline-block;
}

p:not(:last-of-type) {
    margin-bottom: 15px;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}



.padding-top {
    padding-top: 50px;
}

.padding-bottom {
    padding-bottom: 50px;
}


.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    padding: 15px 0;
    background: var(--white);
    box-shadow: 0 8px 20px 0 rgb(0 0 0 / 5%);
}

.site-header .main-navigationbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu ul {
    display: flex;
    align-items: center;
}

.main-menu ul>li:not(:last-of-type) {
    margin-right: 15px;
}

.main-menu ul>li>a {
    display: inline-flex;
    align-items: center;
    color: var(--theme-color);
}

.main-menu ul>li>a>svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.main-menu ul>li>a>svg path {
    fill: var(--theme-color);
}

.banner-desc h1 {
    text-transform: uppercase;
}

.banner-section {
    background: var(--linear-gradient);
    padding: 80px 0;
}


.main-banner-iamge img {
    display: block;
    margin: auto;
    width: 100%;
}

.hover-up {
    animation: hover-up 1s linear alternate infinite;
    -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

@keyframes hover-up {
    0% {
        -webkit-transform: translate3d(0, 15px, 0);
        transform: translate3d(0, 15px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.btn-primary {
    background: var(--theme-color);
    color: var(--white);
    box-shadow: none;
    border-color: var(--theme-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: none !important;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: none !important;
}

.text-primary {
    color: var(--theme-color) !important;
}


.section-title {
    margin-bottom: 60px;
}

.site-footer{
    padding: 20px 0;
}
.page-link{
    display:flex;
    align-items: center;
    background-color: #f4f5f9;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 700;
    color: #253D4E;
}
.page-link svg{
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

@media only screen and (max-width:767) {
    :root {
        --h1: normal 600 28px/1.2 var(--first-font);
        --h2: normal 600 24px/1.2 var(--first-font);
        --h3: normal 600 18px/1.2 var(--first-font);
        --h4: normal 600 16px/1.2 var(--first-font);
        --h5: normal 600 14px/1.2 var(--first-font);
      }
      
      .container-fluid{
        padding: 0 15px;
      }
}

