:root {
    --bt-navy: #00263A;
    --bt-red: #EB0045;
    --bt-gray-6c: #6C6C6C;
    --bt-gray-d9: #D9D9D9;
    --bt-gray-ed: #EDEDED;
    --bt-gray-c4: #C4C4C4;
    --bt-light-green: #BADF93;
}

/*font-face*/
/* NotoSans */
@font-face {
    font-family: 'NotoSans-Regular';
    src: url('../ttf/notosans-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'NotoSans-Bold';
    src: url('../ttf/notosans-bold.ttf') format('truetype');
}
/* NotoSansKhmer */
@font-face {
    font-family: 'NotoSansKhmer-Regular';
    src: url('../ttf/notosanskhmer-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'NotoSansKhmer-Bold';
    src: url('../ttf/notosanskhmer-bold.ttf') format('truetype');
}
/* Niradei */
@font-face {
    font-family: 'Niradei-Bold';
    src: url('../ttf/niradei-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Niradei-Regular';
    src: url('../ttf/niradei-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Niradei-SemiBold';
    src: url('../ttf/niradei-semibold.ttf') format('truetype');
}
/* NotoLoopedLao */
@font-face {
    font-family: 'NotoLoopedLao-ExtraBold';
    src: url('../ttf/notoloopedlao-extrabold.ttf') format('truetype');
}

@font-face {
    font-family: 'NotoLoopedLao-Regular';
    src: url('../ttf/notoloopedlao-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'NotoLoopedLao-SemiBold';
    src: url('../ttf/notoloopedlao-semibold.ttf') format('truetype');
}
/*end font-face*/
/* font classes */
.notosans-bold, .NotoSans-Bold {
    font-family: 'NotoSans-Bold';
}

.notosanskhmer-regular, .NotoSansKhmer-Regular {
    font-family: 'NotoSansKhmer-Regular';
}

.notosanskhmer-bold, .NotoSansKhmer-Bold {
    font-family: 'NotoSansKhmer-Bold';
}

.niradei-bold, .Niradei-Bold {
    font-family: 'Niradei-Bold';
}

.niradei-regular, .Niradei-Regular {
    font-family: 'Niradei-Regular';
}

.niradei-semibold, .Niradei-SemiBold {
    font-family: 'Niradei-SemiBold';
}

.notoloopedlao-regular, .NotoLoopedLao-Regular {
    font-family: 'NotoLoopedLao-Regular';
}

.notoloopedlao-semibold, .NotoLoopedLao-SemiBold {
    font-family: 'NotoLoopedLao-SemiBold';
}

.notoloopedlao-extrabold, .NotoLoopedLao-ExtraBold {
    font-family: 'NotoLoopedLao-ExtraBold';
}
/* end font class*/
/* keyframes */
@keyframes fadein {
/*    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }*/
}

/* Firefox less 6 */
@-moz-keyframes fadein {
/*    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }*/
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
/*    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }*/
}

/* Internet Explorer */
@-ms-keyframes fadein {
/*    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }*/
}

/* Opera les 12.1 */
@-o-keyframes fadein {
/*    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }*/
}

@keyframes fadeout {
/*    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }*/
}

@-moz-keyframes fadeout {
/*    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }*/
}


@-webkit-keyframes fadeout {
/*    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }*/
}
/* Internet Explorer */
@-ms-keyframes fadeout {
/*    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }*/
}
/* Opera < 12.1 */
@-o-keyframes fadeout {
/*    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }*/
}
/* end keyframes */
.bt-body {
    font-family: Niradei-Regular;
    font-size: 26px;
    color: var(--bt-navy);
}
a:hover {
    color: var(--bt-red);
}
/*.row {
    margin: 0;
    padding: 0;
}*/

.bt-bg-navy {
    background: var(--bt-navy);
    color: white;
}
.bt-bg-light-green {
    background: var(--bt-light-green);
    color: var(--bt-navy);
}
    .bt-bg-navy a {
        color: white;
    }

.bt-text-navy {
    color: var(--bt-navy);
}

.bt-bg-red {
    background: var(--bt-red);
    color: white;
}

.bt-bg-gray {
    background: var(--bt-gray-ed);
}

.btn {
    border-radius: 0px;
    padding: 1rem 1.25rem;
    font-size: 26px;
}

.btn-primary {
    background: var(--bt-navy);
    color: #ffffff;
    border: 0px;
}
    .btn-primary:hover {
        background: var(--bt-red);
    }
.btn-primary-2:hover {
    background: white !important;
    color: var(--bt-red);
}

.btn-secondary {
    background: var(--bt-red) !important;
    color: white;
    border: 0px;
    font-weight: bold;
}

    .btn-secondary:hover {
        background: white !important;
        color: var(--bt-red);
    }

.btn-secondary-2:hover {
    background: var(--bt-navy) !important;
    color: white;
}

.btn-secondary-3:hover {
    background: var(--bt-red) !important;
    color: white;
}

.btn-secondary-4 {
    background: var(--bt-navy) !important;
    color: white;
    border: 0px;
    font-weight: bold;
}

    .btn-secondary-4:hover {
        background: white !important;
        color: var(--bt-red);
    }

.bt-text-red {
    color: var(--bt-red) !important;
}

.bt-text-gray {
    color: var(--bt-gray-6c) !important;
}

.bt-forte-company {
    min-height: 351px;
}

.bt-svg-arrow-26 {
    width: 26px;
    height: 26px;
}
.bt-svg-arrow {
    width: 35px;
    height: 35px;
}

.bt-svg-arrow-btn {
    width: 45px;
    height: 45px;
}
.bt-svg-arrow-testimonial {
    width: 79px;
    height: 79px;
}
.bt-svg-quotation-mark {
    width: 120px;
    height: 120px;
}

.bt-svg-circle-arrow-up {
    width: 140px;
    height: 140px;
}

.bt-svg-top-icon {
    width: 30px;
    height: 30px;
}

.bt-right-arrow {
    float: right;
    margin-left: -100px;
    margin-top: -3px;
    opacity: 0;
}

.bt-btn-arrow:hover .bt-right-arrow {
    margin-left: 0px;
    opacity: 1;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}


.btn-arrow:hover .fa-arrow-right {
    display: inline-block;
}


.bt-zoom-effect-container {
    /*float: left;*/
    position: relative;
    width: 100%;
    /*height: 100%;*/
    overflow: hidden;
}

    .bt-zoom-effect-container img {
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease;
    }

    .bt-zoom-effect-container:hover img {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

    .bt-zoom-effect-container .bt-tile-title {
        position: absolute;
        bottom: 0px;
        left: 0px;
        bottom: 0px;
    }

    .bt-zoom-effect-container .bt-tile-read {
        position: absolute;
        transition: all .3s ease-out;
        right: -40px;
    }

    .bt-zoom-effect-container:hover .bt-tile-read {
        right: 10px;
    }

/*    .bt-zoom-effect-container:hover .fade-in {
        -webkit-animation: fadein 2s;
        -moz-animation: fadein 2s;
        -ms-animation: fadein 2s;
        -o-animation: fadein 2s;
        animation: fadein 2s;
    }*/
b, strong {
    font-weight: bolder; 
    font-family: 'Niradei-Bold';
}
.bt-tile {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: linear-gradient( to bottom, rgba(0, 38, 58, 0) 50%, rgba(0, 38, 58, 1) 100% );
}

.bt-tile-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: linear-gradient( to bottom, rgba(186, 223, 147, 0) 50%, rgba(186, 223, 147, 1) 100% );
}

.bt-zoom-effect-container-1 {
    float: left;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .bt-zoom-effect-container-1 img {
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease;
    }

    .bt-zoom-effect-container-1:hover img {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

    .bt-zoom-effect-container-1 .bt-tile-title {
        position: absolute;
        bottom: 0px;
        left: 0px;
        transition: none;
        bottom: -30px;
    }

    .bt-zoom-effect-container-1 .bt-tile-read {
        position: absolute;
        transition: all .3s ease-out;
        right: -40px;
    }

    .bt-zoom-effect-container-1:hover .bt-tile-read {
        right: 15px;
    }

    .bt-zoom-effect-container-1:hover .fade-in {
        -webkit-animation: fadein 2s;
        -moz-animation: fadein 2s;
        -ms-animation: fadein 2s;
        -o-animation: fadein 2s;
        animation: fadein 2s;
    }

.bt-zoom-effect-container-2 {
    float: left;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
    .bt-zoom-effect-container-2 img {
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease;
    }

    .bt-zoom-effect-container-2:hover img {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

    .bt-zoom-effect-container-2 .bt-tile-title {
        position: absolute;
        bottom: 0px;
        left: 0px;
        transition: all .3s ease-out;
        bottom: -50px;
    }

    .bt-zoom-effect-container-2:hover .bt-tile-title {
        bottom: 10px;
    }

    .bt-zoom-effect-container-2 .bt-tile-read {
        position: absolute;
        transition: all .3s ease-out;
        right: -40px;
    }

    .bt-zoom-effect-container-2:hover .bt-tile-read {
        right: 15px;
    }

.bt-zoom-effect-container-3 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .bt-zoom-effect-container-3 img {
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease;
    }

    .bt-zoom-effect-container-3:hover img {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

    .bt-zoom-effect-container-3 .bt-tile-title {
        position: absolute;
        bottom: 0px;
        left: 0px;
        transition: all .3s ease-out;
        bottom: -35px;
    }

    .bt-zoom-effect-container-3:hover .bt-tile-title {
        transition: all .3s ease-out;
        top: 10px;
    }
.bt-tile-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: var(--bt-navy);
}

.border-right {
    border-right: 2px solid #00263A;
}
.border-left {
    border-left: 2px solid #00263A;
}

.border-bottom {
    border-bottom: 2px solid #00263A !important
}

.bt-text-small {
}
/* customize header line */
h1, .h1 {
    font-size: 102px;
    font-family: Niradei-Bold;
}

h2, .h2 {
    font-size: 72px;
    font-family: Niradei-Bold;
}

h3, .h3 {
    font-size: 56px;
    font-family: Niradei-Bold;
}

h4, .h4 {
    font-size: 32px;
    font-family: Niradei-Bold;
}

h5, .h5, .h5-6 {
    font-size: 26px;
    font-family: Niradei-Bold;
}

h6, .h6 {
    font-size: 20px;
    font-family: Niradei-Bold;
}

h7, .h7 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 18px;
    font-family: Niradei-Bold;
}

h8, .h8 {
    font-size: 16px;
    font-family: Niradei-Bold;
}

.fw-bold, .font-weight-bold, b, th {
    font-family: Niradei-Bold;
    font-weight: 500;
}
/* end customize header line */
.bt-banner-height {
    height: 903px;
    background: var(--bt-navy);
}

.bt-article-title {
    font-size: 56px;
    font-family: Niradei-Bold;
}

.bt-we-love-to-div {
    max-height: 630px;
}

.navbar {
    margin-bottom: 0px !important;
}

.bt-top-navbar {
    height: 57px;
}

    .bt-top-navbar span {
        font-size: 110%;
    }

    .bt-top-navbar a {
        text-decoration: none;
    }

/*.bt-main-navbar {
    height: 120px;
}*/

    .bt-main-navbar .nav-item:hover, .bt-main-navbar .nav-item:visited {
        background-color: white;
    }

        .bt-main-navbar .nav-item:hover > a {
            color: var(--bt-red) !important;
        }

    .bt-main-navbar .dropdown-item {
        padding: 10px 20px !important;
        color: var(--bt-navy) !important;
        white-space:normal;
    }

        .bt-main-navbar .dropdown-item.active {
            background-color: var(--bt-gray-ed);
        }

        .bt-main-navbar .dropdown-item:focus, .bt-main-navbar .dropdown-item:hover {
            background-color: var(--bt-gray-ed);
        }
    .bt-main-navbar ul li a {
        font-size: 26px;
    }

    .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--bt-red);
    color: white;
}

.b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

    .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

.nav .active {
    color: var(--bt-navy) !important;
}

.bt-gray-box {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    background: var(--bt-gray-d9);
    overflow: hidden;
}

.bt-gray-tile {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.bt-gray-logo {
    display: block;
}

.bt-gray-logo-hover {
    display: none;
}

.bt-gray-tile:hover .bt-gray-logo {
    display: none;
}

.bt-gray-tile:hover .bt-gray-logo-hover {
    display: block;
}

.bt-gray-tile:hover {
    background: #EB0045;
    color: white;
}
.bt-gray-tile.bg-navy-hover:hover{
    background: var(--bt-navy);
}

.bt-gray-box .bt-gray-title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all .3s ease-out;
    bottom: -50px;
}

.bt-gray-box:hover .bt-gray-title {
    bottom: 10px;
}

.bt-icon-60 {
    font-size: 60px;
    width: 60px;
    height: 60px;
}

.bt-video-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15%;
    height: 15%;
    transform: translate(-50%,-50%);
    animation: zoomOut .3s ease-out;
}

.bt-zoom-effect-container-2:hover .bt-video-icon {
    width: 20%;
    height: 20%;
    animation: zoomIn .3s ease-out;
}

p {
    margin: 0;
}

.my-scroll::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.my-scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px var(--bt-gray-ed);
    border-radius: 3px;
}

/* Handle */
.my-scroll::-webkit-scrollbar-thumb {
    background: var(--bt-gray-d9);
    border-radius: 6px;
}

    /* Handle on hover */
    .my-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--bt-gray-c4);
    }

@keyframes zoomIn {
    from {
        width: 15%;
        height: 15%;
    }

    to {
        width: 20%;
        height: 20%;
    }
}

@keyframes zoomOut {
    from {
        width: 20%;
        height: 20%;
    }

    to {
        width: 15%;
        height: 15%;
    }
}
/*----- Footer -----*/

.footer-icon {
    font-size: 65px;
    width: 80px;
    height: 80px;
}

.footer-icon-to-top {
    font-size: 100px;
    cursor: pointer;
}

.footer-ul {
    padding-left: 0px;
    list-style-type: none
}

.bt-company-spance{
    height:120px;
}
.bt-grid-4-col {
    width: 22.86%;
}
.bt-grid-2-col {
    width: 47.1%;
}
.bt-grid-3-col {
    width: 31.5%;
}
.bt-prod-icon{
    width:120px;
}
.bt-overflow-wrap {
    overflow-wrap: anywhere;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: white !important;
    background-color: var(--bt-navy);
}

.nav .active {
    color: var(--bt-navy) !important;
}

.nav-tabs .nav-link {
    margin-bottom: calc(var(--bs-nav-tabs-border-width) * -1);
    background: 0 0;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: unset; 
    border-top-right-radius: unset; 
    color: var(--bt-navy);
    padding: 1rem 1.5rem;
}
.scrollToTop{
    cursor:pointer;
}
.yp-forte-company-logo {
    height: 80px;
    margin-bottom: 10px;
}

.table-style {
    width: 100%;
    border-collapse: collapse;
}

    .table-style tr, .table-style th, .table-style td {
        border: 1px solid #EB0045;
    }
    .table-style thead tr th {
        border: 1px solid #FFF;
    }
        .table-style thead tr:first-child th {
            border-top-color: #EB0045;
        }

        .table-style thead tr:last-child th{
            border-bottom-color: #EB0045;
        }
    .table-style thead tr th:first-child {
        border-left-color: #EB0045;
    }
    .table-style thead tr th:last-child {
        border-right-color: #EB0045;
    }
.table-style thead tr:first-child {
    background-color: #EB0045;
    color: white;
}

.table-style tbody tr:nth-of-type(odd) {
    background-color: #EB004520;
}

.table-style tbody tr:nth-of-type(even) {
    background-color: #fff;
}

.table-style tbody tr:first-child {
    background-color: #BFDFEA40;
}
.compare-plans-icon svg, .compare-plans-icon img {
    width: 120px;
    height: 120px;
}


/*-------------------*/
/* @media screen*/
/* XX-Large devices (larger desktops)*/
/* No media query since the xxl breakpoint has no upper bound on its width*/
/* end @media screen*/
@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}
@media only screen and (min-width: 1200px) {
    .bt-main-navbar .dropdown .dropdown-menu {
        display: none;
    }

    .bt-main-navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

    .bt-main-navbar .dropdown-menu {
        width: 400px;
        max-width: 400px;
        border-radius: 0 !important;
        border: 1px solid white;
    }
}

@media (max-width: 1799.98px) {
    .bt-body {
        font-size: 20px;
    }

    .bt-main-navbar ul li a {
        font-size: 20px;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 20px;
    }

    .bt-text-small {
        font-size: 14px;
    }
    /* customize header line */
    h1, .h1 {
        font-size: 36px;
        font-family: Niradei-Bold;
    }

    h2, .h2 {
        font-size: 32px;
        font-family: Niradei-Bold;
    }

    h3, .h3 {
        font-size: 28px;
        font-family: Niradei-Bold;
    }

    h4, .h4 {
        font-size: 24px;
        font-family: Niradei-Bold;
    }

    h5, .h5, .h5-6 {
        font-size: 20px;
        font-family: Niradei-Bold;
    }

    h6, .h6 {
        font-size: 18px;
        font-family: Niradei-Bold;
    }

    h7, .h7 {
        font-size: 16px;
        font-family: Niradei-Bold;
    }

    h8, .h8 {
        font-size: 14px;
        font-family: Niradei-Bold;
    }

    .footer-icon-to-top {
        font-size: 45px;
    }

    .bt-svg-arrow-26 {
        width: 20px;
        height: 20px;
    }

    .bt-svg-arrow {
        width: 30px;
        height: 30px;
    }

    .bt-svg-arrow-btn {
        width: 35px;
        height: 35px;
    }

    .bt-svg-arrow-testimonial {
        width: 69px;
        height: 69px;
    }

    .bt-svg-quotation-mark {
        width: 100px;
        height: 100px;
    }

    .bt-svg-circle-arrow-up {
        width: 110px;
        height: 110px;
    }

    .bt-svg-top-icon {
        width: 25px;
        height: 25px;
    }

    .bt-company-spance {
        height: 170px;
    }

    .bt-grid-4-col {
        width: 21.86%;
    }

    .bt-grid-2-col {
        width: 47.1%;
    }

    .bt-grid-3-col {
        width: 28.5%;
    }

    .bt-prod-icon {
        width: 90px;
    }

    .yp-forte-company-logo {
        height: 60px;
        margin-bottom: 10px;
    }

    .compare-plans-icon svg, .compare-plans-icon img {
        width: 100px;
        height: 100px;
    }
}
/*// `xxl` applies to x-large devices (large desktops, less than 1400px)  // 1399.98px   */
@media (max-width: 1399.98px) {
    .bt-body {
        font-size: 18px;
    }

    .bt-main-navbar ul li a {
        font-size: 18px;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 18px;
    }

    .bt-text-small {
        font-size: 14px;
    }
    /* customize header line */
    h1, .h1 {
        font-size: 32px;
        font-family: Niradei-Bold;
    }

    h2, .h2 {
        font-size: 28px;
        font-family: Niradei-Bold;
    }

    h3, .h3 {
        font-size: 24px;
        font-family: Niradei-Bold;
    }

    h4, .h4 {
        font-size: 20px;
        font-family: Niradei-Bold;
    }

    h5, .h5, .h5-6 {
        font-size: 18px;
        font-family: Niradei-Bold;
    }

    h6, .h6 {
        font-size: 16px;
        font-family: Niradei-Bold;
    }

    h7, .h7 {
        font-size: 14px;
        font-family: Niradei-Bold;
    }

    h8, .h8 {
        font-size: 12px;
        font-family: Niradei-Bold;
    }

    .footer-icon-to-top {
        font-size: 45px;
    }

    .bt-svg-arrow-26 {
        width: 20px;
        height: 20px;
    }

    .bt-svg-arrow {
        width: 30px;
        height: 30px;
    }

    .bt-svg-arrow-btn {
        width: 35px;
        height: 35px;
    }

    .bt-svg-arrow-testimonial {
        width: 69px;
        height: 69px;
    }

    .bt-svg-quotation-mark {
        width: 100px;
        height: 100px;
    }

    .bt-svg-circle-arrow-up {
        width: 110px;
        height: 110px;
    }

    .bt-svg-top-icon {
        width: 25px;
        height: 25px;
    }

    .bt-company-spance {
        height: 170px;
    }

    .bt-grid-4-col {
        width: 21.86%;
    }

    .bt-grid-2-col {
        width: 47.1%;
    }

    .bt-grid-3-col {
        width: 28.5%;
    }

    .bt-prod-icon {
        width: 90px;
    }

    .yp-forte-company-logo {
        height: 60px;
        margin-bottom: 10px;
    }

    .compare-plans-icon svg, .compare-plans-icon img {
        width: 100px;
        height: 100px;
    }
}

/*// `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .bt-body {
        font-size: 16px;
    }
    .bt-main-navbar ul li a {
        font-size: 16px;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 16px;
    }

    .bt-text-small {
        font-size: 13px;
    }
    /* customize header line */
    h1, .h1 {
        font-size: 32px;
        font-family: Niradei-Bold;
    }

    h2, .h2 {
        font-size: 28px;
        font-family: Niradei-Bold;
    }

    h3, .h3 {
        font-size: 22px;
        font-family: Niradei-Bold;
    }

    h4, .h4 {
        font-size: 20px;
        font-family: Niradei-Bold;
    }

    h5, .h5, .h5-6 {
        font-size: 16px;
        font-family: Niradei-Bold;
    }

    h6, .h6 {
        font-size: 14px;
        font-family: Niradei-Bold;
    }

    h7, .h7 {
        font-size: 12px;
        font-family: Niradei-Bold;
    }

    h8, .h8 {
        font-size: 10px;
        font-family: Niradei-Bold;
    }

    .footer-icon-to-top {
        font-size: 45px;
    }

    .bt-svg-arrow-26 {
        width: 20px;
        height: 20px;
    }

    .bt-svg-arrow {
        width: 30px;
        height: 30px;
    }

    .bt-svg-arrow-btn {
        width: 30px;
        height: 30px;
    }

    .bt-svg-arrow-testimonial {
        width: 59px;
        height: 59px;
    }

    .bt-svg-quotation-mark {
        width: 80px;
        height: 80px;
    }

    .bt-svg-circle-arrow-up {
        width: 100px;
        height: 100px;
    }

    .bt-svg-top-icon {
        width: 25px;
        height: 25px;
    }

    .bt-company-spance {
        height: 170px;
    }

    .bt-grid-4-col {
        width: 21.86%;
    }

    .bt-grid-2-col {
        width: 47.1%;
    }

    .bt-grid-3-col {
        width: 28.5%;
    }

    .bt-prod-icon {
        width: 80px;
    }
    .socialMedia a svg {
        font-size: 45px;
    }
    .yp-forte-company-logo {
        height: 50px;
        margin-bottom: 5px;
    }
    .compare-plans-icon svg, .compare-plans-icon img {
        width: 80px;
        height: 80px;
    }
}
/*// `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .bt-body {
        font-size: 14px;
    }

    .bt-main-navbar ul li a {
        font-size: 14px;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 14px;
    }

    .border-bottom {
        border-bottom: 0px !important;
    }

    .bt-text-small {
        font-size: 12px;
    }
    /* customize header line */
    h1, .h1 {
        font-size: 32px;
        font-family: Niradei-Bold;
    }

    h2, .h2 {
        font-size: 24px;
        font-family: Niradei-Bold;
    }

    h3, .h3 {
        font-size: 20px;
        font-family: Niradei-Bold;
    }

    h4, .h4 {
        font-size: 16px;
        font-family: Niradei-Bold;
    }

    h5, .h5 {
        font-size: 14px;
        font-family: Niradei-Bold;
    }

    h6, .h6, .h5-6 {
        font-size: 12px;
        font-family: Niradei-Bold;
    }

    h7, .h7 {
        font-size: 10px;
        font-family: Niradei-Bold;
    }

    h8, .h8 {
        font-size: 9px;
        font-family: Niradei-Bold;
    }

    .footer-icon-to-top {
        font-size: 40px;
    }

    .bt-svg-arrow-26 {
        width: 14px;
        height: 14px;
    }

    .bt-svg-arrow {
        width: 20px;
        height: 20px;
    }
    .bt-svg-arrow-btn {
        width: 25px;
        height: 25px;
    }
    .bt-svg-circle-arrow-up {
        width: 80px;
        height: 80px;
    }
    .socialMedia a svg {
        font-size: 40px;
    }
    .bt-svg-arrow-testimonial {
        width: 49px;
        height: 49px;
    }
    .bt-svg-quotation-mark {
        width: 70px;
        height: 70px;
    }
    .bt-prod-icon {
        width: 70px;
    }
    .yp-forte-company-logo {
        height: 45px;
        margin-bottom: 5px;
    }
    .compare-plans-icon svg, .compare-plans-icon img {
        width: 80px;
        height: 80px;
    }
}

/*// `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .bt-body {
        font-size: 14px;
    }
    .bt-main-navbar ul li a {
        font-size: 14px;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 12px;
    }

    .border-bottom {
        border-bottom: 0px !important;
    }

    .bt-text-small {
        font-size: 12px;
    }
    /* customize header line */
    h1, .h1 {
        font-size: 32px;
        font-family: Niradei-Bold;
    }

    h2, .h2 {
        font-size: 24px;
        font-family: Niradei-Bold;
    }

    h3, .h3 {
        font-size: 20px;
        font-family: Niradei-Bold;
    }

    h4, .h4 {
        font-size: 16px;
        font-family: Niradei-Bold;
    }

    h5, .h5 {
        font-size: 14px;
        font-family: Niradei-Bold;
    }

    h6, .h6, .h5-6 {
        font-size: 12px;
        font-family: Niradei-Bold;
    }

    h7, .h7 {
        font-size: 10px;
        font-family: Niradei-Bold;
    }

    h8, .h8 {
        font-size: 9px;
        font-family: Niradei-Bold;
    }

    .footer-icon-to-top {
        font-size: 30px;
    }

    .bt-svg-arrow-26 {
        width: 14px;
        height: 14px;
    }

    .bt-svg-arrow {
        width: 20px;
        height: 20px;
    }

    .bt-svg-arrow-btn {
        width: 25px;
        height: 25px;
    }

    .bt-svg-arrow-testimonial {
        width: 30px;
        height: 30px;
    }

    .bt-svg-quotation-mark {
        width: 60px;
        height: 60px;
        display: none;
    }

    .bt-svg-circle-arrow-up {
        width: 70px;
        height: 70px;
    }

    .bt-svg-top-icon {
        width: 25px;
        height: 25px;
    }
    .socialMedia a svg {
        font-size: 30px;
    }
    .bt-prod-icon {
        width: 60px;
    }
    .yp-forte-company-logo {
        height: 40px;
        margin-bottom: 5px;
    }
    .compare-plans-icon svg, .compare-plans-icon img {
        width: 80px;
        height: 80px;
    }
}

/*// `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .bt-body {
        font-size: 12px;
    }
    .bt-main-navbar ul li a {
        font-size: 12px;
    }

    .bt-text-small {
        font-size: 11px;
    }
    /* customize header line */
    h1, .h1 {
        font-size: 24px;
        font-family: Niradei-Bold;
    }

    h2, .h2 {
        font-size: 20px;
        font-family: Niradei-Bold;
    }

    h3, .h3 {
        font-size: 16px;
        font-family: Niradei-Bold;
    }

    h4, .h4 {
        font-size: 14px;
        font-family: Niradei-Bold;
    }

    h5, .h5 {
        font-size: 12px;
        font-family: Niradei-Bold;
    }

    h6, .h6, .h5-6 {
        font-size: 10px;
        font-family: Niradei-Bold;
    }

    h7, .h7 {
        font-size: 9px;
        font-family: Niradei-Bold;
    }

    h8, .h8 {
        font-size: 8px;
        font-family: Niradei-Bold;
    }

    .bt-svg-arrow-btn {
        width: 15px;
        height: 20px;
        margin-top: 1px;
    }
    .yp-forte-company-logo {
        height: 35px;
        margin-bottom: 5px;
    }

    /*.bt-svg-arrow-26 {
        width: 12px;
        height: 12px;
    }

    .bt-svg-arrow {
        width: 16px;
        height: 16px;
    }

    .bt-svg-arrow-btn {
        width: 24px;
        height: 24px;
    }

    .bt-svg-arrow-testimonial {
        width: 28px;
        height: 28px;
    }

    .bt-svg-quotation-mark {
        width: 32px;
        height: 32px;
    }

    .bt-svg-circle-arrow-up {
        width: 36px;
        height: 36px;
    }

    .bt-svg-top-icon {
        width: 25px;
        height: 25px;
    }*/
}


h8, .h8, h7, .h7, h6, .h6, h5, .h5, .h5-6, h4, .h4, h3, .h3, h2, .h2, h1, .h1, b, strong, th, .font-weight-bold, .fw-bold  {
    font-weight: 500;
    font-family: Niradei-Bold;
}







