/* Font for logo */
@font-face {
    font-family: ArchivoBlack;
    src: url(../fonts/ArchivoBlack-Regular.ttf);
}

/* Regular Font */
@font-face {
    font-family: Catamaran-Regular;
    src: url(../fonts/Catamaran-Regular.ttf);
}

/* SemiBold Font */
@font-face {
    font-family: Catamaran-SemiBold;
    src: url(../fonts/Catamaran-SemiBold.ttf);
}

/* ExtraBold Font */
@font-face {
    font-family: Catamaran-ExtraBold;
    src: url(../fonts/Catamaran-ExtraBold.ttf);
}

:root {
    --stb-font-logo: ArchivoBlack;
    --stb-font-regular: Catamaran-Regular;
    --stb-font-semiBold: Catamaran-SemiBold;
    --stb-font-extraBold: Catamaran-ExtraBold;
}

body {
    font-family: var(--stb-font-regular);
    overflow-x: hidden;
}

.logo {
    font-family: var(--stb-font-logo);
    font-size: 50px;
    text-decoration: none;
}

.wrapPadding {
    padding: 100px 0;
    min-height: 100vh;
}

nav {
    transition: all 0.5s;
}

nav.bg {
    background-color: rgba(0, 0, 0, 0.9);
}

.nav-item {
    font-family: var(--stb-font-semiBold);
    text-transform: uppercase;
}

.nav-link {
    position: relative;
}

.nav-link::before,
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 0;
    left: 0;
    height: 5px;
    transform: rotate(0deg);
    transition: all 0.3s;
    border-radius: 50px;

}

.nav-link.active::before,
.nav-link:hover::before {
    background-color: var(--bs-primary);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.2) inset;
    transform: rotate(5deg);
}

.nav-link.active::after,
.nav-link:hover::after {
    background-color: var(--bs-white);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.2) inset;
    transform: rotate(-5deg);
}

/* btn hover effect */
.btn {
    position: relative;
    z-index: 2;
    font-family: var(--stb-font-semiBold);
    text-transform: uppercase;
    overflow: hidden;
    cursor: none !important;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--bs-gray-900);
    transition: width 0.3s, height 0.3s;
}

.btn.btn-outline-light::before, .btn.active::before {
    background-color: var(--bs-primary);
}

.btn:hover::before {
    width: 50px;
    height: 50px;
}

/* heading tags */
h1 {
    font-family: var(--stb-font-extraBold);
    font-size: 60px;
}

h2 {
    font-family: var(--stb-font-semiBold);
    font-size: 40px;
}

h4,
h4 span {
    font-family: var(--stb-font-extraBold);
    position: relative;
}

h4 span.subHeading::after,
h4 span.subHeading::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 150px;
    top: 20px;
    background-color: var(--bs-primary);
}

h4 span::after {
    right: -160px;
}

h4 span::before {
    left: -160px;
}

h5 {
    font-family: var(--stb-font-semiBold);
}

/* ul.ul */
ul.ul li {
    margin-bottom: 10px;
}

/* width */
.w-30px{
    width: 30px;
}
.w-60px{
    width: 60px;
}

.mapIframe{
    width: 100%;
    height: 600px;
    border: none;
}

.videoIframe{
    width: 100%;
    height: 400px;
    border: none;
}

/* wrap 1 section */
.wrap1 {
    background-image: url(../images/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wrap1::before,
.innerPageHeader::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.wrap1 .textBox {
    width: 90%;
    max-width: 700px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

/* wrap 2 section */
.wrap2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap2 .imgBox {
    display: flex;
    align-items: center;
}

.wrap2 .imgBox img {
    position: relative;
    z-index: 999 !important;
}

.wrap2 .textBox {
    position: relative;
    padding: 100px 50px;
    background-color: var(--bs-gray-900);
    color: white;
}

.wrap2 .box {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
}

.wrap2 .box:first-child {
    border: none;
}

/* wrap 3 section */

.wrap3 {
    position: relative;
}

.wrap3::before {
    position: absolute;
    width: 25%;
    top: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/wrap3bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.serviceBox {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--bs-gray-100);
    margin: 0 3px;
    height: 100%;
    transition: all 0.3s;
}

.serviceBox p,
.box p {
    margin-bottom: 0;
    line-height: 25px;
    opacity: 0.7;
}

.serviceBox .icon,
.box .icon {
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 10px;
}

.serviceBox:hover,
.serviceBox.active {
    background-color: var(--bs-gray-900);
    color: var(--bs-primary);
}

.serviceBox:hover p,
.serviceBox.active p {
    color: white;
}

/* wrap 4 section */

.wrap4 .box {
    padding: 20px 0;
    background-color: var(--bs-gray-100);
    height: 100%;
    border-bottom: 5px solid var(--bs-gray-900);
    position: relative;
    margin: 20px 0;
}

.wrap4 .box .packageName {
    background-color: var(--bs-gray-900);
    color: white;
    border-radius: 0 50px 50px 0;
    width: 85%;
    padding: 10px;
    font-family: var(--stb-font-extraBold);
    font-size: 26px;
    position: relative;
}

.wrap4 .box.popularPlan .packageName {
    background-color: var(--bs-gray-700);
    /* color: var(--bs-gray-900); */
}

.wrap4 .box .packageName::before {
    content: "";
    position: absolute;
    background-color: var(--bs-primary);
    top: 0;
    bottom: 0;
    left: -40px;
    width: 40px;
    border-radius: 50px 0 0 50px;
}


.wrap4 .box .packageInfo {
    padding: 20px;
}

.wrap4 .box .packageInfo .price {
    font-size: 60px;
    font-family: var(--stb-font-extraBold);
    margin: 10px 0;
}

.wrap4 .box .packageInfo .price small {
    font-size: 20px;
}

.wrap4 .btnBox .btn {
    position: relative;
    top: -45px;
}

.popularPlan {
    background-color: var(--bs-gray-900) !important;
    color: white;

}

.popularPlan .table> :not(caption)>*>* {
    color: white;
}

.popularPlan .table {
    border-color: rgba(255, 255, 255, 0.1);
}

.popularPlan::before {
    content: attr(data-bs-highlight-plan);
    position: absolute;
    top: -40px;
    font-family: var(--stb-font-semiBold);
    padding: 5px;
    width: 100%;
    border-radius: 20px 20px 0 0;
    text-align: center;
    background-color: var(--bs-gray-900);
    color: var(--bs-primary);
}

/* wrap 5 section */

.wrap5 {
    /* background-image: url(../images/wrap5bg.jpg);
    background-position: right top;
    background-size: 28%;
    background-repeat: no-repeat; */
    position: relative;
}

.wrap5::before {
    position: absolute;
    width: 25%;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/wrap5bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.blogTextBox {
    position: relative;
    background-color: var(--bs-gray-100);
    padding: 60px 25px 30px 25px;
    margin: -80px 20px 0 20px;
    z-index: 2;
}

.blogTextBox span.icon {
    position: absolute;
    font-size: 50px;
    background-color: var(--bs-gray-200);
    width: 80px;
    height: 80px;
    top: -40px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.blogBox:hover .blogTextBox span.icon {
    background-color: var(--bs-primary);
    color: white;
}

/* wrap 6 section */

.wrap6 {
    /* background-image: url(../images/wrap6bg.jpg);
    background-position: right top;
    background-size: 28%;
    background-repeat: no-repeat; */
    position: relative;
}

.wrap6::before {
    position: absolute;
    width: 25%;
    top: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/wrap6bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.contactBox {
    background-color: var(--bs-gray-900);
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
}

table.contactTable tr td .icon {
    font-size: 30px;
}

table.contactTable tr td {
    padding-bottom: 10px;
    color: var(--bs-gray-500);
}

/* social icons */

.social,
.social li {
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 10px;
}

.social li a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bs-gray-200);
    color: var(--bs-gray-900);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
}

.wrap6 .contactBox .social li a {
    background-color: white;
    color: var(--bs-gray-900);
}

.wrap6 .contactBox .social li a:hover,
.social li a:hover {
    background-color: var(--bs-gray-800);
    color: var(--bs-primary);
}

/* inner page */

.blogSummary {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.inShort {
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    font-family: var(--stb-font-regular);
    font-style: italic;
}

.sidebar {
    position: sticky;
    top: 80px;
}

.sidebox {
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 2px solid var(--bs-primary);
}

.sidebox a {
    font-size: 16px;
    line-height: 22px;
    display: block;
    transition: all 0.3s;
}

.sidebox a:hover {
    color: var(--bs-primary);
}

/* Inner Page Header */
.innerPageHeader {
    padding: 180px 0 100px;
    position: relative;
}

.innerPageHeader .textBox {
    color: white;
    position: relative;
    z-index: 1;
}

.featuredPartner {
    padding: 80px 0;
    color: white;
}

.featuredPartner img {
    width: 80px;
    opacity: 0.4;
    transition: all 0.3s;
    cursor: pointer;
}

.featuredPartner img:hover {
    opacity: 1;
}

.playVideo {
    position: relative;
    display: block;
    border: none;
    background-color: transparent;
}

.playVideo::after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 30px;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    background-color: white;
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.playVideo:hover::after {
    box-shadow: 0 0 0 30px rgba(var(--bs-primary-rgb), 0.5);
}

.videoModal .modal-body {
    padding: 0;
}

.videoModal .modal-content {
    background-color: transparent;
}

.play-close {
    position: absolute;
    top: 0;
    right: -50px;
}

.imgBox2 {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Footer */

footer {
    background-color: var(--bs-gray-900);
    box-shadow: 0 -10px 0 var(--bs-gray-900);
    color: white;
    padding: 80px 0;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.5);
}

.copyright {
    color: var(--bs-gray-600);
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    .wrap2 .box:nth-child(3),
    .wrap2 .box:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .wrap2 .box:nth-child(1),
    .wrap2 .box:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .wrap2 .box:nth-child(2) {
        border-top: none;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .wrap2 .textBox {
        padding: 100px 0;
    }

    .wrap2 .textBox::after,
    .wrap2 .textBox::before {
        position: absolute;
        background-color: var(--bs-gray-900);
        content: "";
        top: 0;
        bottom: 0;
        width: 40%;
        z-index: 1;
    }

    .wrap2 .textBox::after {
        right: -40%;
    }

    .wrap2 .textBox::before {
        left: -40%;
    }

    .wrap3::before{
        content: "";
    }

    .wrap5::before{
        content: "";
    }
    

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .wrap2 .textBox {
        padding: 100px 50px;
    }
    

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .wrap6 {
        background-position: left bottom;
    }
    .wrap6::before{
        content: "";
    }

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}