@import url(https://db.onlinewebfonts.com/c/1a204cd3ccb7f25e06faa548e6251a59?family=Fabriga);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --pink--: #FF438E;
    --blue--: #1ECFFF;
    --green--: #5DD26D;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

p{
    margin: 0;
}

body{
    font-family: "Fabriga";
    font-style: normal;
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin: 0;  
    font-style: normal;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}

header.active{
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .logo img{
    width: 100px;
    filter: brightness(0) invert(1);
}

header.active .logo img{
    filter: none;
}

header .header_btn{
    width: 180px;
    display: flex;
    justify-content: end;
}

header .menu_btn{
    display: flex;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    justify-content: end;
    cursor: pointer;
    gap: 18px;
}

header .menu_btn span{
    width: 18px;
    height: 3px;
    background: #000;
    /* height: 40px; */
    position: relative;
}

header .menu_btn span::before{
    content: '';
    width: 25px;
    height: 3px;
    background: #000;
    position: absolute;
    top: -7px;
    right: 0;
}

header .menu_btn span::after{
    content: '';
    width: 11px;
    height: 3px;
    background: #000;
    position: absolute;
    top: 7px;
    right: 0;
}

header nav ul{
    display: flex;
    gap: 30px;
}

header nav ul li a{
    color: #fff;
}
header.active nav ul li a{
    color: #000;
}

header .menu-button {
    width: 180px;
    height: 40px;
    display: none;
    place-items: center flex-end;
    border-radius: 5px;
    /* border: 2px solid #fff; */
    padding: 6px 0;
    cursor: pointer;
    margin: auto 0;
}
header .menu-button span {
    width: 32px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: .3s ease-in-out;
    border-radius: 10px;
}
header.active .menu-button span{
    background: #000;
}
header .menu-button.active span{
    background: transparent;
}
header .menu-button span::before, header .menu-button span::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    top: -10px;
    background: #fff;
    transition: .3s ease-in-out;
    border-radius: 10px;
    transition: 0.3s;
}
header.active .menu-button span::before, header.active .menu-button span::after{
    background: #000;
}
header .menu-button.active span::before{
    top: 0;
    transform: rotate(45deg);
    width: 100%;
    left:0
}
header .menu-button:hover span::before, header .menu-button:hover span::after{
    width: 100%;
}
header .menu-button span::before{
    left:-5px
}

header .menu-button:hover span::before{
    left:0
}
header .menu-button span::after {
    top: 10px;
    right: -5px;
}
header .menu-button.active span::after{
    top: 0;
    transform-origin: center;
    transform: rotate(-45deg);
    width: 100%;
    right: 0;
}
header .menu-button:hover span::after {
    right: 0;
}

.mobile_menu{
    position: absolute;
    padding: 10px 20px 20px 30px;
    border-radius: 0 0 0 30px;
    background: #000;
    right: 0;
    top: 100%;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 24px;
    display: none;
    transform: translateX(100%);
    transition: 0.3s;
}

.mobile_menu.active{
    transform: translateX(0%);
}

.mobile_menu ul li a{
    color: #fff;
}

.banner_slider{
    position: relative;
    z-index: 1;
}

.banner_slider::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    opacity: 0.4;
    z-index: 2;
    display: none;
}

.banner_slider .banner{
    position: relative;
    display: flex;
    align-items: center;
}

.banner_slider .banner img, .banner_slider .banner video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner_slider .banner .content{
    position: absolute;
    z-index: 3;
    /* top: 50%; */
    left: 5%;
    /* transform: translateY(-50%); */
    width: 30vw;
}

.banner_slider .banner .content h2{
    font-size: 4vw;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.banner_slider .banner .content p{
    font-size: 1.1vw;
    color: #fff;
}

.heading span{
    font-size: 20px;
    display: block;
    color: var(--green--);
}

.heading h2{
    font-size: 32px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    z-index: 3;
}

.portfolio_sec_bg{
    background: #000;
    clip-path: ellipse(100% 63% at 50% 63%);
}

.portfolio_card img{
    /* border-radius: 20px; */
}

.portfolio_card .content h3{
    color: #fff;
    font-size: 22px;
}

.portfolio_card .content p{
    color: #fff;
}

.portfolio_card .content .talk_to_btn{
    font-size: 18px;
}

.portfolio_tag_line{
    display: flex;
    justify-content: center;
    transform: translateY(50%);
}

.portfolio_tag_line p{
    font-size: 8vw;
    white-space: nowrap;
    font-weight: bold;
    line-height: 1;
}

.service_sec{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.service_img{
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 0 auto;
}

.service_img::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, #0006 0%, transparent 50%, #0006 100%);
    z-index: 2;
}

.service_img .content{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-top: 40px;
    z-index: 3;
}

.service_img .content h3{
    color: #fff;
    font-weight: 800;
}

.service_img .content p{
    color: #fff;
}

.service_sec .service_content{
    padding: 20px 30px;
    border-radius: 20px;
    /* background: #FFEECF; */
    height: 100%;
}

.service_sec .service_content h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.service_sec .service_content p{
    color: #000 !important;
}

.service_sec_row .service_sec_col:nth-child(even) .service_sec{
    flex-direction: column-reverse;
}


.service_sec_row .service_sec_col:nth-child(3n + 1) .service_sec .service_content{
    background: #FFEECF;
}

.service_sec_row .service_sec_col:nth-child(3n + 2) .service_sec .service_content{
    background: #BEFFC7;
}

.service_sec_row .service_sec_col:nth-child(3n + 3) .service_sec .service_content{
    background: #FFE8F1;
}

.client_logo img{
    aspect-ratio: 7/2;
    object-fit: contain;  
}

.clients_border{
    border-left: 1px solid #C4C4C4;
}

.talk_to_btn{
    display: inline-block;
    padding: 15px 20px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    transition: 0.3s;
}

.talk_to_btn.bg_white{
    background: #fff;
    color: #000;
}

header.active .talk_to_btn.bg_white{
    background: #000;
    color: #fff;
}

.talk_to_btn.border_white{
    background: none;
    color: #fff;
    border: 1px solid #fff;
}

.talk_to_btn.bg_white:hover{
    background: #fff;
    color: #000;
}

header.active .talk_to_btn.bg_white:hover{
    background: #000;
    color: #fff;
}

.talk_to_btn.bg_green{
    background: #5DD26D;
    color: #000;
}

.talk_to_btn.bg_green:hover{
    background: #5DD26D;
    color: #000;
}

.talk_to_btn:hover{
    color: #fff;
    transform: scale(1.1);
}

.talk_to_btn i{
    padding-left: 5px;
}

.cross_arrow{
    font-size: 24px;
}

.cross_arrow i{
    transform-origin: center center;
    transform: rotate(-45deg);
}

.talk_us_bg{
    background: #000;
}

footer{
    background: #000;
}

footer .footer_head h3{
    color: #fff;
    font-size: 22px;
}

footer .footer_menu ul li{
    margin-bottom: 5px;
}

footer .footer_menu ul li a{
    color: #fff;
    transition: 0.3s;
}

footer .footer_menu ul li a:hover{
    color: var(--blue--);
}

.footer_social_media ul{
    display: flex;
    gap: 20px;
}

.footer_social_media ul li a{
    color: #fff;
    transition: 0.3s;
    font-size: 22px;
}

.footer_social_media ul li a:hover{
    color: var(--blue--);
}
.footer_bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_bottom p{
    text-align: center;
    color: #B1B1B1;
}

.footer_bottom p a{
    color: #B1B1B1;
}
.footer_bottom p a:hover{
    color: var(--blue--);
}

.pop_up_video_1{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 20px; */
    overflow: hidden;
}

.pop_up_video_1 .play_icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: #000;
    border-radius: 50%;
}

.pop_up_video_1 .play_icon i{
    color: #fff;
    font-size: 24px;
}