/*
Theme Name: V Legal Empire
Author: Gowsalya
Description: This was an custom theme for V Legal Empire
Version: 1.0
*/

/* @import url('https://fonts.googleapis.com/css2?family=Special+Gothic:wdth,wght@87.5,400..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&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');
@import url('https://use.typekit.net/via0faf.css');

*,
*::before,
*::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body {
    -ms-overflow-x: hidden;
    overflow-x: hidden;
}

body,
button {
	font-family: "Special Gothic", sans-serif;    
    letter-spacing: 0.01em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
section {
    display: block;
}

table {
	font-family: "Special Gothic", sans-serif;
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
	font-family: "Special Gothic", sans-serif;
    font-weight: normal;
    text-align: left;
}

p,
ul {
	font-family: "Special Gothic", sans-serif;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;    
	color: #000;
}

h1 {
	font-family: "special-gothic-condensed", sans-serif;
	font-size:48px;
	font-weight: 600;
}

h2 {
   	font-family: "special-gothic-condensed", sans-serif;
    font-size: 48px;
	font-weight: 500;
}

h3 {
   font-family: "special-gothic-condensed", sans-serif;
	font-size: 30px;
	font-weight: 500;
}

a {
	font-family: "Special Gothic", sans-serif;
	text-decoration: none;
	color: #000;
}
/* CTA style */
.gen_btn{
    display: inline-flex;
	align-items: stretch;
    justify-content: flex-start;
}

.cta_text p {
	display: inline-block;
	min-width: 120px;
    width: max-content !important;
    margin-right: 4px;
    margin-bottom: 0px !important;
    background: #fff;
    color: #000;
    font-size: 14px !important;
	line-height: 28px;
    padding: 7px 15px;
    border-radius: 8px;
	text-align: left;
}

.cta_arrow {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 8px;
    background: #fff;
    width: 40px;		
}
	
.cta_arrow:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 30px;
    background: #fff;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.gen_btn.green .cta_text p {
    background: #205721;
    color: #fff;
	margin-bottom: 0px;
}
	
.green .cta_arrow, .green .cta_arrow:before {
	background: #205721;
}

.mobile_banner {
	display: none;	
}

/* CTA animation */
/* CTA */
.gen_btn {
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    transition: transform 0.35s ease;
}

.cta_text p {
    display: inline-block;
    min-width: 120px;
    width: max-content !important;
    margin-right: 4px;
    margin-bottom: 0 !important;
    background: #fff;
    color: #000;
    font-size: 14px !important;
    line-height: 28px;
    padding: 7px 15px;
    border-radius: 8px;
    text-align: left;
    transition: padding 0.35s ease;
}

.cta_arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    width: 40px;
    overflow: visible;
    transition: width 0.35s ease;
}

.cta_arrow:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 30px;
    background: #fff;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.cta_arrow img {
    transition: transform 0.4s ease;
}


/* HOVER ANIMATION */
.gen_btn:hover {
    transform: translateX(4px);
}

.gen_btn:hover .cta_text p {
    padding-left: 20px;
    padding-right: 20px;
}

.gen_btn:hover .cta_arrow {
    width: 48px;
}

.gen_btn:hover .cta_arrow img {
    transform: translateX(5px);
}

.gen_btn:hover .cta_arrow img {
    animation: ctaArrowMove 0.8s ease-in-out infinite;
}

@keyframes ctaArrowMove {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media (max-width: 991px) {
	h1 {
		font-size:40px;
	}
	
	h2 {
		font-size: 42px;	
		line-height: 46px;
	}
	
	p,
	ul {		
		font-size: 18px;
		line-height: 24px;		
	}
	
	.desktop_banner {
		display: none;	
	}
	
	.mobile_banner {
		display: block;	
	}
}

/* Header starts */
.header {
/* 	display:none; */
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Main header container */
.header .container {
    width: auto !important;
    margin: 0 7vw !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
	position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* LOGO + DESKTOP MENU */
.wrap_logo_nd_menu {
    width: calc(100% - 79px) !important;
    flex: 0 0 calc(100% - 79px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 6px 20px 6px 30px;
    box-sizing: border-box;
}

/* Logo */
.wrap_logo_nd_menu img {
    width: 210px;
    max-height: 40px;
    display: block;
}

.wrap_logo_nd_menu a {
    line-height: 10px;
}


/* DESKTOP NAVIGATION */

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    display: block;

    padding: 20px 0;

    text-decoration: none;
    color: #222;

    font-size: 16px;
    font-weight: 200;

    transition: .3s;
}

.nav-links li a:hover {
    color: #A66A18;
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.wrap_hamburger {
    width: 54px;
    height: 62px;
    flex: 0 0 54px;
    position: relative;
    margin-left: 4px;
    box-sizing: border-box;
}

/* White connector between menu and hamburger */
.wrap_hamburger:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 40px;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background: #fff;
    z-index: 0;
}

/* Hamburger button */
.menu-btn {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 62px;
    border: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    padding: 0;
    cursor: pointer;
}

.menu-btn span {
    width: 15px;
    height: 1px;
    background: #333;
    border-radius: 5px;
}


/* HAMBURGER SIDE MENU */

/* Overlay */
.menu_overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;
    visibility: hidden;

    transition: .35s;

    z-index: 9998;
}

.menu_overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Side Menu */
.side_menu {
    position: fixed;

    top: 20px;
    right: -520px;

    width: 480px;
    max-width: 95%;

    height: calc(100vh - 40px);

    background: #fff;

    border-radius: 8px;

    z-index: 9999;

    transition: .45s ease;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.side_menu.active {
    right: 20px;
}


/* Side Menu Header */
.menu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 32px;
}


/* Side Menu Logo */
.menu_logo img {
    width: 100%;
    max-height: 40px;
}


/* Close Button */
.menu_close {
    width: 44px;
    height: 44px;

    border: none;

    background: #215d23;
    color: #fff;

    border-radius: 8px;

    cursor: pointer;

    font-size: 18px;
    line-height: 1;
}


/* Side Menu Content */
.menu_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    padding: 0 45px 40px;
	overflow-y: scroll;
}


/* Side Menu Links */
.menu_links {
    list-style: none;

    margin: 50px 0;
    padding: 0;
}

.menu_links li {
    margin-bottom: 22px;
}

.menu_links a {
    font-size: 22px;
    font-weight: 600;

    color: #111;

    text-decoration: none;

    transition: .3s;
}

.menu_links a:hover {
    color: #b7771f;
    padding-left: 8px;
}


/* Contact */
.menu_contact {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    padding: 20px 0;
}

.menu_contact a {
    display: block;

    margin-bottom: 12px;

    color: #000;

    font-size: 18px;

    text-decoration: underline;

    letter-spacing: .5px;
}


/* Social */
.menu_social {
    display: flex;
    gap: 35px;
    padding-top: 20px;
}

.menu_social a {
    color: #000;
    font-size: 18px;
}


/* Prevent body scroll when menu is open */
body.menu_open {
    overflow: hidden;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .nav-links {
        display: none;
    }

    .wrap_logo_nd_menu {
        padding: 6px 20px 6px 25px;
    }

    .menu-btn {
        width: 50px;
        height: 52px;
    }

    .wrap_hamburger {
        width: 50px;
        height: 52px;
        flex: 0 0 50px;
        margin-left: 10px;
    }

    .wrap_hamburger:before {
        left: -18px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .header {
        padding: 15px 0;
    }

    .wrap_logo_nd_menu {
        padding: 9px 15px 8px 20px;
    }
	
	 .wrap_logo_nd_menu {
        width: calc(100% - 56px) !important;
        flex: 0 0 calc(100% - 52px);
    }
    .wrap_hamburger {
        margin-left: 2px;
    }

    .wrap_logo_nd_menu img {
        width: 180px;
        max-height: 38px;
    }

    .side_menu {
        width: 100%;
        height: 100vh;

        right: -100%;
        top: 0;

        border-radius: 0;
    }

    .side_menu.active {
        right: 10px;
        left: 10px;
        top: 10px;
		bottom: 10px;
        border-radius: 6px;
		height: auto;
        overflow-y: scroll;
    }

    .menu_header {
        padding: 20px;
    }

    .menu_content {
        padding: 0 20px 30px;
    }

    .menu_links {
        margin: 30px 0;
    }
	
	.menu_logo img {
		width: 85%;
	}
	
	.menu_links li {
		margin-bottom: 18px;
	}
	
	.menu_links a {
		font-size: 20px;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .container {
        margin-left: 5vw !important;
        margin-right: 5vw !important;
    }

    .wrap_logo_nd_menu {
        padding-left: 15px;
        padding-right: 12px;
    }

    .wrap_logo_nd_menu img {
        width: 160px;
        max-height: 35px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .container {
        margin-left: 4vw !important;
        margin-right: 4vw !important;
    }

    .wrap_logo_nd_menu img {
        width: 150px;
    }

}
/* Header ends */

/* Footer starts */
.site-footer{
    background:#EFEFEF;
    padding:60px 0 25px;
}

.site-footer .container{
    margin:0px 7vw;
    padding:0px;
}

.footer_cta{
    display:flex;    
    align-items:center;
    border-bottom:1px solid #9b9b9b;
    padding-bottom:30px;
    margin-bottom:50px;
}

.footer_cta h2{
    font-size:44px;
    line-height:1.15;
    font-weight:600;
    margin-right:40px;
}

.footer_cta_btn{
    width:60px;
    height:60px;
    background:#205721;
	border-radius: 8px;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
}

.footer_cta_btn img  {
	width: 22px;
}

/* Main */
.footer_main{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
}

.footer_logo img{
    max-width:260px;
    height:auto;
}

.footer_address{
    margin-top:25px;
}

.footer_address p{
	font-size: 20px;
    line-height: 28px;
    margin-bottom:18px;
}

.footer_address a {
    font-size: 20px;
}

/* Menu */
.footer_menu{
    list-style:none;
    padding:0;
    margin:0;
}

.footer_menu li{
    margin-bottom:12px;
}

.footer_menu a{    
    transition:.3s;
}

.footer_menu a:hover{
    color:#2d6b34;
}

/* Bottom */
.footer_bottom{
    margin-top:50px;
    padding-top:18px;
    border-top:1px solid #9b9b9b;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer_bottom p{
    margin:0;
}

.back_to_top{
    font-size: 20px;
}

.back_to_top:hover{
    color:#285d2a;
}

/* Responsive */
@media(max-width:991px){	
    .footer_main{
        grid-template-columns:1fr 1fr;
        gap:0px;
    }

    .footer_cta h2{
        font-size:36px;
    }
	
	.footer_address p, .footer_address a, .footer_menu a, 
	.footer_bottom p, .back_to_top {
		font-size: 18px;
	}
	
	.footer_address p br, .back_to_top  {
		display:none;
	}
	
	.footer_menu li {
		margin-bottom: 3px;
	}
	
	.footer_bottom {
		margin-top: 30px;
	}
	
	.footer_cta_btn {
		width: 45px;
		height: 45px;
	}
	
	.footer_cta_btn img {
		width: unset;
	}
		
	.footer_info, .footer_col.menu_two {
		margin-bottom: 25px;
	}
	
	.footer_col.social {
		padding-top: 30px;
        border-top: 1px solid #9b9b9b;
	}
	
	.footer_col.social ul {
		display: flex;
    	justify-content: space-between;
	}
}

@media(max-width:767px){
    .footer_cta{      
        align-items:center;
        gap:25px;
		margin-bottom: 35px;
    }

    .footer_main{
        grid-template-columns:1fr;
    }

    .footer_bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer_cta h2{
        font-size:28px;
		width: 90%;
        margin-right: 0px;
    }
}

@media (min-width: 993px) and (max-width: 1280px) {
	.footer_address p, .footer_menu li, 
	.footer_address a, .back_to_top {
		font-size: 18px;		
	}	
}
/* temporary hide */
.footer_col.social, .menu_social, .latest_left  {
    display: none;
}
.latest_wrap {
	grid-template-columns: unset !important;
}
	
/* Footer ends */

/*Careers Submit btn start */
.form_submit_btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 42px !important;
    min-width: 118px !important;
    padding: 0 48px 0 15px !important;
    background: #205d27 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 100 !important;
    line-height: 42px !important;
    cursor: pointer;
    box-shadow: none !important;
    overflow: visible !important;
}

.form_submit_btn::after {
    content: "" !important;
    position: absolute;
    top: 0;
    right: -48px;
    width: 42px;
    height: 42px;
    background-color: #205d27;
    background-image: url('/wp-content/uploads/2026/07/white-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    border-radius: 8px;
}

.form_submit_btn::before {
    content: "";
    position: absolute;
    right: -8px;
    top: 7px;
    width: 16px;
    height: 28px;
    background: #205d27;
}

.forminator-row-last .forminator-col {
    text-align: right;
    margin-right: 50px;
}

@media (max-width: 782px) {
    .forminator-ui.forminator-custom-form[data-design="default"]
    .forminator-button.form_submit_btn {
        width: auto !important;
        min-width: 155px !important;
        margin: 0 0 10px 0 !important;
        display: inline-flex !important;
    }

	.form_submit_btn::after {
    	background-size: 16px;
	}
	
	.forminator-row-last .forminator-col {
		text-align: center;	
		margin-top: 30px;
	}
}

/*Careers Submit btn End*/

/* Disclaimer popup style */
.disclaimer_popup{
    display: none;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.popup_overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.popup_box{
    position:relative;
    width:55vw;
    max-width:95vw;
	max-height:90vh;
    background:#fff;
    z-index:2;
    display:flex;
    flex-direction:column;
}

.popup_top{
    display:flex;
    align-items:center;
	background:#F4F4F4;
	padding: 0px 30px;	
    flex-shrink:0;
}

.popup_image{
    width:40%;
}

.popup_image img{
    width:100%;
    display:block;
}

.popup_title{
    width:60%;
    padding:40px;
}

.popup_title h2{
    font-size:42px;
    line-height:1.2;
    margin:0;
}

.popup_title h2 br {
    display: none;
}

.popup_content{
    padding:45px 90px;
	overflow-y:auto;
    flex:1;
}

.popup_content p{
    font-size:18px;
    line-height:22px;
    color:#333;
    margin-bottom:20px;
}

.popup_btn{
    display: flex;
    justify-content: center;
}

.popup_btn button{  
    display: flex;
    align-items: center;
    justify-content: space-between;	 
    gap: 18px;
    cursor: pointer;
	font-size: 18px;
    margin-top: 30px;
	border: unset;
    background: transparent;
	font-family: 'special-gothic-condensed';
    font-size: 25px;
    font-weight: 600;
}

.popup_btn span{
    width: 40px;
    height: 40px;
    background: #205721;
    border-radius: 8px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    padding: 20px;
}

.popup_close{
    position:absolute;
    right:20px;
    top:15px;
    background:none;
    border:none;
    font-size:42px;
    cursor:pointer;
    line-height:1;
	z-index:99;
}

.popup_close img {
    width: 15px;
}

body.popup_open{
    overflow:hidden;
}

@media(max-width:991px){
	
	.popup_box {
		width: 90vw;	
	}

	.popup_top{
		position: relative;
		flex-direction:column;
	}

	.popup_image,
	.popup_title{
		width:100%;
	}

	.popup_title{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding:25px 0px;
		text-align: center;
	}

	.popup_title h2{
		font-size:32px;
		color:#fff;
	}

	.popup_title h2 br {
		display: block;
	}

	.popup_content{
		padding:25px;
	}

	.popup_content p{
		font-size:15px;
	}

	.popup_btn button {
		margin-top: 20px;
		margin-bottom: 25px;
	}

}
