/******
 ****** Global font
 ******/
:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1320px;
    --bs-breakpoint-xxl: 1400px;
}

/******
 ****** Globa font size
 ******/
body {
    font-size: 13px;
    color: #0c0e31;
}
h1,
h2,
h3,
h4,
h5,
h6{
  color: #000;
}

.bg-light-blue h1,
.bg-light-blue h2,
.bg-light-blue h3,
.bg-light-blue h4,
.bg-light-blue h5,
.bg-light-blue h6,
.company-detail h1,
.company-detail h2,
.company-detail h3,
.company-detail h4,
.company-detail h5,
.company-detail h6,
.company-item h1,
.company-item h2,
.company-item h3,
.company-item h4,
.company-item h5,
.company-item h6{
  animation: shine-0279cd7b 2s ease-in-out infinite alternate;
    background: linear-gradient(135deg, #28c76f, #5a4aff 47.92%, #ff3739);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% auto;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

p:last-child {
    margin-bottom: 0;
}
.bold {
    font-weight: bold !important;
}

/******
 ****** Globa color
 ******/
.bg-primary {
    background-color: #EF4741;
}
.text-primary {
    color: #EF4741;
}
.text-black {
    color: #000;
}
.text-grey {
    color: #333;
}

/******
 ****** Globa button
 ******/
a {
    color: #009CA6;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #000;
    transition: all 0.5s;
}

.btn{
    font-weight: bold;
}

/******
 ****** Globa round
 ******/
.round-3 {
    border-radius: 2px;
}
.round-10 {
    border-radius: 6px;
}
.round-16 {
    border-radius: 8px;
}
.round-20 {
    border-radius: 10px;
}
.round-25 {
    border-radius: 12px;
}
.round-30 {
    border-radius: 15px;
}
.round-40 {
    border-radius: 30px;
}
@media (min-width: 768px) {
    .round-3 {
        border-radius: 3px;
    }
    .round-10 {
        border-radius: 8px;
    }
    .round-16 {
        border-radius: 10px;
    }
    .round-20 {
        border-radius: 15px;
    }
    .round-25 {
        border-radius: 18px;
    }
    .round-30 {
        border-radius: 20px;
    }
    .round-40 {
        border-radius: 30px;
    }
}
@media (min-width: 1200px) {
    .round-10 {
        border-radius: 10px;
    }
    .round-16 {
        border-radius: 16px;
    }
    .round-20 {
        border-radius: 20px;
    }
    .round-25 {
        border-radius: 25px;
    }
    .round-30 {
        border-radius: 30px;
    }
    .round-40 {
        border-radius: 40px;
    }
}

/******
 ****** Globa image
 ******/
img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.zoom-out,
.zoom-in {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.zoom-out img,
.zoom-in img {
    transition: all 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.zoom-in:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.zoom-out:hover img {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}
.content-float {
    transition: all 0.2s linear;
}
.content-float:hover {
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
}
.content-float:hover {
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
}
.shadow-hover {
    transition: all 0.3s ease-in-out;
}
.shadow-hover:hover {
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
}

/******
 ****** Add ratio style
 ******/
.ratio {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.ratio::before {
    display: block;
    content: "";
}
.ratio > .ratio-area {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.ratio-1by1::before {
    padding-top: 100%;
}
.ratio-4by3::before {
    padding-top: 75%;
}
.ratio-2by1::before {
    padding-top: 50%;
}
.ratio-16by9::before {
    padding-top: 56.25%;
}
.ratio-21by9::before {
    padding-top: 42.857143%;
}
@media (min-width: 576px) {
    .ratio-sm-1by1::before {
        padding-top: 100%;
    }
    .ratio-sm-4by3::before {
        padding-top: 75%;
    }
    .ratio-sm-2by1::before {
        padding-top: 50%;
    }
    .ratio-sm-16by9::before {
        padding-top: 56.25%;
    }
    .ratio-sm-21by9::before {
        padding-top: 42.857143%;
    }
}
@media (min-width: 768px) {
    .ratio-md-1by1::before {
        padding-top: 100%;
    }
    .ratio-md-4by3::before {
        padding-top: 75%;
    }
    .ratio-md-2by1::before {
        padding-top: 50%;
    }
    .ratio-md-16by9::before {
        padding-top: 56.25%;
    }
    .ratio-md-21by9::before {
        padding-top: 42.857143%;
    }
}
@media (min-width: 992px) {
    .ratio-lg-1by1::before {
        padding-top: 100%;
    }
    .ratio-lg-4by3::before {
        padding-top: 75%;
    }
    .ratio-lg-2by1::before {
        padding-top: 50%;
    }
    .ratio-lg-16by9::before {
        padding-top: 56.25%;
    }
    .ratio-lg-21by9::before {
        padding-top: 42.857143%;
    }
}
@media (min-width: 1200px) {
    .ratio-xl-1by1::before {
        padding-top: 100%;
    }
    .ratio-xl-4by3::before {
        padding-top: 75%;
    }
    .ratio-xl-2by1::before {
        padding-top: 50%;
    }
    .ratio-xl-16by9::before {
        padding-top: 56.25%;
    }
    .ratio-xl-21by9::before {
        padding-top: 42.857143%;
    }
}

/******
 ****** Add grid style
 ******/
/* .container,
.row {
    --bs-gutter-x: 30px;
} */
.row-0 {
    --bs-gutter-x: 0;
}
.row-10 {
    --bs-gutter-x: 10px;
}
.row-20 {
    --bs-gutter-x: 20px;
}
.row-30 {
    --bs-gutter-x: 30px;
}
.row-40 {
    --bs-gutter-x: 40px;
}
.row-50 {
    --bs-gutter-x: 50px;
}
.row-60 {
    --bs-gutter-x: 60px;
}
.row-70 {
    --bs-gutter-x: 70px;
}
.row-80 {
    --bs-gutter-x: 80px;
}
.row-90 {
    --bs-gutter-x: 90px;
}
.row-100 {
    --bs-gutter-x: 100px;
}
.row-110 {
    --bs-gutter-x: 110px;
}
.row-120 {
    --bs-gutter-x: 120px;
}
.row-130 {
    --bs-gutter-x: 130px;
}
.row-140 {
    --bs-gutter-x: 140px;
}
.row-150 {
    --bs-gutter-x: 150px;
}
.row-160 {
    --bs-gutter-x: 160px;
}
.row-170 {
    --bs-gutter-x: 170px;
}
.row-180 {
    --bs-gutter-x: 180px;
}
.row-190 {
    --bs-gutter-x: 190px;
}
.row-200 {
    --bs-gutter-x: 200px;
}
@media (min-width: 576px) {
    .row-sm-0 {
        --bs-gutter-x: 0;
    }
    .row-sm-10 {
        --bs-gutter-x: 10px;
    }
    .row-sm-20 {
        --bs-gutter-x: 20px;
    }
    .row-sm-30 {
        --bs-gutter-x: 30px;
    }
    .row-sm-40 {
        --bs-gutter-x: 40px;
    }
    .row-sm-50 {
        --bs-gutter-x: 50px;
    }
    .row-sm-60 {
        --bs-gutter-x: 60px;
    }
    .row-sm-70 {
        --bs-gutter-x: 70px;
    }
    .row-sm-80 {
        --bs-gutter-x: 80px;
    }
    .row-sm-90 {
        --bs-gutter-x: 90px;
    }
    .row-sm-100 {
        --bs-gutter-x: 100px;
    }
    .row-sm-110 {
        --bs-gutter-x: 110px;
    }
    .row-sm-120 {
        --bs-gutter-x: 120px;
    }
    .row-sm-130 {
        --bs-gutter-x: 130px;
    }
    .row-sm-140 {
        --bs-gutter-x: 140px;
    }
    .row-sm-150 {
        --bs-gutter-x: 150px;
    }
    .row-sm-160 {
        --bs-gutter-x: 160px;
    }
    .row-sm-170 {
        --bs-gutter-x: 170px;
    }
    .row-sm-180 {
        --bs-gutter-x: 180px;
    }
    .row-sm-190 {
        --bs-gutter-x: 190px;
    }
    .row-sm-200 {
        --bs-gutter-x: 200px;
    }
}
@media (min-width: 768px) {
    .row-md-0 {
        --bs-gutter-x: 0;
    }
    .row-md-10 {
        --bs-gutter-x: 10px;
    }
    .row-md-20 {
        --bs-gutter-x: 20px;
    }
    .row-md-30 {
        --bs-gutter-x: 30px;
    }
    .row-md-40 {
        --bs-gutter-x: 40px;
    }
    .row-md-50 {
        --bs-gutter-x: 50px;
    }
    .row-md-60 {
        --bs-gutter-x: 60px;
    }
    .row-md-70 {
        --bs-gutter-x: 70px;
    }
    .row-md-80 {
        --bs-gutter-x: 80px;
    }
    .row-md-90 {
        --bs-gutter-x: 90px;
    }
    .row-md-100 {
        --bs-gutter-x: 100px;
    }
    .row-md-110 {
        --bs-gutter-x: 110px;
    }
    .row-md-120 {
        --bs-gutter-x: 120px;
    }
    .row-md-130 {
        --bs-gutter-x: 130px;
    }
    .row-md-140 {
        --bs-gutter-x: 140px;
    }
    .row-md-150 {
        --bs-gutter-x: 150px;
    }
    .row-md-160 {
        --bs-gutter-x: 160px;
    }
    .row-md-170 {
        --bs-gutter-x: 170px;
    }
    .row-md-180 {
        --bs-gutter-x: 180px;
    }
    .row-md-190 {
        --bs-gutter-x: 190px;
    }
    .row-md-200 {
        --bs-gutter-x: 200px;
    }
}
@media (min-width: 992px) {
    .row-lg-0 {
        --bs-gutter-x: 0;
    }
    .row-lg-10 {
        --bs-gutter-x: 10px;
    }
    .row-lg-20 {
        --bs-gutter-x: 20px;
    }
    .row-lg-30 {
        --bs-gutter-x: 30px;
    }
    .row-lg-40 {
        --bs-gutter-x: 40px;
    }
    .row-lg-50 {
        --bs-gutter-x: 50px;
    }
    .row-lg-60 {
        --bs-gutter-x: 60px;
    }
    .row-lg-70 {
        --bs-gutter-x: 70px;
    }
    .row-lg-80 {
        --bs-gutter-x: 80px;
    }
    .row-lg-90 {
        --bs-gutter-x: 90px;
    }
    .row-lg-100 {
        --bs-gutter-x: 100px;
    }
    .row-lg-110 {
        --bs-gutter-x: 110px;
    }
    .row-lg-120 {
        --bs-gutter-x: 120px;
    }
    .row-lg-130 {
        --bs-gutter-x: 130px;
    }
    .row-lg-140 {
        --bs-gutter-x: 140px;
    }
    .row-lg-150 {
        --bs-gutter-x: 150px;
    }
    .row-lg-160 {
        --bs-gutter-x: 160px;
    }
    .row-lg-170 {
        --bs-gutter-x: 170px;
    }
    .row-lg-180 {
        --bs-gutter-x: 180px;
    }
    .row-lg-190 {
        --bs-gutter-x: 190px;
    }
    .row-lg-200 {
        --bs-gutter-x: 200px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1230px !important;
    }
    .row-xl-0 {
        --bs-gutter-x: 0;
    }
    .row-xl-10 {
        --bs-gutter-x: 10px;
    }
    .row-xl-20 {
        --bs-gutter-x: 20px;
    }
    .row-xl-30 {
        --bs-gutter-x: 30px;
    }
    .row-xl-40 {
        --bs-gutter-x: 40px;
    }
    .row-xl-50 {
        --bs-gutter-x: 50px;
    }
    .row-xl-60 {
        --bs-gutter-x: 60px;
    }
    .row-xl-70 {
        --bs-gutter-x: 70px;
    }
    .row-xl-80 {
        --bs-gutter-x: 80px;
    }
    .row-xl-90 {
        --bs-gutter-x: 90px;
    }
    .row-xl-100 {
        --bs-gutter-x: 100px;
    }
    .row-xl-110 {
        --bs-gutter-x: 110px;
    }
    .row-xl-120 {
        --bs-gutter-x: 120px;
    }
    .row-xl-130 {
        --bs-gutter-x: 130px;
    }
    .row-xl-140 {
        --bs-gutter-x: 140px;
    }
    .row-xl-150 {
        --bs-gutter-x: 150px;
    }
    .row-xl-160 {
        --bs-gutter-x: 160px;
    }
    .row-xl-170 {
        --bs-gutter-x: 170px;
    }
    .row-xl-180 {
        --bs-gutter-x: 180px;
    }
    .row-xl-190 {
        --bs-gutter-x: 190px;
    }
    .row-xl-200 {
        --bs-gutter-x: 200px;
    }
    .col-xl-65 {
        width: 54%;
    }
    .col-xl-55 {
        width: 46%;
    }
}
/******
 ****** Globa form
 ******/
.global-form .form-group {
    margin-bottom: 20px;
}
.form-control{
    font-size: 13px;
}

/******
 ****** General
 ******/
.wrapper-none,
.home .wrapper {
    background: none;
}
.content {
    padding: 30px 0;
}
.home-wrapper .content {
    padding: 0;
}
.banner {
    background-color: #f2f3f7;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 120px;
}
.banner-only-title {
    height: auto;
    padding-top: 30px;
    background: none !important;
}
.banner .container {
    height: 100%;
}
.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}
.section-title {
    margin-bottom: 30px;
}
.single-title {
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .content {
        padding: 50px 0;
    }
    .banner {
        height: 160px;
    }
    .banner-only-title {
        height: auto;
        padding-top: 50px;
    }
    .section-title {
        margin-bottom: 50px;
    }
}
@media (min-width: 1200px) {
    .content {
        padding: 80px 0;
    }
    .banner {
        height: 200px;
    }
    .banner-only-title {
        height: auto;
        padding-top: 80px;
    }
    .section-title {
        margin-bottom: 70px;
    }
}

/******
 ****** 404
 ******/
.error-404-wrapper {
    padding: 60px 0;
    text-align: center;
}
.img-404 {
    line-height: 0;
}
.img-404 img {
    max-height: 150px;
}
@media (min-width: 768px) {
    .error-404-wrapper {
        padding: 80px 0;
    }
    .img-404 img {
        max-height: 200px;
    }
}
@media (min-width: 992px) {
    .error-404-wrapper {
        padding: 100px 0;
    }
    .img-404 img {
        max-height: 260px;
    }
}
@media (min-width: 1200px) {
    .error-404-wrapper {
        padding: 150px 0;
    }
    .img-404 img {
        max-height: 320px;
    }
}
