
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*** GENERIC CSS ***/
html,body {
    font-family: "Inter", sans-serif;
}

body {
    font-size: 16px;
    background: #f5f5f5;
    color: #12003A;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #12003A;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:#12003A;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
}

h2 {
    font-size:40px;
    font-weight: bold;
    line-height: 1.2;
}

h3 {
}

h4 {
}

h5 {
}

p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #12003A;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    color: #12003A;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
}

.section-title.white h2,
.section-title.white p {
    color: #fff;
} 

.btn-default {
    padding: 0px 25px;
    display: inline-block;
    color: #ffffff;
    background: #12003A;
    text-align: center;
    transition: all 0.6s ease;
    font-weight: 500;
    min-width: 120px;
    line-height: 50px;
    border-radius: 45px;
    transition: all .4s ease-in-out;
}

.btn-default img {
    margin-left: 8px;
    transition: all .3s;
}

.btn-default:hover img {
    transform: rotate(45deg);
}

.btn-default.gradient-bg {
    background: transparent linear-gradient(90deg, #E83A66 0%, #F2904D 47%, #F9B034 100%) 0% 0% no-repeat padding-box;
}

.sub-menu .btn-default.gradient-bg img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(88%) saturate(5411%) hue-rotate(268deg) brightness(29%) contrast(129%);
}

.sub-menu .btn-default.gradient-bg:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(105%) contrast(105%);
}

.btn-default.black:hover {
    background: #F3904D !important;
}

.btn-default.black:hover img {
    filter: invert(0) brightness(0);
}

.btn-default:hover {
    background: #12003A;
    border-color: #12003A;
    color: #fff;
    line-height: 55px;
}

.btn-default.white {
    background: none;
    border-color: #fff;
    color: #fff;
}

.btn-default.white:hover {
    background:#fff;
    color:#000;
}

.list.white {
    color: #fff;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #12003A;
    font-size: 18px;
}

.list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 10px;
}

.list li:before {
    content: "\f00c";
    font: normal normal normal 14px / 1 FontAwesome;
    color: #F3904D;
    position: absolute;
    top: 3px;
    left: 0px;
    font-size: 20px;
}

/*** HEADER ***/
#header {
    width: 100%;
    z-index: 999;
    position: relative;
    overflow: visible;
    transition: all .3s;
}

#header.fixed {
    position: fixed;
    background: rgba(255,255,255,0.5);
    top: 0;
    left: 0;
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
}

.navbar-brand.logo img {
    max-height: 30px;
}

.navbar-area {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-nav {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
}

.main-nav .navbar {
    transition: all ease .5s;
    z-index: 2;
    position: relative;
    border-bottom: 1px solid rgba(18, 0, 58, 0.05);
    padding: 20px 0px;
}

.main-nav .navbar ul {
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0;
    justify-content: center;
    align-items: center;
}

.main-nav .navbar .navbar-nav>.nav-item {
    margin-left: 45px;
}

.main-nav .navbar .navbar-nav>.nav-item.callbtn {
    margin-left: 35px;
}

.main-nav .navbar .navbar-nav>.nav-item>.nav-link {
    color: #12003A;
    padding: 8px 0px;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
}

.navbar-light .navbar-nav>.nav-item>.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 3px;
    border-radius: 3px;
    background: #F3904D;
    transition: all .3s;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link::before,
.navbar-light .navbar-nav>.nav-item.active>.nav-link::before {
    width: 100%;
}

.main-nav .navbar .navbar-nav>.nav-item.lbtn .nav-link {
    padding: 0px 30px;
    display: block;
    color: #ffffff;
    background: #12003A;
    text-align: center;
    transition: all 0.6s ease;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 188px;
    line-height: 50px;
    border-radius: 45px;
}

.navbar-light .navbar-nav>.nav-item.lbtn>.nav-link img {
    margin-left: 5px;
}

.navbar-light .navbar-nav>.nav-item.lbtn>.nav-link::before,
.navbar-light .navbar-nav>.nav-item.callbtn>.nav-link::before {
    display: none;
}

.main-nav .navbar .navbar-nav>.nav-item.lbtn:hover> .nav-link {
    background: #000 !important;
    color: #fff !important;
}

.main-nav .navbar .navbar-nav>.nav-item.callbtn .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 18px;
    background: linear-gradient(101deg, #E83A66 0%, #F2904D 47%, #F9B034 100%);
    border-radius: 50%;
}

.main-nav .navbar .navbar-nav>.nav-item.callbtn .nav-link img {
    margin-left: 10px;
}

.main-nav .navbar .navbar-nav>.nav-item.callbtn:hover .nav-link,
.main-nav .navbar .navbar-nav>.nav-item.callbtn:focus .nav-link {
    background: #000 !important;
    color: #fff !important;
}

.main-nav .navbar .navbar-nav>.nav-item.callbtn .nav-link i {
    margin-right: 0px;
    position: relative;
    top: 0px;
    font-size: 22px;
    vertical-align: middle;
    color: #fff !important;
    transform: rotate(18deg);
}

.main-nav .navbar .navbar-nav>.nav-item.menu-item-has-children>.nav-link {
    margin-right: 20px;
}

.main-nav .navbar .navbar-nav>.nav-item.menu-item-has-children>.nav-link:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: -20px;
    width: 11px;
    height: 11px;
    background: url(../img/arrow-icon.svg) 50% 50% no-repeat;
    background-size: contain;
    transition: all .3s;
}

.main-nav .navbar .navbar-nav>.nav-item.menu-item-has-children:hover>.nav-link:after,
.main-nav .navbar .navbar-nav>.nav-item.menu-item-has-children.active>.nav-link:after {
    transform: rotate(135deg);
}

.main-nav .navbar .navbar-nav>.nav-item>.nav-link:hover,
.main-nav .navbar .navbar-nav>.nav-item>.nav-link:focus,
.main-nav .navbar .navbar-nav>.nav-item>.nav-link.active {
    background: none !important;
    color: #F3904D !important;
}

.main-nav .navbar .navbar-nav>.nav-item.active>.nav-link.dropdown-toggle::before {
    transform: rotate(180deg);
    margin-top: -3px;
}

.main-nav .navbar .navbar-nav>.nav-item> .sub-menu {
    list-style: none outside none;
    margin: 0;
    position: absolute;
    left: 0px;
    top: 64px;
    width: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: block;
    min-width: 1320px;
    background: #fff !important;
    border: none;
    border-radius: 0px;
    padding: 0px 12px;
}

.main-nav .navbar .navbar-nav>.nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sub-menu .space {
    padding: 28px 40px 75px 40px;
}

.sub-menu .nav-tabs {
    display: inline-block;
    width: 100%;
    border: none;
}

.sub-menu .nav-tabs li {
    display: inline-block;
    width: 100%;
    margin: 0px;
}

.sub-menu .nav-tabs li button {
    display: inline-block;
    width: 100%;
    text-align: left;
    border: none;
    padding: 20px 45px !important;
    font-family: "Poppins", sans-serif;
    color: #12003A;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px 0px 0px 60px;
    margin: 0px;
    position: relative;
}

.sub-menu .nav-tabs li button img {
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -5px;
    transition: all .3s;
    filter: brightness(0) saturate(100%) invert(21%) sepia(88%) saturate(5411%) hue-rotate(268deg) brightness(29%) contrast(129%);
}

.sub-menu .nav-tabs li button:hover img,
.sub-menu .nav-tabs li button.active img {
    filter: none;
    transform: rotate(45deg);
}

.sub-menu .nav-tabs li button:hover,
.sub-menu .nav-tabs li button.active {
    color: #F3904D;
    background: rgba(18, 0, 58,.05);
}

.sub-menu .tab-content {
    padding-top: 30px;
    padding-left: 30px;
}

.sub-menu .tab-content h3 {
    font-weight: bold;
    font-family: "Inter", sans-serif;
    font-size: 26px;
    color: #12003A;
}

.sub-menu .tab-content p {
    font-size: 16px;
    line-height: 30px;
    margin: 25px 0px;
}

.sub-menu .bg {
    background: #12003A;
    padding: 35px 40px;
}

.sub-menu .bg h3 {
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}


/*** BREADCRUMBS ***/
.breadcrumbs {
    color: #12003A;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumbs i {
    margin-left: 10px;
    margin-right: 5px;
}

.breadcrumbs a {
    position: relative;
    overflow: hidden;
}

.breadcrumbs a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #12003A;
    height: 1px;
    transition: all .3s;
    width: 0%;
}

.breadcrumbs a:hover,
.breadcrumbs a.active {
    color: #12003A;
}

.breadcrumbs a.active::before,
.breadcrumbs a:hover::before {
    width: 100%;
}

/*** CONTACT INFO ***/
#contact-info {
    padding: 80px 0px 70px 0px;
}

#contact-info .link {
    color: #F3904D;
    font-size: 18px;
    font-weight: 600;
}

#contact-info .link img {
    transition: all .3s;
    margin-left: 5px;
}

#contact-info .link:hover,
#contact-info .link.active {
    text-decoration: underline;    
}

#contact-info .link:hover img,
#contact-info .link.active img { 
    transform: rotate(45deg);
}

#contact-info .link {
    color: #F3904D;
    font-size: 18px;
    font-weight: 600;
}

#contact-info p {
    margin-top: 40px;
    margin-bottom: 30px;
}

#contact-info .btn-default {
    margin-top: 40px;
}

#contact-info .btn-default i {
    margin-right: 15px;
    margin-left: -5px;
}

#contact-info .bg {
    background: #fff;
    margin-top: 40px;
    padding: 50px 55px;
    position: absolute;
    z-index: 3;
}

#contact-info .bg h2 {
    margin-bottom: 40px;
}

#contact-info .form-group {
    position: relative;
    margin-bottom: 5px;
}

.form-control {
    height: 50px;
    border: 2px solid rgba(197, 197, 214, .3);
    box-shadow: none;
    border-radius: 0px;
    color: #F3904D;
    font-size: 18px;
    font-weight: 500;
    padding-left: 17px;
    font-family: "Inter", sans-serif;
}

.form-control:focus,
#contact-info .form-group.active .form-control {
    box-shadow: none !important;
    border-color: #F3904D;
    height: 63px;
    color: #F3904D;
}

#contact-info .form-group select.form-control {
    height: 50px !important;
    color: #12003A;
    background: url(../img/down-arrow.png) 96% 50% no-repeat;
}

#contact-info .form-group.active label {
    color: #12003A;
    font-size: 12px;
    opacity: .5;
    top: 6px;
}

#contact-info .form-group label {
    display: inline-block;
    color: #12003A;
    font-size: 18px;
    font-weight: 500;
    padding-left: 17px;
    font-family: "Inter", sans-serif;
    position: absolute;
    top: 13px;
    left: 0px;
    pointer-events: none;
    transition: all .3s;
}

#contact-info .form-group textarea.form-control {
    height: 195px !important;
    padding-top: 25px;
    resize: none;
}

#contact-info .form-group textarea.form-control:focus {
    height: 195px;
}

#contact-info .bg .btn-default {
    margin-top: 15px;
}


/*** OUR LOCATION ***/
#our-location {
    background: #12003A;
    padding: 65px 0px;
}

#our-location .list {
    margin-bottom: 200px;
}

.location-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.location-box .img {
    display: inline-block;
    width: 100%;
}

.location-box h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.location-box p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.link-call {
    display: inline-block;
    color: #F3904D;
    font-size: 18px;
    font-weight: 500;
}

.link-call:hover {
    color: #fff;
}

.link-call .fa {
    width: 40px;
    height: 40px;

    /* border: 2px solid rgba(197, 197, 214,0.25); */
    transform: rotate(30deg);

    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
}

/**/
.link-call span {
    width: 40px;
    height: 40px;
    line-height: 36px;
    padding-top: 2px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    margin-right: 10px;
    display: inline-block;
    position: relative;
}

.link-call span:before, 
.link-call span:after {
    content: '';
    position: absolute;
    box-sizing: inherit;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.link-call span:before {
    border: 2px solid transparent;
    top: 0;
    left: 0;
}

.link-call span:after {
    top: 0;
    left: 0;
    border: 0 solid transparent;
    border-radius: 100%;
}

.link-call:hover span:before {
    transform: rotate(405deg);
}

.link-call:hover span:before {
    border-top-color: rgba(197, 197, 214,0.25);
    border-right-color: rgba(197, 197, 214,0.25);
    border-bottom-color: rgba(197, 197, 214,0.25);
    transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.link-call:hover span:after {
    transform: rotate(315deg);
}

.link-call:hover span:after {
    border-top: 2px solid rgba(197, 197, 214,0.25);
    border-left-width: 2px;
    border-right-width: 2px;
    transform: rotate(315deg);
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}

/**/

#our-location .down p {
    color: #fff;
    font-size: 18px;
    opacity: 0.5;
    margin: 0;
    margin-top: 50px;
}

#our-location .down p span {
    display: inline-block;
    margin: 0px 30px;
}

/*** FAQ ***/
#faq {
    padding: 110px 0px;
}


#faq .accordion {
    border: none;
    background: none;
}

#faq .accordion-item {
    border: none;
    border-radius: 0px !important;
    background: none;
}

#faq .accordion-item button {
    border-radius: 0px !important;
    color: #F3904D;
    font-size: 16px;
    font-weight: bold;
    border-top: 1px solid #eaeaef;
    border-bottom: none;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
    padding: 30px 50px 30px 50px;
}

#faq .accordion-item button.collapsed {
    border-bottom: 1px solid #eaeaef;
    color: #12003A;
}

#faq .accordion-item .accordion-button.collapsed::before,
#faq .accordion-item .accordion-button.collapsed::after {
    background: #000;
}

#faq .accordion-item .accordion-button::before {
    content: '';
    position: absolute;
    top: 48%;
    left: 18px;
    margin-top: -5px;
    height: 12px;
    width: 2px;
    background: #F3904D;
}

#faq .accordion-item .accordion-button::after {
    position: absolute;
    top: 48%;
    left: 13px;
    background: #F3904D;
    height: 2px;
    width: 12px;
}

#faq .accordion-body {
    background: #fff;
    padding: 50px 50px 50px 50px;
    border-top: 1px solid #eaeaef;
}

#faq .accordion-body p {
    font-size: 16px;
}


/*** WHY CHOOSE ***/
#why-choose {
    padding-bottom: 50px;
}

#why-choose .img {
    padding-left: 60px;
}

#why-choose .section-title {
    padding-left: 70px;
    max-width: 550px;
    margin: 20px 0px;
}

#why-choose .btn-default {
    margin-top: 30px;
    margin-bottom: 0px;
}


/*** FOOTER ***/
#footer {
    padding: 90px 0px 0px 0px;
    background: url(../img/bg-footer.png) 90% 25% no-repeat;
}

#footer h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 45px;
}

#footer p {
    font-size: 16px;
    margin-bottom: 40px;
}

#footer .btn-default {
    min-width: 300px;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

#footer .btn-default img {
    position: absolute;
    top: 20px;
    right: 20px;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #12003A;
    font-size: 18px;
    margin-bottom: 55px;
}

#footer ul li {
    position: relative;
    margin-bottom: 5px;
}

#footer ul li a {
    color: #12003A;
    font-size: 16px;
    font-weight: 500;
}

#footer ul li a:hover {
    color: #F3904D;
}

#footer .copy {
    color: #F3904D;
    border-top: 1px solid #eaeaef;
    padding: 35px 0px;
    margin-top: 50px;
}

#footer .copy p {
    margin: 10px 0px;
}

#footer .copy p img {
    margin-right: 5px;
}

#footer .copy ul {
    margin: 0px;
}

#footer .copy ul li {
    display: inline-block;
    margin: 0px;
    margin-left: 15px;
}

#footer .copy ul li a {
    display: inline-block;
    margin: 0px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    border: 1px solid rgba(18, 0, 58, 0.2);
}



/*** Sidemenu ***/
.menu-btn {
    color: #fff !important;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.menu-btn:before,
.menu-btn:after {
    display: none;
}

.menu-btn span {
    display: block;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: #000 !important;
    height: 2px;
    margin: 3px 0px;
    transition: all .3s;
    float: right;
}

.menu-btn div {
    margin-left: 0px;
    position: relative;
    top: 0px;
    vertical-align: middle;
    width: 100%;
    display: inline-block;
}
/**/
.side-menu {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 50%;
    background-color: #fff;
    height: 100%;
    z-index: 999999;
    padding: 40px 30px;
    -webkit-transition: all ease 0.9s;
    transition: all ease 0.9s;
    overflow-y: scroll;
}

.side-menu .logo img {
    max-height: 48px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.side-menu.intro {
	right:0px;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

.side-menu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    color: #12003A;
}

.side-menu ul.main-menu li a:hover,
.side-menu ul.main-menu li.active>a {
    background-image: linear-gradient(to bottom, #cc9741, #f8e9a0, #cc9741) !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
}

.CloseBtn {
	text-transform:uppercase;
	font-size:12px;
	letter-spacing:3px;
	 display: inline-block;
	text-align:center;
    color: #12003A;
}

.CloseBtn img {
	height: 20px;
	display: inline-block;
	-webkit-transition: all .325s ease-in-out;
    -moz-transition: all .325s ease-in-out;
    -ms-transition: all .325s ease-in-out;
    transition: all .325s ease-in-out;
}

.CloseBtn:hover img {
    transform: rotate(90deg);
}

/**/
.side-menu ul.main-menu.navbar-nav {
	margin-top:30px;
}

.side-menu ul.main-menu.navbar-nav li {
    margin: 0;
}

.side-menu ul.main-menu.navbar-nav li:last-child a {
    border: none;
}

.side-menu ul.main-menu.navbar-nav li a:hover {
	background:none;
    color: #F3904D;
}

.side-menu ul.main-menu.navbar-nav li .sub-menu a {
    padding: 10px 5px;
    font-size: 12px;
    background: #ebebeb;
    color: #000;
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.side-menu .menu-item-has-children:hover>a {
    color: #F3904D !important;
}

.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    right: 6px;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current>a:before {
    content: "\f068";
}

.side-menu ul.navbar-nav li a:hover {
	background:none;
    color:#000;
    border-bottom-color: rgba(11, 23, 23, .2);
}

.side-menu li.menu-item-has-children .sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #fff;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

.side-menu ul li.current .sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.main-menu.navbar-nav li {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.side-menu .sub-menu .space {
    padding: 20px 0px 20px 0px;
}


/*** PAGE BANNER ***/
#page-banner {
    padding: 80px 0px 0px 0px;
}

/*** DIGITAL PARTNER ***/
#digital-partner {
    background: #12003A;
    padding: 450px 0px 0px 0px;
    margin-top: -330px;
}

#digital-partner .list {
    margin-bottom: 200px;
}

#digital-partner .section-title {
    margin-top: 80px;
}

#digital-partner .section-title h2 {
    margin-bottom: 40px;
}

#digital-partner .btn-default.gradient-bg {
    margin-top: 20px;
}

#digital-partner p {
    margin-bottom: 30px;
}

.digital-box {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.digital-box>img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.digital-box.tps {
    margin-top: 80px;
}

.digital-box::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../img/bg-overlay.png) bottom center no-repeat;
    background-size: cover;
}

.digital-box .overlay {
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
}

.digital-box .label {
    display: inline-block;
    background: #12003A;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tags {
    display: inline-block;
}

.tags div {
    display: inline-block;
    background: #12003A;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tags.lg div {
    font-size: 20px;
    padding: 5px 15px;
}

.digital-box h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.digital-box p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0px 0px 15px 0px !important;
}

.btn-white {
    display: inline-block;
    padding: 0px 25px;
    text-align: center;
    line-height: 50px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    color: #fff;
}

.btn-white img {
    margin-left: 10px;
}


/*** SMART SOLUTION ***/
#smart-solution {
    padding: 110px 0px;
    position: relative;
    overflow: hidden;
}

#smart-solution .bg {
    background: transparent linear-gradient(55deg, #E83A66 0%, #F2904D 47%, var(---f9b034-geel) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(55deg, #E83A66 0%, #F2904D 47%, #F9B034 100%) 0% 0% no-repeat padding-box;
    padding: 120px 90px;
}

#smart-solution .bg p {
    color: #fff;
    font-size: 26px;
}

#smart-solution .bg h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

#smart-solution .mtp {
    margin-top: 130px;
}

#smart-solution p {
    margin-bottom: 20px;
}

#smart-solution .btn-default {
    margin-top: 20px;
}

#smart-solution .owl-carousel .owl-stage-outer {
    overflow: visible;
}

#smart-solution .bg-1::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 857px;
    height: 857px;
    background: radial-gradient(closest-side at 50% 50%, #F9B034 0%, #F9F9F9 100%);
    mix-blend-mode: multiply;
    opacity: 0.25;
}

#smart-solution .bg-1 .row {
    position: relative;
    z-index: 1;
}

#smart-solution.casespage .bg-1::before {
    left: 20%;
}

#smart-solution.casespage .bg-1::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0%;
    width: 40%;
    height: 40% ;
    background: radial-gradient(closest-side at 50% 50%, #434DF7 0%, #F9F9F9 100%);
    opacity: 0.15;
}

#smart-solution .bg-2::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -155px;
    width: 857px;
    height: 857px;
    background: radial-gradient(closest-side at 50% 50%, #434DF7 0%, #F9F9F9 100%);
    opacity: 0.15;
}

#smart-solution .bg-2 .row {
    position: relative;
    z-index: 1;
}

#smart-solution .bg-3::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 30px;
    width: 857px;
    height: 857px;
    background: transparent radial-gradient(closest-side at 50% 50%, #F9B034 0%, #F9F9F9 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.25;
}

#smart-solution .bg-3 .row {
    position: relative;
    z-index: 1;
}

.teambox {
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
}

.teambox h4 {
    color: #12003A;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 900;
    margin-top: 15px;
}

.teambox p {
    color: #12003A;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

.teaminfo {
    display: inline-block;
    width: 100%;
    background: transparent linear-gradient(46deg, #E83A66 0%, #F2904D 47%, #F9B034 100%) 0% 0% no-repeat padding-box;
    padding: 36px 30px;
    border-radius: 5px;
    margin-bottom: 60px;
}

.teaminfo p {
    color: #fff;
    font-size: 26px;
}

.teaminfo h6 {
    color: #12003A;
    font-size: 16px;
    font-weight: 500;
    margin-top: 40px;
}

.teaminfo h6 a {
    position: relative;
    overflow: hidden;
}

.teaminfo h6 a.active::before, 
.teaminfo h6 a:hover::before {
    width: 100%;
}

.teaminfo h6 a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #12003A;
    height: 1px;
    transition: all .3s;
    width: 0%;
}

#smart-solution .owl-theme .owl-nav {
    margin-top: 30px;
}

#smart-solution .owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    margin: 0px 10px;
    transform: rotate(45deg);
    vertical-align: top;
}

#smart-solution .owl-theme .owl-nav [class*=owl-] img {
    position: relative;
    top: -2px;
}

#smart-solution .owl-theme .owl-nav [class*=owl-].owl-prev {
    transform: rotate(-135deg);
}

#smart-solution .owl-theme .owl-nav [class*=owl-].owl-prev img {
}

/*** OUR CASES ***/
#our-cases {
    padding: 0px 70px;
}

#our-cases .bg {
    background: #ccc;
    background: #000;
    padding: 0px 40px 130px 40px;
    position: relative;
}

#our-cases .bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(2deg, #12003A 0%, #434DF700 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: luminosity;
    opacity: 0.89;
}

#our-cases .align {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 1;
    height: 50px;
}

#our-cases .img img {
    position: relative;
    z-index: 2;
    top: 0px;
}

#our-cases .label {
    display: inline-block;
    background: #12003A;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

#our-cases h4 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

#our-cases p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0px 0px 15px 0px !important;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}

#our-cases .owl-dots {
    position: absolute;
    bottom: -90px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#our-cases .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    width: 100%;
}

#our-cases .owl-theme .owl-dots .owl-dot span {
    width: 100%;
    height: 5px;
    margin: 5px 0px;
    background: rgba(255,255,255,0.5);
    border-radius: 15px;
}

#our-cases .owl-theme .owl-dots .owl-dot.active span,
#our-cases .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}


/*** CTA ***/
#cta {
   padding: 0px 0px; 
}

#cta .bg {
    background: #12003A;
    padding: 0px 80px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 150px;
}

#cta .align {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
}

#cta .section-title {
    margin: 15px 0px;
}

#cta .section-title h2 {
    margin-bottom: 20px;
}

#cta .section-title p {
    margin-bottom: 30px;
    font-size: 16px;
}

#cta .img img {
    position: relative;
    z-index: 1;
    margin-top: -60px;
}


/*** CASES PAGE ***/
#cases-filter {
    padding: 0px 70px;
    background: #12003A;
    padding: 0px 0px 0px 0px;
    margin-top: 300px;
}

#cases-filter .bg-1>div {
    position: relative;
    z-index: 2;
}

#cases-filter .bg-1::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 0%;
    width: 50%;
    height: 50%;
    background: radial-gradient(closest-side at 50% 50%, #F9B034 0%, #F9F9F9 100%);
    mix-blend-mode: multiply;
    opacity: 0.25;
}

#cases-filter .top-minus {
    top: -250px;
    position: relative;
}

#cases-filter .nav-tabs {
    background: #fff;
    display: flex;
    justify-content: space-between;
    border: none;
    border-radius: 50px;
    margin-bottom: 100px;
}

#cases-filter .nav-tabs li {
    padding: 8px;
    margin: 0px;
}

#cases-filter .nav-tabs li button {
    width: 100%;
    margin: 0px;
    border: none;
    box-shadow: none;
    border-radius: 50px;
    text-align: center;
    min-width: 150px;
    background: #fff;
    font-size: 16px;
    padding: 8px 48px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #12003A;
}

#cases-filter .nav-tabs li button.active {
    background: linear-gradient(90deg, #E83A66 0%, #F2904D 47%, #F9B034 100%);
    color: #fff;
}

.cases-box {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.cases-box .tags {
    position: absolute;
    top: 15px;
    right: 10px;
}

.cases-box.tps {
    margin-top: 120px;
}

.cases-box .img {
    display: inline-block;
    width: 100%;
    position: relative;
}

.cases-box .img img {
    display: inline-block;
    width: 100%;
}

.cases-box .text {
    display: inline-block;
    width: 100%;
    z-index: 2;
}

.cases-box .text h6 {
    color: #F3904D;
    font-size: 18px;
    margin-top: 20px;
}

.cases-box .text p {
    color: #fff;
    font-size: 32px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

/*** BANNER ***/
#banner {
    padding: 10px 80px 0px 80px;
}

#banner .video-space {
    padding: 110px 100px;
    position: relative;
}

#banner .video-space .align {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
}

#banner .video-space .container {
    position: relative;
    z-index: 2;
}

#banner .video-space::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: radial-gradient(closest-side at 50% 50%, #434DF7 0%, #F9F9F9 100%);
    opacity: 0.15;
    background: #000;
    opacity: 0.3;
    z-index: 1;
}

#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    right: 0;
}

#banner .tags div {
    font-size: 25px;
}

#banner h1 {
    color: #fff;
    font-size: 100px;
}

#banner p {
    color: #fff;
    margin: 35px 0px;
    max-width: 65%;
}

#banner .btn-default {
    margin-right: 15px;
    margin-bottom: 15px;
}

.subtitle {
    display: inline-block;
    background: #12003A;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    transform: rotate(-2deg);
}

.subtitle span {
    display: inline-block;
    transform: rotate(2deg);
}

/*** SMALL-INFO ***/
#small-info .section-title {
    margin: 90px 0px 250px 0px;
}

#small-info .section-title p {
    margin: 35px 0px;
}

#small-info .section-title .btn-default {
    margin: 5px 10px;
}

/*** digital-partner homi ***/
#digital-partner.homi {
    margin: 0px;
    padding-top: 0px;
}

#digital-partner.homi .mts {
    margin-top: 60px;
}

#digital-partner.homi .section-title {
    margin: 0px 0px 0px 0px;
}

#digital-partner.homi .top-minus {
    top: -200px;
    position: relative;
    margin-bottom: -200px;
}

/*** AGENT REVOLUTION ***/
#agent-revolution {
    position: relative;
    overflow: hidden;
    padding: 90px 0px 110px 0px;
}

#agent-revolution .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#agent-revolution .img>img {
    display: inline-block;
    width: 100%;
}

#agent-revolution .tags {
    position: absolute;
    top: 15px;
    left: 0px;
}

#agent-revolution .container {
    position: relative;
    z-index: 2;
}

#agent-revolution::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(closest-side at 50% 50%, #F9B034 0%, #F9F9F9 100%);
    mix-blend-mode: multiply;
    opacity: 0.25;
}

#agent-revolution .btn-default {
    margin-top: 35px;
}

#agent-revolution .btn-default img {
    margin-left: 40px;
}

/*** LOGOS ***/
#logos {
    padding: 0px 0px 70px 0px;
    position: relative;
}

#logos::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(closest-side at 50% 50%, #F9B034 0%, #F9F9F9 100%);
    mix-blend-mode: multiply;
    opacity: 0.25;
    z-index: 1;
}

#logos::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 60%;
    height: 70%;
    opacity: 0.25;
    background: radial-gradient(closest-side at 50% 50%, #434DF7 0%, #F9F9F9 100%);
    opacity: 0.15;
    z-index: 1;
}

#logos>div {
    position: relative;
    z-index: 2;
}

#logos .section-title {
    margin-bottom: 60px;
}

.logobox {
    display: inline-block;
    width: 100%;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
    padding: 0px 25px;
    aspect-ratio: 1 / .7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/*** WEBDESIGN SOLUTION PAGE ***/
#page-banner.webdesign-solution {
    position: relative;
}

#page-banner.webdesign-solution .contianer {
    position: relative;
    z-index: 2;
}

#page-banner::before {
    content: '';
    position: absolute;
    top: 11%;
    left: -24%;
    width: 70%;
    height: 70%;
    background: radial-gradient(closest-side at 50% 50%, #434DF7 0%, #F9F9F9 100%);
    opacity: 0.15;
    z-index: -3;
}

#page-banner::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0%;
    width: 70%;
    height: 70%;
    background: radial-gradient(closest-side at 50% 50%, #F9B034 0%, #F9F9F9 100%);
    mix-blend-mode: multiply;
    opacity: 0.25;
    z-index: -1;
}

#digital-partner.webdesign-solution {
}

#digital-partner.webdesign-solution {
    margin-top: 0px;
    margin-top: -330px;
}

#digital-partner.webdesign-solution .top-minus {
    margin-top: 0px;
}

#digital-partner.webdesign-solution .owl-carousel .owl-stage-outer {
    width: 80vw;
}

#digital-partner.webdesign-solution .custom-nav button:first-child {
    transform: rotate(-135deg);    
}

#digital-partner.webdesign-solution .custom-nav button:first-child img {
    top: -2px;
}

#digital-partner.webdesign-solution .custom-nav button img {
    position: relative;
    transition: all .3s;
}

#digital-partner.webdesign-solution .custom-nav button:hover {
    background: none;
}

#digital-partner.webdesign-solution .custom-nav button:hover img {
    filter: invert(.5) brightness(7);
}

#digital-partner.webdesign-solution .custom-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    margin-right: 20px;
    transform: rotate(45deg);
    vertical-align: top;
    transition: all .3s;
}

.buildbox {
    background: #fff;
    padding: 50px 35px 40px 35px;
}

.buildbox h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 0px;
    position: relative;
    padding: 10px 0px;
}

.buildbox.small {
    padding: 20px 35px 20px 35px;
}

.buildbox.small h3 {
    font-size: 18px;
}

.buildbox.small p {
    min-height: 95px;
}

.buildbox h3 i {
    color: #F3904D;
    margin-right: 10px;
}

.buildbox h3::before {
    content: '';
    background: #F3904D;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px 10px 10px 0px;
    left: -35px;
}

.buildbox p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 30px;
    min-height: 230px;
}

#digital-partner.webdesign-solution .section-title h2 {
    margin-bottom: 25px;
}

#digital-partner.webdesign-solution .list {
    margin: 0px;
    margin-bottom: 35px;
}

#digital-partner.webdesign-solution .btn-default {
    margin: 0px;
}

#digital-partner.webdesign-solution .bottom {
    bottom: -45px;
    position: relative;
    margin-top: 70px;
}


/*** INFO PLAN ***/
#info-plan {
    padding: 150px 0px 0px 0px;
    overflow: hidden;
}

#info-plan .bg {
    padding: 70px 70px 50px 70px;
    background: #12003A;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 150px;
}

#info-plan .bg .art {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

#info-plan .bg .align {
    position: absolute;
    bottom: -46px;
    left: 120px;
}

#info-plan .bg p {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

#info-plan .bg h6 {
    color: #fff;
}

#info-plan .section-title {
    margin-bottom: 50px;
}

#info-plan .owl-carousel .owl-stage-outer {
    width: 100vw;
}

#info-plan .custom-nav button:first-child {
    transform: rotate(-135deg);    
}

#info-plan .custom-nav button:first-child img {
    top: -2px;
}

#info-plan .custom-nav button img {
    position: relative;
    transition: all .3s;
}

#info-plan .custom-nav button:hover {
    background: none;
}

#info-plan .custom-nav button:hover img {
    filter: invert(.5) brightness(7);
}

#info-plan .custom-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    margin-right: 20px;
    transform: rotate(45deg);
    vertical-align: top;
    transition: all .3s;
}

.planbox .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.planbox .img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.planbox .img::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.planbox .img h3 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin: 0px;
    padding: 0px 40px 40px 40px;
}

.planbox .img .num {
    position: absolute;
    right: 20px;
    bottom: 0px;
    z-index: 2;
    font-size: 100px;
    line-height: 1;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    opacity: 0.35;
    -webkit-text-stroke-width: 1px; /* Sets the width of the stroke */
    -webkit-text-stroke-color: #fff; /* Sets the color of the stroke */
    color:transparent; /* Sets the fill color of the text */
}

.planbox .text {
    padding: 20px 40px 40px 40px;
}

.planbox .text p {
    color: #C5C5D6;
    font-size: 16px;
    line-height: 1.8;
}

/*** WHY-CHOOSE us ***/
#why-choose-us {
    background: #12003A;
    padding: 450px 0px 130px 0px;
    margin-top: -330px;
}

#why-choose-us .section-title {
    margin-top: 60px;
}

#why-choose-us .buildbox.small {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

#why-choose-us .btn-default {
    margin-top: 30px;
}


/*** ***/
#smart-solution.complete-digital {
    overflow: visible;
}

#smart-solution.complete-digital::before {
    content: '';
    position: absolute;
    top: -38%;
    left: -20%;
    width: 78%;
    height: 147%;
    background: radial-gradient(closest-side at 50% 50%, #434DF7 0%, #F9F9F9 100%);
    opacity: 0.15;
    z-index: -3;
}

@media (min-width: 1500px) {
.container.lg {
    max-width: 1500px;
}

}

/*** INFO NEW ***/
#info-new {
    padding: 70px 0px 130px 0px;
}

#info-new .section-title h2 {
    font-size: 60px;
    line-height: 1.2;
}


#filter-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 4;
    transition: all .3s;
}

#filter-btn.active {
}







