/* :root {
  --banner-image: url();
} */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400;
    color: #444444;
}

a {
    color: #47b2e4;
    text-decoration: none;
}

a:hover {
    color: #73c5eb;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

.securities-h2 {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #fff !important;
    text-align: initial;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #47b2e4;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}
#header.header-scrolled,
#header.header-inner-pages {
    background: #191c83;
    opacity: 80%;
}
#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#header .logo a {
    color: #fff;
}
#header .logo img {
    max-height: 45px;
    width: 160px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* .banner_img {
  background: var(--banner-image) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  -ms-background-size: cover !important;
  width: 100% !important;
} */

#hero {
    width: 100%;
    height: 78vh;
    background: #191c83;
}
#hero img {
    width: 100%;
}
#hero .border-none {
    border: 2px solid #fff;
}
#hero .banner-effect {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}
#hero .container {
    padding-top: 72px;
}
#hero h1 {
    margin: 0px;
    font-size: 6rem;
    font-weight: 700;
    line-height: 56px;
    color: #00b2e7;

    /* position: absolute;
  top: 30%;
  left: 18.5%; */
}
#hero h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: 43px;
    text-align: center;
    margin-top: 1rem;
}
#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 45px 13px 45px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #12af25;
}
#hero .btn-get-started:hover {
    background: #209dd8;
}
#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}
#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#hero .req_btn {
    left: 22.5%;
    bottom: 30%;
    position: absolute;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 78px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    padding-bottom: 30px;
}
.section-title h2 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    position: relative;
    color: #25408f;
}
.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
    background: #f1f1f1;
}
.clients .row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 0.5rem;
}
.clients img {
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}
.clients img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .clients .row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 0rem;
    }
}

@media (max-width: 768px) {
    .clients .row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 0rem;
    }
}

@media (max-width: 420px) {
    .clients .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0rem;
    }
}
/*--------------------------------------------------------------
# Why Bers
--------------------------------------------------------------*/
#why-bers {
    padding-bottom: 0px;
}
#why-bers h2 {
    text-transform: none;
    font-weight: 900;
}
#why-bers .grids-news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}
#why-bers .line-pdf .nocks {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    margin-top: 2rem;
}
#why-bers .line-pdf .nocks .hide-nock {
    display: none;
}
/* #why-bers .line-pdf .nocks .taniltsuulga{
  width: 90%;
} */
#why-bers .line-pdf .nocks .nock {
    width: 100%;
    margin: 0;
    height: 2px;
    background: #25408f;
}

#why-bers .line-pdf a {
    font-weight: 600;
    width: 105%;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #25408f;
    color: #f68a1c;
    border-radius: 50px;
    text-align: center;
}

@media (max-width: 769px) {
    #why-bers .grids-news {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
        padding: 0px 1rem;
    }

    #why-bers .line-pdf .nocks {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        margin-top: 2rem;
    }
    #why-bers .line-pdf .nocks .hide-nock {
        display: grid;
    }
    #why-bers .line-pdf .nocks .back-space {
        margin-top: 1rem;
    }
}

/*--------------------------------------------------------------
# Bers Line
--------------------------------------------------------------*/
.bers-line {
    width: 100%;
    height: 50rem;
}
#bers-line .border-line .mobile {
    display: none;
}
#bers-line .border-line img {
    width: 100%;
}
#bers-line .border-line .grid-btn {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: absolute;
    bottom: -20px;
    right: 0.5%;
}
#bers-line .border-line a {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #25408f;
    color: #f68a1c;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    width: 110%;
}
#bers-line .border-line a:hover {
    background-color: #25408f;
    border: 2px solid #fff;
    color: #fff;
}
@media (max-width: 1399px) {
    #bers-line .border-line .grid-btn {
        bottom: -35px;
    }
}

@media (max-width: 768px) {
    #bers-line .border-line .computer {
        display: none;
    }
    #bers-line .border-line .mobile {
        display: flex;
    }
    #bers-line .border-line .grid-btn {
        bottom: -28px;
        right: 2%;
    }
    #bers-line .border-line a {
        font-size: 14px;
        padding: 5px 10px;
        background-color: #fff;
        border: 1px solid #25408f;
        color: #f68a1c;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        width: 110%;
    }
}

/*--------------------------------------------------------------
# Company About
--------------------------------------------------------------*/

#c-about .c-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#c-about .c-grid .grid-image img {
    width: 100%;
    /* height: 100%; */
}
#c-about .hide-banner {
    display: none;
}
.c-about .c-grid .c-text {
    width: 100%;
    color: #cfd6eb;
    padding: 3rem 18rem 0rem 6.5rem;
    line-height: 26px;
}
.c-about .c-grid .c-text h2 {
    color: #fff;
}
.c-about .c-grid .c-text-c {
    color: #cfd6eb;
    padding: 3rem 6.5rem 0rem 19rem;
    line-height: 26px;
}
.c-about .c-grid .c-text-c .c-text-p {
    text-align: end;
}
@media (max-width: 1736px) {
    .c-about .c-grid .c-text,
    .c-about .c-grid .c-text-c {
        padding: 3rem 6.5rem 0rem 6.5rem;
    }
}
@media (max-width: 1534px) {
    .c-about .c-grid .c-text,
    .c-about .c-grid .c-text-c {
        padding: 2rem 3.5rem 0rem 3.5rem;
        line-height: 22px;
    }
}
@media (max-width: 1346px) {
    .c-about .c-grid .c-text,
    .c-about .c-grid .c-text-c {
        padding: 2rem 2.5rem 0rem 2.5rem;
        line-height: 22px;
    }
}
@media (max-width: 1281px) {
    #c-about .c-banner .c-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    #c-about .c-banner .c-grid .c-text {
        width: 100%;
    }
    #c-about .hide-banner {
        display: flex;
    }
    #c-about .open-banner {
        display: none;
    }
    .c-about .c-grid .c-text-c .c-text-p {
        text-align: start;
    }
}
@media (max-width: 575px) {
    #c-about .c-banner .c-grid .c-text,
    #c-about .c-banner .c-grid .c-text-c {
        padding: 0px 12px;
    }
    #c-about .c-banner .c-grid .c-text .section-title {
        margin-top: 3rem;
    }
    #c-about .c-banner .c-grid .c-text .section-title h2 {
        padding: 0px;
    }
    #c-about .c-banner .c-grid .c-text .c-text-p {
        padding: 0rem 2rem 3rem 2rem;
    }
    #c-about .c-banner .c-grid .c-text-c .c-text-p {
        padding: 3em 2rem 3rem 2rem;
    }
}
/*--------------------------------------------------------------
# Sec-zow
--------------------------------------------------------------*/
#sec-zow {
    padding-bottom: 0px;
}
#sec-zow h2 {
    text-transform: none;
    font-weight: 900;
}
#sec-zow .sec-columns .sec-column h2 {
    font-size: 1.3rem;
    text-transform: uppercase;
}
#sec-zow .sec-columns .sec-column p {
    font-size: 16px;
}

#sec-zow .sec-columns {
    display: grid;
    grid-template-columns: 1fr 0.3fr 1fr 0.3fr 1fr 0.3fr 1fr;
    grid-gap: 1rem;
}
.sec-zow .sec-columns img:nth-child(even) {
    margin: auto;
}
.sec-zow .sec-columns img {
    height: 80px;
}
#sec-zow .sec-columns .data img {
    position: absolute;
    z-index: -1;
    right: 8.7%;
    height: 145px;
    width: 8.5%;
}
#sec-zow .sec-columns .data h2 {
    z-index: 1;
    text-transform: none;
}
.sec-zow .sec-columns .sec-column:last-child {
    width: 70%;
    text-align: center;
}
.sec-zow .sec-columns .sec-column {
    padding: 0 1rem;
}
@media (max-width: 1399px) {
    #sec-zow .sec-columns .data img {
        right: 8.2%;
        height: 145px;
        width: 9.5%;
    }
}
@media (max-width: 1200px) {
    #sec-zow .sec-columns {
        display: grid;
        grid-template-columns: 1fr 0.3fr 1fr 0.3fr;
        grid-template-rows: 1fr 0.3fr;
        grid-gap: 1rem;
    }
    .sec-zow .sec-columns .sec-column:last-child {
        width: 50%;
        text-align: center;
    }
    #sec-zow .sec-columns .data img {
        right: 34.5%;
        height: 145px;
        width: 11.5%;
    }
}
@media (max-width: 992px) {
    #sec-zow .sec-columns .data img {
        right: 29.8%;
        height: 135px;
        width: 15%;
    }
    .sec-zow .sec-columns .sec-column:last-child {
        width: 68%;
    }
}

@media (max-width: 768px) {
    .sec-zow .sec-columns .sec-column {
        padding: 0 0;
    }
    #sec-zow .sec-columns .data img {
        right: 27.4%;
        height: 135px;
        width: 20%;
    }
}
@media (max-width: 514px) {
    #sec-zow .sec-columns {
        display: grid;
        grid-template-columns: 1fr 0.3fr;
        grid-template-rows: 1fr 0.3fr 1fr;
        grid-gap: 1rem;
    }

    #sec-zow .sec-columns .data img {
        right: 73.7%;
        height: 135px;
        width: 23%;
    }
    .sec-zow .sec-columns .sec-column:last-child {
        width: 35%;
    }
}
@media (max-width: 450px) {
    #sec-zow .sec-columns .data img {
        right: 66.8%;
        height: 145px;
        width: 30%;
    }
    .sec-zow .sec-columns .sec-column:last-child {
        width: 45%;
    }
}
@media (max-width: 361px) {
    #sec-zow .sec-columns .data img {
        right: 68.5%;
        height: 125px;
        width: 22%;
    }
    .sec-zow .sec-columns .sec-column:last-child {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
#team {
    background-color: #dae4f1;
    padding-top: 90px;
}
#team .grids-compnents img {
    height: 6.1rem;
    width: auto;
}
#team .grids-compnents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
#team .grids-compnents .member-info {
    padding: 1rem 2rem;
    width: 100%;
    font-size: 14px;
    height: 19rem;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: 0.5s;
}

.team .member {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background: #fff;
    transition: 0.5s;
}
@media (max-width: 1401px) {
    #team .grids-compnents .member-info {
        height: 22rem;
    }
}
@media (max-width: 1201px) {
    #team .grids-compnents .member-info {
        height: 26rem;
    }
}
@media (max-width: 993px) {
    #team .grids-compnents .member-info {
        height: 37rem;
    }
}

@media (max-width: 768px) {
    #team .grids-compnents {
        grid-template-columns: repeat(1, 1fr);
        width: auto;
    }
    #team .grids-compnents .member-info {
        height: auto;
    }
}
.team .pic {
    width: 100%;
    text-align: center;
    padding: 32px 16px;
    margin: auto;
    display: grid;
}
.team .member .pic img {
    overflow: hidden;
    /* width: 15rem; */
    height: 6.1rem;
    border-radius: 15px;
    /* object-fit: cover;   */
    object-position: center center;
    /* border: 0.2rem solid #25408F; */
    margin-bottom: 0.5rem;
    transition: ease-in-out 0.3s;
}
.team .member:hover {
    transform: translateY(-10px);
}
.team .member .member-info {
    padding: 2rem 1rem;
    width: 100%;
    text-align: justify;
}
.team .left-member {
    display: none;
}
.team .member .member-info h4 {
    margin-bottom: 1rem;
    text-align: center;
}
.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #25408f;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}
.team .member span::after {
    content: "";
    position: relative;
    display: block;
    width: 30%;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 35%;
}
.team .mt-1r {
    margin-top: 18px;
}

.team .mt-2r {
    margin-top: 3rem;
}
.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}
.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}
.team .member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}
.team .member .social a:hover {
    background: #47b2e4;
}
.team .member .social a:hover i {
    color: #fff;
}
.team .member .social a + a {
    margin-left: 8px;
}
.team .member:nth-child(2n) {
    flex-direction: column-reverse !important;
}
@media screen and (max-width: 640px) {
    .team .member {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .team .member .pic {
        width: 100%;
        padding: 0;
    }

    .team .member .member-info {
        padding: 0rem 1rem 1rem 1rem;
    }
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}
.about .content ul {
    list-style: none;
    padding: 0;
}
.about p {
    text-align: justify;
    padding: 0px 2rem;
}
.about .content ul li {
    padding-left: 28px;
    position: relative;
}
.about .content ul li + li {
    margin-top: 10px;
}
.about .content ul i {
    position: absolute;
    font-size: 20px;
    color: #47b2e4;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}
.about .content .news-title {
    text-align: center;
}
.about .content .news-title h5 {
    font-weight: 600;
}
.about .content .valkery {
    background: #d3e4ff;
    margin-top: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about .content .valkery li a {
    color: black;
}

.about .content .valkery li a:hover {
    color: #47b2e4;
}

.about .content ul li {
    padding-left: 1.5rem;
}

.about .content .btn-learn-more {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #47b2e4;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
}
.about .content .btn-learn-more:hover {
    background: #47b2e4;
    color: #fff;
    text-decoration: none;
}

/* About FAQ */

@media (max-width: 992px) {
    .about .pt3 {
        margin-top: 30px;
    }
    .about p {
        text-align: justify;
        padding: 0px 1rem;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    padding: 60px 100px 0 100px;
}
.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #37517e;
}
.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}
.why-us .content p {
    font-size: 15px;
    color: #848484;
}
.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}
.why-us .accordion-list li + li {
    margin-top: 15px;
}
.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}
.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}
.why-us .accordion-list span {
    color: #47b2e4;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}
.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}
.why-us .accordion-list .icon-show {
    display: none;
}
.why-us .accordion-list a.collapsed {
    color: #343a40;
}
.why-us .accordion-list a.collapsed:hover {
    color: #47b2e4;
}
.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}
@media (max-width: 1024px) {
    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }
    .why-us .content {
        padding-top: 30px;
    }
    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}
.faq .faq-list li + li {
    margin-top: 15px;
}
.faq .faq-list li {
    padding: 12px;
    background: #25408f;
    border-radius: 4px;
    position: relative;
}
.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px 0 0;
    outline: none;
    cursor: pointer;
    color: #f68a1c;
}
.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.faq .faq-list p {
    color: #fff;
    margin-bottom: 0;
    padding: 10px 0 0 0;
}
.faq .faq-list span {
    font-weight: 600;
}

.faq .faq-list .icon-show {
    display: none;
}
.faq .faq-list a.collapsed {
    color: #ffffff;
    transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
    color: #f68a1c;
}
.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
    display: none;
}
@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

#faq-list-3 a,
#faq-list-1 a,
#faq-list-2 a {
    margin-top: 1rem;
    /* color: #25408F; */
    color: black;
}
#faq-list-3 a:hover,
#faq-list-1 a:hover,
#faq-list-2 a:hover {
    color: #25408f;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.contact .info i {
    font-size: 20px;
    color: #47b2e4;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}
.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}
.contact .info .email p {
    padding-top: 5px;
}
.contact .info .social-links {
    padding-left: 60px;
}
.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}
.contact .info .social-links a:hover {
    background: #47b2e4;
    color: #fff;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #47b2e4;
    color: #fff;
}
.contact .php-email-form {
    width: 100%;
    border-top: 2px solid #47b2e4;
    border-bottom: 2px solid #47b2e4;
    padding: 10px 30px;
    background: none;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 12%);
}
.contact .php-email-form .form-group {
    padding-bottom: 8px;
}
.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}
.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}
.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
    margin-bottom: 20px;
}
.contact .php-email-form label {
    padding-bottom: 8px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #47b2e4;
}
.contact .php-email-form input {
    height: 40px;
}
.contact .php-email-form .form-check-input {
    height: 14px;
    font-size: 1rem;
    border-radius: 9px;
    margin-top: 5px;
}
.contact .php-email-form textarea {
    padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
    background: #47b2e4;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
    background: #209dd8;
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 992px) {
    .contact .section-title {
        margin: 0;
        padding: 0;
    }
    .mt-5 {
        margin-top: 30px !important;
    }
}
.modal-body {
    padding: 0rem 0rem;
}
.modal-footer {
    align-items: center;
    justify-content: center;
}
.modal-footer button[type="submit"] {
    background: #47b2e4;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-weight: 500;
}
.modal-footer button[type="submit"]:hover {
    background: #209dd8;
}

/* by button */
.by-botton a {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px;
    border-radius: 50px;
    color: #ffffff;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    transition: 0.3s;
    border: 1px solid #ffffff;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #191c83;
}
#footer .footer-newsletter {
    padding: 50px 0;
    background: #f3f5fa;
    text-align: center;
    font-size: 15px;
    color: #444444;
}
#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #37517e;
}
#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}
#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #47b2e4;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
    background: #209dd8;
}
#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}
#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #37517e;
}
#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #5e5e5e;
}
#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #37517e;
    position: relative;
    padding-bottom: 12px;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    font-size: 18px;
    line-height: 1;
}
#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #47b2e4;
}
#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #47b2e4;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
    background: #209dd8;
    color: #fff;
    text-decoration: none;
}
#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}
#footer .copyright {
    float: left;
}
#footer .credits {
    float: right;
    font-size: 13px;
}
#footer .credits a {
    transition: 0.3s;
}
@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }
    #footer .credits {
        padding-top: 4px;
    }
}

/* News */
/*--------------------------------------------------------------
# CNews 
--------------------------------------------------------------*/
#news .section-title {
    width: 70%;
}
#news .section-title p {
    text-align: start;
    font-size: 1rem;
}
#news .news-news .new-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#news .news-news .new-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#news .news-news .new-news ul {
    text-decoration: none;
    list-style: none;
    padding: 0px;
}
#news .news-news .new-news img {
    margin-bottom: 30px;
    width: 98%;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
    /* border: 1px solid #25408F; */
    border-radius: 5px;
}

#news .news-news .new-news .text-right {
    width: 200%;
}
#news .news-news .new-news .text-right p {
    margin-bottom: 20px;
}
.mt-20 {
    margin-top: 20px;
}
#news .news-news .new-news .text-right .bt-20 {
    margin-bottom: 20px;
}
#news .news-news .new-news h6 {
    padding: 0 0 0 30px;
}
#news .news-news img {
    height: 25rem;
}
@media (max-width: 1200px) {
    #news .news-news .new-news {
        grid-template-columns: repeat(1, 1fr);
    }
    #news .news-news .new-news .text-right {
        width: 100%;
    }
    #news .news-news img {
        width: 100%;
        height: 40em;
    }
    #news .section-title {
        width: 100%;
    }
    #news .news-news .new-news h5 {
        padding: 30px 0 0px 0;
    }
}
@media (max-width: 992px) {
    #news .news-news img {
        width: 100%;
        height: 28em;
    }
    #news .news-news .new-news ul li {
        margin-left: 0px !important;
    }
}
@media (max-width: 768px) {
    #news .news-news img {
        width: 100%;
        height: 22em;
    }
}
@media (max-width: 434px) {
    #news .news-news img {
        width: 100%;
        height: 15em;
    }
}
/* end CNews */
.text-brand {
    color: #0a355f;
}

.text-brand-hover {
    max-width: 80%;
    color: #fff;
}

.spec {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #0a355f;
}

.spec-s {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.brand-card {
    max-width: 350px;
}
.brand-card .card-body {
    max-height: 320px;
    height: 320px;
    text-align: justify !important;
    overflow: scroll;
    overflow-y: hidden;
    overflow-x: hidden;
}

.brand-card-image {
    width: 100%;
    position: relative;
}

.brand-card-image img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    display: block;
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    filter: grayscale(0%);
    transition: 0.2s;
}

.brand-card img.active {
    filter: grayscale(0%);
}

.brand-card:hover img {
    filter: grayscale(0%);
    transition: 0.2s;
}

.brand-card:hover .brand-card-desc p {
    color: black !important;
    transition: 0.2s;
}

.brand-card:hover .brand-card-desc p * {
    color: black !important;
    transition: 0.2s;
}

.brand-card:hover .brand-card-title {
    color: black !important;
    transition: 0.2s;
}

.text-brand a:hover {
    color: #1f9bd1;
}

a:hover {
    text-decoration: none;
}

.brand-card-title {
    text-align: left;
}
.brand-card-title h5 {
    color: rgb(128, 128, 128);
    margin-bottom: 1rem;
}

.brand-card-title h5:hover {
    color: #25408f;
}

.brand-card-title h5 {
    font-size: 14px !important;
    letter-spacing: 1px;
    line-height: 1.2rem;
}

.bordered {
    border: 1px solid #ddd;
}

.center {
    text-align: center;
}

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

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

/* Currency table */

.uppercase {
    text-transform: uppercase;
}

.get-btn-center {
    display: flex;
    justify-content: center;
}

/* Header form */

.nav-auth {
    display: none;
}

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

.padding-4 {
    padding-top: 20px;
}

.padding-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.list li {
    padding-top: 5px;
    list-style-type: none;
}

.list {
    margin: 0px;
    padding-left: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.list li a {
    color: white;
}

.padding-5 {
    padding: 4px;
}

.pages img {
    width: 100%;
}

.card img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.pages {
    padding: 0px !important;
}

.no-border {
    border: 0px !important;
}

.text-center {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}
.product img {
    padding: 15px;
    object-fit: cover;
}

.product * {
    font-family: Roboto !important;
    font-size: 12px !important;
    line-height: 1.5;
}

.bg-grey {
    background: #f3f3f3 !important;
}
.brand-card .text-center {
    color: #6c757d;
    font-weight: normal;
}

.brand-card:hover .text-center {
    color: #333;
}

.color-black {
    color: #333 !important;
}

.nav-item a.active {
    background: #fff;
    color: #00aeef !important;
}

.card-title hr {
    border-top: 2px solid #ffce00;
}

.card-title {
    height: 52px;
}

.card-title a {
    color: #333;
}

.card-title .white-text {
    color: #fff;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 1);
}

.item .active p {
    padding-top: 0px !important;
    padding: 20px;
    text-align: left;
}

.nock {
    width: 40%;
    margin-left: 30%;
    height: 1px;
    background: rgba(0, 174, 239);
}

.workplace h6 a {
    color: #333 !important;
}

.workplace img {
    width: 100%;
}

h1 {
    font-size: 24px;
}

.width-3 {
    width: 33.33333%;
}
.bchl_banner {
    background: url(../img/bichil/banner-02.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    -ms-background-size: cover !important;
    align-items: center !important;
    width: 100% !important;
    height: 78vh !important;
}
#hero .container {
    padding-top: 0;
}

.owl-carousel .owl-item img {
    object-fit: cover;
}
.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    padding: 13px 45px 13px 45px;
    letter-spacing: 1px;
    font-size: 20px;
    position: relative;
    margin: 10px 0 0 0;
    border-radius: 30px;
    color: #fff;
    border: 2px solid #fff;
}
.btn:hover {
    color: #fff;
    transform: translate(0, 0px);
    box-shadow: 5px -5px 15px 0 rgba(143, 64, 248, 0.5),
        -5px 5px 15px 0 rgba(39, 200, 255, 0.5);
}
.modal-dialog {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.modal-header {
    padding: 0.5rem 1rem;
}
.modal-content {
    height: 95vh;
    width: 120%;
}
@media (max-width: 1200px) {
    .modal-content {
        width: 100% !important;
    }
}

/* 

.modal.show .modal-dialog {
  height: 100%;
  align-items: center;
  display: flex;
  align-content: center;
} */
.contacts p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
#Content {
    /* box-sizing: inherit !important;
  position: absolute;
  right: 5%;
  top: 23.5%; */
    color: #fff;
    font-family: "Open Sans", sans-serif !important;
}
.wc {
    color: #fff;
    margin-left: 30px;
    font-size: 0.8rem;
}
.verline {
    border-right: 3px solid #fff;
    /* height: 15px; */
}
.progress {
    display: flex;
    height: 1.5rem;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffffff;
    border-radius: 10rem;
    margin-top: 4rem;
    text-shadow: 2px 2px rgb(12 11 11 / 56%);
}
.colorchng {
    color: #fff !important;
    /* margin-top: .3rem !important; */
    text-align: center;
}
.subplus {
    margin-top: 0.3rem;
}
.chngbtn {
    margin-top: 8.7rem;
}
.text-lines {
    color: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}
.text-lines .text-line {
    margin-top: 4rem;
    font-size: 14px;
    margin-right: 2rem;
}
.text-lines .text-line span {
    font-size: 1.5rem;
    display: block;
}
.hidebegin {
    display: none;
}
iframe {
    width: 100%;
    height: 100% !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .text-lines .text-line {
        margin-right: 0.9rem;
    }
    .styled div {
        font-size: 65px;
        width: 130px;
        padding: 0px 28px 30px 28px;
        height: 150px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .styled div {
        font-size: 65px;
        width: 110px;
        padding: 0px 18px 30px 18px;
        height: 145px;
    }
    .text-lines .text-line {
        font-size: 14px;
        margin-right: 0.8rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #hero h1 {
        margin-top: 3rem;
        font-size: 5.3rem;
    }
    #hero h2 {
        margin-top: 1rem;
        font-size: 2rem;
    }
    .verline {
        border: none;
    }
    .chngbtn {
        margin-top: 4rem;
        padding: 10px 30px 10px 30px !important;
        display: none;
    }
    .text-lines {
        display: none;
    }
    .openbegin {
        display: none !important;
    }
    .hidebegin {
        display: flex;
    }
    .styled div {
        text-align: center;
        width: 170px;
        padding: 0px 39px 30px 39px !important;
        height: 154px !important;
    }
}
#news h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #25408f;
    text-transform: none;
    font-weight: 900;
}
#news .section-title h2 {
    text-align: left;
}
/* 
position: absolute;
top: 25.5%;
left: 18.4%; */
