/*!
Theme Name: 3% Collective
Theme URI: https://3percent.in/
Author: Arshit Dhameliya
Author URI: https://arshitdhameliya.com/
Description: 3% Collective
Version: 1.0.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: #
Text Domain: 3-percent-collective
*/

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Container */
.container {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (max-width: 1340px) {
	.container {
		max-width: calc(100% - 100px);
	}	
}

b, strong {
    font-weight: 700;
}

/* Alignment  */

.d-flex {
	display: flex;
	flex-wrap: wrap;
}
.align-center {
	align-items: center;
}
.align-end {
	align-items: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-space-between {
	justify-content: space-between;
}
.justify-end {
	justify-content: flex-end;
}

/* Typography  */
body,
button,
input,
select,
optgroup,
textarea {
	font-family: 'Nobel';
	color: #1F1F1F;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
	clear: both;
}

h1 {
	font-weight: 400;
	font-size: 40px;
	line-height: 50px;
	margin: 0;
}

h2 {
	font-family: 'Monigue';
    font-size: 42px;
    line-height: 52px;
	font-weight: 400;
	margin: 0;
}

h3 {
	font-weight: 400;
	font-size: 36px;
	line-height: 46px;
	margin: 0;
}

h4 {
	font-weight: 400;
	font-size: 24px;
	line-height: 34px;
	margin: 0;
}

h5 {
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin: 0;
}

h6 {
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	margin: 0;
}
a {
	font-family: 'Nobel';
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-decoration: none;
	color: #1F1F1F;
	transition: all linear .3s;
}
a:hover,
a:focus {
	color: #FFC403;
}

.txt-upper {
	text-transform: uppercase;
}
.txt-capitalize {
	text-transform: capitalize;
}

/* Button */
.btn {
	font-weight: 700;
	display: inline-block;
	padding: 11px 40px;
	border-radius: 10px;
	transition: all linear .3s;
}
.btn-red {
	background-color: #D82216;
	color: #ffffff;
}
.btn-red:hover {
	background-color: #000000;
	color: #ffffff;
}
.btn-white {
	background-color: #ffffff;
	color: #D82216;
}
.btn-white:hover {
	background-color: #D82216;
	color: #ffffff;
}

/* Text Colors */
.txt-blue {
	color: #2AA8DD;
}
.txt-white {
	color: #fff;
}
.txt-yellow {
	color: #FFC403;
}
.bg-blue {
	background-color: #2AA8DD;
}
.bg-white {
	background-color: #ffffff;
}
.bg-yellow {
	background-color: #FFC403;
}

/* Text Alignment */
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}

/* Section Padding */
.pt100 {
	padding-top: 100px;
}
.pb100 {
	padding-bottom: 100px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header .site-branding .site-title {
	display: none;
}
header {
    padding: 20px 0;
	z-index: 999;
}
header .container {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0px 1px 6px rgba(255, 255, 255, 0.15);
    border-radius: 300px;
    padding: 20px 40px;
}
header .site-branding {
    width: 30%;
	line-height: 0;
}
header .site-branding a {
    display: inline-block;
    position: relative;
	line-height: 0;
}
header .site-branding a img {
    width: 100%;
    max-width: 120px;
}
header .site-branding .logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all linear .3s;
}
header .site-branding a:hover .logo-hover {
    opacity: 1;
}
header .main-navigation {
	width: 70%;
}
header .main-navigation .menu {
	justify-content: flex-end;
    gap: 60px;
}
header .main-navigation .menu-item a {
    padding: 15px 0;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0;
    color: #FFF;
    transition: all linear .3s;
}
header .main-navigation .menu-item a:hover {
	font-weight: 700;
	color: #FFF;
}
header .main-navigation .menu-item .sub-menu {
    width: 260px;
    padding: 10px 30px;
    flex-direction: column;
    background: #000;
    border-radius: 30px;
}
header .main-navigation .menu-item .sub-menu a {
    width: auto;
    padding: 7.5px 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 400;
    color: #FFF;
    white-space: nowrap;
}
header .main-navigation .menu-item .sub-menu a:hover {
    font-weight: 500;
}
header .main-navigation .menu-item.header_btn {
    display: flex;
    align-items: center;
}
header .main-navigation .menu-item.header_btn a {
    background: #FFFF00;
    color: #000;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
	transition: all linear .3s;
}
header .main-navigation .menu-item.header_btn a:hover {
    background: #9F61E1;
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	background: url('https://3percent.in/wp-content/uploads/2026/02/footer_bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 20px;
}
footer .footer_shape {
    margin-top: 100px;
}
footer .footer_shape img {
    margin-top: -100px;
}
footer .container {
	padding-top: 60px;
}
footer .footer_logo_col,
footer .footer_map_col {
    width: 25%;
}
footer .footer_logo_col .footer_logo a {
    display: inline-block;
    line-height: 0;
}
footer .footer_logo_col .footer_logo img {
    max-width: 200px;
}
footer .social_list {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
footer .social_list .social_link {
    background: #fff;
    border-radius: 5px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all linear .3s;
}
footer .social_list .social_link svg {
	width: 20px;
	color: #000;
	transition: all linear .3s;
}
footer .social_list .social_link:hover {
	background: #FFFF00;
}
footer .footer_menu_col {
    width: 50%;
	justify-content: space-between;
}
footer .footer_menu_col .footer_block_heading {
    font-size: 24px;
    line-height: 34px;
	font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
footer .footer_menu_col .footer_menu {
    width: 100%;
    max-width: fit-content;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 10px;
    flex-direction: column;
}
footer .footer_menu_col .footer_menu a {
    color: #FFF;
    font-size: 18px;
}
footer .footer_menu_col .footer_menu a:hover {
	color: #FFFF00;
}
footer .footer_contact a:not(:last-child) {
    margin-bottom: 20px;
}
footer .footer_contact a {
	color: #FFF;
    gap: 10px;
    font-size: 18px;
}
footer .footer_contact a:hover {
    color: #FFFF00;
}
footer .footer_map_col {
    padding-left: 40px;
}
footer .footer_map_col iframe {
    height: 100%;
    border-radius: 15px;
}
footer .site-info {
    width: 100%;
    border-top: 1px solid rgb(255 255 255 / 20%);
    margin-top: 40px;
    padding-top: 40px;
}
footer .site-info p {
	margin: 0;
	text-align: center;
	font-size: 16px;
	line-height: 26px;
	color: #FFF;
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
.hero-section {
	padding-top: 100px;
	padding-bottom: 100px;
}
.hero-section h1 {
    width: 100%;
    max-width: 960px;
    margin: auto;
    text-align: center;
    font-family: 'Monigue';
    font-size: 110px;
    line-height: 110px;
    color: #fff;
    text-transform: uppercase;
}
.hero-section h1 .style {
    color: #9F61E1;
    font-family: 'Freestyle Script';
    padding-right: 15px;
}
.hero-section h1 .style2 {
	position: relative;
	color: #9F61E1;
}
.hero-section h1 .style2:before {
    content: '';
    display: block;
    width: 100%;
    height: 30px;
    background: url('data:image/svg+xml,<svg width="419" height="43" viewBox="0 0 419 43" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.30762 34.8962C1.30762 34.8962 307.268 -19.4838 416.018 24.9862" stroke="%23E161CD" stroke-width="15" stroke-miterlimit="10"/></svg>');
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -20px;
    left: 0;
}
.hero-section p {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    width: 100%;
    max-width: 950px;
    margin: 30px auto 0;
}
.hero-section .connect_btn a {
    position: relative;
    width: fit-content;
    margin: 60px auto 0;
    background: #FFFF00;
    color: #000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 15px;
    transition: all linear .3s;
}
.hero-section .connect_btn a:hover {
	background: #9F61E1;
	color: #fff;
}

/* Image Section */
.img_section {
    line-height: 0;
    margin-top: -580px;
}

/* About Section */
.about_sec {
    padding-top: 100px;
    padding-bottom: 100px;
}
.about_sec .about_img_col {
	line-height: 0;
	width: 50%;
	padding-left: 30px;
}
.about_sec .about_txt_col {
	width: 50%;
	padding-right: 30px;
}
.about_sec .about_txt_col h2 {
    color: #9F61E1;
    font-size: 82px;
    line-height: 92px;
    text-transform: uppercase;
}
.about_sec .about_txt_wrap {
	font-size: 30px;
    line-height: 40px;
    color: #fff;
	margin-top: 20px;
	margin-right: 60px;
}
.about_sec .about_txt_wrap p {
	margin: 0;
}
.about_sec .about_btn a {
    position: relative;
    width: fit-content;
    margin-top: 30px;
    background: #FFFF00;
    color: #000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 15px;
    transition: all linear .3s;
}
.about_sec .about_btn a:hover {
	background: #9F61E1;
	color: #fff;
}

/* Work Section */
.work_sec {
    padding: 0 0 50px 0;
}
.work_sec .work_sec_header h2 {
	color: #fff;
	font-size: 82px;
    line-height: 92px;
    text-transform: uppercase;
}
.work_sec .feature_work_wrap {
	margin-top: 40px;
}
.work_sec .video-section {
	position: relative;	
}
.work_sec .video-frame {
	position: relative;	
	padding-top: 25px;
	padding-left: 25px;
	width: 100%;
	/* aspect-ratio: 16 / 9; */
	line-height: 0;
    z-index: 1;
}
.work_sec .video-frame:after {
	content: '';
	display: block;
	height: calc(100% - 25px);
	width: calc(100% - 25px);
	background-color: #9F61E1;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.work_sec .video-frame a {
    display: inline-block;
    line-height: 0;
}
.work_sec .video-frame video,
.work_sec .video-frame iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: not-allowed;
    pointer-events: none;
}
.work_sec .video-frame .video-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 25px;
    padding-left: 25px;
}
.work_sec .video-frame .video-thumb img {
	width: 100%;
	height: 100%;
	display: block;
}
.work_sec .video-section .video-actions {
    width: calc(100% - 80px);
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 40px;
    transform: translateX(-50%);
    left: 50%;
    padding-left: 25px;
    z-index: 1;
}
.work_sec .video-actions button {
	line-height: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background: transparent;
}
.work_sec .video-actions button svg {
	fill: #fff;
	width: 40px;
}
.work_sec .logo_gallery_wrap {
	background: #fff;
    margin-top: 100px;
    padding-top: 100px;
}
.work_sec .logo_gallery_wrap h2 {
	color: #9F61E1;
	font-size: 82px;
    line-height: 92px;
	text-align: center;
    text-transform: uppercase;
}
.work_sec .logo_gallery_wrap .logo_img {
    padding: 15px;
}
.work_sec .txt_section {
    padding-top: 150px;
}
.work_sec .txt_section .txt_sec_header {
    text-align: center;
}
.work_sec .txt_section .txt_sec_header h2 {
    color: #9F61E1;
    font-size: 82px;
    line-height: 72px;
    text-align: center;
    text-transform: uppercase;
}
.work_sec .txt_section .txt_sec_header .we_are_txt_wrap {
	text-align: center;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    width: 100%;
    max-width: 1020px;
    margin: 20px auto 0;
}
.work_sec .txt_section .txt_sec_header .we_are_txt_wrap p {
	margin: 0;
}
.work_sec .txt_section .animated-text-wrapper {
    position: relative;
    display: inline-block;
    min-width: 280px;
    border-bottom: 5px solid #9F61E1;
}
.work_sec .txt_section .animated-text {
	color: #E161CD;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: nowrap;
}
.work_sec .txt_section .animated-text.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* CTA Ssction */
.cta-section {
	padding-top: 100px;
}
.cta-section .container {
    max-width: 1070px;
}
.cta-section h2 {
	text-align: center;
    font-size: 6.4rem;
    line-height: 7.4rem;
    color: #fff;
    text-transform: uppercase;
}
.cta-section p {
    font-size: 30px;
    line-height: 40px;
    color: #FFFF00;
    margin: 0;
}
.cta-section .cta_img img {
    display: block;
    max-width: 600px;
    margin: auto;
}
.cta-section .cta_img {
    margin-top: -280px;
}
.cta-section .connect_btn a {
    position: relative;
    width: fit-content;
    margin-left: auto;
    font-family: 'Monigue';
    font-size: 40px;
    line-height: 30px;
    padding: 15px 15px 10px 15px;
    text-transform: uppercase;
    color: #2BA7DD;
    background: #FFFF00;
    gap: 10px;
    z-index: 1;
    transform: rotate(-5deg);
    transition: all linear .3s;
}
.cta-section .connect_btn a svg {
    fill: #2BA7DD;
    transform: translateY(-2px);
}
.cta-section .connect_btn a:hover {
    transform: rotate(0deg);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact_sec {
    padding: 100px 0 100px;
}
.contact_sec .container {
    background: url('https://3percent.in/wp-content/uploads/2026/02/contact_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 80px;
}
.contact_content .contact_content_img_col {
    width: 50%;
    padding-right: 50px;
}
.contact_sec h6 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact_sec h1 {
    font-family: 'Monigue';
    color: #fff;
    font-size: 80px;
    line-height: 80px;
    text-transform: uppercase;
}
.contact_sec h1 span {
	color: #E161CD;
}
.contact_sec .contact_text_wrap {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
	font-weight: 400;
}
.contact_content .contact_content_txt_col {
    width: 50%;
    background: rgb(225 97 205 / 30%);
    border-radius: 40px;
    padding: 50px;
}
.contact_sec form p {
    margin: 0;
}
.contact_sec form .wpcf7-form-control-wrap {
    display: block;
    line-height: 0;
    margin-bottom: 20px;
}
.contact_sec form .wpcf7-form-control-wrap input,
.contact_sec form .wpcf7-form-control-wrap textarea {
    display: block;
    width: 100%;
    background: transparent;
    border: 2px solid #fff;
    outline: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    padding: 20px 30px;
}
.contact_sec form .wpcf7-form-control-wrap input::placeholder,
.contact_sec form .wpcf7-form-control-wrap textarea::placeholder {
	color: #fff;
	opacity: 0.7;
}
.contact_sec form .wpcf7-form-control-wrap textarea {
    height: 100px;
}
.contact_sec form .wpcf7-submit {
    position: relative;
    width: fit-content;
    margin: 0;
    background: #FFFF00;
    color: #000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all linear .3s;
}
.contact_sec form .wpcf7-submit:hover {
    background: #9F61E1;
	color: #fff;
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.sec_about_hero {
    position: relative;
    min-height: 715px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_about_hero:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #9F61E1;
    opacity: 87%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}
.sec_about_hero h1 {
    position: relative;
    color: #fff;
    font-family: 'Monigue';
    font-size: 110px;
    line-height: 110px;
    width: 100%;
    max-width: 670px;
    margin: auto;
    z-index: 1;
}
/* Text Section */
.sec_about_txt {
	padding: 80px 0;
}
.sec_about_txt .container {
	display: flex;
	flex-wrap: wrap;
}
.sec_about_txt .sec_about_txt_lft,
.sec_about_txt .sec_about_txt_rtl {
	width: 50%;
}
.sec_about_txt .sec_about_txt_rtl {
	padding-left: 100px;
}
.sec_about_txt h2 {
    font-size: 72px;
    line-height: 82px;
    text-transform: uppercase;
    color: #9F61E1;
}
.sec_about_txt h2 span {
    color: #E161CD;
}
.sec_about_txt .sec_about_txt_rtl p {
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    font-family: "Myriad Pro";
    margin: 0;
}
/* What We Are Section */
.sec_what_we_are .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.sec_what_we_are .what_we_are_img {
    width: calc(70% - 15px);
    line-height: 0;
}
.sec_what_we_are .what_we_are_img img {
    border-radius: 42px;
    width: 100%;
}
.sec_what_we_are .what_we_are_title {
	padding-top: 20px;
}
.sec_what_we_are .what_we_are_title h2 {
    text-align: right;
    color: #fff;
    font-size: 72px;
    line-height: 82px;
}
.sec_what_we_are .what_we_are_title h2 span {
	position: relative;
}
.sec_what_we_are .what_we_are_title h2 span:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="333.029" height="45.546" viewBox="0 0 333.029 45.546"><path id="Path_2332" data-name="Path 2332" d="M3037.444,2323.139s296.356-48.976,329.464-30.61" transform="translate(-3036.547 -2283.019)" fill="none" stroke="red" stroke-miterlimit="10" stroke-width="11"/></svg>');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 10px;
    left: 0;
}
.sec_what_we_are .what_we_are_title h2.highlight {
    color: #9F61E1;
}
.sec_what_we_are .what_we_are_txt {
    width: calc(30% - 15px);
    display: flex;
    flex-direction: column;
}
.sec_what_we_are .what_we_are_top_box,
.sec_what_we_are .what_we_are_bottom_box {
    border: 5px solid #9F61E1;
    border-radius: 20px;
    padding: 30px 20px;
}
.sec_what_we_are .what_we_are_top_box h2 {
    font-family: "Myriad Pro";
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
}
.sec_what_we_are .what_we_are_bottom_box {
    margin-top: 30px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_what_we_are .what_we_are_bottom_box h2 {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 72px;
    line-height: 82px;
}

/* Section Our Approach */
.sec_our_approach {
    padding: 100px 0;
}
.sec_our_approach h2 {
    color: #9F61E1;
    font-size: 72px;
    line-height: 82px;
}
.sec_our_approach .approach_text {
    font-family: "Myriad Pro";
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    letter-spacing: 0;
    color: #fff;
    margin-top: 10px;
}
.sec_our_approach .approach_text p {
	margin: 0;
}
.sec_our_approach .approach_text strong {
    color: #E161CD;
}
.sec_our_approach .approach_text_blocks {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.sec_our_approach .approach_text_blocks .text_block {
    width: calc(50% - 15px);
    border: 2px solid #E161CD;
    border-radius: 20px;
    padding: 20px 40px;
    font-family: "Myriad Pro";
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
}
/* Section Our Philosophy */
.sec_our_philosophy .our_philosophy_top {
    display: flex;
    flex-wrap: wrap;
}
.sec_our_philosophy .our_philosophy_img {
	width: 50%;
	line-height: 0;
}
.sec_our_philosophy .our_philosophy_img img {
	border-radius: 40px;
}
.sec_our_philosophy .our_philosophy_content {
	width: 50%;
	padding-right: 150px;
}
.sec_our_philosophy .our_philosophy_content h2 {
    color: #9F61E1;
    font-size: 72px;
    line-height: 82px;
    margin-bottom: 20px;
}
.sec_our_philosophy .our_philosophy_content .philosophy_text {
    font-family: "Myriad Pro";
    font-size: 26px;
    line-height: 42px;
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
}
.sec_our_philosophy .our_philosophy_content .philosophy_text p {
    margin: 0;
}
.sec_our_philosophy .our_philosophy_bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}
.our_philosophy_bottom p {
    width: 100%;
    max-width: 50%;
    font-family: "Myriad Pro";
    font-size: 26px;
    line-height: 42px;
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
}
.our_philosophy_bottom p:first-child {
    background: #fff;
    color: #E161CD;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 20px;
    max-width: calc(50% - 150px);
    margin-right: 150px;
}

/* Our Team Section */
.sec_our_team {
	padding: 100px 0;
}
.sec_our_team h2 {
	text-align: center;
    color: #9F61E1;
    font-size: 72px;
    line-height: 82px;
	margin-bottom: 20px;
}
.sec_our_team img {
	width: 100%;
}

/*--------------------------------------------------------------
# Policy Page
--------------------------------------------------------------*/
.page-privacy-policy {
	padding: 100px 0;
}
.page-privacy-policy .entry-header h1 {
	text-align: center;
    color: #fff;
    font-size: 82px;
    line-height: 92px;
    text-transform: uppercase;
    font-family: 'Monigue';
}
.page-privacy-policy .entry-content {
	color: #fff;
}
.page-privacy-policy .entry-content h3 {
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    font-family: 'Monigue';
    letter-spacing: 1px;
}
.page-privacy-policy .entry-content p {
	font-family: "Myriad Pro";
}
.page-privacy-policy .entry-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
	transition: all linear 0.3s;
}
.page-privacy-policy .entry-content a:hover {
    color: #E161CD;
}

/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
	.hide-lg {
		display: none;
	}
}

@media only screen and (max-width: 1024px) {
	/* Global */
	.container {
		max-width: calc(100% - 40px);
	}
	h2 {
		font-size: 36px;
		line-height: 42px;
	}

	/* Header */
	header .container {
		padding: 20px;
	}
	header .site-branding {
		width: 18%;
	}
	header .main-navigation {
		width: 82%;
	}
	header .main-navigation .menu {
		gap: 28px;
	}
	header .main-navigation .menu-item a {
		font-size: 16px;
		line-height: 16px;
	}

	/* Footer */
	footer .footer_shape {
		margin-top: 50px;
	}
	footer .footer_shape img {
		margin-top: -50px;
	}
	footer .footer_logo_col {
		width: 50%;
	}
	footer .footer_menu_col {
		width: 100%;
		order: 1;
		margin-top: 60px;
	}
	footer .footer_map_col {
		width: 50%;
		padding-left: 0;
		order: 0;
	}
	footer .site-info {
		order: 2;
	}

	/* Home Page */
	.hero-section h1 {
		font-size: 5.5rem;
        line-height: 5.5rem;
	}
	.work_sec {
		padding: 0;
	}
	.work_sec .txt_section {
		padding-top: 100px;
	}
	.work_sec .work_sec_header h2,
	.work_sec .logo_gallery_wrap h2,
	.about_sec .about_txt_col h2 {
		font-size: 60px;
		line-height: 60px;
	}
	.work_sec .work_sec_header a {
		font-size: 20px;
		line-height: 30px;
		gap: 10px;
	}
	.work_sec .work_sec_header a svg {
		width: 20px;
		height: 20px;
	}
	.work_sec .txt_section .txt_sec_header h2 {
		font-size: 60px;
		line-height: 50px;
	}
	.cta-section h2 {
		font-size: 4.6rem;
		line-height: 4.6rem;
		color: #fff;
		text-transform: uppercase;
	}
	.cta-section .cta_img img {
		max-width: 450px;
	}
	.cta-section .connect_btn a {
		font-size: 40px;
		line-height: 30px;
		padding: 10px 10px 5px 10px;
	}
	.about_sec .about_txt_col {
		padding-right: 0;
	}
	.about_sec .about_txt_wrap {
		font-size: 22px;
		line-height: 32px;
		margin-right: 0;
	}

	/* Contact Page */
	.contact.hero-section h1 {
		font-size: 7rem;
		line-height: 7rem;
	}
	.contact_content .contact_content_txt_col {
		padding-bottom: 25px;
	}
	.contact_content .contact_content_txt_col p {
		font-size: 20px;
		line-height: 30px;
	}
	.contact_content .contact_content_txt_col a {
		margin: 10px 0 0;
		font-size: 30px;
		line-height: 20px;
		padding: 10px 5px 7px 15px;
	}
	.contact_content .contact_content_txt_col a svg {
		height: 20px;
		width: 20px;
	}
	.map_sec .map_txt_col {
		width: 55%;
	}
	.map_sec .map_col {
		width: 45%;
	}
	.map_sec .map_txt_col h2 {
		font-size: 80px;
		line-height: 80px;
	}
	.map_sec .map_txt_col .map_txt_wrap {
		font-size: 30px;
		line-height: 40px;
		margin: 10px 0 0;
	}
	.map_sec .map_col iframe {
		height: 340px;
	}

	/*  About Page */
	.sec_about_hero {
		min-height: 400px;
	}
	.sec_about_hero h1 {
		font-size: 88px;
		line-height: 88px;
		max-width: 530px;
	}
	.sec_about_txt h2 {
		font-size: 60px;
		line-height: 70px;
	}
	.sec_about_txt .sec_about_txt_rtl {
		padding-left: 20px;
	}
	.sec_about_txt .sec_about_txt_rtl p {
		font-size: 20px;
		line-height: 30px;
	}
	.sec_what_we_are .what_we_are_top_box h2 {
		font-size: 20px;
		line-height: 30px;
	}
	.sec_what_we_are .what_we_are_top_box,
	.sec_what_we_are .what_we_are_bottom_box {
		padding: 20px;
	}
	.sec_what_we_are .what_we_are_bottom_box h2 {
		font-size: 62px;
	}
	.sec_our_approach h2 {
		font-size: 60px;
		line-height: 70px;
	}
	.sec_our_approach .approach_text {
		font-size: 20px;
		line-height: 30px;
	}
	.sec_our_approach .approach_text_blocks .text_block {
		padding: 20px;
		font-size: 24px;
		line-height: 34px;
	}
	.sec_our_philosophy .our_philosophy_content {
		padding-right: 20px;
	}
	.sec_our_philosophy .our_philosophy_content h2 {
		font-size: 60px;
		line-height: 70px;
	}
	.sec_our_philosophy .our_philosophy_content .philosophy_text {
		font-size: 20px;
		line-height: 30px;
	}
	.our_philosophy_bottom p:first-child {
		padding: 20px;
		max-width: calc(50% - 20px);
		margin-right: 20px;
	}
	.our_philosophy_bottom p {
		font-size: 20px;
		line-height: 30px;
	}
	.sec_our_team h2 {
		font-size: 60px;
		line-height: 70px;
	}

	/* Policy Page */
	.page-privacy-policy {
		padding: 80px 0;
	}
	.page-privacy-policy .entry-header h1 {
		font-size: 60px;
		line-height: 60px;
	}
	.page-privacy-policy .entry-content h3 {
		font-size: 30px;
		line-height: 40px;
		letter-spacing: 1px;
	}
}
@media only screen and (max-width: 767px) {
	/* Global */
	.container {
		max-width: calc(100% - 30px);
	}
	.hide-sm {
		display: none;
	}

	/* Header */
	header .container {
		padding: 10px 15px;
	}
	header {
		padding: 15px 0;
		position: relative;
	}
	header .main-navigation button {
		margin-left: auto;
		background: transparent;
		border: none;
		padding: 0;
		line-height: 0;
	}
	header .main-navigation button svg {
		width: 24px;
		fill: #fff;
	}
	header .main-navigation.toggled .menu {
		width: 100%;
		position: absolute;
		top: 83px;
		left: 0;
		background: #fff;
		padding: 15px;
	}
	header .main-navigation.toggled .menu a {
		color: #000;
		font-size: 18px;
		line-height: 28px;
		letter-spacing: 0;
		padding: 0 0 10px;
	}
	header .main-navigation .menu-item.header_btn a {
		background: transparent;
		padding: 0;
	}

	/* Footer */
	footer .footer_shape {
		margin-top: 25px;
	}
	footer .footer_shape img {
		margin-top: -25px;
	}
	footer {
		padding-bottom: 20px;
	}
	footer .footer_logo_col {
		width: 100%;
	}
	footer .footer_menu_col {
		width: 100%;
		order: 0;
		margin-top: 40px;
		margin-bottom: 40px;
	}
	footer .footer_menu_col .footer_menu a {
		font-size: 16px;
	}
	footer .footer_menu_col .footer_contact {
		width: 100%;
		margin-top: 40px;
	}
	footer .footer_map_col {
		width: 100%;
	}
	footer .site-info {
		margin-top: 20px;
		padding-top: 20px;
	}

	/* Home Page */
	.hero-section {
		padding-top: 20px;
		padding-bottom: 0;
	}
	.hero-section h1 {
		font-size: 2.4rem;
		line-height: 3rem;
	}
	.hero-section p {
		font-size: 20px;
		line-height: 30px;
		margin: 0;
	}
	.hero-section .connect_btn a {
		margin: 20px auto 0;
		font-size: 16px;
		line-height: 18px;
		padding: 12px 20px;
	}
	.work_sec {
		padding: 60px 0 0 0;
	}
	.work_sec .feature_work_wrap {
		margin-top: 20px;
	}
	.work_sec .video-frame:after {
		height: calc(100% - 10px);
		width: calc(100% - 10px);
	}
	.work_sec .video-frame {
		padding-top: 10px;
		padding-left: 10px;
	}
	.work_sec .video-frame .video-thumb {
		padding-top: 10px;
		padding-left: 10px;
	}
	.work_sec .video-section .video-actions {
		width: calc(100% - 20px);
		bottom: 20px;
		padding-left: 20px;
	}
	.work_sec .video-actions button svg {
		width: 30px;
	}
	.work_sec .logo_gallery_wrap {
		margin-top: 60px;
		padding-top: 60px;
	}
	.work_sec .work_sec_header h2,
	.work_sec .logo_gallery_wrap h2 {
		font-size: 40px;
		line-height: 40px;
	}
	.work_sec .txt_section {
		padding-top: 60px;
	}
	.work_sec .txt_section .animated-text-wrapper {
		min-width: auto;
		border-bottom: 3px solid #9F61E1;
	}
	.work_sec .txt_section .txt_sec_header h2 {
		font-size: 40px;
		line-height: 38px;
	}
	.work_sec .txt_section .txt_sec_header .we_are_txt_wrap {
		font-size: 20px;
		line-height: 28px;
	}
	.about_sec {
		padding-top: 60px;
		padding-bottom: 85px;
	}
	.about_sec .container {
		flex-direction: column-reverse;
	}
	.about_sec .about_img_col {
		width: 100%;
		padding-left: 0;
		padding-bottom: 15px;
	}
	.about_sec .about_txt_col {
		width: 100%;
		padding-top: 15px;
		padding-right: 0;
	}
	.about_sec .about_txt_col h2 {
		font-size: 40px;
		line-height: 40px;
	}
	.about_sec .about_txt_wrap {
		font-size: 20px;
		line-height: 30px;
	}
	.about_sec .about_btn a {
		margin: 20px 0 0;
		font-size: 16px;
		line-height: 18px;
		padding: 12px 20px;
	}

	/* Contact Page */
	.contact.hero-section h1 {
		font-size: 60px;
		line-height: 60px;
	}
	.contact.hero-section {
		padding: 60px 0 60px;
	}
	.contact_content {
		margin-top: 0;
	}
	.contact_content .contact_content_img_col {
		width: 100%;
	}
	.contact_content .contact_content_txt_col {
		width: 100%;
		padding-bottom: 0;
	}
	.map_sec {
		padding-bottom: 60px;
	}
	.map_sec .map_txt_col {
		width: 105%;
		padding: 0;
	}
	.map_sec .map_txt_col h2 {
		text-align: center;
		font-size: 60px;
		line-height: 60px;
	}
	.map_sec .map_txt_col .map_txt_wrap {
		text-align: center;
		font-size: 26px;
		line-height: 26px;
		margin: 5px 0 0;
	}
	.map_sec .map_col {
		width: 100%;
		margin-top: 40px;
	}

	/* About Page */
	.sec_about_txt,
	.sec_our_approach,
	.sec_our_team {
		padding: 60px 0;
	}
	.sec_about_hero {
		min-height: 250px;
	}
	.sec_about_hero h1 {
		text-align: center;
		font-size: 38px;
		line-height: 48px;
		max-width: 240px;
	}
	.sec_about_txt .sec_about_txt_lft,
	.sec_about_txt .sec_about_txt_rtl {
		width: 100%;
	}
	.sec_about_txt h2 {
		font-size: 38px;
		line-height: 48px;
		text-align: center;
	}
	.sec_about_txt .sec_about_txt_rtl {
		padding-left: 0;
		text-align: center;
		padding-top: 15px;
	}
	.sec_what_we_are .what_we_are_img,
	.sec_what_we_are .what_we_are_txt {
		width: 100%;
	}
	.sec_what_we_are .what_we_are_img img {
		border-radius: 20px;
	}
	.sec_what_we_are .what_we_are_title h2 {
		font-size: 40px;
		line-height: 50px;
	}
	.sec_our_approach h2,
	.sec_our_philosophy .our_philosophy_content h2,
	.sec_our_team h2 {
		font-size: 40px;
		line-height: 50px;
	}
	.sec_our_approach .approach_text_blocks {
		gap: 20px;
	}
	.sec_our_approach .approach_text_blocks .text_block {
		width: 100%;
		font-size: 20px;
		line-height: 30px;
	}
	.sec_our_philosophy .our_philosophy_top {
		flex-direction: column-reverse;
	}
	.sec_our_philosophy .our_philosophy_content {
		width: 100%;
		padding-top: 40px;
		padding-right: 0;
	}
	.sec_our_philosophy .our_philosophy_img {
		width: 100%;
	}
	.our_philosophy_bottom p:first-child {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.our_philosophy_bottom p {
		max-width: 100%;
	}

	/* Policy Page */
	.page-privacy-policy {
		padding: 60px 0;
	}
	.page-privacy-policy .entry-header h1 {
		font-size: 38px;
		line-height: 48px;
	}
	.page-privacy-policy .entry-content h3 {
		font-size: 28px;
		line-height: 32px;
	}
	.page-privacy-policy .entry-content p {
		line-height: 24px;
		margin-top: 10px;
		margin-bottom: 20px;
	}
}