/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/

* {
    padding: 0;
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    --main-color-light: #c0a9cb;
    --main-color: #9872aa;
    --main-color-over: #7a5088;
    --main-color-dark: #312136;

    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(152, 114, 170, 0.25);
    --bs-accordion-active-color: var(--main-color-dark);
    --bs-accordion-active-bg: var(--main-color-light);
    --bs-nav-link-color: var(--main-color);
    --bs-nav-link-hover-color: var(--main-color-dark);

    --bs-pagination-color: var(--main-color);
    --bs-pagination-active-bg: var(--main-color);
    --bs-pagination-active-border-color: var(--main-color);
    --bs-pagination-hover-color: var(--main-color-dark);
    --bs-pagination-focus-color: var(--main-color-dark);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(152, 114, 170, 0.25);
}


body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a09e9c;
    text-transform: initial;
    /*max-width: 1920px;*/
    margin: 0 auto;
    overflow-x: hidden;
}

a, a:hover, a:active, a:focus {
    /*display: inline-block;*/
    text-decoration: none;
    color: #343a3f;
    /*font-size: 16px;*/
    /*padding: 0;*/
    /*font-weight: 500;*/
    text-transform: capitalize;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #343a3f;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

p {
    margin: 0;
    color: #767f86;
    font-size: 14px;
    line-height: 1.8;
    text-transform: initial;
}

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

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

ul li {
    list-style: none;
    color: #767f86;
}

.form-select, .form-control {
    color: #656c72;
}

select, input, textarea, button {
    box-shadow: none;
    outline: 0 !important;
}

button {
    background: transparent;
    border: 0;
    font-size: 12px;
}

html, body {
    height: 100%;
}

.page-title {
    margin-top: 5rem;
    padding-top: 1rem;
}

.page-title > h1 {
    font-size: 2rem;
}

[placeholder]:focus::-webkit-input-placeholder {
    -webkit-transition: opacity 0.3s 0.3s ease;
    -moz-transition: opacity 0.3s 0.3s ease;
    -ms-transition: opacity 0.3s 0.3s ease;
    -o-transition: opacity 0.3s 0.3s ease;
    transition: opacity 0.3s 0.3s ease;
    opacity: 0;
}

.section-padding {
    padding: 120px 0 90px;
}

.section-bg-light {
    background: transparent;
}

.section-bg-dark {
    background: #f8fafb;
}

/* section-header */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    color: #505866;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.section-header h2 span {
    text-transform: lowercase;
}

.section-header p {
    font-size: 16px;
}

/* section-header */
.fix {
    position: relative;
    clear: both;
}

@media screen and (max-width: 767px) {
    .page-title {
        padding-bottom: 1rem;
    }
}

.btn-asv {
    color: #767f86;
    text-align: center;
    width: 100%;
    background: transparent;
    border-radius: 3px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(71, 71, 71, .2);
}

.btn-asv:hover {
    box-shadow: 0 0 10px rgba(71, 71, 71, .4);
    background: var(--main-color);
    color: #FFFFFF;
}

.btn-asv-cta {
    color: #767f86;
    text-align: center;
    font-size: 2rem;
    text-transform: initial !important;
    font-weight: normal;;
    width: 100%;
    background: transparent;
    border-radius: 3px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(71, 71, 71, .2);
}

.btn-asv-cta:hover {
    box-shadow: 0 0 10px rgba(71, 71, 71, .4);
    background: var(--main-color);
    color: #FFFFFF;
}

.icon-side {
    display: inline-block;
    color: #50616c;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eef2f6;
    border-radius: 50%;
}


.icon-side [class^="flaticon-"]:before,
.icon-side [class*=" flaticon-"]:before,
.icon-side [class^="flaticon-"]:after,
.icon-side [class*=" flaticon-"]:after {
    font-size: 35px;
}
