@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. 1600px
2. 1440px
3. 1280px
4. 1199px
5. 1024px
6. 991px
7. 959px
8. 880px
9. 768px
10. 767px
11. 539px
12. 479px
13. 400px

******************************/


@media only screen and (max-width: 1600px)
{
	
}

/************
2. 1440px
************/

@media only screen and (max-width: 1440px)
{
	.main_nav ul
	{
		margin-right: 80px;
	}
	.main_nav ul li
	{
		margin-right: 50px;
	}
	.v_slider .slick-dots
	{
		right: -55px;
	}
}

/************
3. 1380px
************/

@media only screen and (max-width: 1380px)
{
	
}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px)
{
	.logo
	{
		padding-left: 50px;
	}
	.logo a
	{
		font-size: 28px;
	}
	.search
	{
		width: auto;
		margin-right: 40px;
	}
	.main_nav ul
	{
		margin-right: 68px;
	}
	.next_section_scroll
	{
		display: block;
	}
	.footer_logo
	{
		padding-left: 0px;
	}
}

/************
4. 1199px
************/

@media only screen and (max-width: 1199px)
{
	
}

/************
4. 1100px
************/

@media only screen and (max-width: 1100px)
{
	.v_slider .slick-dots
	{
		right: -15px;
	}
}

/************
5. 1024px
************/

@media only screen and (max-width: 1024px)
{
	
}

/************
6. 991px
************/

/* Viewport settings to prevent unwanted zooming */
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }

/* Tablet and Mobile Menu Styles */
/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
}

.mobile-menu.active {
    transform: translateX(-100%);
    visibility: visible;
    opacity: 1;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__list li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-menu__list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu__list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu__list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu__list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu__list li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu__list li:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu__list a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-menu__list a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 0;
    background-color: #ff5a5f;
    transition: width 0.3s ease;
}

.mobile-menu__list a:hover:after {
    width: 40px;
}

/* Hamburger Button */
.mobile-menu-toggle {
    display: block; /* Always show the toggle */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile menu styles removed */

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger-inner::after {
    bottom: -10px;
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Active state */
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.1s;
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.1s ease;
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.2s 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animation for menu items */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Menu Styles */
.menu_container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    overflow: hidden;
}

.menu_container.active {
    visibility: visible;
}

.menu_mm {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(7, 30, 65, 0.98) !important;
    padding: 60px 0 40px 0 !important;
    transform: translateX(100%);
    transition: transform 0.5s ease, visibility 0s 0.5s;
    overflow-y: auto;
    z-index: 1001;
}

.menu_container.active .menu_mm {
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.menu_mm ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_mm li {
    display: block;
    margin: 0;
    padding: 0;
}

.menu_mm li a {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 12px 30px !important;
    margin: 5px 0 !important;
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
}

.menu_mm li a:hover {
    color: #fc0201 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(10px) !important;
    text-decoration: none !important;
}

.menu_close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffffff !important;
    font-size: 28px !important;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.menu_close:hover {
    color: #fc0201 !important;
    transform: rotate(90deg);
}

/* Overlay */
.menu_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 999;
}

.menu_container.active + .menu_background {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 1199px) {
    /* Header and Logo adjustments */
    .header {
        padding: 0 15px;
        box-sizing: border-box;
        width: 100%;
        justify-content: space-between;
        max-width: 100%;
        position: relative;
        background: #fff;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    /* Ensure the header doesn't exceed viewport */
    .super_container {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Fix for viewport scaling */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    .logo {
        padding-left: 15px !important;
        margin-right: auto;
    }
    
    /* Main Navigation - Hide by default on mobile */
    .main_nav {
        display: none;
    }
    
    /* Show hamburger menu */
    .hamburger_container {
        display: block !important;
        z-index: 10000;
        cursor: pointer;
    }
    
    /* Hamburger icon styles */
    .hamburger {
        width: 30px;
        height: 20px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #071e41;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .hamburger span:nth-child(1) {
        top: 0px;
    }
    
    .hamburger span:nth-child(2),
    .hamburger span:nth-child(3) {
        top: 10px;
    }
    
    .hamburger span:nth-child(4) {
        top: 20px;
    }
    
    .hamburger.open span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .hamburger.open span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .hamburger.open span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    /* Mobile menu styles */
    .menu_container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: #fff;
        z-index: 9999;
        transition: all 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .menu_container.active {
        right: 0;
    }
    
    .menu_close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #071e41;
        cursor: pointer;
    }
    
    .menu_mm {
        padding: 80px 30px 30px;
        height: 100%;
        overflow-y: auto;
    }
    
    .menu_mm li {
        margin-bottom: 20px;
        list-style: none;
    }
    
    .menu_mm a {
        color: #071e41;
        font-size: 18px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .menu_mm a:hover {
        color: #fc0201;
    }
    
    /* Overlay when menu is open */
    .menu_overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .menu_overlay.active {
        display: block;
        opacity: 1;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .main_nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .main_nav ul li:nth-child(1) { transition-delay: 0.1s; }
    .main_nav ul li:nth-child(2) { transition-delay: 0.15s; }
    .main_nav ul li:nth-child(3) { transition-delay: 0.2s; }
    .main_nav ul li:nth-child(4) { transition-delay: 0.25s; }
    .main_nav ul li:nth-child(5) { transition-delay: 0.3s; }
    
    .main_nav ul li a {
        color: #fff !important;
        font-size: 20px;
        font-weight: 500;
        padding: 10px 0;
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .main_nav ul li a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #fc0201;
        transition: width 0.3s ease;
    }
    
    .main_nav ul li a:hover:after {
        width: 100%;
        transition: .25s ease-in-out;
    }
    
    .hamburger_container .hamburger span:nth-child(1) {
        top: 0px;
    }
    
    .hamburger_container .hamburger span:nth-child(2),
    .hamburger_container .hamburger span:nth-child(3) {
        top: 9px;
    }
    
    .hamburger_container .hamburger span:nth-child(4) {
        top: 18px;
    }
    
    .hamburger_container.active .hamburger span:nth-child(1) {
        top: 9px;
        width: 0%;
        left: 50%;
    }
    
    /* Mobile Menu Styling */
    .menu_container {
        z-index: 1001;
    }
    
    .menu_mm {
        background: rgba(7, 30, 65, 0.98) !important;
        padding: 40px 0 !important;
        width: 300px !important;
        right: 0 !important;
        left: auto !important;
        transform: translateX(100%) !important;
        transition: transform 0.5s ease !important;
    }
    
    .menu_mm.active {
        transform: translateX(0) !important;
    }
    
    .menu_mm li a {
        color: #ffffff !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        padding: 15px 30px !important;
        margin: 5px 0 !important;
        transition: all 0.3s ease !important;
        display: block !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        text-align: left !important;
    }
    
    .menu_mm li a:hover {
        color: #fc0201 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        transform: translateX(10px) !important;
    }
    
    .menu_close {
        color: #ffffff !important;
        font-size: 28px !important;
        padding: 20px 30px 0 0 !important;
        cursor: pointer;
        display: block !important;
        text-align: right;
        margin-bottom: 20px;
    }
    
    .menu_close:hover {
        color: #fc0201 !important;
    }
    
    .hamburger_container.active .hamburger span:nth-child(2) {
        transform: rotate(45deg);
        background: #fff;
    }
    
    .hamburger_container.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg);
        background: #fff;
    }
    
    .hamburger_container.active .hamburger span:nth-child(4) {
        top: 9px;
        width: 0%;
        left: 50%;
    }
    
    /* Page Content */
    .page_content {
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Adjust other elements for better mobile view */
    .container {
        max-width: 100% !important;
        padding: 0 15px;
    }
    

	.icon_box_col
	{
		padding-top: 0px;
		margin-top: 63px;
	}
	.icon_box_button
	{
		margin-bottom: 30px;
	}
	.item_1 span:first-child
	{
		font-size: 20px;
		margin-bottom: 15px;
	}
	.item_1 span:nth-child(2)
	{
		margin-bottom: 9px;
	}
	.item_1 span:nth-child(2) img
	{
		width: 150px;
	}
	.item_1 span:nth-child(3)
	{
		font-size: 186px;
		margin-bottom: 0px;
	}
	.item_1 span:nth-child(4)
	{
		font-size: 20px;
	}
	.hamburger_container
	{
		display: inline-block;
	}
	.v_slider_section
	{
		height: auto;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.v_slider .slick-dots
	{
		right: 0px;
	}
	.v_slider_item
	{
		padding-right: 100px;
	}
	.v_slider_image
	{
		position: relative;
		top: auto;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		right: auto;
		box-shadow: 0px 45px 59px rgba(24, 29, 33, 0.23);
	}
	.v_slider_image img
	{
		width: 100%;
	}
	.v_slider_content
	{
		margin-top: 86px;
	}
	.features_button
	{
		display: none;
	}
	.features_button_2
	{
		display: inline-block;
		margin-bottom: 0px !important;
	}
	.features_col
	{
		padding-bottom: 0px;
		padding-top: 0px;
	}
	.features_col > div:last-of-type
	{
		margin-bottom: 60px;
	}
	.features_image
	{
		margin-bottom: 50px;
	}
	.cta_image
	{
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		padding-top: 58px;
	}
	.cta_image img
	{
		max-width: 100%;
		width: 776px;
		height: auto;
	}
	.cta_content
	{
		padding-top: 60px;
	}
	.text_line_image
	{
		position: relative;
		bottom: auto;
		right: auto;
		padding-top: 109px;
	}
	.text_line_content
	{
		padding-top: 60px;
	}
	.newsletter_form_container
	{
		text-align: left;
		margin-top: 41px;
	}
	.footer_social
	{
		margin-bottom: 60px;
	}
	.footer_cr
	{
		display: none;
	}
	.footer_cr_2
	{
		display: block;
	}

/************
7. 959px
************/


/************
8. 880px
************/

@media only screen and (max-width: 880px)
{
	
}

/************
9. 768px
************/

@media only screen and (max-width: 768px)
{
	
}

/************
10. 767px
************/

@media only screen and (max-width: 767px)
{
	h1
	{
		font-size: 36px;
	}
	.logo
	{
		padding-left: 30px;
	}
	.hero_slider_nav_left
	{
		left: 30px;
	}
	.hero_slider_nav_right
	{
		right: 30px;
	}
	.v_slider_item h1
	{
		line-height: 1.083;
	}
	.v_slider_item h1:last-of-type
	{
		margin-bottom: 63px;
	}
	.person
	{
		margin-top: 52px;
	}
}

/************
11. 575px
************/

@media only screen and (max-width: 575px)
{
	.logo
	{
		padding-left: 15px;
	}
	.hamburger_container
	{
		margin-right: 5px;
	}
	.hero_slider_nav
	{
		display: none;
	}
	.item_1 span:first-child
	{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.item_1 span:nth-child(2)
	{
		margin-bottom: 5px;
	}
	.item_1 span:nth-child(2) img
	{
		width: 120px;
	}
	.item_1 span:nth-child(3)
	{
		font-size: 100px;
	}
	.item_1 span:nth-child(4)
	{
		font-size: 16px;
	}
	.v_slider_item
	{
		padding-right: 0px;
	}
	.services
	{
		padding-top: 100px;
		padding-bottom: 0px;
	}
	.services_slider .owl-stage
	{
		right: auto;
	}
	.service_slider_outer
	{
		width: 100%;
		height: 663px;
	}
	.services_item_inner
	{
		background: #fc0201;
		padding-left: 15px;
		padding-right: 15px;
	}
	.service_item_button
	{
		bottom: -84px;
		visibility: visible;
		opacity: 1;
	}
	.services_item_inner h2
	{
		color: #fff;
	}
	.services_item_inner p
	{
		color: #fff;
	}
	.services_slider .owl-item.center
	{
		margin-left: 0px !important;
		margin-right: 15px !important;
	}
	.services_slider .owl-item.active.center .services_item_inner
	{
		height: 475px;
	}
	.services_slider_nav
	{
		display: none;
	}
	.cta_content
	{
		padding-top: 40px;
	}
	.cta_content p
	{
		font-size: 14px;
	}
	.newsletter_email
	{
		padding-left: 15px;
	}
	.footer_col ul li a
	{
		font-size: 14px;
	}
	.footer_cr_2
	{
		font-size: 14px;
	}
}

/************
11. 539px
************/

@media only screen and (max-width: 539px)
{
	
}

/************
12. 480px
************/

@media only screen and (max-width: 480px)
{
	h1{font-size: 24px;}
	h2{font-size: 20px;}
	p{font-size: 13px;}
	.header
	{
		height: 68px;
	}
	.header.scrolled
	{
		height: 50px;
		height: 80px;
		background: rgba(7, 30, 65, 0.95);
	}
	.logo a
	{
		font-size: 18px;
	}
	.button
	{
		height: 40px;
		width: 140px;
		font-size: 11px;
		line-height: 37px;
	}
	.button a
	{
		font-size: 11px;
		line-height: 37px;
	}
	.icon_box_col
	{
		margin-top: 43px;
	}
	.icon_box_item
	{
		margin-bottom: 43px;
	}
	.icon_box_button
	{
		margin-top: 22px;
		margin-bottom: 20px;
	}
	.v_slider_item h1:last-of-type
	{
		margin-bottom: 40px;
	}
	.section_title span
	{
		font-size: 14px;
		margin-top: 22px;
	}
	.services_slider_container
	{
		margin-top: 60px;
	}
	.person_name
	{
		font-size: 13px;
	}
	.person_title
	{
		font-size: 11px;
	}
	.services_slider_container
	{
		margin-top: 0px;
	}
	.features_item
	{
		margin-bottom: 40px;
	}
	.features_col > div:last-of-type
	{
		margin-bottom: 40px;
	}
	.text_line_content
	{
		padding-top: 40px;
	}
	.text_line_content h1
	{
		margin-bottom: 21px;
	}
	.text_line_content p
	{
		margin-bottom: 21px;
	}
	.newsletter_content
	{
		padding-bottom: 121px;
	}
	.newsletter_email
	{
		height: 40px;
		width: calc(100% - 140px - 26px);
	}
	.newsletter_submit_button
	{
		vertical-align: middle;
	}
	.newsletter_title h1
	{
		margin-bottom: 17px;
	}
	.newsletter_title span
	{
		display: block;
		font-size: 14px;
		line-height: 1.7;
	}
}

/************
13. 479px
************/

@media only screen and (max-width: 479px)
{
	
}

/************
14. 400px
************/

@media only screen and (max-width: 400px)
{	
}

/* Fix for services section horizontal scroll */
.h_slider_container.services_slider_container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service_slider_outer {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.services_slider {
    width: 100%;
    overflow: hidden;
}

.services_slider .owl-stage-outer {
    overflow: hidden;
    width: 100%;
}

.services_slider .owl-stage {
    display: flex;
    width: 100% !important;
}

.services_slider .owl-item {
    width: 100%;
    max-width: 100%;
}

/* Ensure the container doesn't cause horizontal scroll */
.container {
    max-width: 100%;
    overflow-x: hidden;
}
}