@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/*=============================================
=              Default Css                 =
=============================================*/

html,
body {
    overflow-x: hidden;
}

body {
    line-height: 1.74;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    visibility: visible;
    font-family: 'Poppins', sans-serif;
    color: #696969;
    position: relative;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.41;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 34px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a,
button,
img,
input {
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

*:focus {
    outline: none !important;
}

a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

a:hover {
    text-decoration: none;
    color: #3272bd;
}

button,
input[type="submit"] {
    cursor: pointer;
}

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

.form-messege.success,
.form-messege-2.success {
    color: green;
}

.form-messege.error,
.form-messege-2.error {
    color: red;
}

.mark,
mark {
    padding: 0 0;
    background-color: transparent;
}

.font-weight--bold {
    font-weight: 800;
}

.font-weight--reguler {
    font-weight: 500;
}

.font-weight--normal {
    font-weight: 400;
}

.font-weight--light {
    font-weight: 300;
}

/*--
    Default Class
*/

.text-color-primary {
    color: #3272bd;
}

.text-color-secondary {
    color: #3272bd;
}

.text-black {
    color: #333333 !important;
}

.bg-white {
    background: #ffffff;
}

.bg-black {
    background: #333;
}

.bg-gray {
    background: #F8F8F8;
}

.bg-gray-2 {
    background: #F6FAFE;
}

.bg-gray-3 {
    background: #3272bd;
}

.bg-theme-default {
    background: #3272bd;
}

.theme-bg-secondary {
    background: #3272bd;
}

.bg-theme-three {
    background: #3272bd;
}

.sub-heading {
    color: #6d70a6;
}

.black-bg {
    background: #000000;
}

.border-radus-5 {
    border-radius: 5px;
}

.text-green {
    color: #3272bd;
}

.bg-gradient {
    background: -webkit-linear-gradient(top, #FFF 0, #F5F5F5 100%);
}

/*------- Defauld Class --------*/

.text-black {
    color: #333;
}

.box-shadow-top {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.border {
    border: 1px solid #ededed !important;
}

.border-top {
    border-top: 1px solid #ededed !important;
}

.border-right {
    border-right: 1px solid #ededed !important;
}

.border-bottom {
    border-bottom: 1px solid #ededed !important;
}

.border-left {
    border-left: 1px solid #ededed !important;
}

.border-top-dash {
    border-top: 1px dashed #ddd !important;
}

.border-bottom-dash {
    border-bottom: 1px dashed #ddd !important;
}

.border-top-thick {
    border-top: 2px solid #ededed !important;
}

.border-bottom-thick {
    border-bottom: 2px solid #ededed !important;
}

.border-top-drak {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.border-bottom-drak {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.section-title mark {
    color: #38cb89;
    padding: .0em;
    background-color: transparent;
}

.section-sub-title {
    color: #ababab;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.43;
    margin-top: -5px;
}

.section-under-heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.40;
    color: #333333;
}

.section-under-heading a {
    color: #3272bd;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.section-under-heading a::before {
    content: '';
    width: 0;
    height: 1px;
    bottom: -1px;
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: currentColor;
}

.section-under-heading a:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.img-width {
    width: 100%;
}

.title-dec-text {
    text-align: center;
    max-width: 760px;
    margin: auto;
}

::-moz-selection {
    color: #ffffff;
    background-color: #3272bd;
}

::selection {
    color: #ffffff;
    background-color: #3272bd;
}

form {
    /* FF 4-18 */
    /* FF 19+ */
    /* IE 10+ */
}

form input:focus::-webkit-input-placeholder {
    color: transparent;
}

form input:focus::-moz-placeholder {
    color: transparent;
}

form input:focus:-ms-input-placeholder {
    color: transparent;
}

form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input::-moz-placeholder,
form textarea::-moz-placeholder {
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input::-ms-input-placeholder,
form textarea::-ms-input-placeholder {
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input::placeholder,
form textarea::placeholder {
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus,
select:focus,
textarea:focus {
    color: #3272bd;
    border-color: #3272bd;
}

input[type="checkbox"] {
    position: relative;
    background: 0 0;
    border-width: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0 10px 0 3px;
    cursor: pointer;
}

/* swiper default styles */

.swiper-pagination {
    position: static;
    display: block;
    line-height: 1;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    position: relative;
    outline: none;
    margin-right: 20px;
}

.swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.swiper-pagination .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 8px;
    height: 8px;
    background: #d8d8d8;
    z-index: 1;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.swiper-pagination .swiper-pagination-bullet:hover:before {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #3272bd;
}

.swiper-pagination .swiper-pagination-bullet-active:before {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #3272bd;
}

.site-wrapper-reveal {
    position: relative;
    z-index: 2;
    background: #ffffff;
}

/*===================================
    - Breadvrumb
=================================*/

.breadcrumb-area {
    padding-top: 114px;
    padding-bottom: 114px;
    background-position: center center;
    padding-top: 120px;
    padding-bottom: 120px;
    background-size: cover;
    z-index: 3;
    position: relative;
    background-image: url(/images/bg/breadcumb.jpg);
}

.breadcrumb-area:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 47, 166, 0.7);
    z-index: -1;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-list {
    margin-top: 20px;
}

.breadcrumb-list li {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.58;
    text-transform: uppercase;
}

.breadcrumb-list li a {
    position: relative;
    color: #fff;
    font-size: 18ppx;
}

.breadcrumb-title {
    color: #fff;
}

.breadcrumb-list li a::after {
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: currentColor;
}

.breadcrumb-list li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    z-index: 0;
}

.breadcrumb-list li.active {
    color: #6D70A6;
}

/*=============================================
   - Dividers Css
=============================================*/

.separator-wrap {
    text-align: center;
    display: inline-block;
    margin-top: 40px;
}

.separator-wrap .dot {
    border-radius: 50%;
    box-shadow: 0 0 12px #def0ff;
    background: #000;
    background-color: #3272bd;
    animation: separator-bounce 1.4s ease-in-out 0s infinite both;
    width: 14px;
    height: 14px;
}

.separator-wrap .dot.second-circle {
    margin-top: 18px;
    animation-delay: -.16s;
}

.separator-wrap .dot.third-circle {
    margin-top: 14px;
    animation-delay: -.32s;
}

@-webkit-keyframes separator-bounce {
    0%,
    80%,
    100% {
        transform: scale(0.5);
    }
    40% {
        transform: scale(1);
    }
}

@keyframes separator-bounce {
    0%,
    80%,
    100% {
        transform: scale(0.5);
    }
    40% {
        transform: scale(1);
    }
}

/*=================================
=          - Google Map Css       =
===================================*/

#googleMap-1,
#googleMap-2,
#googleMap-3 {
    height: 400px;
}

/*=====  End of Default CSS  ======*/

/*============================================
=           Section Spacing Css          =
=============================================*/

.section-space {
    /* Section Padding Css */
    /* Section Margin Css */
}

.section-space--pt_150 {
    padding-top: 150px;
}

.section-space--ptb_120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-space--pt_120 {
    padding-top: 120px;
}

.section-space--pb_120 {
    padding-bottom: 120px;
}

.section-space--ptb_100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-space--pt_100 {
    padding-top: 100px;
}

.section-space--pb_100 {
    padding-bottom: 100px;
}

.section-space--ptb_90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-space--pt_90 {
    padding-top: 90px;
}

.section-space--pb_90 {
    padding-bottom: 90px;
}

.section-space--ptb_80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-space--pt_80 {
    padding-top: 80px;
}

.section-space--pb_80 {
    padding-bottom: 90px;
}

.section-space--ptb_70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-space--pt_70 {
    padding-top: 70px;
}

.section-space--pb_70 {
    padding-bottom: 70px;
}

.section-space--ptb_60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-space--pt_60 {
    padding-top: 60px;
}

.section-space--pb_60 {
    padding-bottom: 60px;
}

.section-space--pt_40 {
    padding-top: 40px;
}

.section-space--pb_40 {
    padding-bottom: 40px;
}

.section-space--ptb_30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-space--pt_30 {
    padding-top: 30px;
}

.section-space--pb_30 {
    padding-bottom: 30px;
}

.section-space--mt_15 {
    margin-top: 15px;
}

.section-space--mt_20 {
    margin-top: 20px;
}

.section-space--mt_30 {
    margin-top: 30px;
}

.section-space--mt_40 {
    margin-top: 40px;
}

.section-space--mt_50 {
    margin-top: 50px;
}

.section-space--mt_60 {
    margin-top: 60px;
}

.section-space--mt_70 {
    margin-top: 70px;
}

.section-space--mt_80 {
    margin-top: 80px;
}

.section-space--mt_100 {
    margin-top: 100px;
}

.section-space--mt_120 {
    margin-top: 120px;
}

.section-space--mb_15 {
    margin-bottom: 15px;
}

.section-space--mb_20 {
    margin-bottom: 20px;
}

.section-space--mb_30 {
    margin-bottom: 30px;
}

.section-space--mb_40 {
    margin-bottom: 40px;
}

.section-space--mb_50 {
    margin-bottom: 50px;
}

.section-space--mb_60 {
    margin-bottom: 60px;
}

.section-space--mb_100 {
    margin-bottom: 100px;
}

.section-space--mb_120 {
    margin-bottom: 120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 767px) {
    .small-mt__0 {
        margin-top: 0px;
    }
    .small-mt__10 {
        margin-top: 10px;
    }
    .small-mt__20 {
        margin-top: 20px;
    }
    .small-mt__30 {
        margin-top: 30px;
    }
    .small-mt__40 {
        margin-top: 40px;
    }
    .small-mt__50 {
        margin-top: 50px;
    }
    .small-mt__60 {
        margin-top: 60px;
    }
    .small-mb__30 {
        margin-bottom: 30px;
    }
    .small-mb__40 {
        margin-bottom: 40px;
    }
    .small-mb__50 {
        margin-bottom: 50px;
    }
    .small-mb__60 {
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tablet-mt__0 {
        margin-top: 0px;
    }
    .tablet-mt__30 {
        margin-top: 30px;
    }
    .tablet-mt__40 {
        margin-top: 40px;
    }
    .tablet-mt__50 {
        margin-top: 50px;
    }
    .tablet-mt__60 {
        margin-top: 60px;
    }
    .tablet-mb__30 {
        margin-bottom: 30px;
    }
    .tablet-mb__40 {
        margin-bottom: 40px;
    }
    .tablet-mb__50 {
        margin-bottom: 50px;
    }
    .tablet-mb__60 {
        margin-bottom: 60px;
    }
}

/*=====  End of spacing  ======*/

/* ------------------------
    Brook Hover Effect
---------------------------*/

.brook-transition {
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bk-hover a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    color: #999;
}

.bk-hover a::after {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: currentColor;
}

.bk-hover a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

/* ------------------------
    Separator Bounce
---------------------------*/

@-webkit-keyframes separator-bounce {
    0%,
    80%,
    to {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes separator-bounce {
    0%,
    80%,
    to {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*=============================================
=            container Css            =
=============================================*/

@media (min-width: 1600px) {
    .container-fluid--cp-150 {
        padding: 0 150px !important;
    }
}

@media (min-width: 1600px) and (max-width: 1664px) {
    .container-fluid--cp-150 {
        padding: 0 110px !important;
    }
}

@media (min-width: 1200px) {
    .container-fluid--cp-150 {
        padding: 0 50px;
    }
}

@media (min-width: 1700px) {
    .container-fluid--cp-140 {
        padding: 0 140px !important;
    }
}

@media (min-width: 1700px) and (max-width: 1663px) {
    .container-fluid--cp-140 {
        padding: 0 100px !important;
    }
}

@media (min-width: 1600px) and (max-width: 1664px) {
    .container-fluid--cp-140 {
        padding: 0 30px !important;
    }
}

@media (min-width: 1200px) {
    .container-fluid--cp-140 {
        padding: 0 30px;
    }
}

@media (min-width: 1600px) {
    .container-fluid--cp-120 {
        padding: 0 120px !important;
    }
}

@media (min-width: 1600px) and (max-width: 1664px) {
    .container-fluid--cp-120 {
        padding: 0 110px !important;
    }
}

@media (min-width: 1200px) {
    .container-fluid--cp-120 {
        padding: 0 50px;
    }
}

@media (min-width: 1600px) {
    .container-fluid--cp-80 {
        padding: 0 80px !important;
    }
}

@media (min-width: 1600px) and (max-width: 1664px) {
    .container-fluid--cp-80 {
        padding: 0 30px !important;
    }
}

@media (min-width: 1200px) {
    .container-fluid--cp-80 {
        padding: 0 30px;
    }
}

.container-fluid--cp-60 {
    padding: 0 60px;
}

@media only screen and (max-width: 767px) {
    .container-fluid--cp-60 {
        padding: 0 15px;
    }
}

.container-fluid--cp-30 {
    padding: 0 30px;
}

@media only screen and (max-width: 767px) {
    .container-fluid--cp-30 {
        padding: 0 15px;
    }
}

@media (min-width: 1200px) {
    .page-content-double-sidebar .container {
        max-width: 1600px;
    }
}

@media (max-width: 1919px) {
    .container-fluid--cp-60 {
        padding: 0 30px;
    }
    .container-fluid--cp-80 {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 1919px) and (max-width: 767px) {
    .container-fluid--cp-80 {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 1919px) and (max-width: 575px) {
    .container-fluid--cp-80 {
        padding: 0 15px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container_fl {
    padding-left: 15px;
    padding-right: 15px;
}

.col-06__left {
    width: 600px;
    max-width: 100%;
    float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .col-06__left {
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
}

.col-06__right {
    width: 600px;
    max-width: 100%;
    float: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .col-06__right {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
}

.banner-image__content {
    width: 570px;
    max-width: 100%;
}

.row--35 {
    margin-left: -35px;
    margin-right: -35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--35 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--35 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media only screen and (max-width: 767px) {
    .row--35 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}

.row--35>[class*="col"],
.row--35>[class*="col-"] {
    padding-left: 35px;
    padding-right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--35>[class*="col"],
    .row--35>[class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--35>[class*="col"],
    .row--35>[class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media only screen and (max-width: 767px) {
    .row--35>[class*="col"],
    .row--35>[class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.row--30 {
    margin-left: -30px;
    margin-right: -30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media only screen and (max-width: 767px) {
    .row--30 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}

.row--30>[class*="col"],
.row--30>[class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--30>[class*="col"],
    .row--30>[class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--30>[class*="col"],
    .row--30>[class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media only screen and (max-width: 767px) {
    .row--30>[class*="col"],
    .row--30>[class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.row--10 {
    margin-left: -10px;
    margin-right: -10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--10 {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--10 {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media only screen and (max-width: 767px) {
    .row--10 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
}

.row--10>[class*="col"],
.row--10>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--10>[class*="col"],
    .row--10>[class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--10>[class*="col"],
    .row--10>[class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media only screen and (max-width: 767px) {
    .row--10>[class*="col"],
    .row--10>[class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/*=====  End of container  ======*/

/*=============================================
=               Header Css            =
=============================================*/

.header {
    display: flex;
    text-align: center;
}

.header-area {
    position: relative;
    z-index: 9;
    background: rgba(0,0,0, 0.3);
    height: 105px !important;
}

.header-area .is-sticky {
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 999;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.header-search-btn a {
    background: #3272bd;
    padding: 10px 25px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    border: 1px solid #3272bd;
    transition: .5s;
    font-size: 14px !important;
}

.header-search-btn a:hover {
    background: transparent;
    border: 1px solid #3272bd;
    color: #3272bd;
}

.header-logo {
    flex-basis: 20%;
    padding: 14px 0;
    display: flex;
    align-items: center;
}

.header-right {
    flex-grow: 1;
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.header-search-form {
    padding-left: 24px;
    display: block;
}

.header-search-form a {
    line-height: 0;
    font-size: 20px;
}

/*==============================
    - Mobile Menu Css
===============================*/

.mobile-navigation-icon {
    width: 24px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-left: 30px;
}

.mobile-navigation-icon:hover i {
    background-color: #3272bd;
}

.mobile-navigation-icon:hover i:before {
    width: 80%;
    background-color: #3272bd;
}

.mobile-navigation-icon:hover i:after {
    background-color: #3272bd;
    width: 60%;
}

.mobile-navigation-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:before {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    content: "";
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:after {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    content: "";
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/*==============================
    - Navigation Menu Css
===============================*/

.navigation-menu>ul {
    display: flex;
}

.navigation-menu>ul>li {
    margin: 0 20px;
}

.navigation-menu>ul>li>a {
    display: block;
    color: #fff;
    padding: 21px 2px;
    position: relative;
    font-size: 14px !important;
    font-weight: 100;
    line-height: 1.18;
}

.navigation-menu>ul>li>a:before {
    content: '';
    width: 0;
    height: 3px;
    bottom: 0;
    position: absolute;
    left: 0;
    background-color: #3272bd;
    transition: 0.3s;
}

.navigation-menu>ul>li:hover>a:before,
.navigation-menu>ul>li.active>a:before {
    width: 100%;
    left: 0;
}

.header-bottom-left-wrap .navigation-menu>ul>li:first-child {
    margin: 0 24px 0 0;
}

/*=============================================
=             Button Css           =
=============================================*/

.ht-btn {
    font-size: 15px;
    font-weight: 500;
    border-style: solid;
    border-radius: 5px;
    border-color: transparent;
    padding: 0 36px;
    text-align: center;
    color: #ffffff;
    background: #3272bd;
    border-width: 1px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.ht-btn:hover,
.ht-btn:active,
.ht-btn:focus {
    color: #ffffff;
    background-image: #3272bd;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.ht-btn.ht-btn-xs {
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    padding: 0 20px;
}

.ht-btn.ht-btn-sm {
    padding: 0 30px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
}

.ht-btn.ht-btn-md {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 54px;
    height: 54px;
}

.ht-btn.ht-btn-lg {
    padding: 0 40px;
    height: 64px;
    line-height: 64px;
    font-size: 16px;
}

.ht-btn.ht-btn-custom {
    min-width: 280px;
}

.ht-btn.ht-btn-full {
    width: auto;
    display: block;
}

.ht-btn--outline {
    border-width: 1px;
    line-height: 54px;
    background: transparent;
    border-color: #3272bd;
    color: #3272bd;
}

.ht-btn--outline:hover,
.ht-btn--outline:focus,
.ht-btn--outline:active {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    border-color: transparent;
    background: #3272bd;
    color: #ffffff;
}

.ht-btn--solid {
    border-width: 1px;
    line-height: 54px;
    background: transparent;
    border-color: #ddd;
    color: #3272bd;
}

.ht-btn--solid:hover,
.ht-btn--solid:focus,
.ht-btn--solid:active {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    border-color: transparent;
    background: #3272bd;
    color: #ffffff;
}

.ht-btn--circle {
    border-radius: 30px;
}

.ht-btn--no-round {
    border-radius: 0px;
}

.ht-btn.ht-btn-default {
    padding: 0 30px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    width: 180px;
}

.ht-btn .btn-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    font-size: 20px;
    margin-left: 10px;
}

.btn {
    font-size: 15px;
    font-weight: 500;
    border-style: solid;
    border-radius: 5px;
    border-color: transparent;
    border: 1px solid transparent;
    padding: 0 36px;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    height: 54px;
    line-height: 54px;
    letter-spacing: 0em;
    color: #ffffff;
    background: #3272bd;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.btn:hover,
.btn:active,
.btn:focus {
    font-weight: 500;
    color: #ffffff;
    background: #3272bd;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.btn--secondary {
    background-image: none;
    background-color: #3272bd;
}

.btn--secondary:hover {
    background-image: none;
    background: #3272bd;
}

.btn--black {
    background-image: none;
    background-color: #000000;
}

.btn--black:hover {
    background-image: none;
    background: #000000;
}

.btn--white {
    background-image: none;
    background-color: #ffffff;
    color: #000000;
    -webkit-box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.07);
}

.btn--white:hover,
.btn--white:focus {
    background-image: none;
    background: #ffffff;
    color: #000000;
}

.btn--gradient {
    background-image: none;
    background: -webkit-linear-gradient(300deg, #FF3F85 0, #FAA720 100%) !important;
    background: -o-linear-gradient(300deg, #FF3F85 0, #FAA720 100%) !important;
    background: linear-gradient(150deg, #FF3F85 0, #FAA720 100%) !important;
}

.btn--gradient:hover {
    background-image: none;
    background: -webkit-linear-gradient(300deg, #FF3F85 0, #FAA720 100%);
    background: -o-linear-gradient(300deg, #FF3F85 0, #FAA720 100%);
    background: linear-gradient(150deg, #FF3F85 0, #FAA720 100%);
}

.btn--link {
    color: #3272bd;
}

.btn--link:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn.ht-btn-default {
    padding: 0 30px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    width: 180px;
}

.hover-style-link {
    position: relative;
}

.hover-style-link:after {
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #3272bd;
}

.hover-style-link:hover {
    color: #3272bd;
}

.hover-style-link:hover:after {
    left: 0;
    width: 100%;
    right: auto;
}

.hover-style-link--secondary {
    color: #3272bd;
}

.hover-style-link--secondary:after {
    background-color: #3272bd;
}

.hover-style-link--secondary:hover {
    color: #3272bd;
}

.hover-style-link--white {
    color: #ffffff;
}

.hover-style-link--white:after {
    background-color: #ffffff;
}

.hover-style-link--white:hover {
    color: #ffffff;
}

.hover-style-link--sub-color {
    color: #6d70a6;
}

.hover-style-link--sub-color:after {
    background-color: #6d70a6;
}

.hover-style-link--sub-color:hover {
    color: #6d70a6;
}

.hover-style-default {
    position: relative;
}

.hover-style-default:after {
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #3272bd;
}

.hover-style-default:hover {
    color: #3272bd;
}

.hover-style-default:hover:after {
    left: 0;
    width: 100%;
    right: auto;
}

/* Images Button */

.image-btn {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    border-radius: 5px;
    overflow: hidden;
}

/* video pay link */

.video-play i {
    color: #3272bd;
}

.video-play span {
    font-weight: 500;
    letter-spacing: 3px;
    margin-left: 10px;
}

/* button wrapper */

.button-wrapper>a {
    border: none;
}

@media only screen and (max-width: 479px) {
    .button-wrapper>a {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .button-wrapper>a:last-child {
        margin-bottom: 0;
    }
}

/* Text Button*/

.btn-text {
    color: #3272bd;
}

.btn-text:hover {
    color: #3272bd;
}

.single-button-group h5 {
    margin-bottom: 10px;
}

.single-button-group .button-group-wrap {
    margin-left: -10px;
    margin-right: -10px;
}

.single-button-group a {
    margin: 10px;
}

.single-button-group a:hover,
.single-button-group a:active,
.single-button-group a:focus {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

/*=====  End of Button  ======*/

/*=============================================
=            Accordions Css           =
=============================================*/

.faq-wrapper .panel.panel-default {
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
}

.faq-wrapper .card,
.faq-wrapper .card-header {
    border-radius: 0;
}

.faq-wrapper .card {
    border-bottom: none;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
}

.faq-wrapper .card:last-child {
    margin-bottom: 0;
}

.faq-wrapper .card-header {
    padding: 0;
    border-bottom: 0;
    background-color: #ffffff;
}

.faq-wrapper .card-header h5 button {
    border: none;
    width: 100%;
    text-align: left;
    color: #000000;
    padding: 20px 30px;
    position: relative;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    border-radius: 5px;
    background: #ffffff;
    text-decoration: none;
}

.faq-wrapper .card-header h5 button span {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-wrapper .card-header h5 button span i {
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    display: none;
}

.faq-wrapper .card-header h5 button:hover,
.faq-wrapper .card-header h5 button:focus {
    text-decoration: none;
    color: #000000;
}

.faq-wrapper .card-header h5 button[aria-expanded="true"] {
    color: #ffffff;
    background: #3272bd;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-wrapper .card-header h5 button[aria-expanded="true"] span i:nth-child(2) {
    visibility: visible;
    opacity: 1;
    display: inline;
}

.faq-wrapper .card-header h5 button[aria-expanded="true"]:before {
    height: 100%;
}

.faq-wrapper .card-header h5 button[aria-expanded="false"] span i:nth-child(1) {
    visibility: visible;
    opacity: 1;
    display: inline;
}

.faq-wrapper .card-body {
    padding: 23px 30px 29px;
}

.faq-custom-col {
    max-width: 570px;
    float: right;
    width: 100%;
}

/*========================================
=       Video Popup Css            =
==========================================*/

.single-popup-wrap {
    position: relative;
}

.video-link {
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    display: block;
}

.video-link .ht-popup-video.video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: rgba(8, 106, 216, 0.8);
}

.video-link .ht-popup-video.video-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.video-link .ht-popup-video.video-button .video-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%, -50%);
    pointer-events: none;
}

.video-link .ht-popup-video.video-button .video-mark .wave-pulse {
    width: 1px;
    height: 0;
    margin: 0 auto;
}

.video-link .ht-popup-video.video-button .video-mark .wave-pulse::after,
.video-link .ht-popup-video.video-button .video-mark .wave-pulse::before {
    opacity: 0;
    content: '';
    display: block;
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 3px solid #3272bd;
    animation: zoomBig 3.25s linear infinite;
    animation-delay: 0s;
}

.video-link .ht-popup-video.video-button .video-mark .wave-pulse::before {
    animation-delay: .75s;
}

.video-link .ht-popup-video .video-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.video-link .ht-popup-video .video-button-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-link .ht-popup-video .video-button-btn .video-play {
    width: 78px;
    height: 78px;
    background: #3272bd;
    box-shadow: 0 2px 41px 0 rgba(91, 99, 254, 0.36);
    border-radius: 50%;
    transition: all 1s cubic-bezier(0, 0, 0.2, 1) !important;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.07);
}

.video-link .ht-popup-video .video-button-btn .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    margin-left: 1px;
}

.video-link .ht-popup-video .video-button-btn .video-play-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 17px solid #fff;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
    border-left-color: #ffffff;
}

.video-link:hover .video-play {
    transform: scale3d(1.15, 1.15, 1.15);
}

@-webkit-keyframes zoomBig {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
        border-width: 3px;
    }
    40% {
        opacity: .5;
        border-width: 2px;
    }
    65% {
        border-width: 1px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes zoomBig {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
        border-width: 3px;
    }
    40% {
        opacity: .5;
        border-width: 2px;
    }
    65% {
        border-width: 1px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes zoomBig {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
        border-width: 3px;
    }
    40% {
        opacity: .5;
        border-width: 2px;
    }
    65% {
        border-width: 1px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

/*=============================================
=          Processing Hero Css             =
=============================================*/

.processing-hero-bg {
    background-image: url("/images/slider/slider.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 850px;
    position: relative;
    z-index: 1;
}

.processing-hero-bg:after {
    background: #091d3e none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.processing-hero-bg::before {
    position: absolute;
    left: 5%;
    top: 5%;
    content: "";
    height: 500px;
    width: 500px;
    background: #3272bd;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-size: cover;
    opacity: .6;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transition-delay: 900ms;
    transition-delay: 900ms;
    border-radius: 50%;
    filter: blur(80px);
    -webkit-filter: blur(80px);
}

.processing-hero-text h6 {
    line-height: 36px;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.processing-hero-text h1 {
    color: #ffffff;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: 0;
    line-height: 1.2;
    max-width: 800px;
}

.processing-hero-text p {
    color: #ffffff;
    line-height: 32px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 18px;
}

.slider-video-icon {
    margin-left: 25px;
}

.slider-video-icon a {
    font-size: 18px;
    color: #fff;
    background-color: #000;
    display: inline-block;
    width: 60px;
    line-height: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
}

.processing-hero-images-wrap {
    margin-top: 50px;
}

.processing-hero-images {
    margin-left: -130px;
    margin-right: -200px;
}

.hero-button {
    display: flex;
    align-items: center;
}

.hero-button .btn {
    min-width: 140px;
    padding: 0 24px;
}

.hero-popup-video {
    margin-left: 20px;
}

.hero-popup-video a {
    display: inline-block;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hero-popup-video a .video-content {
    display: flex;
}

.hero-popup-video a .video-content .video-text {
    margin-left: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.hero-popup-video .video-play {
    font-size: 10px;
    display: inline-block;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #fff;
}

.hero-popup-video .video-play .video-play-icon i {
    color: #ffffff;
}

/*===============================
    Video Banner Section Css
=================================*/

.rv-video-section {
    position: relative;
}

.rv-video-section .main-video-box {
    position: relative;
    z-index: 8;
    text-align: center;
    max-width: 570px;
    max-height: 350px;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 180px;
}

.rv-video-section .ht-banner-01 {
    position: relative;
}

.rv-video-section .ht-banner-01 img {
    position: absolute;
    left: 6%;
    top: -70px;
    width: 200px;
}

.rv-video-section .ht-banner-02 {
    position: relative;
}

.rv-video-section .ht-banner-02 img {
    position: absolute;
    left: 50%;
    top: -103px;
    max-width: 230px;
}

.rv-video-section .ht-banner-03 {
    position: relative;
}

.rv-video-section .ht-banner-03 img {
    position: absolute;
    left: 10%;
    bottom: 0px;
}

.rv-video-section .ht-banner-04 {
    right: 50px;
    left: auto;
    position: absolute;
    top: 100%;
}

.animation_images {
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-name: animateUpDown;
    animation-iteration-count: infinite;
}

.animation_images.one {
    animation-duration: 3.2s;
}

.animation_images.two {
    animation-duration: 3.8s;
}

.animation_images.three {
    animation-duration: 3.4s;
}

.animation_images.four {
    animation-duration: 3.4s;
}

@-webkit-keyframes animateUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes animateUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0px);
    }
}

/*=============================================
=            Box Images Css              =
=============================================*/

.ht-box-images.style-01 {
    display: block;
}

.ht-box-images.style-01 .image-box-wrap {
    box-shadow: 0 0 40px 5px rgba(51, 51, 51, 0.1);
    background: #fff;
    border-radius: 5px;
    padding: 30px 38px;
    min-height: 150px;
    display: flex;
    align-items: center;
}

.ht-box-images .image-box-wrap .box-image {
    margin-right: 30px;
}

.ht-box-images.style-01.logo-atual .image-box-wrap .content .heading {
    font-weight: 500;
    line-height: 1.67;
    margin-bottom: 0;
}

.ht-box-images.style-01 .image-box-wrap .content .text {
    color: #696969;
}

.ht-box-images.style-01:hover {
    transform: translateY(-5px);
}

/*======================================
=          Counters Css              =
=======================================*/

.fun-fact--three {
    position: relative;
    margin-bottom: 40px;
}

.fun-fact--three .fun-fact__count {
    color: #3272bd;
    margin-bottom: 19px;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
}

.fun-fact--three .fun-fact__text {
    font-size: 16px;
    text-transform: uppercase;
    color: #7e7e7e;
}

.modern-number-01 h2 {
    position: relative;
    font-size: 15px;
    line-height: 2em;
    letter-spacing: 2px;
    color: #ababab;
    text-transform: uppercase;
    display: flex;
    align-items: flex-end;
}

.modern-number-01 h3 {
    margin-top: 25px;
    font-size: 40px;
    text-transform: capitalize;
}

.modern-number-01 span.mark-text {
    font-size: 180px;
    line-height: .8;
    font-weight: 900;
    margin: 0 5px -5px -5px;
    color: #3272bd;
}

/*======================================
=          Computing Css              =
=======================================*/

.processing-computing-area {
    padding: 150px 0;
    background-image: url(/images/bg/3.png);
}

.style-two.processing-computing-area {
    margin-bottom: 130px;
}

.computing-info-box h2 {
    font-size: 64px;
    line-height: 1.13;
    color: #fff;
}

.text2.section-under-heading {
    color: #fff;
}

.text2 a {
    color: #fff;
}

/*======================================
=  feature-large-images-wrapper  Css  =
=======================================*/

/*=============================================
=         Box Large Images Css            =
=============================================*/

.box-large-image__midea {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.box-large-image__two {
    position: relative;
    overflow: hidden;
    display: block;
    background: url(/images/box-image/15.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.style2.box-large-image__two {
    background: url(/images/box-image/13.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.style3.box-large-image__two {
    background: url(/images/box-image/3.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.style4.box-large-image__two {
    /*background: url(/images/box-image/5.jpg);*/
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-size: cover !important;
}

.style5.box-large-image__two {
    background: url(/images/box-image/7.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.style6.box-large-image__two {
    background: url(/images/box-image/8.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.box-large-image__two:hover {
    transform: translateY(-5px);
}

.box-large-image__two:hover .box-large-image__midea::after {
    background: #3272bd;
    opacity: .8;
}

.box-large-image__two:hover .box-info {
    transform: translateY(4%);
    display: block;
    flex-direction: column;
}

.text p {
    width: 79%;
    text-align: center;
    margin: auto;
}

.box-large-image__two:hover .box-info .heading {
    transform: translateY(0);
}

.box-large-image__two .box-large-image__midea {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    height: 320px;
}

.box-large-image__two .box-large-image__midea img {
    width: 100%;
    transition: transform 1s;
}

.box-large-image__two .box-large-image__midea::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(11%, rgba(28, 15, 105, 0)), color-stop(80%, #000));
    background-image: -webkit-linear-gradient(top, rgba(28, 15, 105, 0) 11%, #000 80%);
    background-image: -o-linear-gradient(top, rgba(28, 15, 105, 0) 11%, #000 80%);
    background-image: linear-gradient(-180deg, rgba(28, 15, 105, 0) 11%, #000 80%);
}

.box-large-image__two__box {
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.box-large-image__two__box .box-info {
    position: absolute;
    z-index: 2;
    text-align: center;
    justify-content: center;
    padding: 30px 20px;
    transform: translateY(100%);
    height: 330px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    top: 0;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.box-large-image__two__box .box-info .heading {
    transform: translateY(-100%) translateY(-65px);
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
}

.box-large-image__two__box .box-info .text {
    color: #ffffff;
}

.box-large-image__two__box .box-info .btn {
    background: #3272bd;
    margin-top: 40px;
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    padding: 0;
}

.feature-list-button-box .ht-btn {
    margin: 10px;
}

/*=============================================
=         Testimonial slider Css           =
=============================================*/

.testimonial-slider--info {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.testimonial-slider__media {
    flex-shrink: 0;
    margin-right: 30px;
}

.testimonial-slider__media img {
    border-radius: 50%;
}

.testimonial-slider__text {
    font-size: 18px;
}

.testimonial-slider__text::after {
    box-sizing: border-box;
}

.testimonial-slider__author {
    flex-grow: 1;
}

.testimonial-slider__author .testimonial-rating {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffb944;
}

.testimonial-slider__author .author-info {
    display: flex;
    align-items: center;
}

.testimonial-slider__author .name {
    color: #333333;
}

.testimonial-slider__author .designation {
    font-size: 14px;
}

.testimonial-slider__author .designation:before {
    content: ' / ';
    padding: 0 5px;
}

.testimonial-slider__one {
    position: relative;
    background: #fff;
    padding: 31px 50px 47px;
    border-radius: 5px;
    margin: 20px 15px 35px;
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
    transition: all 0.3s ease-in-out;
    transform: translateY(0px) !important;
}

.testimonial-slider__one .testimonial-slider--info {
    display: flex;
    align-items: center;
}

.testimonial-slider__one .testimonial-slider--info .post-thumbnail {
    margin-right: 20px;
}

.testimonial-slider__one:hover {
    transform: translateY(-5px) !important;
}

/*=====  End of testimonial slider  ======*/

/*=============================================
=            Brand Logo Css             =
=============================================*/

.brand-logo-slider__one .brand-logo-slider__container {
    padding: 15px 0;
}

.brand-logo-slider__one .brand-logo {
    align-self: center;
    text-align: center;
    position: relative;
}

.brand-logo-slider__one .brand-logo__image {
    transition: all .4s linear;
}

.brand-logo-slider__one .brand-logo__image-hover {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8, 0.8);
    transition: all .4s linear;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.brand-logo-slider__one .brand-logo:hover .brand-logo__image {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8, 0.8);
}

.brand-logo-slider__one .brand-logo:hover .brand-logo__image-hover {
    opacity: 1;
    visibility: visible;
    transform: none !important;
}

/*=====  End of brand logo css  ======*/

/*=============================================
=            Contact Us Css             =
=============================================*/

.processing-contact-us-bg {
    background-color: #3272bd;
    background-image: url(../images/bg/stech-processing-contact-bg.webp);
    background-repeat: no-repeat;
    background-position: top right;
}

.conact-us-wrap-one .heading {
    position: relative;
    padding-left: 34px;
    font-weight: 600;
    line-height: 1.4;
}

.text-white {
    color: #fff !important;
}

.conact-us-wrap-one .heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 94%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #3272bd;
}

.conact-us-wrap-one .sub-heading {
    margin-top: 15px;
    font-size: 18px;
    margin-left: 34px;
    color: #696969;
}

.contact-info-one .heading {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 10px;
}

.contact-info-two .icon {
    color: #fff;
    font-size: 40px;
}

.fa-phone::before {
    content: "\f095";
}

.contact-info-two .call-us {
    color: #3272bd;
}

.contact-info-two .call-us {
    line-height: 1.17;
    color: #3272bd;
    position: relative;
    display: inline-block;
}

.contact-info-two .call-us::before {
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: currentColor;
}

.contact-info-two .call-us:hover {
    color: #3272bd;
}

.contact-info-two .call-us:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.contact-info-two .call-us a:hover {
    color: #fff !important;
}

.contact-info-two .heading {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-two .call-us {
    color: #3272bd;
}

.contact-info-two .call-us:hover {
    color: #3272bd;
}

.contact-info-two .call-us a:hover {
    color: #3272bd;
}

.contact-info-two .btn--secondary {
    background: #ffffff;
    color: #3272bd;
}

.contact-info-two .btn--secondary:hover {
    background: #3272bd;
    color: #ffffff;
}

.contact-info-two .btn--secondary {
    min-width: 230px;
}

/*=============================================
   - Scroll top
=============================================*/

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: -60px;
    z-index: 999;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
    display: block;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 60px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    background-color: #3272bd;
    background-size: 200% auto;
    background-position: left center;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow: hidden;
}

.scroll-top.show {
    visibility: visible;
    opacity: 1;
    bottom: 60px;
}

.scroll-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #ffffff;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.scroll-top .arrow-top {
    transform: translate(-50%, -50%);
}

.scroll-top .arrow-bottom {
    transform: translate(-50%, 80px);
}

.scroll-top:hover {
    background-position: right center;
}

.scroll-top:hover .arrow-top {
    transform: translate(-50%, -80px);
}

.scroll-top:hover .arrow-bottom {
    transform: translate(-50%, -50%);
}

.scroll-top:hover {
    background-position: right center;
}

.scroll-top:hover .arrow-top {
    transform: translate(-50%, -80px);
}

.scroll-top:hover .arrow-bottom {
    transform: translate(-50%, -50%);
}

/*=========================================
=                Footer Css            =
===========================================*/

.reveal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.footer-widget-wrapper {
    margin-bottom: -35px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget__title {
    margin-top: -3px;
    color: #333333;
}

.footer-widget__list li {
    margin-bottom: 10px;
}

.footer-widget__list li:last-child {
    margin-bottom: 0;
}

.footer-widget__list li .image_btn {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
    overflow: hidden;
}

.copyright-text {
    display: inline-block;
}

.bg-mediumslateblue {
    background-color: #412977;
}

ul.footer-widget__horizontal-list {
    margin-bottom: 20px;
}

ul.footer-widget__horizontal-list li {
    display: inline-block;
    margin: 10px;
    color: #ffffff;
}

.ht-social-white.ht-social-networks .item {
    color: #fff;
}

/*=====  End of footer ======*/

/*=============================================
=      Social Networks Css            =
=============================================*/

.ht-social-networks .item {
    display: inline-block;
}

.ht-social-networks .item .social-link {
    display: block;
    padding: 5px 8px;
}

.ht-social-networks.large-icon .social-link {
    padding: 5px 13px;
    font-size: 20px;
}

.ht-social-networks.extra-large-icon .social-link {
    padding: 5px 15px;
    font-size: 30px;
}

.ht-social-networks.flat-round .item,
.ht-social-networks.solid-rounded-icon .item {
    margin: 8px;
}

.ht-social-networks.flat-round .social-link,
.ht-social-networks.solid-rounded-icon .social-link {
    font-size: 18px;
    display: block;
    text-align: center;
    height: 48px;
    width: 48px;
    line-height: 40px;
    background: #ededed;
    color: #696969;
    border-radius: 50%;
    position: relative;
}

.ht-social-networks.flat-round .social-link:hover,
.ht-social-networks.solid-rounded-icon .social-link:hover {
    color: #ffffff;
    background: #3272bd;
}

.ht-social-networks.solid-rounded-icon .social-link {
    background: transparent;
    border: 1px solid #e0e0e0;
}

.ht-social-networks.solid-rounded-icon .social-link:hover {
    border: 1px solid #3272bd;
    color: #ffffff;
}

.ht-social-networks.solid-rounded-icon.social-white .social-link {
    color: #ffffff;
}

.ht-social-networks.solid-rounded-icon.social-white .social-link:hover {
    border: 1px solid #ffffff;
    color: #3272bd;
    background: #ffffff;
}

.ht-social-networks.icon-tilte .link-icon {
    font-size: 16px;
    min-width: 16px;
    margin-right: 10px;
}

.ht-social-networks.tilte-style .social-link {
    position: relative;
}

.ht-social-networks.tilte-style .social-link::before {
    content: '-';
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    color: #333;
}

.ht-social-networks.tilte-style .social-link:hover .link-text::after {
    background-color: #3272bd;
    width: 100%;
    left: 0;
}

.ht-social-networks.tilte-style .item:first-child .social-link::before {
    display: none;
}

.ht-social-networks.tilte-style .link-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding: 5px 0;
    z-index: 1;
}

.ht-social-networks.tilte-style .link-text::before {
    content: '';
    height: 2px;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -2;
    background: rgba(0, 0, 0, 0.2);
}

.ht-social-networks.tilte-style .link-text::after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}

.ht-social-networks.white-tilte-social .social-link::before {
    color: rgba(255, 255, 255, 0.7);
}

.ht-social-networks.white-tilte-social .social-link:hover .link-text::after {
    background-color: #ffffff;
}

.ht-social-networks.white-tilte-social .link-text {
    color: #fff;
}

.ht-social-networks.white-tilte-social .link-text::before {
    background: rgba(255, 255, 255, 0.7);
}

/*=====================================
=         Blog Pages Css           =
======================================*/

.single-blog-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.single-blog-item:last-child {
    padding-bottom: 60px;
    margin-bottom: 0px;
}

.single-blog-item.xs-list-blog-item:last-child {
    margin-bottom: 0;
}

.single-blog-item {
    border-radius: 5px;
}

.single-blog-item .post-quote {
    position: relative;
    padding: 78px 40px 53px;
    background: #f5f7fd;
    text-align: center;
}

.single-blog-item .post-quote .post-quote-text {
    line-height: 1.5;
    margin-bottom: 39px;
}

.single-blog-item .post-quote::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 54px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 132px;
    width: 150px;
    background: url(../images/icons/quote.webp) no-repeat;
}

.single-blog-item .post-quote .post-quote-name {
    color: #333;
}

.single-blog-item .post-info {
    margin-top: 20px;
}

.single-blog-item .post-info .post-categories {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #3272bd;
}

.single-blog-item .post-info .post-title {
    margin-bottom: 15px;
}

.single-blog-item .post-info .post-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.single-blog-item .post-info .post-meta .post-author {
    padding: 5px 10px 0;
}

.single-blog-item .post-info .post-meta .post-author .avatar-96 {
    width: 32px;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 50%;
}

.single-blog-item .post-info .post-meta .post-date,
.single-blog-item .post-info .post-meta .post-view {
    padding: 5px 10px;
}

.single-blog-item .post-info .post-meta .post-date .meta-icon,
.single-blog-item .post-info .post-meta .post-view .meta-icon {
    margin-right: 6px;
}

.single-blog-item .post-info .post-meta .post-comments {
    padding: 5px 10px;
}

.single-blog-item .post-info .post-meta .post-comments .meta-icon {
    margin-right: 6px;
}

.single-blog-item.blog-grid {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 8px;
    margin-bottom: 30px;
}

.single-blog-item.blog-grid:hover .post-feature {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.single-blog-item.blog-grid .post-info .post-title {
    margin-bottom: 10px;
    line-height: 1.5;
}

.single-blog-item.blog-grid .post-info .btn-text {
    margin-top: 10px;
}

.single-blog-item.blog-grid .post-info .btn-text a {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
}

.single-blog-item.blog-grid .post-info .btn-text a:hover {
    color: #3272bd;
}

.single-blog-item.blog-masonry {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    position: relative;
    margin-bottom: 30px;
}

.single-blog-item.blog-masonry .post-info {
    padding: 10px 25px 83px;
}

.single-blog-item.blog-masonry .post-info .post-title {
    line-height: 1.5;
}

.single-blog-item .post-read-more .btn-read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 56px;
    line-height: 55px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid #eee;
    color: #3272bd;
    display: block;
}

.single-blog-item .post-read-more .btn-read-more::before {
    background: #3272bd;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}

.single-blog-item .post-read-more .btn-read-more:hover {
    color: #ffffff;
}

.single-blog-item .post-read-more .btn-read-more:hover::before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.post-list-wrapper .blog-thumbnail a {
    display: block;
}

.post-list-wrapper .blog-thumbnail a img {
    width: 100%;
}

.post-list-wrapper .post-feature {
    margin-right: 30px;
}

.post-list-wrapper .post-info {
    margin-top: 0px;
}

/*=====================================
=         Blog page-pagination  Css           =
======================================*/

.page-pagination li {
    display: inline-block;
}

.page-pagination li a {
    font-weight: 500;
    padding: 0 10px;
    display: block;
    text-align: center;
    line-height: 41px;
    min-width: 41px;
    height: 41px;
    text-transform: uppercase;
    color: #ababab;
    letter-spacing: 2px;
    border-radius: 5px;
}

.page-pagination li a.current {
    background: #f6f5f9;
    color: #3272bd;
}

.page-pagination li a:hover {
    color: #3272bd;
}

/*======================================
=          Contact Us Css            =
=======================================*/

.contact-form__two input[type="text"]:focus,
.contact-form__two input[type="email"]:focus,
.contact-form__two input[type="url"]:focus,
.contact-form__two input[type="password"]:focus,
.contact-form__two input[type="search"]:focus,
.contact-form__two input[type="number"]:focus,
.contact-form__two input[type="tel"]:focus,
.contact-form__two input[type="range"]:focus,
.contact-form__two input[type="date"]:focus,
.contact-form__two input[type="month"]:focus,
.contact-form__two input[type="week"]:focus,
.contact-form__two input[type="time"]:focus,
.contact-form__two input[type="datetime"]:focus,
.contact-form__two input[type="datetime-local"]:focus,
.contact-form__two input[type="color"]:focus,
.contact-form__two textarea:focus,
.contact-form__two select:focus,
.contact-form__two select:focus,
.contact-form__two textarea:focus {
    color: #222;
    border-color: transparent;
    background: #fff;
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}

.contact-input {
    margin: 0 -10px;
}

.contact-input .contact-inner {
    float: left;
    margin: 0 0 20px;
    padding: 0 10px;
    width: 50%;
}

.contact-inner {
    margin: 0 0 20px;
}

.contact-inner input,
.contact-inner textarea {
    width: 100%;
    color: #000;
    border-color: #f8f8f8;
    background-color: #f8f8f8;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0em;
    border: none;
    width: 100%;
    outline: none;
    border: 1px solid #eee;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 5px;
    padding: 3px 20px;
    height: 56px;
}

.contact-inner textarea {
    height: 150px;
    padding: 15px;
}

.contact-inner select {
    color: #777;
}

.conact-us-wrap-one .heading {
    position: relative;
    padding-left: 34px;
    font-weight: 600;
    line-height: 1.4;
}

.conact-us-wrap-one .heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 94%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #3272bd;
}

.conact-us-wrap-one .sub-heading {
    margin-top: 15px;
    font-size: 18px;
    margin-left: 34px;
    color: #696969;
}

.fa-long-arrow-right:before {
    content: "+";
}

.post-feature.blog-thumbnail {
    transition: .5s;
}

.img{
    image-rendering: -webkit-optimize-contrast !important;
}

@media(min-width: 768px){
    #main-wrapper{
        margin-top: -106px !important;
    }
}


.btn-leia-mais{
    height: 30px !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
    color: #3272bd;
    background: transparent !important;
    border: solid 1px #3272bd !important;
    line-height: initial !important;
}

.btn-leia-mais:hover{
    color: #3272bd !important;
}

.btn-leia-mais:active{
    color: #3272bd !important;
}

.btn-leia-mais:focus{
    color: #3272bd !important;
}



.svg-contrate{
    font-size: 45px !important;
    color: #3272bd;
}


.fab{
    font-size: 24px !important;
}

.img-produto {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-atual{
    width: 200px;
    height: auto;
}

img{
    image-rendering: -webkit-optimize-contrast;
}


.margin-ropo-meu{
    margin-topo-menu: 26px !important

}


.menu-altura{
    margin-top: 21px !important;
}

.frame-maps{
    width: 600px;
    height: 300px;
}

@media(max-width: 768px) {
    .frame-maps{
        width: initial;
        height: 300px;
    }
}

.btn-header{
    font-size: 12px !important;
    padding: 0 20px !important;
}

.modal-pop{
    background: transparent !important;
    border-color: rgba(255,255,255, 0.3);
}

.btn-close-pop{
    background: url(/images/xx.svg);
    width: 1px;
    height: 1px;
}

/* .btn-active:active .btn-active:focus span:focus span:active{*/
/*    color: #3272bd !important;*/
/*}*/
