@charset "utf-8";

/* CSS Document */

/* Table of Contents
---------------------------------------------------
1. Clean Base
2. Base Typography
3. Forms
4. Tables
5. Framework 
6. Homepage
7. Blog
8. Blog Single
9. Default Page
10. Contact us
11. 404 and Thankyou
*/

/* 1. Clean Base
---------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
a,
nav,
section,
summary,
time,
mark,
audio,
video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none;outline:none;-webkit-font-smoothing:subpixel-antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);}
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary{display:block;}
img{border:none;}
select,
input[type="text"],
input[type="submit"],
input[type="button"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea{-webkit-appearance:none;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
textarea:focus,
input:focus,
a,
div,
img{outline:none;}
.clear{clear:both;}
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
* html .clearfix{height:1%;}

/* 2. Base Typography
---------------------------------------------------*/
body{color:#000;font-size:16px;font-family:MontserratRegular;}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
h1,
h2,
h3,
h4,
h5,
h6{margin-bottom:20px;font-family: 'MontserratSemiBold';}
h1{font-size:25px;}
h2{font-size:25px;}
h3{font-size:20px;}
h4{font-size:20px;}
h5{font-size:20px;}
h6{font-size:20px;}
p{color:#585858;font-size:13px;line-height:26px;margin-bottom:20px;font-family:'MontserratRegular';}
ul{margin:0px;padding:0;}
ul li{font-size:13px;color:#828282;padding:0 0 5px 0;font-family:MontserratRegular;}
ol{margin:0;padding:0;}
ol li{font-size:13px;color:#828282;padding:0 0 5px 0;font-family:MontserratRegular;}
blockquote{display:block;text-align:left;margin:0px 0px 20px;position:relative;padding:0px 0px 0px 25px;border-left:8px solid #000;font-family:'MontserratRegular';}
blockquote p{font-size:13px;font-weight:300;margin-bottom:15px;position:relative;}
hr{border:0 #000 solid;border-top-width:1px;clear:both;height:0;}
a{color:#000;-webkit-transition:all 0.3s ease 0s;-o-transition:all 0.3s ease 0s;transition:all 0.3s ease 0s;display:inline-block;}
a:hover{color:#000;text-decoration:none;}
a:focus{outline:none;}

/* 3. Forms
---------------------------------------------------*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"]{color:#000;font-size:13px;width:100%;}
textarea{color:#000;font-size:13px;min-height:100px;resize:none;}
input[type="submit"],
input[type="button"],
input[type="reset"]{cursor:pointer;color:#000;}
input[type="submit"]:hover,
input[type="button"]:hover{}
select{color:#000;font-size:13px;width:100%;}

/* 4. Tables
---------------------------------------------------*/
table{border-spacing:0;border-collapse:collapse;}
td{text-align:left;font-weight:normal;}
strong,
b{font-family:'MontserratBold';}

/*font-family: 'MontserratBold';
font-family: 'MontserratSemiBold';
font-family: 'MontserratMedium';
font-family: 'MontserratRegular';
font-family: 'MontserratLight';
font-family: 'MontserratRegularItalic';*/

/* 5. Layout Framework
---------------------------------------------------*/
.container{max-width:925px;width:100%;padding-left:20px;padding-right:20px;margin:0px auto;}
.container-fluid{max-width:1790px;width:100%;padding-left:100px;padding-right:100px;margin:0px auto;}

/* .6 Homepage
--------------------------------------------------*/
header{position:absolute;top:0px;width:100%;z-index:9999;-webkit-transition:all 0.5s ease;-moz-transition:position 10s;-ms-transition:position 10s;-o-transition:position 10s;transition:all 0.5s ease;padding:24px 0;}
header.sticky{background:linear-gradient(135deg, #d9eef7 0%, #fbd4c3 100%);box-shadow: 0px 25px 55px 0px rgba(0, 0, 0, 0.1);position:fixed;z-index:99999;width:100%;top:0;animation:smoothScroll 1s forwards;padding:10px 0;}
@keyframes smoothScroll{
	0%{transform:translateY(-60px);}
	100%{transform:translateY(0px);}
}
header .container-fluid{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;}
header .logo a{color: transparent;}
header .logo a img{max-width:180px;}
header .header-menu{display:flex;flex-wrap:wrap;align-items:center;}
header .header-menu .navbar ul{display:flex;flex-wrap:wrap;}
header .header-menu .navbar ul li{padding:8px 15px;list-style:none;position:relative;}
header .header-menu .navbar ul li a{color:#000000;font-family:'MontserratRegular';font-size:13px;line-height:26px;}
header .header-menu .navbar ul li a:hover{opacity:0.7;}
header .header-menu .navbar ul ul{display:none;position:absolute;top:100%;background:#fcac35;padding:10px 0;    min-width: 150px;}
header .header-menu .navbar ul li:hover ul{display:block;}
header .header-menu .navbar ul li ul li{padding:2px 20px;}
header .header-menu .download-btn{}
header .header-menu .download-btn a{font-family:'MontserratMedium';border:2px solid #000000;color:#000000;font-size:13px;padding:11px 16px;border-radius:30px;}
header .header-menu .download-btn a:hover{    background: linear-gradient(135deg, #d9eef7 0%, #fbd4c3 100%);color: #000;}
.home-banner{background-repeat:no-repeat;background-position:center;background-size:cover;padding:150px 0 200px;position:relative;z-index: 1;}
.next-section-button {background: #fff;height: 35px;width: 35px;padding: 0;display: flex;align-items: center;justify-content: center;box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.05);border: none;position: fixed;right: 20px;bottom: 20px;z-index: 3;cursor: pointer;}
.next-section-button:hover {background: #fff;}
.next-section-button img {height: 16px;width: 16px;}
.home-banner .container{display:flex;flex-wrap:wrap;justify-content:space-between;}
.hero-content {display:flex;align-items:center;flex-direction: column;justify-content: center;}
.hero-content h1 {color: #000000;font-size: 48px;text-align: center;max-width: 800px;}
.hero-content p {color: #000000;text-align: center;font-size: 14px;margin-bottom: 40px;}
.hero-grid {display: grid;gap: 25px;grid-template-columns: repeat(3, minmax(0px, 1fr));width: 100%;}
.hero-grid-items {display: flex; align-items: center; justify-content: center;}
.dm-device-a {position: relative;width: 100%;margin-bottom: 0;height: 535px;}
.dm-width-a {max-width: 240px;margin:0 auto;width: 240px;}
.screen-a{overflow: hidden;position: absolute;top: 15px;bottom: 10px;left: 10px;right: 10px;z-index: -1;border-radius: 21px;}
.hero-grid .iphone-images {height: 100%;}
.hero-grid .iphone-images img {width: 100%;height: 465px;object-fit: cover;border-radius: 25px;}
.hero-grid .hero-grid-items:first-child .dm-width-a, .hero-grid .hero-grid-items:last-child .dm-width-a {transform: scale(0.9);}
.home-banner .left-content{width:50%;padding:48px 15px 0 16px;}
.home-banner .left-content h1{font-family:'MontserratSemiBold';font-size:24px;line-height:34px;color:#000000;margin:0 0 10px;}
.home-banner .left-content p{color:#000000;font-family:'MontserratLight';font-size:15px;line-height:27px;margin:0 0 35px;}
ul.app-list{display:flex;flex-wrap:wrap;align-items: center;justify-content: center;}
ul.app-list li{margin-right:20px;padding:0px;list-style:none;}
ul.app-list li:last-child{margin-right:0px;}
ul.app-list li img{max-width:165px;height:51px;width:100%;}
.left-circle-an {position: absolute;left: 20%; top:0; height: 100%;width: 26px;border-left: 1px solid rgb(255 255 255 / 30%);pointer-events:none;}
.left-circle-an span {position: absolute; left: -13px; bottom: 0%;height: 25px;width: 25px;border: 3px solid #fff;border-radius: 50%;animation-name: animation2;animation-duration: 20s;animation-iteration-count: infinite;}
@-webkit-keyframes animation2 {0% { bottom: 0%; } 50% { bottom: 100%; } 100% { bottom: 0%; }}
.right-circle-an {position: absolute;right: 20%; top:0; height: 100%;width: 26px;border-left: 1px solid rgb(255 255 255 / 30%);pointer-events:none;}
.right-circle-an span {position: absolute; left: -13px; bottom: 0%;height: 25px;width: 25px; background: #fff; border: 3px solid #fff;border-radius: 50%;animation-name: animation3;animation-duration: 20s;animation-iteration-count: infinite;}
@-webkit-keyframes animation3 {0% { bottom: 100%; } 50% { bottom: 0%; } 100% { bottom: 100%; }}
.home-banner .right-img{width:50%;position:relative;z-index:22;}
.home-banner .right-img figure img{margin:0;width:100%;height:auto;border-radius:40px;}
.device{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;-webkit-background-size:100% 100%;background-repeat:no-repeat;background-size:cover;background-position:center center;}
.social-media-links {position: absolute; left: 40px; top: 660px; z-index: 99;display: flex; flex-direction:column;gap: 15px;margin: 0;padding:0;}
.social-media-links li {list-style: none;}
.social-media-links li a {display: block;transition: all 0.2s ease-out;transform: scale(1);}
.social-media-links li a:hover {transform: scale(1.1);}
.screen{overflow:hidden;position:absolute;top:20px;bottom:70px;left:12.4%;right:12.4%;z-index:-1;}
.dm-width{max-width:385px;margin:0 0 0 auto;}
.dm-device{position:relative;width:100%;padding-bottom:181.477897%;margin-bottom:0px;}
.iphone-slider{height:100%;}
.iphone-slider div.list{height:100%;}
.recruiter{padding:50px 0;background-position: 87% top !important;background-repeat: no-repeat !important;background-size: 750px !important;position:relative;overflow-x:hidden;}
.curve-bg {margin-top: -110px;padding-top: 170px;}
.left-half-circle:before {content: "";position: absolute;left: -90px;top: calc(50% - 80px);height: 80px;width: 80px;border: 50px solid #fcac3521;border-radius: 50%;pointer-events: none;z-index: -1;}
.right-half-circle:before {content: "";position: absolute;right: -90px;top: calc(50% - 80px);height: 80px;width: 80px;border: 50px solid #fcac35;border-radius: 50%;pointer-events: none;z-index: -1;}
.heading-section{text-align:center;padding:0 50px 35px;}
.heading-section h2{font-size:22px;font-family:'MontserratSemiBold';line-height:30px;color:#000000;margin:0 0 15px;}
.heading-section p{color:#828282;font-size:14px;line-height:27px;font-family:'MontserratRegular';letter-spacing:0.2px;}
.recruiter-process {display:flex;justify-content:center;align-items:center;text-align:center;}
.recruiter-process div.slick-slide {width:33.33%;list-style:none;padding:0 40px;}
.recruiter-process div.slick-slide figure{width:60px;margin:5px auto 21px;font-size:0px;padding:0px;}
.recruiter-process div.slick-slide figure img{width:100%;height:auto;}
.recruiter-process div.slick-slide .h4{font-size:16px;line-height:28px;font-family:'MontserratMedium';color:#293039;margin: 0 0 10px;}
.recruiter-process div.slick-slide p{font-size:13px;line-height:22px;font-family:'MontserratRegular';}
.lightboxright{width:100%;float:left;}
.lightboxright iframe{min-height:420px;object-fit: cover;width: 100%;}
#html5box-html5-lightbox .html5-text,
#html5-watermark,
.html5-elem-data-box{display:none!important;}
.html5-image{padding:0px!important;}
#html5-lightbox-overlay{opacity:0.5!important;}
#html5-close{top:0px!important;right:-35px !important;margin-top:0!important;margin-right:0!important;}
@media (max-width:800px){
	.lightboxright{width:100%;}
}
.video-section{margin-top:140px;padding-top:90px;padding-bottom:60px;background-repeat:no-repeat;background-position:center;background-size:cover;}
.open-video{min-height:445px;position:relative;margin-top:-180px;margin-bottom:80px;background-repeat:no-repeat;background-position:center;background-size:cover;}
.open-video .html5lightbox{position:absolute;left:50%;margin:0 auto;text-align:center;transform:translate(-50%,-50%);top:50%;}
/* .open-video a img{max-width:90px;} */
.video-section h5{font-size:24px;line-height:32px;color:#000000;font-family:'MontserratSemiBold';width:50%;}
.video-section .user-list{display:flex;flex-wrap:wrap;justify-content:space-between;padding:0 20px;align-items:center;}
footer{background:#fbd4c3;padding:10px 0;background-position:center;background-size:cover;background-repeat:no-repeat;}
footer .container-fluid{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;}
.footer-left{display:flex;flex-wrap:wrap;align-items:center;}
.footer-logo{margin-right:55px;}
.footer-logo a img{max-width:155px;width: 100%;height: auto;}
.footer-left p{color:#000000;margin:0px;font-family:'MontserratRegular';font-size:13px;line-height:normal;}
.footer-left a{color:#000000;font-family:'MontserratRegular';font-size:13px;line-height:normal;}
.footer-left a:hover{opacity:0.6;}
.footer-logo a {color: transparent;}
.footer-left .footer-logo a:hover{opacity:1;}
.footer-right{}
.footer-right ul{display:flex;flex-wrap:wrap;align-items:center;}
.footer-right ul li{list-style:none;padding:0 10px;}
.footer-right ul li a{color:#000000;font-size:13px;line-height:normal;font-family:'MontserratRegular';text-transform:uppercase;}
.footer-right ul li a:hover{opacity:0.6;}
.footer-left.mobile-footer{display:none;}
.new-talent{padding:110px 0 30px;}
.new-talent .container-fluid{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;}
.new-talent-text{width:50%;padding-right:100px;padding-left:100px;padding-top:10px;}
.new-talent-text figure{margin:0 0 17px;}
.new-talent-text figure img{max-width:50px;}
.new-talent-text h3{color:#000000;font-family:'MontserratSemiBold';font-size:22px;margin:0 0 20px;}
.new-talent-text h4{color:#293039;font-family:'MontserratLight';font-size:19px;line-height:normal;    margin: 0 0 14px;}
.new-talent-text p{color:#828282;font-size:14px;line-height:27px;font-family:'MontserratRegular';margin:0 0 25px;}
.learn-more-btn{background-color:#ffa800;border-radius:20px;color:#ffffff;font-size:16px;line-height:normal;padding:15px 40px 15px 30px;font-family:'MontserratSemiBold';letter-spacing:0.5px;position:relative;}
.learn-more-btn span{position:absolute;font-size:9px;right:14px;transition:all 0.3s ease;top:13px;font-weight:bold;}
.learn-more-btn:hover{color:#FFFFFF;}
.learn-more-btn:hover span{right:8px;}
.new-talent-img{width:50%;}
.new-talent-img ul{display:flex;flex-wrap:wrap;justify-content:space-between;}
.new-talent-img ul li{list-style:none;width:47%;}
.new-talent-img ul li figure{}
.new-talent-img ul li figure img{width:100%;height:auto;box-shadow:0px 25px 55px 0px rgba(0,0,0,0.1);border-radius:10px;}
.new-talent.new-career{padding-bottom:130px;}
.testimonial{background:#f6f9fd;padding:110px 0;}
/* .testimonial .container{max-width:700px;} */
.testimonial .section-title {margin-bottom: 0;}
.testimonial-slider-common {padding-top:20px;}
.testimonial-slider-common .slick-list {padding: 15px 0px;}
.testimonial-grid {display: grid;gap: 25px 8px;grid-template-columns: repeat(2, minmax(0px, 1fr));width: 100%;padding: 0 5px;}
.client-info-box {background: #fafafa;padding: 30px;display: flex;flex-direction: column; gap: 24px;border: 1px solid #f5f5f5;border-radius: 12px; transform: scale(1); box-shadow: 0 0 5px 0 rgba(0,0,0,0.0);transition: all 0.2s ease-out;}
.client-info-box:hover {background: #fff;box-shadow: 0 10px 5px 0px rgba(0,0,0,.02);transform: scale(1.01);}
.client-dt {display: flex;align-items: center;gap:10px;}
.client-dt img {height: 40px;width: 40px;border-radius: 50%;}
.client-dt h5 {font-size: 16px;margin-bottom: 5px;}
.client-dt h6 {margin: 0;font-size: 12px;color: #9e9e9e;font-weight: 400;font-family: 'MontserratRegular';}
.testimonial-slider-common .slick-dots {display: flex;align-items: center;justify-content: center;padding-top: 30px;gap: 0px;z-index: 2;position: relative;}
.testimonial-slider-common .slick-dots li {list-style: none;opacity: 0.5;}
.testimonial-slider-common .slick-dots li.slick-active {opacity: 1;}
.testimonial-slider-common .slick-dots li button { position: relative; font-size: 0;background: transparent;border: 2px solid #000;border-radius: 50%;display: flex;align-items: center;margin-right: 30px;height: 10px;width: 10px;padding: 0;cursor: pointer;}
.testimonial-slider-common .slick-dots li:last-child button {margin-right: 0; margin-left: 30px;}
.testimonial-slider-common .slick-dots li button:before {content: ""; height: 2px; width:25px;background: #000;content: "";height: 2px;width: 25px;background: #000;position: absolute;left: 8px;}
.testimonial-slider-common .slick-dots li:last-child button:before {content: ""; height: 2px; width:25px;background: #000;content: "";height: 2px;width: 25px;background: #000;position: absolute;left: -25px;}
.testimonial-slider{}
.testimonial-slider div{list-style:none;text-align:center;}
.testimonial-slider figure{width:70px;margin:0 auto 25px;}
.testimonial-slider figure img{width:100%;height:auto;border-radius:50%;}
.testimonial-slider p, .testimonial-slider-v2 p{font-family:'MontserratRegularItalic';font-size:14px;line-height:26px;color:#4e5c66;margin:0 0 25px;letter-spacing:0.5px;}
.testimonial-slider-v2 p {margin-bottom: 0;}
.testimonial-slider h5{color:#293039;font-family:'MontserratSemiBold';font-size:13px;line-height:normal;margin:0 0 6px;}
.testimonial-slider h6{color:#4e5c66;font-family:'MontserratRegular';font-size:13px;line-height:normal;}
.testimonial-slider .slick-dots{display:flex;justify-content:center;align-items:center;margin:25px 0 0;}
.testimonial-slider .slick-dots li{padding:0 5px;font-size:0;margin:0;}
.testimonial-slider .slick-dots button{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;font-size:0px;border:2px solid #cfcfcf;padding:3px;background:transparent;border-radius:50%;}
.testimonial-slider .slick-dots li.slick-active button{background:#ff723b;border:2px solid #ff723b;}
.testimonial-slider .slick-dots button:focus{outline:none;}
.newsletter{text-align:center;padding:87px 0;background-repeat:no-repeat;background-size:cover;background-position:center;}
.newsletter .container{max-width:485px;}
.newsletter h2{font-size:26px;line-height:40px;color:#000000;font-family:'MontserratSemiBold';margin:0 0 9px;}
.newsletter p{font-size:14px;line-height:27px;color:#000000;font-family:'MontserratRegular';}
.newsletter .mc4wp-form-fields label{display:none;}
.newsletter .email-address{margin:0px;}
.newsletter .email-address input{min-height:54px;border-radius:35px;border:0px;padding:6px 205px 6px 39px;font-size:15px;color:#94a1ac;font-family:'MontserratRegular';}
.newsletter .submit-btn{margin:0px;position:absolute;right:6px;top:7px;}
.newsletter .submit-btn input {
    border-radius: 30px;
    color: #000;
    font-size: 15px;
    font-family: 'MontserratSemiBold';
    border: none;
    padding: 9px 30px;
    transition: all .3s ease;

    /* Put image first, then gradient */
    background: 
			url(/wp-content/uploads/2025/09/black-arrow1.png) no-repeat center right 16px,
        linear-gradient(135deg, #d9eef7 0%, #fbd4c3 100%);

    background-size: 6px, cover;
}
.newsletter .submit-btn input:hover {
    /* only arrow moves, gradient stays */
    background-position: right 10px center, center;
}
.newsletter .mc4wp-form{margin-top:36px;margin-bottom:60px;}
.newsletter .mc4wp-form-fields{position:relative;}
.newsletter .app-list{justify-content:center;}
ul.social-icon{display:flex;flex-wrap:wrap;justify-content:center;margin:45px 0 0;}
ul.social-icon li{margin:0px 11px;list-style:none;padding:0px;}
ul.social-icon li a{color:#000;background:#ffffff;border-radius:50%;text-align:center;padding:6px 8px;font-size:16px;width:29px;height:29px;}
ul.social-icon li a:hover{background:#000;color:#ffffff;}

/* 7. Blog
--------------------------------------------------*/
.inner-banner{background-repeat:no-repeat;background-size:cover;background-position:center bottom;padding:137px 0 145px;}
.inner-banner h1{color:#000000;font-size:27px;line-height:50px;font-family:'MontserratSemiBold';margin:0 0 5px;}
.inner-banner p{color:#000000;font-size:15px;line-height:27px;font-family:'MontserratLight';}
.blog-list-main{padding:110px 0 72px;}
.blog-list-main .container{display:flex;flex-wrap:wrap;}
.blog-list{width:63%;}
ul.blog-list-inner{}
ul.blog-list-inner li{list-style:none;box-shadow:0px 25px 55px 0px rgba(0,0,0,0.06);margin:0 0 50px;background:#FFF;border-radius:10px;padding:0;}
ul.blog-list-inner li .blog-img a{overflow:hidden;display:block;border-radius:10px 10px 0px 0px;}
ul.blog-list-inner li figure{font-size:0px;}
ul.blog-list-inner li figure img{transition:all 0.3s ease;width:100%;height:auto;}
ul.blog-list-inner li a:hover img{transform:scale(1.1,1.1);}
ul.blog-list-inner li .blog-content{padding:18px 30px;}
ul.blog-list-inner li .blog-content a{margin:0 0 10px;}
ul.blog-list-inner li h2{font-family:'MontserratMedium';font-size:20px;line-height:32px;color:#000000;transition:all 0.3s ease;margin:0;}
ul.blog-list-inner li .blog-content a:hover h2{color:#000}
ul.blog-list-inner li .author-date{margin:0 0 10px;font-size:13px;color:#94a1ac;font-family:'MontserratRegular';}
ul.blog-list-inner li .author-date span{font-size:13px;color:#94a1ac;font-family:'MontserratRegular';display:inline-block;}
ul.blog-list-inner li p{font-size:13px;line-height:26px;font-family:'MontserratRegular';color:#828282;}
.blog-sidebar{width:37%;padding-left:70px;}
.blog-sidebar .search-form{margin:0 0 45px;}
.blog-sidebar .search-form form{position:relative;}
.blog-sidebar .search-form input[type="search"]{color:#94a1ac;font-size:12px;font-family:'MontserratRegular';border:2px solid #e6e6e6;border-radius:30px;min-height:50px;padding:5px 42px 5px 22px}
.blog-sidebar .search-form button{color:#4e5c66;font-size:12px;border:0px;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;position:absolute;right:0px;top:4px;background:transparent;padding:13px 20px;}
.blog-sidebar .sidebar-categories{margin:0 0 50px;}
.blog-sidebar .sidebar-categories ul{}
.blog-sidebar .sidebar-categories ul li{list-style:none;padding:0px;border-bottom:1px solid #e6e6e6;}
.blog-sidebar .sidebar-categories ul li a{color:#666666;font-size:12px;font-family:'MontserratLight';line-height:normal;padding:12px 0 12px;}
.blog-sidebar .sidebar-categories ul li.active a,
.blog-sidebar .sidebar-categories ul li a:hover{color:#000;}
.blog-sidebar h3{font-size:17px;color:#293039;font-family:'MontserratMedium';line-height:normal;margin:0 0 12px}
.blog-sidebar .sidebar-latest-post{}
.blog-sidebar .sidebar-latest-post ul{padding-top:12px;}
.blog-sidebar .sidebar-latest-post ul li{list-style:none;display:flex;flex-wrap:wrap;padding:0;margin:0 0 10px;}
.blog-sidebar .sidebar-latest-post ul li .latest-img{width:25%}
.blog-sidebar .sidebar-latest-post ul li .latest-img a{overflow:hidden;}
.blog-sidebar .sidebar-latest-post ul li .latest-img a figure{width:62px;font-size:0;}
.blog-sidebar .sidebar-latest-post ul li .latest-img a img{transition:all 0.3s ease;width:100%;height:auto;min-height:62px;object-fit:cover;}
.blog-sidebar .sidebar-latest-post ul li .latest-img a:hover img{transform:scale(1.1,1.1);}
.blog-sidebar .sidebar-latest-post ul li .latest-content{width:75%;padding-left:14px;}
.blog-sidebar .sidebar-latest-post ul li .latest-content a{color:#293039;font-family:'MontserratRegular';font-size:12px;line-height:22px;}
.blog-sidebar .sidebar-latest-post ul li .latest-content a:hover{color:#000;}
.pagination{padding:30px 0;}
.pagination ul{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;}
.pagination ul li{list-style:none;margin:0 15px;padding:0px;}
.pagination ul li.prev{margin-right:50px;}
.pagination ul li.prev a{font-family:'MontserratSemiBold';font-size:14px;padding:16px 32px;color:#94a1ac;border:2px solid #94a1ac;border-radius:30px;min-width:135px;text-align:center;}
.pagination ul li.prev a:hover{color:#FFFFFF;background:#94a1ac;text-decoration:none;}
.pagination ul li .current{color:#3b2eb2;font-family:'MontserratMedium';font-size:16px;line-height:normal;text-decoration:underline;}
.pagination ul li a{color:#4e5c66;font-family:'MontserratMedium';font-size:16px;line-height:normal;}
.pagination ul li a:hover{color:#3b2eb2;text-decoration:underline;}
.pagination ul li.next{margin-left:50px;}
.pagination ul li.next a{font-family:'MontserratSemiBold';font-size:14px;padding:16px 32px;color:#e79000;border:2px solid #e79000;border-radius:30px;min-width:135px;text-align:center;}
.pagination ul li.next a:hover{color:#FFFFFF;background:#e79000;text-decoration:none;}

/* 8. Blog Single
---------------------------------------------------*/
.blog-single{margin:0 0 100px;}
.blog-single h2{font-family:'MontserratSemiBold';font-size:24px;color:#2a2a2a;margin:0 0 14px;}
.blog-single .author-date{margin:0 0 30px;font-size:13px;color:#94a1ac;font-family:'MontserratRegular';}
.blog-single .author-date span{font-size:13px;color:#94a1ac;font-family:'MontserratRegular';display:inline-block;}
.blog-single-img{margin:0 0 30px;}
.blog-single-img img{max-width:100%;height:auto;}
.blog-single-content{margin:0 0 40px;}
.blog-single-content,
.blog-single-content p{color:#828282;font-size:13px;line-height:26px;font-family:'MontserratRegular';}
.blog-single-content a{color:#000;font-size:13px;line-height:26px;font-family:'MontserratRegular';}
.blog-single-content a:hover{color:#828282;}
.blog-single-content img{max-width:100%;height:auto;}
.blog-single-content ul,.blog-single-content ol{margin:0 0 0 20px;}
.blog-single-content blockquote{color:#828282;font-size:13px;line-height:26px;font-family:'MontserratRegular';font-style:italic;margin:40px 0 45px 0;}
.blog-single-content blockquote p{color:#828282;font-size:13px;line-height:26px;font-family:'MontserratRegular';font-style:italic;margin:0px;}
.blog-single-content h2 span {color:#000 !important;}
.blog-single-content h2{color:#000000;font-size:18px;line-height:30px;font-family:'MontserratMedium';}
.blog-single-content iframe{min-height:320px;max-width:93%;}
.blog-video-bg{margin:40px 0 50px;min-height:320px;max-width:93%;position:relative;}
.blog-video-bg a{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}
.blog-video-bg a:hover{opacity:0.7;}
.social-tag{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;border-top:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;padding:15px 15px 15px 0;    margin-bottom:20px;}
ul.blog-social-icon{display:flex;flex-wrap:wrap;align-items:center;width:37%;}
ul.blog-social-icon li{list-style:none;padding:0px;margin:0 3px 0 0;}
ul.blog-social-icon li a{font-size:13px;border-radius:3px;width:28px;height:28px;background:#eee;color:#FFFFFF;text-align:center;padding:6px 5px;display:flex;}
ul.blog-social-icon li a:hover{opacity:0.7px;}
.footer-tag{display:flex;flex-wrap:wrap;align-items:center;width:63%;}
.footer-tag h5{color:#4e5c66;font-size:13px;line-height:26px;font-family:'MontserratMedium';padding:0px 15px 0px 0px;width:10%;margin: 0 0 6px;}
.footer-tag ul{display:flex;flex-wrap:wrap;align-items:center;width:90%;}
.footer-tag ul li{list-style:none;padding:0px;margin:0 5px 5px;}
.footer-tag ul li a{color:#4e5c66;font-size:13px;line-height:23px;font-family:'MontserratRegular';border:2px solid #e6e6e6;border-radius:2px;padding:1px 8px;}
.footer-tag ul li a:hover{background:#e6e6e6;color:#000;}

.comment-section{margin:50px 0 22px;}
.comment-section ul{display:flex;flex-wrap:wrap;}
.comment-body,.comment-section ul li{list-style:none;padding:0px;display:flex;flex-wrap:wrap;width:100%;margin:0px 0px 20px;}
.comment-author,.comment-section figure{width:17%}

.comment-author figure img,.comment-section figure img{width:100%;height:auto;border-radius:5px;}
.comment-content-new,.commant-content{width:83%;padding:10px 0 0 35px;}
.comment-respond h3,.comment-content-new h3,.comment-content-new h3 a,.commant-content h3{font-size:17px;font-family:'MontserratMedium';line-height:26px;color:#293039;margin:0 0 10px;}
.comment-content-new h3 a{margin:0px;}
.commant-content h5{color:#94a1ac;font-size:13px;font-family:'MontserratRegular';line-height:normal;margin:0 0 12px;}
.comment-content-new p,.commant-content p{color:#828282;font-size:13px;font-family:'MontserratRegular';line-height:26px;}
.comment-reply-title a{font-size: 12px;color: #fcac35;}

.next-prev-blog{}
.next-prev-blog ul{display:flex;flex-wrap:wrap;}
.next-prev-blog ul li{list-style:none;padding:0px;margin:0 40px 0 0;}
.next-prev-blog ul li.disabled a{color:#94a1ac;background:transparent;border:2px solid #e6e6e6;}
.next-prev-blog ul li.disabled a:hover{background:transparent;color:#94a1ac;cursor:not-allowed}
.next-prev-blog ul li a{border-radius:26px;background:#eee;border:2px solid #eee;color:#000;font-family:'MontserratSemiBold';font-size:13px;line-height:normal;padding:10px 25px;}
.next-prev-blog ul li a:hover{background:transparent;color:#000;}
.next-prev-blog ul li:last-child{margin:0px;}

.comment-form{}
.comment-form input{}
.comment-form textarea{}
.comment-form input,.comment-form textarea{width:100%;display:block;color:#94a1ac;font-size:13px;border:1px solid #d4d4d4;border-radius:0px;line-height:normal;padding:14px 15px;font-family:'MontserratRegular';}
.comment-form label{color:#828282;display: inline-block;margin: 0 0 5px;font-family:'MontserratRegular';font-size: 13px;line-height:26px;}
.comment-form input[type=checkbox]{width:4%;display: inline-block;margin: 4px 0 0;}
.comment-form .comment-form-cookies-consent label{padding-left:5px;width:96%;margin:0px;}
.comment-form .comment-form-cookies-consent{display:flex;flex-wrap:wrap;}
.comment-form .form-submit input{border-radius: 26px;background:#eee;border: 2px solid #eee;color: #000 !important;font-family: 'MontserratSemiBold';font-size: 13px;line-height: normal;padding: 10px 25px;display:inline-block;width:auto;color:#FFF;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;transition:all 0.3s ease;}
.comment-form .form-submit input:hover{background:transparent;color:#ffa800;}
.comment-respond{border-bottom: 1px solid #e6e6e6;padding-bottom: 20px;margin-bottom: 35px;}

.comment-author img{ object-fit: cover;}
.commentlist cite a{font-size: 20px;font-family: 'MontserratMedium';line-height: 28px;color: #293039;margin: 0 0 12px;font-style: normal;font-weight: 500;}
.commentlist p{color: #828282;font-size: 13px;font-family: 'MontserratRegular';line-height:26px;margin:0 0 15px;clear: both;width: 100%;}
ol.commentlist{list-style:none;}
ol.commentlist li{border-bottom:1px solid #e6e6e6;padding-bottom:20px;margin-bottom:35px;}
ol.commentlist li li{border-top:1px solid #e6e6e6;border-bottom:0px solid #e6e6e6;padding-bottom:0px;margin-bottom:20px;padding-top:30px;}
ol.commentlist li li:last-child{margin-bottom:0px;}
ol.commentlist .comment-meta{display:none;}
.commentlist ul li{list-style:none;padding-left: 50px;}
.comment-awaiting-moderation{display:none;}
a.comment-reply-link{color: #000;}

/* 9. Default Page
---------------------------------------------------*/
.global-css{padding:110px 0;color:#828282;font-size:12px;line-height:24px;}
.global-css h1,
.global-css h2,
.global-css h3{font-family:'MontserratSemiBold';font-size:20px;line-height:28px;color:#000000;margin:0 0 15px;}
.global-css h4,
.global-css h5,
.global-css h6{font-family:'MontserratSemiBold';font-size:18px;line-height:26px;color:#000000;margin:0 0 15px;}
.global-css p{color:#828282;font-size:13px;line-height:26px;margin:0 0 20px;}
.global-css li{color:#828282;font-size:13px;line-height:26px;font-family:'MontserratRegular';}
.global-css ol,
.global-css ul{margin:0 0 20px 15px;}
.global-css a{color:#ffaf14;}
.global-css a:hover{color:#828282;}
.alignleft{float:left;margin-right:10px;}
.alignright{float:right;margin-left:10px;}
.aligncenter{margin:0px auto;text-align:center;}
.alignleft:after,
.alignright:after,
.aligncenter:after{clear:both;display:block;}

/* 10. Contact us
---------------------------------------------------*/
.contact-form{padding:57px 0;}
.contact-form .container{display:flex;flex-wrap:wrap;}
.contact-form h2{color:#2a2a2a;font-family:'MontserratSemiBold';font-size:21px;line-height:32px;margin:0 0 8px;}
.contact-form p{color:#828282;font-family:'MontserratRegular';font-size:13px;line-height:26px;margin:0px 0px 11px;}
.contact-form a{color:#ffa800}
.contact-form a:hover{color:#828282}
.contact-form .map-section{width:50%;padding-right:10px;}
.map{}
.map iframe{width:100%;min-height:300px;}
.form-heading{width:95%;}
.form-section{width:50%;padding-left:40px;}
.form-section form{}
.form-section .gform_wrapper .top_label .gfield_label{display:none;}
.form-section .gform_wrapper .top_label input.medium,
.form-section .gform_wrapper .top_label select.medium{width:100%;}
.form-section input,
.form-section textarea{color:#94a1ac;font-size:13px !important;border:1px solid #d4d4d4;border-radius:0px;line-height:normal;padding:11px 15px !important;font-family:'MontserratRegular';}
.form-section textarea{resize:none;min-height:125px;}
.form-section input::-webkit-input-placeholder,
.form-section textarea::-webkit-input-placeholder{color:#94a1ac;font-size:13px;opacity:1}
.form-section input::-moz-placeholder,
.form-section textarea::-moz-placeholder{color:#94a1ac;font-size:13px;opacity:1}
.form-section input:-ms-input-placeholder,
.form-section textarea:-ms-input-placeholder{color:#94a1ac;font-size:13px;opacity:1}
.form-section input:-moz-placeholder,
.form-section textarea:-moz-placeholder{color:#94a1ac;font-size:13px;opacity:1}
.form-section .gform_wrapper{margin:0px;}
body .form-section .gform_wrapper ul li.gfield,
body .form-section .gform_wrapper .top_label div.ginput_container{margin-top:0 !important;}
.form-section .gform_wrapper ul.gform_fields li.gfield{padding-right:0;padding:0;margin-bottom:18px;}
.form-section .gform_wrapper .top_label li.gfield.gf_right_half{padding-right:0;}
.form-section .gform_wrapper .top_label li.gfield.gf_left_half{padding-right:15px;}
.form-section .gform_wrapper.gf_browser_chrome .gform_body{width:100%;}
.form-section .gform_anchor{display:none;}
.form-section .gform_wrapper .gform_footer input.button,
.form-section .gform_wrapper .gform_footer input[type=submit],
.form-section .gform_wrapper .gform_page_footer input.button,
.form-section .gform_wrapper .gform_page_footer input[type=submit]{font-size:18px;font-family:'MontserratSemiBold';color:#FFFFFF;background:#ffa800;border:2px solid #ffa800;border-radius:30px;margin-right:0px;padding:10px 52px 11px 28px !important;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;background-image:url('../images/right-arrow.png');background-repeat:no-repeat;background-position:center right 25px;background-size:7px;transition:all 0.3s ease;}
.form-section .gform_wrapper .gform_footer input.button:hover,
.form-section .gform_wrapper .gform_footer input[type=submit]:hover,
.form-section .gform_wrapper .gform_page_footer input.button:hover,
.form-section .gform_wrapper .gform_page_footer input[type=submit]:hover{background-position:center right 18px;}
.form-section .gform_wrapper .gform_footer{padding:0;margin:35px 0 0;text-align:right;}
.form-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half{padding-right:15px!important;}
.form-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
.form-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half{max-width:50%!important;padding-right:0;}
.form-section .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half{margin-right:0;}
.form-section .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100%!important;}
.form-section .gform_wrapper.gform_validation_error .top_label input.medium,
.form-section .gform_wrapper.gform_validation_error .top_label select.medium{width:100%!important;}
.form-section .gform_wrapper li.gfield.gfield_error,
.form-section .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning{background-color:transparent;margin-bottom:5px!important;border-top:0px solid #C89797;border-bottom:0px solid #C89797;}
.form-section .gform_wrapper .field_description_below .gfield_description{padding-top:6px;}
input::-webkit-contacts-auto-fill-button{visibility:hidden;display:none!important;pointer-events:none;position:absolute;right:0;}

/* 11. 404 and Thankyou
---------------------------------------------------*/
.error-page{background-position:center;background-size:cover;background-repeat:no-repeat;}
.error-page .container{display:flex;min-height:100vh;align-items:center;padding-top:100px;padding-bottom:80px;}
.error-page .error-content{width:50%;padding-right:50px;}
.error-page h2{color:#000000;font-size:32px;line-height:40px;font-family:'MontserratSemiBold';margin:0 0 18px;}
.error-page p{color:#000000;font-size:14px;line-height:27px;font-family:'MontserratLight';margin:0 0 18px;}
.error-page ul.site-menu{margin:0 0 40px;}
.error-page ul.site-menu li{list-style:none;padding:0px;margin:0 0 12px;}
.error-page ul.site-menu li a{font-size:16px;line-height:normal;color:#000000;font-family:'MontserratBold';text-decoration:underline;}
.error-page ul.site-menu li a:hover{text-decoration:none;}

/*.error-page ul.app-list img{width:200px;}*/
.error-page .error-img{width:50%;text-align:center;}

/*Accordian */
.faq-accordian{padding:0 0 50px;}
.single-faq{margin-bottom:0;border-bottom:1px solid #d4d4d4;overflow:hidden;text-align:left;}
.single-faq > a{font-family:'MontserratSemiBold';font-size:18px;line-height:28px;color:#000000;padding:22px 32px 22px 0px;position:relative;text-decoration:none;display:block;width:100%}
.single-faq > a:hover{color:#000000;}
.faq-content{padding:0px 30px 10px 0px;}
.single-faq .faq-content{display:none;}
.faq-content li{display:block;}
.single-faq > a::after{content:"\e874";height:20px;position:absolute;right:10px;top:30px;width:20px;transition:0.4s all;-moz-transition:0.4s all;-ms-transition:0.4s all;-o-transition:0.4s all;-webkit-transition:0.4s all;font-family:'Linearicons-Free';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;}
.single-faq.active > a::after{transform:rotate(180deg);}
.accordian h2{font-family:'MontserratSemiBold';font-size:20px;line-height:28px;color:#000000;margin:0 0 15px;}
.faq-content p{color:#828282;font-size:13px;line-height:26px;margin:0;}

/* Tab */
ul.tabs{margin:0;padding:0;list-style:none;border-bottom:1px solid #d4d4d4;width:100%;display:flex;flex-wrap:wrap;height:35px;}
ul.tabs li{margin:0;cursor:pointer;padding:2px 21px;border-top:1px solid #d4d4d4;border-left:1px solid #d4d4d4;border-bottom:1px solid #d4d4d4;background-color:#fcac35;color:#ffffff;overflow:hidden;position:relative;height:35px;font-family:'MontserratRegular';}
.tab_last{border-right:1px solid #d4d4d4;}
ul.tabs li:hover{background-color:transparent;color:#fcac35;}
ul.tabs li.active{background-color:#fff;color:#fcac35;border-bottom:1px solid #fff;display:block;}
.tab_container{border:1px solid #d4d4d4;border-top:none;clear:both;width:100%;background:#fff;overflow:auto;}
.tab_content{padding:20px;display:none;}
.tab_content h2{font-family:'MontserratSemiBold';font-size:18px;line-height:28px;color:#000000;margin:0 0 15px;}
.tab_content p{color:#828282;font-size:13px;line-height:26px;margin:0 0 15px;}
.tab_drawer_heading{display:none;}
.notfoundword p{text-align:center;font-size:13px;color:#000000;}
.arp-link-btn a{background: linear-gradient(135deg, #d9eef7 0%, #fbd4c3 100%);padding: 15px 30px;border-radius: 30px;color: #000; font-size: 18px;line-height: normal;    font-family: 'MontserratMedium';border: 2px solid transparent;}
.arp-link-btn a:hover{background:#fff;color:#fcac35;border: 2px solid #000;}
.page-template-landingpage section.inner-banner {min-height: 570px;}
.pulse {-webkit-animation-name: pulse;animation-name: pulse;-webkit-animation-duration: 3s;animation-duration: 3s;-webkit-animation-fill-mode: both;animation-fill-mode: both;animation-iteration-count: infinite;-webkit-animation-iteration-count: infinite;}
.recruiter-process-block {--auto-grid-min-size: 14rem;display: grid;grid-template-columns: repeat( auto-fill, minmax(var(--auto-grid-min-size), 1fr) );row-gap: 25px;padding-top: 0; text-align: center;}
.recruiter-process-block li{list-style: none;}
.recruiter-process-block li h4 {font-size: 16px; line-height: 28px;font-family: 'MontserratMedium'; color: #293039;margin: 0 0 10px;}
.recruiter-process-block li figure {width: 60px;margin: 5px auto 21px;font-size: 0px;padding: 0px;}
.recruiter-process-block li figure img {width: 100%;height: auto;}
.page-template-landingpage .recruiter .learn-more-btn {display: flex;max-width: 140px;justify-content: center;align-items: center;margin: 30px auto 0;}
.landing-banner {display: flex;align-items: center;flex-wrap: wrap;justify-content: space-between;
}
.landing-pera, .landing-img {width: 48%;}
.landing-img figure {width: 100%;}
.landing-img figure img {width: 100% !important; height:auto !important;}

/* landingpage css */
.custom-model-main, .custom-model-main2 {text-align: center;overflow: hidden;position: fixed;top: 0;right: 0;bottom: 0;left: 0;-webkit-overflow-scrolling: touch;outline: 0;opacity: 0;-webkit-transition: opacity 0.15s linear, z-index 0.15;-o-transition: opacity 0.15s linear, z-index 0.15;transition: opacity 0.15s linear, z-index 0.15;z-index: -1;overflow-x: hidden;overflow-y: auto;display: flex;align-items: center;}
.model-open {z-index: 99999;opacity: 1;overflow: hidden;}
.custom-model-inner {-webkit-transform: translate(0, -25%);-ms-transform: translate(0, -25%);transform: translate(0, -25%);-webkit-transition: -webkit-transform 0.3s ease-out;-o-transition: -o-transform 0.3s ease-out;transition: -webkit-transform 0.3s ease-out;-o-transition: transform 0.3s ease-out;transition: transform 0.3s ease-out;transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;display: inline-block;vertical-align: middle;width: 600px;margin: 30px auto;max-width: 97%;}
.custom-model-wrap {display: block;width: 100%;position: relative;background-color: #fff;border: 1px solid #999;border: 1px solid rgba(0, 0, 0, 0.2);border-radius: 6px;-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);background-clip: padding-box;outline: 0;text-align: left;padding: 30px 30px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;max-height: calc(600px - 70px);overflow-y: auto;border-radius: 12px;}
.model-open .custom-model-inner {-webkit-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0);position: relative;z-index: 999;}
.model-open .bg-overlay {background: rgba(0, 0, 0, 0.6);z-index: 99;}
.bg-overlay {background: rgba(0, 0, 0, 0);height: 100vh;width: 100%;position: fixed;left: 0;top: 0;right: 0;bottom: 0;z-index: 0;-webkit-transition: background 0.15s linear;-o-transition: background 0.15s linear;transition: background 0.15s linear;}
.close-btn {position: absolute;right: 0;top: -30px;cursor: pointer;z-index: 99;font-size: 30px;color: #fff;}
/* form css */

.page-template-landingpage .form-section {
	width: 100%;
	padding-left: 0px;
}
section.bottom-block .landing-banner .new-talent-text:nth-child(2) {
	margin-bottom: 0;
}
.pop-up-content-wrap .gfield_select {background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"%3E%3Cdefs%3E%3C/defs%3E%3Cg style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" %3E%3Cpath d="M 90 24.25 c 0 -0.896 -0.342 -1.792 -1.025 -2.475 c -1.366 -1.367 -3.583 -1.367 -4.949 0 L 45 60.8 L 5.975 21.775 c -1.367 -1.367 -3.583 -1.367 -4.95 0 c -1.366 1.367 -1.366 3.583 0 4.95 l 41.5 41.5 c 1.366 1.367 3.583 1.367 4.949 0 l 41.5 -41.5 C 89.658 26.042 90 25.146 90 24.25 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" /%3E%3C/g%3E%3C/svg%3E');background-size: 15px;background-repeat: no-repeat;background-position: 96%;padding: 14px 17px !important;border: none !important;border: 1px solid #d4d4d4 !important; color: #94a1ac;}
.gform_validation_errors {display: none !important;}
span.gfield_required.gfield_required_text {display: none !important;}
.gform_confirmation_message {color: green;}
.page-template-landingpage .gform_footer.top_label {
	display: flex;
	justify-content: center;
}
li.gchoice.gchoice_4_12_1 input {margin: 0 !important;}
li.gchoice.gchoice_4_12_1 {display: flex;align-items: center;gap: 10px;}
section.bottom-block {padding: 87px 0;}
.bottom-block .new-talent-text {padding: 0 30px;}
label#label_4_12_1 {font-size: 13px;}
.landingpage .container{max-width: 1100px;}
.landing-banner .landing-pera h1 {font-size: 38px;line-height: 50px;}
.landing-banner .landing-pera p {font-size: 18px;line-height: 35px;}
.landingpage .learn-more-btn {border-radius: 30px;font-size: 18px;}
.page-template-landingpage .heading-section h2 {font-size: 30px;line-height: 40px;}
.heading-section p {font-size: 16px;line-height: 27px;}
.page-template-landingpage .recruiter-process-block li figure {width: 75px;}
.page-template-landingpage .new-talent-img figure img {width: 100%;object-fit: cover;}
.page-template-landingpage .new-talent-img figure img {width: 100%;object-fit: cover;}
.page-template-landingpage .learn-more-btn span {top: 20px;}

.global-css h1 span, .global-css h2 span, .global-css h3 span, .global-css p span, .global-css p strong{
    color: #000 !important;
}

/*New css for social link*/
i.fab.fa-facebook-f::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,256,256' width='24px' height='24px'%3E%3Cg fill='%23000000' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(10.66667,10.66667)'%3E%3Cpath d='M17.525,9h-3.525v-2c0,-1.032 0.084,-1.682 1.563,-1.682h1.868v-3.18c-0.909,-0.094 -1.823,-0.14 -2.738,-0.138c-2.713,0 -4.693,1.657 -4.693,4.699v2.301h-3v4l3,-0.001v9.001h4v-9.003l3.066,-0.001z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	height: 20px;
	display: block;
	width: 20px;
	background-size:contain;
	background-repeat:no-repeat;   
}
i.fab.fa-facebook-f {
	margin-left: -2px;
}
ul.social-icon li a:hover i.fab.fa-facebook-f::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,256,256' width='24px' height='24px'%3E%3Cg fill='%23ffffff' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(10.66667,10.66667)'%3E%3Cpath d='M17.525,9h-3.525v-2c0,-1.032 0.084,-1.682 1.563,-1.682h1.868v-3.18c-0.909,-0.094 -1.823,-0.14 -2.738,-0.138c-2.713,0 -4.693,1.657 -4.693,4.699v2.301h-3v4l3,-0.001v9.001h4v-9.003l3.066,-0.001z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
i.fab.fa-instagram::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,256,256' width='32px' height='32px'%3E%3Cg fill='%23000000' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(8,8)'%3E%3Cpath d='M11.46875,5c-3.55078,0 -6.46875,2.91406 -6.46875,6.46875v9.0625c0,3.55078 2.91406,6.46875 6.46875,6.46875h9.0625c3.55078,0 6.46875,-2.91406 6.46875,-6.46875v-9.0625c0,-3.55078 -2.91406,-6.46875 -6.46875,-6.46875zM11.46875,7h9.0625c2.47266,0 4.46875,1.99609 4.46875,4.46875v9.0625c0,2.47266 -1.99609,4.46875 -4.46875,4.46875h-9.0625c-2.47266,0 -4.46875,-1.99609 -4.46875,-4.46875v-9.0625c0,-2.47266 1.99609,-4.46875 4.46875,-4.46875zM21.90625,9.1875c-0.50391,0 -0.90625,0.40234 -0.90625,0.90625c0,0.50391 0.40234,0.90625 0.90625,0.90625c0.50391,0 0.90625,-0.40234 0.90625,-0.90625c0,-0.50391 -0.40234,-0.90625 -0.90625,-0.90625zM16,10c-3.30078,0 -6,2.69922 -6,6c0,3.30078 2.69922,6 6,6c3.30078,0 6,-2.69922 6,-6c0,-3.30078 -2.69922,-6 -6,-6zM16,12c2.22266,0 4,1.77734 4,4c0,2.22266 -1.77734,4 -4,4c-2.22266,0 -4,-1.77734 -4,-4c0,-2.22266 1.77734,-4 4,-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	display: block;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
}

ul.social-icon li a:hover i.fab.fa-instagram::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,256,256' width='32px' height='32px'%3E%3Cg fill='%23ffffff' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(8,8)'%3E%3Cpath d='M11.46875,5c-3.55078,0 -6.46875,2.91406 -6.46875,6.46875v9.0625c0,3.55078 2.91406,6.46875 6.46875,6.46875h9.0625c3.55078,0 6.46875,-2.91406 6.46875,-6.46875v-9.0625c0,-3.55078 -2.91406,-6.46875 -6.46875,-6.46875zM11.46875,7h9.0625c2.47266,0 4.46875,1.99609 4.46875,4.46875v9.0625c0,2.47266 -1.99609,4.46875 -4.46875,4.46875h-9.0625c-2.47266,0 -4.46875,-1.99609 -4.46875,-4.46875v-9.0625c0,-2.47266 1.99609,-4.46875 4.46875,-4.46875zM21.90625,9.1875c-0.50391,0 -0.90625,0.40234 -0.90625,0.90625c0,0.50391 0.40234,0.90625 0.90625,0.90625c0.50391,0 0.90625,-0.40234 0.90625,-0.90625c0,-0.50391 -0.40234,-0.90625 -0.90625,-0.90625zM16,10c-3.30078,0 -6,2.69922 -6,6c0,3.30078 2.69922,6 6,6c3.30078,0 6,-2.69922 6,-6c0,-3.30078 -2.69922,-6 -6,-6zM16,12c2.22266,0 4,1.77734 4,4c0,2.22266 -1.77734,4 -4,4c-2.22266,0 -4,-1.77734 -4,-4c0,-2.22266 1.77734,-4 4,-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

ul.social-icon li a p{
	display:none
}
ul.social-icon li a{
	padding:0;
	display:flex;
	justify-content:center;
	align-items:center;

}
i.fab.fa-linkedin-in::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,256,256' width='48px' height='48px'%3E%3Cg fill='%23000000' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(5.33333,5.33333)'%3E%3Cpath d='M8.421,14h0.052v0c2.79,0 4.527,-2 4.527,-4.5c-0.052,-2.555 -1.737,-4.5 -4.474,-4.5c-2.737,0 -4.526,1.945 -4.526,4.5c0,2.5 1.736,4.5 4.421,4.5zM4,17h9v26h-9zM44,26.5c0,-5.247 -4.253,-9.5 -9.5,-9.5c-3.053,0 -5.762,1.446 -7.5,3.684v-3.684h-9v26h9v-15v0c0,-2.209 1.791,-4 4,-4c2.209,0 4,1.791 4,4v15h9c0,0 0,-15.045 0,-16.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	width: 15px;
	height: 15px;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
}
ul.social-icon li a:hover i.fab.fa-linkedin-in::before{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,256,256' width='48px' height='48px'%3E%3Cg fill='%23ffffff' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(5.33333,5.33333)'%3E%3Cpath d='M8.421,14h0.052v0c2.79,0 4.527,-2 4.527,-4.5c-0.052,-2.555 -1.737,-4.5 -4.474,-4.5c-2.737,0 -4.526,1.945 -4.526,4.5c0,2.5 1.736,4.5 4.421,4.5zM4,17h9v26h-9zM44,26.5c0,-5.247 -4.253,-9.5 -9.5,-9.5c-3.053,0 -5.762,1.446 -7.5,3.684v-3.684h-9v26h9v-15v0c0,-2.209 1.791,-4 4,-4c2.209,0 4,1.791 4,4v15h9c0,0 0,-15.045 0,-16.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


.new-talent-img figure {
    max-height:640px;
    height: 100%;
}
.new-talent-img ul li figure img{
    max-height:100%;
    height:100%;
}
.landing-img figure img {
    width: 100%;
    height: 500px;
    width: 500px;
}
ul.blog-list-inner li figure img{
	filter:opacity(1) !important;
}
.new-talent-text figure img, .new-talent-text figure img{
	max-width:100%;
}
/* form css end*/
/* landingpage css end*/

.testimonial-slider .slick-dots li.slick-active button {
    background-color: black;
    border-color: black;
}

.new-landing-age .left-content {
	width: 100%;
	padding: 15px 15px 35px 16px;
}

@media only screen and (max-width: 991px){
	section.bottom-block {
		padding: 80px 0;
	}
	.hero-content h1 {font-size: 38px;}
	.hero-grid {gap: 5px;}
	.social-media-links {
		left: 10px;
    	top: 500px;
	}
}
@media only screen and (max-width:767px){
	.landing-banner {flex-wrap: wrap;}
	.landing-pera, .landing-img {width: 100%;}
	.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label {font-size: 12px !important;line-height: 20px;}
	.custom-model-wrap {padding: 15px 15px;}
	.page-template-landingpage .heading-section h2 {font-size: 24px;line-height: 30px;}
	.hero-content h1 {font-size: 30px;}
	.dm-width-a {max-width: 200px;width: 200px;}
	.dm-device-a {height: 425px;}
	.screen-a {top: 14px;}
	.hero-grid .iphone-images img {height: 370px;}
	.recruiter {background-position: 0% bottom !important;}
	.right-half-circle:before {top: calc(17% - 80px);height: 60px;width: 60px;border: 40px solid #fcac35;}
	.client-info-box {padding: 15px;}
	.curve-bg {padding-top: 120px !important;}
}
/* @media screen and (min-width: 642px) {
	.right-img, .mobile-slider{display: none;}
	
} */
@media only screen and (max-width: 641px){
	section.bottom-block {
		padding: 60px 0;
	}
	.hero-grid {display: none;}
	.recruiter {background-position: 76% bottom !important;}
	.desktop-slider,.testimonial-slider-common .slick-dots li button:before{display: none;}
	.testimonial-slider-common .slick-dots li:last-child button {margin-left: 3px;}
	
	.new-landing-age .hero-grid, .mobile-slider {display: block !important;}
	.new-landing-age .hero-grid {grid-template-columns: repeat(1, minmax(0px, 1fr));}
	
	
}	
@media only screen and (max-width: 479px){
	section.bottom-block {
		padding: 50px 0;
	}
	.hero-content h1 {font-size: 26px;}
	.hero-content p {font-size: 12px; line-height: 20px;}
	.testimonial-grid {grid-template-columns: repeat(1, minmax(0px, 1fr));}
}
@media only screen and (max-width: 425px){
	.social-media-links,
	.left-circle-an, 
	.right-circle-an,
	.left-half-circle:before,
	.right-half-circle:before {
		display:none;
	}
	.field_sublabel_below iframe {
		transform: scale(0.7) translate(-30px, 9px);
	}
}

@-webkit-keyframes pulse {
	0% { -webkit-transform: scale(1); }
	50% { -webkit-transform: scale(1.05); }
	100% { -webkit-transform: scale(1); }
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05);}
	100% { transform: scale(1); }
}

/*responsive*/

@media only screen and (min-width:2100px){
	.home-banner{background-position:center bottom 18%;}
}
@media only screen and (min-width:1600px){

	/* Homepage */
	.lightboxright iframe{min-height:420px;}
	header{padding:41px 0;}
	header .header-menu .navbar{padding-right:50px;}
	.learn-more-btn span{top:20px;}
	.home-banner{padding:190px 0 0;}
	.heading-section{padding:0 80px 50px;}
	.recruiter-process div.slick-slide{padding:0 55px;}
	.video-section{margin-top:160px;padding-top:80px;padding-bottom:80px;}
	.open-video{min-height:450px;margin-top:-180px;margin-bottom:100px;}
	.new-talent{padding:130px 0 30px;}
	.new-talent-text{width:50%;padding-right:230px;padding-left:136px;padding-top:0px;}
	.new-talent-text figure{margin:0 0 28px;}
	.new-talent.new-career{padding-bottom:130px;}
	.newsletter h2{margin:0 0 20px;}
	.newsletter .mc4wp-form{margin-top:30px;margin-bottom:50px;}
	.newsletter .email-address input{min-height:60px;}
	.newsletter .submit-btn input{padding:12px 38px}
	.newsletter .submit-btn{right:7px;top:6px;}
	ul.social-icon{margin:50px 0 0;}
	ul.social-icon li{margin:0px 12px;}
	.blog-sidebar{padding-left:105px;}
	ul.blog-list-inner li h2{font-size:22px;line-height:34px;}
	.pagination ul li.prev{margin-right:80px;}
	.pagination ul li.next a,
	.pagination ul li.prev a{padding:16px 37px;min-width:145px;}
	.pagination ul li.next{margin-left:80px;}
	.blog-single{margin:0 0 115px;}
	.global-css{padding:110px 0 110px;}
	.global-css h1,
	.global-css h2,
	.global-css h3{font-size:22px;line-height:30px;margin:0 0 20px;}
	.global-css h4,
	.global-css h5,
	.global-css h6{font-size:20px;line-height:28px;margin:0 0 20px;}
	.global-css p{margin:0 0 40px;}
	.form-section input,
	.form-section textarea{padding:14px 17px!important;}
	.map iframe{min-height:365px;}
	.error-page .error-content{padding-right:80px;}
	.error-page ul.site-menu{margin:0 0 50px;}
	.error-page ul.site-menu li{margin:0 0 15px;}

	.form-section .gform_wrapper .gform_footer input.button,
	.form-section .gform_wrapper .gform_footer input[type=submit],
	.form-section .gform_wrapper .gform_page_footer input.button,
	.form-section .gform_wrapper .gform_page_footer input[type=submit] {font-size: 14px !important;padding: 14px 50px 12px 30px !important;}
}

@media only screen and (max-width:1299px){
	.container-fluid{padding-left:20px;padding-right:20px;}
}
@media only screen and (max-width:1199px){
	header .header-menu .navbar ul li{padding:8px 14px;}
	header .header-menu .navbar{padding-right:30px;}
	ul.app-list li a img{max-width:210px;max-height:60px;}
	ul.app-list li:last-child{margin-right:0px;}
	.home-banner .left-content{padding:50px 10px 0 0px;}
	.home-banner .right-img figure img{width:100%;height:auto;}
	.recruiter-process div.slick-slide{padding:0 40px;}
	.open-video{min-height:450px;}
	.footer-left{width:100%;justify-content:space-between;margin-bottom:20px;}
	.footer-right{width:100%;}
	.footer-right ul{justify-content:center;}
	.new-talent-text{padding-right:50px;padding-left:50px;}
	.new-talent.new-career{padding-bottom:100px;}

	/* Blogs */
	.blog-list{width:62%;}
	.blog-sidebar{width:38%;padding-left:50px;}
	.pagination ul li.prev{margin-right:30px;}
	.pagination ul li.next{margin-left:30px;}
	.pagination ul li.next a{padding:16px 20px;min-width:125px;}
	.pagination ul li{margin:0 12px 12px;}
	.blog-list-main .container{padding:0 30px;}
	.blog-video-bg{margin:40px 0 50px;min-height:340px;}
	.footer-tag h5{padding:0px 10px 0px 0px;font-size:15px;}
	.footer-tag ul li{margin:0 5px 5px;}
	.social-tag{padding:20px 10px 20px 0;}
	.blog-single{margin:0 0 50px;}
	.global-css{padding:130px 0 100px;}
	.error-page .container,
	.contact-form .container,
	.global-css .container{padding:0 30px;}
	.contact-form .map-section{padding-right:15px;}
	.form-section{padding-left:40px;}
	.blog-single-content iframe{min-height:315px;}
	.testimonial {padding: 100px 0;}
}

@media only screen and (max-width: 761px), (max-device-width: 1023px) and (min-device-width: 768px){
	body .gform_wrapper ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {margin-top: 0;}
}



@media only screen and (min-width:992px){
	.mobile-menu{display:none!important;}
	header .header-menu .nav-icon{display:none;}
}
@media only screen and (max-width:991px){
	header .header-menu .nav-icon{display:inline-block;cursor:pointer;margin-left:20px;}
	.bar1,
	.bar2,
	.bar3{width:35px;height:5px;background-color:#000;margin:6px 0;transition:0.4s;border-radius:25px;}
	.change-icon .bar1{-webkit-transform:rotate(-45deg) translate(-8px,7px);transform:rotate(-45deg) translate(-8px,7px);background-color:#000;}
	.change-icon .bar2{opacity:0;background-color:#FFFFFF;}
	.change-icon .bar3{-webkit-transform:rotate(45deg) translate(-8px,-8px);transform:rotate(45deg) translate(-8px,-8px);background-color:#000;}
	.mobile-menu{display:none;background:#fbd4c3;padding:0px;position:fixed;top:0;width:100%;height:100%;right:-100%;box-sizing:border-box;padding-top:65px;padding-bottom:65px;z-index:999999;-webkit-transition:all 0.5s ease;-o-transition:all 0.5s ease;transition:all 0.5s ease;}
	.mobile-menu ul{display:block;padding:0px 0 0;}
	.mobile-menu ul li{border-bottom:1px solid rgba(255,255,255,0.4);margin:0;padding:0;list-style:none;position:relative;}
	.mobile-menu ul li:last-child{border-bottom:0px solid rgba(255,255,255,0.4);}
	.mobile-menu ul li a{padding:5px 25px;display:block;color:#000;font-size:14px;line-height:27px;font-family:'MontserratRegular';}
	.mobile-menu ul li ul{display:none;border-top:1px solid rgba(255,255,255,0.4);}
	.show-nav{height:100vh;overflow-y:auto;opacity:1;visibility:visible;pointer-events:auto;}
	.mobile-menu ul li li{padding-left:15px;}
	.menu_sub:after{content:"\e870";font-family:'Linearicons-Free';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;color:#ffffff;transform:rotate(45deg);position:absolute;right:15px;top:2px;padding:11px 5px;transition:all 0.3s ease;}
	.menu_sub.open:after{transform:rotate(0deg);}
	.mobile-menu ul li ul .menu_sub:after{display:none;}
	.mobile-menu.show-nav{right:0;}
	header .header-menu .navbar{display:none;}
	.change-icon{position:absolute;right:20px;top:20px;}
	.home-banner .left-content h1{margin:0 0 20px;}
	.home-banner .left-content p{margin:0 0 40px;}
	ul.app-list li a img{max-width:150px;max-height:45px;}
	.heading-section{padding:0 50px 30px;}
	.video-section{margin-top:120px;padding-top:90px;padding-bottom:90px;}
	.open-video{min-height:350px;}
	.open-video .html5lightbox img{max-width:80px;}
	.new-talent-img,
	.new-talent-text{width:100% !important;margin-bottom:50px;}
	.new-talent{padding:50px 0 30px !important;}
	.new-talent.new-career{padding-bottom:50px;}
	.new-talent.new-career .container-fluid{flex-direction:column-reverse;}
	.new-talent-text{padding-right:15px;padding-left:15px;}
	.testimonial{padding:100px 0;}
	.testimonial-slider figure{margin:0 auto 25px;}
	.testimonial-slider .slick-dots{margin:25px 0 0;}
	.newsletter{padding:80px 0;}
	.newsletter .container{max-width:500px;}
	.screen{bottom:50px;}
	.blog-list{width:100%;}
	.blog-sidebar{width:100%;padding:50px 0px 0px;}
	.blog-sidebar .sidebar-latest-post ul li .latest-img{width:auto;}
	.blog-sidebar .sidebar-latest-post ul li .latest-content{width:auto;padding-left:20px;}
	.blog-sidebar .sidebar-latest-post ul li{align-items:center;}
	.global-css{padding:100px 0 60px;}
	.contact-form .container{flex-direction:column;}
	.form-section,
	.contact-form .map-section{width:100%;padding:0px;}
	.contact-form .map-section{margin:0 0 50px;}
	.error-page ul.site-menu{margin:0 0 40px;}
	.error-page .error-content{padding-right:15px;}
	header .header-menu .navbar ul li:hover ul{display:none;}
	.faq-content p{margin:0px;}
	#html5-close {top: -45px !important;right:0px !important}
}
@media only screen and (max-width:767px){
	header{padding:20px 0;}
	.home-banner .left-content{width:100%;padding:10px 0 50px 0px;text-align:center;}
	.home-banner .right-img{width:100%;text-align:center;}
	.home-banner .right-img figure img{max-width:100%;height:auto;width:auto;margin:0px auto;}
	ul.app-list{justify-content:center;}
	ul.app-list li a img{max-width:220px;max-height:60px;}
	.home-banner{padding:150px 0 0;}
	.recruiter-process div.slick-slide{padding:0 20px;}
	.video-section h5{width:100%;text-align:center;margin-bottom:30px;}
	.video-section .user-list{justify-content:center;padding:0px;}
	footer .container-fluid{justify-content:center;}
	footer{padding:20px 0;}
	.footer-left{justify-content:center;}
	.footer-left p{display:none;}
	.footer-left.mobile-footer{display:flex;margin:0px;}
	.footer-left.mobile-footer p{display:block;}
	.footer-logo{margin:0px;}
	.footer-right{margin:0px 0px 10px;}
	.footer-right ul li{padding:0 12px 10px;}
	.testimonial{padding:80px 0;}
	.dm-width{margin:0 auto;}
	ul.blog-list-inner li .blog-content{padding:20px 40px;}
	.error-img img{width:100%;height:auto;}
	.error-page .error-content{width:65%;}
	.error-page .error-img{width:35%;}
	.error-content ul.app-list{justify-content:flex-start;}
	.error-content ul.app-list li a img{max-width:135px;max-height:40px;}
	.error-page .container{min-height:550px;padding-top:100px;}
	.single-faq > a{font-size:18px;line-height:28px;padding:18px 32px 18px 0px;}
	.single-faq > a::after{top:23px;}
	header.sticky{padding:5px 0;}

	.blog-sidebar .sidebar-latest-post ul li .latest-content {width: 84%;}
	.blog-sidebar .sidebar-latest-post ul li .latest-img {width: 16%;}
	.landing-pera, .landing-img {width: 100%;}
}
@media only screen and (max-width:641px){
	body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]){line-height:unset;min-height:unset;}
	.form-section .gform_wrapper .top_label input.medium,
	.form-section .gform_wrapper .top_label select.medium{width:100%;}
	.form-section .gform_wrapper .gform_footer input.button,
	.form-section .gform_wrapper .gform_footer input[type=submit],
	.form-section .gform_wrapper .gform_page_footer input.button,
	.form-section .gform_wrapper .gform_page_footer input[type=submit]{width:auto;}
	.form-section .gform_wrapper .top_label li.gfield.gf_left_half{padding-right:0px;}
	.form-section .gform_wrapper .top_label li.gfield.gf_left_half,
	.form-section .gform_wrapper .top_label li.gfield.gf_right_half{width:100%;}
	.form-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
	.form-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {max-width: 100%!important;padding-right: 0;}
	.form-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half {padding-right: 0px!important;}


	.map iframe{min-height:310px;}
	header{padding:20px 0;}
	.bar1,
	.bar2,
	.bar3{width:30px;height:3px;margin:5px 0;}
	.change-icon .bar3{-webkit-transform:rotate(45deg) translate(-7px,-9px);transform:rotate(45deg) translate(-7px,-9px);}
	.change-icon .bar1{-webkit-transform:rotate(-45deg) translate(-3px,4px);transform:rotate(-45deg) translate(-3px,4px);}
	header .header-menu .download-btn a{font-size:14px;padding:10px 16px;}
	header .header-menu .nav-icon{margin-left:15px;}
	.recruiter{padding:40px 0;}
	.heading-section{padding:0 0px 30px;}
	.recruiter-process div.slick-slide figure{margin:5px auto 30px;}
	.video-section{margin-top:120px;padding-top:50px;padding-bottom:50px;}
	.open-video{margin-top:-150px;margin-bottom:60px;min-height:250px;}
	.new-talent-text{padding-right:15px;padding-left:15px;}
	.new-talent-text figure{margin:0 0 20px;}
	.new-talent-text h3{margin:0 0 12px;}
	.new-talent-text h4{font-size:17px;}
	.learn-more-btn{font-size:12px;padding:10px 40px 10px 20px;}
	.learn-more-btn span{right:20px;top:13px;}
	.newsletter{padding:60px 0;}

	.newsletter .mc4wp-form{margin-top:40px;margin-bottom:60px;}
	ul.social-icon{margin:50px 0 0;}
	.inner-banner h1{font-size:24px;line-height:40px;}
	.inner-banner{padding:160px 0 175px;}
	ul.blog-list-inner li .blog-content{padding:20px 30px;}
	ul.blog-list-inner li h2{font-size:18px;line-height:36px;}
	.pagination ul{justify-content:flex-start;}
	.pagination ul li.next a,
	.pagination ul li.prev a{padding:12px 24px;min-width:110px;}
	.pagination ul li{margin:0 10px 10px;}
	.pagination ul li.prev{margin-right:20px;}
	.pagination ul li.next{margin-left:20px;}
	.blog-sidebar .sidebar-latest-post ul li .latest-img{width:20%;}
	.blog-sidebar .sidebar-latest-post ul li .latest-content{width:80%;padding-left:20px;}
	.blog-video-bg{margin:30px 0 30px;min-height:300px;}
	.blog-video-bg a img{width:80px;}
	ul.blog-social-icon{width:100%;margin-bottom:10px;justify-content:center;}
	ul.blog-social-icon li{margin:0 3px 0 3px;}
	.footer-tag{width:100%;}
	.footer-tag ul li a{line-height:26px;border-radius:2px;padding:1px 9px;}
	.comment-section{margin:40px 0 22px;}
	.comment-content-new h3 a,.comment-content-new h3,.commant-content h3{font-size:17px;margin:0 0 8px;}
	.comment-content-new h3 a{margin:0px;}
	.commant-content h5{font-size:13px;margin:0 0 10px;}
	.comment-content-new,.commant-content{width:75%;padding:10px 0 0 30px;}
	.comment-author,.comment-section figure{width:25%;}
	.next-prev-blog ul li a{padding:10px 24px;}
	.next-prev-blog ul li{margin:0 20px 0 0;}
	.next-prev-blog ul{justify-content:center;}
	.blog-video-bg{max-width:100%;}
	.error-page .container{flex-direction:column-reverse;padding-top:120px;padding-bottom:50px;}
	.error-page .error-content{width:100%;margin-top:50px;text-align:center;}
	.error-content ul.app-list{justify-content:center;}
	/*.error-page h2{font-size:40px;line-height:42px;margin:0 0 15px;}*/
	.error-page .error-img{width:100%;}
	.error-page .error-img figure{max-width:230px;margin:0 auto;}
	.blog-single-content iframe{min-height:230px;}

	.comment-form .form-submit input{padding: 10px 24px;}
}
@media only screen and (max-width:479px){
	header .logo a{max-width:130px;}
	header .logo a img{width:100%;height:auto;}
	.bar1,
	.bar2,
	.bar3{width:26px;height:2px;margin:6px 0;}
	header .header-menu .download-btn a{font-size:13px;padding:6px 12px;border:1px solid #000;}
	.home-banner{padding:120px 0 0;}
	.comment-content-new p,.commant-content p,
	.pagination ul li .current,
	.pagination ul li a,
	.comment-form label,
	.blog-sidebar .sidebar-latest-post ul li .latest-content a,
	.blog-sidebar .sidebar-categories ul li a,
	.inner-banner p,
	.error-page ul.site-menu li a,
	.error-page p,
	.contact-form p,
	.global-css p,
	.blog-single-content blockquote,
	.blog-single-content blockquote p,
	.blog-single-content,
	.blog-single-content p,
	ul.blog-list-inner li p,
	.newsletter p,
	.testimonial-slider p,
	.new-talent-text p,
	.recruiter-process p,
	.heading-section p,
	.home-banner .left-content p,
	.single-faq > a,
	.blog-single .author-date span{line-height:26px;font-size:13px;}
	.home-banner .left-content h1{margin:0 0 15px;}
	.home-banner .left-content p{margin:0 0 25px;}
	ul.app-list li a img{max-width:140px;max-height:42px;}
	.video-section h5{font-size:20px;line-height:30px;margin-bottom:20px;}
	.open-video{margin-top:-100px;margin-bottom:40px;min-height:200px;}
	.open-video .html5lightbox img{max-width:60px;}
	.video-section{margin-top:50px;}
	.footer-right ul li{width:100%;padding:0;margin:0 0 10px;text-align:center;}
	.footer-right ul{justify-content:flex-start;}
	.footer-left p{text-align:center;line-height:30px;}
	.new-talent-text{text-align:center;}
	.testimonial{padding:60px 0;}
	.newsletter h2{font-size:18px;line-height:30px;}
	.newsletter{padding:50px 0;}
	.newsletter .submit-btn input{font-size:14px;padding:9px 29px 9px 13px;    background-position: center right 15px;}
	.newsletter .submit-btn input:hover {background-position: center right 10px;}
	.newsletter .email-address input{min-height:50px;padding:5px 115px 6px 20px;font-size:14px;}
	.newsletter .submit-btn{right:5px;top:5px;}
	.newsletter .mc4wp-form{margin-top:30px;margin-bottom:40px;}
	ul.social-icon{margin:40px 0 0;}
	ul.social-icon li a{padding:6px 5px;font-size:16px;width:30px;height:30px;}
	ul.social-icon li{margin:0px 10px;}
	.home-banner .right-img figure img{border-radius:20px;}
	.screen{top:15px;}
	.inner-banner{padding:110px 0 130px;}

	ul.blog-list-inner li h2{font-size:16px;line-height:30px;}
	ul.blog-list-inner li{margin:0 0 50px;}
	.blog-sidebar .sidebar-latest-post ul li .latest-content{width:73%;padding-left:20px;}
	.blog-sidebar .sidebar-latest-post ul li .latest-img{width:27%;}
	.blog-list-main{padding:60px 0 60px;}

	.blog-sidebar .sidebar-categories ul li a{padding:10px 0 10px;}
	.blog-sidebar h3{margin:0 0 20px;}
	.blog-single h2{font-size:18px;}

	.blog-single .author-date{margin:0 0 30px;}
	.blog-single-img{margin:0 0 30px;}
	.blog-single-content blockquote{margin:30px 0 30px 0;}
	.blog-video-bg{min-height:200px;}
	.blog-video-bg a img{max-width:60px;}
	.next-prev-blog ul li{margin:0 0 15px;}
	.next-prev-blog ul li a{min-width:170px;text-align:center;}
	.next-prev-blog ul{flex-direction:column;align-items:center;}
	.blog-single{margin:0;}
	.footer-tag{flex-direction:column;justify-content:center;align-items:center;text-align:center;}
	.footer-tag ul{justify-content:center;}
	.footer-tag ul li{margin:0 5px 5px;}
	.footer-tag h5{margin:0 0 10px;}
	#comments{font-size:18px;line-height:26px;}
	.global-css{padding:50px 0 40px;}
	.global-css h1,
	.global-css h2,
	.global-css h3{font-size:18px;line-height:32px;margin:0 0 15px;}
	.global-css h4,
	.global-css h5,
	.global-css h6{font-size:16px;line-height:30px;margin:0 0 15px;}
	.global-css p{margin:0 0 25px;}
	.contact-form h2{font-size:18px;line-height:32px;}
	.contact-form{padding:50px 0 40px;}
	.error-page .error-img figure{max-width:160px;}
	.error-page .error-content{margin-top:40px;}
	.error-page ul.site-menu li{margin:0 0 5px;}
	.error-page ul.site-menu{margin:0 0 20px;}
	.error-page h2{font-size:26px;line-height:30px;}
	.inner-banner h1{font-size:22px;line-height:30px;margin:0 0 10px;}
	{padding:15px 35px 15px 0px;}
	ul.tabs{display:none;}
	.tab_drawer_heading{background-color:#fcac35;color:#fff!important;border-top:1px solid #d4d4d4;margin:0;padding:5px 20px;display:block;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0px;}
	.d_active{background-color:#000;color:#fff;}
	.tab_container h3{margin:0px!important;font-size:18px;}
	.tab_content{padding:15px;}
	.tab_content p{margin:0 0 15px!important;}
	.new-talent.new-career{padding-top:0;}
	.blog-single-content iframe{min-height:160px;}

	.form-section .gform_wrapper .gform_footer input.button, .form-section .gform_wrapper .gform_footer input[type=submit], .form-section .gform_wrapper .gform_page_footer input.button, .form-section .gform_wrapper .gform_page_footer input[type=submit] {padding:12px 45px 12px 20px !important;}
	.form-section .gform_wrapper .gform_footer input.button, .form-section .gform_wrapper .gform_footer input[type=submit], .form-section .gform_wrapper .gform_page_footer input.button, .form-section .gform_wrapper .gform_page_footer input[type=submit]{background-position: center right 25px;}
	.form-section .gform_wrapper .gform_footer input.button:hover, .form-section .gform_wrapper .gform_footer input[type=submit]:hover, .form-section .gform_wrapper .gform_page_footer input.button:hover, .form-section .gform_wrapper .gform_page_footer input[type=submit]:hover {background-position: center right 20px;}
	.comment-form input, .comment-form textarea{padding: 10px 10px;}
	.map iframe {min-height: 240px;}



}
@media only screen and (max-width:359px){
	.bar1,
	.bar2,
	.bar3{width:22px;height:1px;margin:5px 0;}
	.mobile-menu ul li a{padding:4px 20px;}
	.mobile-menu{padding-top:50px;}
	.change-icon .bar1{-webkit-transform:rotate(-45deg) translate(-3px,2px);transform:rotate(-45deg) translate(-3px,2px);}
	.change-icon .bar3{-webkit-transform:rotate(45deg) translate(-7px,-6px);transform:rotate(45deg) translate(-7px,-6px);}
	header .header-menu .download-btn a{font-size:9px;padding:5px 7px;}
	header .header-menu .nav-icon{margin-left:10px;}
	.menu_sub:after{right:10px;top:0;padding:9px 5px;}
	ul.app-list li{margin-right:15px;}
	ul.app-list li a img{max-width:110px;max-height:30px;}
	.home-banner{padding:100px 0 0;}
	.recruiter-process div.slick-slide{padding:0;}
	.recruiter-process div.slick-slide figure{margin:5px auto 25px;}
	.video-section h5{font-size:16px;line-height:26px;}
	.open-video{margin-bottom:30px;min-height:150px;}
	.open-video .html5lightbox img{max-width:40px;}
	.video-section{padding-bottom:30px;}
	.footer-right ul{justify-content:center;}
	.footer-right ul li{width:100%;text-align:center;}
	.new-talent-text{padding-right:0;padding-left:0;}
	.new-talent-img ul li{width:100%;margin-bottom:20px;}
	.new-talent{padding:50px 0 30px;}
	.newsletter .email-address input{min-height:44px;padding:5px 90px 5px 15px;font-size:12px;}
	.newsletter .submit-btn input{font-size:12px;padding:8px 24px 7px 10px;background-position:center right 12px;    background-size:5.5px;}
	ul.blog-list-inner li .blog-content{padding:15px 20px;}
	ul.blog-list-inner li .author-date span{display:block;}
	.blog-video-bg{min-height:150px;}
	.blog-video-bg a img{max-width:40px;}
	.error-page .container{padding-top:100px;padding-left:20px;padding-right:20px;}
	.error-page h2{font-size:24px;line-height:30px;}
	.error-content ul.app-list li a img{max-width:110px;max-height:30px;}
	.error-page .error-img figure{max-width:140px;}
	.comment-content-new,.commant-content{width:100%;padding:15px 0px;}
	.comment-author,.comment-section figure{width:100%;}
	.inner-banner{padding:100px 0 120px;}
	.single-faq > a{padding:12px 32px 12px 0px;}
}





.custom-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* General Styles */
.accordion-item {
    margin-bottom: 25px;
    border-radius: 15px; /* Rounded corners */
    overflow: hidden;
	box-shadow: 0px 4px 5px 1px #edeff2;
}

/* Button styling */
.accordion-header {
    width: 100%;
	background: #f6f9fd;
    color: #000;
    text-align: left;
    padding: 20px 20px 20px 65px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
	font-size: 16px;
    line-height: 28px;
    font-family: 'MontserratMedium';
	color: #293039;
}
.accordion-header.active {
	background: transparent;
}   

/* Default Arrow */
.accordion-header::after {
	content: '\002B';
    font-size: 35px;
    position: absolute;
    font-family: 'MontserratLight';
    left: 25px;
    top: 20px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on active */
.accordion-header.active::after {
    content: '\2212'; /* Flips the arrow */
}

/* Hide content by default */
.accordion-content {
    display: none;
    padding: 10px 15px 30px 65px;
    background-color: #fff;
	font-size: 13px;
    line-height: 22px;
    color: #585858;
}

h3.section-title {
    text-align: center;
	font-size:22px;
}
p.section-description {
    text-align: center;
}
.accordion-content {
    display: none; /* Hide all accordion content initially */
}

.new-landing .container-fluid {
	max-width: 1350px;
}

/*New css 08-15-2025*/
section.home-banner, section.video-section, section#news-letter, section.inner-banner.landingpage, section.inner-banner, section.error-page {
    background: linear-gradient(135deg, #d9eef7 0%, #fbd4c3 100%);
}

section.contact-form .form-section .gform_wrapper .gform_footer input.button, .form-section .gform_wrapper .gform_footer input[type=submit] {
    border-radius: 30px;
    color: #000;
    font-size: 15px !important;
    border: none;
    transition: all .3s ease;

    /* Put image first, then gradient */
    background: 
        url(/wp-content/uploads/2025/09/black-arrow1.png) no-repeat center right 16px,
        linear-gradient(135deg, #d9eef7 0%, #fbd4c3 100%);
    background-size: 6px, cover;
}

section.contact-form .form-section .gform_wrapper .gform_footer input.button:hover, .form-section .gform_wrapper .gform_footer input[type=submit]:hover {
    background-position: right 10px center, center;
}


/* Outer wrapper for scroll */
.landing-img .gform_wrapper {
  max-width: 100%;          /* Adjust width */
  margin: 0 auto;
  border-radius: 6px;
}

/* .landing-img .gform_wrapper form {
  max-height: 500px;       
  overflow-y: auto;          
  padding-right: 8px;        
}
 */
/* Scrollbar (optional) */
.landing-img .gform_wrapper form::-webkit-scrollbar {
  width: 8px;
}
.landing-img .gform_wrapper form::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 4px;
}
.landing-img .gform_wrapper form::-webkit-scrollbar-thumb {
  background: #ffa800;
  border-radius: 4px;
}
.landing-img .gform_wrapper form::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Headings */
.landing-img .gform_wrapper form h3.gform_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}
.landing-img .gform_wrapper form p, .landing-img .gform_wrapper p{
  color:#000;
}
/* Labels */
.landing-img .gform_wrapper form .gfield_label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #000;
  display: block;
}
.landing-img .gform_wrapper .gform_heading h3 , .landing-img .gform_wrapper .gform_heading h2{
    display: none;
}

/* Inputs / selects */
.landing-img .gform_wrapper form input[type="text"],
.landing-img .gform_wrapper form input[type="email"],
.landing-img .gform_wrapper form input[type="url"],
.landing-img .gform_wrapper form input[type="tel"],
.landing-img .gform_wrapper form select,
.landing-img .gform_wrapper form textarea {
  width: 100%;
  padding: 14px 17px !important;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 15px;
  color: #333;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.landing-img .gform_wrapper form input:focus,
.landing-img .gform_wrapper form select:focus,
.landing-img .gform_wrapper form textarea:focus {
  border-color: #ffa800;
  outline: none;
}

/* Checkbox */
.landing-img .gform_wrapper form .gfield_checkbox label {
  font-size: 14px;
  color: #000;
}

/* Submit button */
.landing-img .gform_wrapper form .gform_button {
/*   background-color: #ffa800; */
  border-radius: 20px;
/*   border: 1px solid #ffa800; */
  color: #000;
  font-size: 12px;
  line-height: normal;
  padding: 10px 30px 10px 20px;
  font-family: 'MontserratSemiBold';
  letter-spacing: .5px;
  transition: background .3s ease;
}

/* .page-id-1643 .inner-banner, .page-id-2616 .inner-banner{
    padding: 137px 0 355px;
} */
.page-id-2616 section#news-letter {
    display: none;
}

.page-id-2616 section.bottom-block {
    display: none;
}
/* .page-id-1643 .inner-banner .landing-img, .page-id-2616 .inner-banner .landing-img{
border: 1px solid #e1e1e1;
background: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
} */
.landing-img .gform_wrapper form ul li {
    margin-top: 0 !important;
}

.landing-img .gform_wrapper form ul li input, .landing-img .gform_wrapper form ul li select, .landing-img .gform_wrapper form ul li p {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

/* .landing-img .gform_wrapper .gform_heading h3, .landing-img .gform_wrapper .gform_heading h2, .landing-img .gform_wrapper .gform_heading p.gform_description, .landing-img .gform_wrapper form ul li p, .landing-img .gform_wrapper form ul li .gfield_description, .landing-img .gform_wrapper form ul li ul.gfield_checkbox li label, .landing-img .gform_wrapper form ul li label{
    color:#fff !important;
} */

.page-id-1643 .inner-banner .landing-img .gform_confirmation_message, .page-id-2616 .inner-banner .landing-img .gform_confirmation_message {
    padding: 50px;
}
@media only screen and (max-width: 767px) {
    .page-id-1643 .inner-banner .landing-img, .page-id-2616 .inner-banner .landing-img {
        padding-top: 40px;
    }
}
@media only screen and (max-width: 375px) {
.landing-img .gform_wrapper
 {
    padding: 10px;
}
}
