@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --marquee-width: 100vw;
	--offset: 5vw;
	--move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
}

body{
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 300;
    background: #1D1D1D;
}
a{
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
a,a:hover{
    text-decoration: none;
}
p{
    font-size: 18px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
}
p:last-child{
    margin-bottom: 0;
}
h1, h2{
    font-family: "Anybody", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    line-height: 1;
    margin: 0;
}
h1{
    font-size: 140px;
}

.main-wrapper{
    width: 100%;
}
.container{
    max-width: 1224px;
    width: 100%;
}
.cta-btn{
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
}
.cta-btn > svg{
    margin-right: 16px;
}

header{
    padding: 48px;
    width: 100%;
    position: fixed;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.grecaptcha-badge {
    visibility: hidden !important;
}
.error {
    color: rgb(197, 43, 43);
}

.pointer-events-none {
    pointer-events: none;
}

.hd-right{
    display: flex;
    align-items: center;
}
.hd-right .time-text,
.hd-right #time{
    font-size: 14px;
    color: #737373;
}
.hd-right .time-text{
    margin-right: 48px;
}
.hero-section{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.hero-section .lines{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: -1;
}
.hero-section .lines .line{
    position: relative;
    width: 1px;
    height: 100%;
    background: #292929;
    overflow: hidden;
}
.hero-section .lines .line::after{
    content: "";
    display: block;
    position: absolute;
    height: 10vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255,255,255,.4) 100%, rgba(255,255,255,.1) 50%);
    -webkit-animation: drop 7s 0s infinite;
    animation: drop 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.45); /*0.97*/
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.45); /*0.97*/
}
.hero-section .lines .line:nth-child(1)::after {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
.hero-section .lines .line:nth-child(3)::after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.hero-section .lines .line:nth-child(4)::after {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
@-webkit-keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
@keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
.hero-section .round-blur{
    background: url(../images/green-shadow.png) no-repeat center;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    z-index: -1;
}
.hero-section .container{
    position: relative;
    z-index: 1;
}
.hero-section .content-wrapper{
    margin-bottom: 80px;
}
.hero-section .content-wrapper h1{
    color: #E3FF36;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-section .content-wrapper h1 p{
    color: #fff;
    font-weight: 300;
    font-size: 24px;
    max-width: 240px;
    width: 100%;
    margin: 0;
    order: 2;
    text-align: left;
}
.hero-section .content-wrapper h1 span{
    display: block;
    color: #fff;
    margin-top: 16px;
    margin-left: 270px;
    order: 3;
}
.hero-section .content-wrapper p{
    color: #fff;
    font-weight: 300;
    font-size: 24px;
    text-align: center;
}
.hero-bottom{
    width: 100%;
    position: absolute;
    bottom: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
}
.hero-bottom p{
    position: absolute;
    left: 40px;
    margin: 0;
    color: #fff;
    font-size: 16px;
    max-width: 200px;
    width: 100%;
    padding-left: 16px;
}
.hero-bottom p > span{
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #E3FF36;
    border-radius: 8px;
}
.hero-bottom .scroll{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.hero-bottom .scroll svg{
    position: absolute;
}
.hero-bottom .scroll > img{
    animation: textRotation 8s linear infinite;
}
@keyframes textRotation {
	to {
		transform: rotate(360deg);
	}
}
.hand{
    width: 64px;
    position: absolute;
    right: 40px;
}

.about-photo{
    width: 100%;
    background: #1D1D1D;
}
.about-photo div > img{
    width: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
}
.o-image_wrapper{
    overflow: hidden;
    position: relative;
}
.o-image{
    opacity:1;
}
.o-image img{
    opacity:0;
    transform:scale(1);
    transition:opacity 1.2s cubic-bezier(.215,.61,.355,1),transform 1.2s cubic-bezier(.215,.61,.355,1);
    width:100%
}
.o-image.is-inview img{
    opacity:1;
    transform:scale(1);
    transition-delay:.6s
}

.about-content{
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}
h2.title{
    font-size: 140px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 680px;
    width: 100%;
}
h2.title .rocket{
    width: 125px;
    margin-left: 24px;
}
h2.title span{
    position: relative;
    display: block;
    width: 100%;
    color: #E3FF36;
    margin-left: 88px;
}
h2.title span:before{
    content: '';
    position: absolute;
    left: -48px;
    top: 60px;
    background: #E3FF36;
    width: 16px;
    height: 16px;
    border-radius: 16px;
}
.about-content p{
    color: #fff;
    line-height: 24px;
}
.experience-content{
    margin-top: 80px;
}
.experience-content ul{
    padding: 0;
    margin: 0 0 80px 0;
}
.experience-content ul li{
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: #292929 solid 1px;
    margin-bottom: 24px;
}
.experience-content ul li:last-child{
    margin-bottom: 0;
}
.experience-content h2{
    font-size: 56px;
    line-height: 64px;
    color: #fff;
}

.about-content .round{
    width: 700px;
    height: 700px;
    position: absolute;
    z-index: -1;
    animation: textRotation 8s linear infinite;
}
.about-content .round.left{
    bottom: 0;
    left: -350px;
}
.about-content .round.right{
    top: 0;
    right: -350px;
}

.belt{
    background: #E3FF36;
    padding: 40px 0;
    margin-top: 150px;
}
.belt-text-wrapper{
    position: relative;
    overflow: hidden;
    height: 40px;
}
.belt-text-wrapper h3{
    font-size: 40px;
    font-family: "Anybody", sans-serif;
    color: #1D1D1D;
    text-transform: uppercase;
    white-space: nowrap;
}
.marquee__inner{
	width: fit-content;
	display: flex;
    align-items: center;
	position: relative;
	transform: translate3d(var(--move-initial), 0, 0);
	animation: marquee 10s linear infinite;
}
.belt-text-wrapper .marquee__inner {
	animation-play-state: running;
	opacity: 1;
	transition-duration: 0.4s;
}
@keyframes marquee {
	0% {
		transform: translate3d(var(--move-initial), 0, 0);
	}
	100% {
		transform: translate3d(var(--move-final), 0, 0);
	}
}

.work-section{
    padding-top: 150px;
}
.work-section .title{
    max-width: 100%;
    margin-bottom: 150px;
}
.work-section .row [class*="col-"]{
    padding-left: 0;
    padding-right: 0;
}
.work-section .row [class*="col-"]:nth-child(2){
    margin-top: 100px;
    left: -40px;
    position: relative;
}
.work-section .row [class*="col-"]:nth-child(3){
    right: -40px;
    position: relative;
    margin-top: 300px;
}
.work-section .row [class*="col-"]:nth-child(4){
    margin-top: 100px;
}
.work-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .05);
    padding: 24px;
}
.work-title h4{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.work-title p{
    font-size: 14px;
    color: #fff;
}
.our-service{
    padding-top: 150px;
}
.our-service .title{
    margin-bottom: 48px;
}
.service-wrapper{
    border: rgba(255, 255, 255, .1) solid 1px;
    display: flex;
}
.service-wrapper .s-box{
    padding: 56px;
    width: 33.3333%;
    border-right: rgba(255, 255, 255, .1) solid 1px;
}
.service-wrapper .s-box:last-child{
    border-right: none;
}
.service-wrapper .s-box h4{
    font-family: "Anybody", sans-serif;
    font-size: 40px;
    margin: 32px 0 24px 0;
    color: #fff;
}
.service-wrapper .s-box ul{
    margin: 0;
    padding: 0;
}
.service-wrapper .s-box ul li{
    list-style: none;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
}

footer{
    margin-top: 150px;
}
footer .title{
    max-width: 100%;
}
footer h2.title{
    font-size: 104px;
    display: block;
}
footer h2.title span{
    width: auto;
}
footer .title span{
    display: inline-block;
    margin: 0;
}
footer .title span:before{
    display: none;
}
.email-marquee{
    margin-top: 48px;
    padding: 40px 0;
    border-top: rgba(255,255,255,.1) solid 1px;
    border-bottom: rgba(255,255,255,.1) solid 1px;
    overflow: hidden;
}
.email-marquee a{
    width: 100%;
    white-space: nowrap;
    /* display: flex;
    align-items: center; */
    font-size: 32px;
    line-height: 32px;
    color: #737373;
    font-weight: 400;
}
.email-marquee a span{
    background: #E3FF36;
    display: inline-flex;
    min-width: 8px;
    min-height: 8px;
    border-radius: 8px;
    margin: 0 20px;
}

.footer-bottom{
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #737373;
}
.social-link a{
    color: #737373;
}
.social-link a:hover{
    color: #E3FF36;
}
.social-link a:first-child{
    margin-right: 24px;
}

.text-animation.is-inview{
    opacity:1;
    transform:none;
    transition-duration:1.5s
}
.text-animation{
    opacity:0;
    transform:translateY(100%) rotateX(-80deg);
    transform-origin:center top;
    transform-style:preserve-3d;
    transition:opacity 0s cubic-bezier(.215,.61,.355,1),transform 0s cubic-bezier(.215,.61,.355,1)
}
.hero-section .content-wrapper h1,
h2.title,
.experience-content h2.title,
.our-service h2.title{
    perspective: 600px;
    -webkit-perspective: 600px;
}
.work-section .work-box.is-inview{
    opacity: 1;
    transform: scale(1);
}
.work-section .work-box{
    opacity: 0;
    transform: scale(.5);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;   
}

.modal-dialog{
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.modal-backdrop{
    background: rgba(29,29,29,.2);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(60px);
}
.modal-backdrop.show{
    opacity: 1;
}
.modal-backdrop.fade{
    transition: opacity .5s linear;
}
.modal-content{
    border: 0;
    background: rgba(255, 255, 255, .1) !important;
    border-radius: 40px !important;
    padding: 56px;
    -webkit-backdrop-filter: blur(100px) !important;
    backdrop-filter: blur(100px) !important;
    position: relative;
}
.btn-close{
    position: absolute;
    top: 32px;
    right: 32px;
    width: 18px;
    height: 18px;
    padding: 0;
    opacity: 1;
    z-index: 1;
    background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.373345 0.373345C0.871137 -0.124448 1.67822 -0.124448 2.17601 0.373345L9 7.19733L15.824 0.373345C16.3218 -0.124448 17.1289 -0.124448 17.6267 0.373345C18.1244 0.871137 18.1244 1.67822 17.6267 2.17601L10.8027 9L17.6267 15.824C18.1244 16.3218 18.1244 17.1289 17.6267 17.6267C17.1289 18.1244 16.3218 18.1244 15.824 17.6267L9 10.8027L2.17601 17.6267C1.67822 18.1244 0.871137 18.1244 0.373345 17.6267C-0.124448 17.1289 -0.124448 16.3218 0.373345 15.824L7.19733 9L0.373345 2.17601C-0.124448 1.67822 -0.124448 0.871137 0.373345 0.373345Z" fill="white"/></svg>');
}
.btn-close:focus{
    outline: none;
    box-shadow: none;
}
.hire-popup-content h3{
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}
.hire-popup-content .form-group{
    width: calc(50% - 8px);
    margin-top: 16px;
}
.hire-popup-content .form-group.full{
    width: 100%;
}
.hire-popup-content input:focus,
.hire-popup-content textarea:focus,
.hire-popup-content select{
    box-shadow: none;
    outline: 0;
    
}
.hire-popup-content input[type="text"],
.hire-popup-content input[type="email"],
.hire-popup-content input[type="tel"],
.hire-popup-content select,
.hire-popup-content textarea{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    width: 100%;
    background: rgba(255,255,255,.05);
    border: rgba(255,255,255,.13) solid 1px;
    border-radius: 14px;
    min-height: 56px;
    padding: 16px 20px;
    font-size: 16px;
    color: #fff;
    resize: none;
}
.hire-popup-content select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: rgba(255,255,255,.5);
    /* color: #6b6b67; */
    background: rgba(255,255,255,.05) url(../images/select-arrow.svg) no-repeat calc(100% - 20px) center;
}

.hire-popup-content select option {
    background-color: #575851; /* Background for options */
    /* color: #fff; */
    border: 0px;
}

.hire-popup-content textarea{
    height: 130px;
    display: block;
    /* margin-bottom: 16px; */
}
.submit-btn{
    background: #E3FF36;
    border-radius: 14px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #1D1D1D;
    width: 100%;
    text-align: center;
    border: 0;
    min-height: 56px;
    font-weight: 500;
    margin-top: 16px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.submit-btn:hover{
    background: #fff;
}


/*Custom code for dropdown...start*/
/* Basic styles for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-trigger {
    background: rgba(255,255,255,.05) url(../images/select-arrow.svg) no-repeat calc(100% - 20px) center;
    border: rgba(255,255,255,.13) solid 1px;
    border-radius: 14px;
    min-height: 56px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 150px;
    font-size: 16px;
    width: 100%;
    color: #fff;
}

.arrow {
    margin-left: auto;
    font-size: 0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(255,255,255,.2);
    -webkit-backdrop-filter: blur(100px) !important;
    backdrop-filter: blur(100px) !important;
    width: 100%;
    z-index: 1;
    margin-top: 5px;
    padding: 0;
    list-style-type: none;
}

.dropdown-menu li {
    padding: 10px 15px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: #fff;
}

.dropdown-menu .reset-option {
    font-style: italic;
    color: #999;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.error-message {
    color: rgb(197, 43, 43);
}
/*Custom code for dropdown...end*/

@media(max-width: 1440px){
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media(max-height: 768px){
    .hero-section .content-wrapper{
        transform: scale(.85);
    }
}
@media(max-width: 1366px){
    .work-section .row [class*="col-"]{
        padding-left: 12px;
        padding-right: 12px;
    }
    .work-section .row [class*="col-"]:nth-child(2){
        left: 0;
    }
    .work-section .row [class*="col-"]:nth-child(3){
        right: 0;
    }
}
@media(max-width: 1199px){
    h1{
        font-size: 130px;
    }
    h2.title{
        font-size: 125px;
    }
    .hero-section .content-wrapper{
        transform: scale(.95);
    }
    .experience-content h2{
        font-size: 48px;
    }
    .about-content .round{
        width: 500px;
        height: 500px;
    }
    .about-content .round.left{
        left: -250px;
    }
    .about-content .round.right{
        right: -250px;
    }
    

}
@media(max-width: 1080px){
    h1{
        font-size: 118px;
    }
    h2.title{
        font-size: 96px;
    }
    h2.title span::before{
        top: 34px;
    }
    .hero-section .content-wrapper{
        transform: scale(.9);
    }
    .service-wrapper .s-box{
        padding: 48px;
    }
    .service-wrapper .s-box h4{
        font-size: 32px;
    }
    footer h2.title{
        font-size: 80px;
    }
    .experience-content h2{
        font-size: 44px;
    }

    .work-section .title{
        margin-bottom: 100px;
    }
}

@media(max-width: 991px){
    h1,
    h2.title{
        font-size: 80px;
    }
    header{
        padding: 32px;
    }
    .hero-section .content-wrapper{
        max-width: 620px;
        margin: 0 auto;
    }
    .hero-section .content-wrapper h1 p{
        font-size: 18px;
        max-width: 200px;
    }
    .hero-section .content-wrapper h1 span{
        margin-left: 150px;
    }
    .hero-section .content-wrapper p{
        font-size: 18px;
    }
    .hero-bottom p{
        font-size: 14px;
        line-height: 20px;
    }
    .experience-content ul li{
        flex-wrap: wrap;
    }
    .experience-content ul li span{
        width: 100%;
        margin-top: 4px;
    }
    h2.title .rocket{
        width: 80px;
        margin-left: 16px;
    }
    .experience-content h2{
        font-size: 32px;
        line-height: 42px;
    }
    .work-title{
        flex-wrap: wrap;
    }
    .work-title p{
        margin-top: 4px;
        width: 100%;
    }
    h2.title span:before{
        width: 12px;
        height: 12px;
        top: 32px;
    }
    
    .service-wrapper .s-box{
        padding: 32px;    
    }
    .service-wrapper .s-box h4{
        font-size: 24px;
    }
    .service-wrapper .s-box ul li{
        font-size: 15px;
        line-height: 28px;
    }
    footer h2.title{
        font-size: 64px;
    }

    .modal-content{
        margin: 0 20px;
    }

}

@media(max-width: 767px){
    
    h2.title{
        font-size: 64px;
    }
    h2.title span::before{
        top: 24px;
    }
    p{
        font-size: 16px;
        line-height: 22px;
    }
    .about-content,
    .work-section,
    .our-service{
        padding-top: 80px;
    }
    .belt,
    footer{
        margin-top: 80px;
    }
    .belt{
        padding: 24px 0;
    }
    .belt-text-wrapper{
        height: 32px;
    }
    .belt-text-wrapper h3{
        font-size: 32px;
    }
    .work-section .title{
        margin-bottom: 48px;
    }
    .work-section .row [class*="col-"]:nth-child(2),
    .work-section .row [class*="col-"]:nth-child(3),
    .work-section .row [class*="col-"]:nth-child(4){
        margin-top: 32px;
    }

    .about-content .row [class*="col-"]:first-child .content{
        margin-bottom: 8px;
    }
    .experience-content{
        margin-top: 48px;
    }
    .email-marquee a{
        font-size: 24px;
    }
    .email-marquee a span{
        margin: 0 8px;
    }
    footer h2.title{
        font-size: 48px;
    }
    .modal-content{
        padding: 32px;
        border-radius: 22px !important;
    }
    

}

@media(max-width: 699px){
    h1{
        font-size: 64px;
    }
    .service-wrapper{
        flex-wrap: wrap;
    }
    .service-wrapper .s-box{
        text-align: center;
        width: 100%;
        border-right: 0;
        border-bottom: rgba(255, 255, 255, .1) solid 1px;
    }
    .service-wrapper .s-box:last-child{
        border-bottom: 0;
    }
}

@media(max-width: 575px){
    h1{
        font-size: 48px;
    }
    h2.title,
    footer h2.title{
        font-size: 40px;
    }
    h2.title span{
        margin-left: 56px;
    }
    h2.title span::before{
        width: 8px;
        height: 8px;
        top: 15px;
        left: -30px;
    }
    h2.title .rocket{
        width: 40px;
    }
    footer h2.title span{
        margin-left: 0;
    }

    .about-content,
    .work-section,
    .our-service{
        padding-top: 56px;
    }
    .belt,
    footer{
        margin-top: 56px;
    }

    header{
        padding: 20px;
    }
    header .logo{
        width: 44px;
    }
    .hd-right .time-text{
        margin-right: 8px;
    }
    header .cta-btn{
        padding: 12px 16px;
        font-size: 14px;
    }
    .hero-section .content-wrapper h1{
        justify-content: center;
        margin-bottom: 16px;
    }
    .hero-section .content-wrapper h1 p{
        margin: 8px 0 0 0;
        font-size: 16px;
    }
    .hero-section .content-wrapper h1 span{
        margin-left: 0;
        margin-top: 8px;
    }
    .hero-section .content-wrapper h1 p{
        max-width: 100%;
        text-align: center;
    }
    .hero-section .content-wrapper p{
        font-size: 16px;
    }
    .hero-bottom{
        bottom: 110px;
    }

    .about-content .round{
        width: 250px;
        height: 250px;
    }
    .about-content .round.left{
        left: -125px;
    }
    .about-content .round.right{
        right: -125px;
    }
    .experience-content ul{
        margin-bottom: 48px;
    }
    .hero-bottom{
        padding: 0 20px;
    }
    .hero-bottom p{
        left: 20px;
        display: none;
    }
    .hero-bottom .scroll{
        transform: scale(.7) translateX(-50%);
        margin-left: -14px;
    }
    .hand{
        right: 20px;
        width: 48px;
    }
    .work-title h4{
        font-size: 18px;
    }
    .belt-text-wrapper{
        height: 24px;
    }
    .belt-text-wrapper h3{
        font-size: 24px;
    }
    .experience-content h2{
        font-size: 24px;
        line-height: 32px;
    }
    .modal-content{
        padding: 24px;
    }
    .hire-popup-content .form-group{
        width: 100%;
    }
    .hire-popup-content input[type="text"],
    .hire-popup-content input[type="email"],
    .hire-popup-content input[type="tel"],
    .hire-popup-content select,
    .hire-popup-content textarea{
        border-radius: 8px;
        min-height: 48px;
        padding: 10px 20px;
        font-size: 15px;
    }
    .submit-btn{
        font-size: 15px;
        min-height: 48px;
        border-radius: 8px;
    }
    .hire-popup-content textarea{
        height: 90px;
    }
    .hire-popup-content h3{
        font-size: 22px;
    }
    .btn-close{
        top: 20px;
        right: 20px;
    }

}
@media(max-height: 479px){
    .hero-section{
        min-height: 600px;
    }
}