* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Anton";
    src: url("../font/Anton/Anton-Regular.ttf");
}
@font-face {
    font-family: "Work Sans";
    src: url("../font/Work_Sans/static/WorkSans-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Work Sans";
    src: url("../font/Work_Sans/static/WorkSans-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Work Sans";
    src: url("../font/Work_Sans/static/WorkSans-Medium.ttf");
    font-weight: 500;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Work Sans";
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
h1,
h2 {
    font-weight: normal;
}
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.btn {
    background-color: #365da8;
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    padding: 16px 32px;
    display: inline-block;
    border-radius: 12px;
    text-align: center;
    transition: background-color 1s;
}
.btn:hover {
    background-color: #4e81e2;
}
.container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.top_btn {
    position: fixed;
    gap: 25px;
    margin-top: -50px;
    bottom: 60px;
    right: 50px;
    cursor: pointer;
    display: none;
    z-index: 999;
}
.small-image {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
/* Header */
.custom-container {
    margin: 0 auto;
    padding: 48px 80px;
    transition: all 0.5s ease-in-out;
    max-width: 1728px;
    width: 100%;
}
.header__logo img {
    height: 64px;
    width: 64px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header .nav-list {
    display: flex;
    gap: 0 56px;
}
header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: white;
    transition: all 0.5s ease-in-out;
    z-index: 99;
}
header.fixed {
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.12));
    transition: all 0.5s ease-in-out;
}
 header.fixed .header {
    padding: 24px 80px;
    transition: all 0.5s ease-in-out;
}
.header li a {
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    color: #2b2b3f;
    transition: color 1s;
}
.header li a:hover {
    color: #4e81e2;
}
.header li a.active {
    color: #365da8;
    font-weight: 600;
}
.hamburger,
.close {
    display: none;
    cursor: pointer;
}
.responsive li a {
    display: none;
    font-size: 24px;
    font-family: "Anton";
    line-height: 32px;
    color: #2b2b3f;
}
.close {
    text-align: end;
}
.responsive {
    background-color: white;
    /* border-top: 1px solid lightgray; */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0 20px 40px ;
    display: none;
}
body.header-open {
    overflow-y: hidden;
}
.responsive li a {
    margin: 0 0 20px;
}
.responsive li:last-child a {
    margin-bottom: 0;
}
.header__menu .hamburger,
.menu-content .close {
    text-align: end;
}
.header__btn p {
    font-size:16px;
    font-weight: 300;
    font-style: normal;
    line-height: 24px;
    max-width: 690px;
    width: 100%;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 24px;
}
.header__btn a{
    font-size: 18px;
    width: 100%;
    display: block;
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding: 16px 32px;
}
.header__btn {
    padding: 99px 0;
}
/* hero section */
.hero_section {
    text-align: center;
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
}
.hero_section h1 {
    font-family: "Anton";
    font-size: 80px;
    line-height: 96px;
    color: #2b2b3f;
    padding-top: 132px;
}
.hero__subtitle {
    font-size: 24px;
    line-height: 40px;
    font-weight: 300;
    padding: 48px 0;
}
.hero__subtitle span {
    font-weight: 600;
}
.hero__btn {
    display: flex;
    gap: 0 24px;
    justify-content: center;
}
/* parallax section */
.parallax_image {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 180px 0;
}
.jarallax {
    min-height: 400px;
    height: 100%;
}
.parallax-img {
    margin: 180px 0;
}
/* recent project section */
.recent_project h1 {
    font-size: 48px;
    font-family: "Anton";
    line-height: 56px;
    color: #2b2b3f;
    text-align: center;
    padding-bottom: 80px;
}
.recent_project__card {
    display: grid;
    gap: 80px 30px;
    grid-template-columns: repeat(2, 1fr);
}
.card__title {
    font-size: 32px;
    font-family: "Anton";
    line-height: 40px;
    color: #2b2b3f;
    padding: 48px 0 24px 0;
}
.card__title a {
    display: inline-block;
}
.card__subtitle {
    font-size: 20px;
    line-height: 28px;
    color: black;
    font-weight: 300;
}
.card__img1 {
    max-width: 540px;
    width: 100%;
    display: block;
    overflow: hidden;
    transition: 1s;
    position: relative;
    aspect-ratio: 1 / 1;
}
.card__img1 img {
    transform: scale(1);
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    transition: all 0.3s ease-in;
    height: auto;
    position: relative;
}
.card__img1:hover  img{
    transition: all 0.3s ease-in;
    transform: scale(1.05);
}
/* portfolio_section */
.portfolio_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    gap: 0 180px;
}
.title {
    font-size: 32px;
    font-family: "Anton";
    line-height: 40px;
    color: #2b2b3f;
}
.subtitle {
    font-size: 20px;
    line-height: 28px;
    color: black;
    padding: 24px 0;
    font-weight: 300;
}
/* footer */
.b_footer {
    background-color: #365da8;
    padding: 46px 0;
    margin-top: 180px;
    position: relative;
}
.footer__logo {
    height: 56px;
    width: 56px;
    object-fit: contain;
}
.footer {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
}
.footer ul {
    display: flex;
    gap: 0 56px;
    align-items: center;
    justify-content: center;
}
.footer_icon {
    display: flex;
    justify-content: end;
    gap: 0 24px;
}
.footer li a {
    font-size: 20px;
    font-weight: 300;
    color: white;
}
footer li a.active {
    font-weight: 600;
}
.footer-section a.upAngle.upAngle-small{
    display: none;
}
.copyright {
    font-size: 14px;
    font-weight: 300;
    color: white;
    text-align: center;
    margin-top: 8px;
    border-top: 1px solid #c7b5b547;
    padding-top: 25px;
}
/* UI-UX PORTFOLIO PAGE start  */
.uiux_hero__btn {
    gap: 0;
    padding-bottom: 180px;
}
.uiux_btn {
    border-radius: 12px 0 0 12px;
}
.caseStd_btn {
    border-radius: 0 12px 12px 0;
    background-color: transparent;
    border: 1px solid #365da8;
    color: #365da8;
    transition: 1s;
}
.caseStd_btn:hover {
    color: white;
    border: 1px solid transparent;
}
/* upAngle */
.upAngle {
    background-color: #f2f2f2;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    display: flex ;
    align-items: center;
    justify-content: center;
}
.upAngle  svg{
    width: 20px;
}
.upAngle:hover svg path{
    fill: white;
    transition: all 0.5s ease-in-out;
}
.upAngle:hover {
    background-color: #4e81e2;
    transition: all 0.5s ease-in-out;
}
/* UI-UX PORTFOLIO PAGE end  */
/* corolam page css start */
.hero-section-content {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.hero-section-content h2 {
    font-size: 64px;
    font-family: "Anton";
    line-height: 72px;
    margin-bottom: 32px;
}
.hero-section-content p {
    font-size: 24px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.8);
    line-height: 40px;
}
.hero-section {
    padding: 80px 0;
}
.hero-section-content img {
    max-width: 540px;
    width: 100%;
}
.hero-section-content div {
    max-width: 445px;
    width: 100%;
}
.project-designer-section , .netcom-clutter-section {
    background: rgba(0, 0, 0, 0.08);
}
.project-designer-content {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 60px;
    text-align: center;
    padding: 80px 0;
}
.project-items {
    width: 100%;
    max-width: 320px;
}
.project-items p {
    font-size: 20px;
    color: #000000cc;
    font-weight: 300;
}
.project-items h2 {
    font-size: 24px;
    line-height: 32px;

    font-family: "Anton";
    margin-bottom: 16px;
    color: #2b2b3f;
}
.corolam-img-section img {
    width: 100%;
    display: block;
}
.corolam-img-section {
    padding: 108px 0;
}
.project-overview-section {
    padding-bottom: 108px;
}
.overview-content img {
    width: 100%;
    display: block;
}
.overview-content h2 {
    font-family: "Anton";
    color: #2b2b3f;
    font-size: 48px;
    margin-bottom: 32px;
}
.overview-heading {
    margin: 0 auto 108px;
    width: 100%;
    text-align: center;
    max-width: 730px;
}
.overview-mobile-view {
    display: none;
}
.highlights-content img {
    display: block;
}
.problem-solution-section {
    background: #00000014;
    padding: 100px 0;
}
.solution-content {
    display: flex;
    align-items: start;
    gap: 30px;
}
.solution-content h2 {
    margin-bottom: 24px;
    font-family: "Anton";
    font-size: 32px;
    line-height: 40px;
}
.solution-content p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
}
.bundle-section {
    padding: 108px 0;
}
.bundle-img img {
    width: 100%;
    max-width: 540px;
}
.bundle-img img:first-child {
    margin-right: -60px;
}
.bundle-img {
    display: flex;
    align-items: start;
    gap: 30px;
}
.hightlight-content img {
    width: 100%;
    max-width: 1110px;
}
.hightlight-content .overview-content {
    max-width: 720px;
    width: 100%;

    margin: 0 auto 180px;
    text-align: center;
}
.motorola-img .overview-content img {
    display: block;
}
.bot-section {
    padding-bottom: 108px;
}
.bot-section-img img {
    max-width: 1110px;
    width: 100%;
}
.overview-heading p {
    font-family: "Work Sans";
    font-weight: 300;
    line-height: 28px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8);
}
.portfolio-footer.b_footer {
    margin: 0;
}
.portfolio-return-section {
    background: #00000014;
    padding: 120px 0;
}
.portfolio-content {
    text-align: center;
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
}
.portfolio-content h2 {
    font-size: 32px;
    font-family: Anton;
    color: #2b2b3f;
    line-height: 40px;
    margin-bottom: 24px;
}
.portfolio-content p {
    font-family: "Work Sans";
    font-size: 20px;
    line-height: 28px;
    color: #000000cc;
    margin-bottom: 24px;
    font-weight: 300;
}
.cart-overview {
    padding: 0 !important;
}
.safe-content .bot-section img{
    display: block;
}
/* corolam page css end */
/* case studies page css start */
.caseStd_btn.active {
    background: #365da8;
    color: white;
}
.tab-button .uiux_btn {
    border: 1px solid #365da8;
    background: transparent;
    color: 
    #365da8;
}
.tab-button .uiux_btn:hover{
    background: #4e81e2;
    color: white;
}
/* case studies page css end */
/* Protected Places pages css start */
.project-problem h2{
    font-size: 48px;
    margin-bottom: 32px;
    line-height: 56px;
}
.project-problem p {
    font-size: 20px;
    line-height: 28px; 
}
.project-problem .hero-section-content div p:last-child{
    margin-top: 24px;
}
.project-problem {
    padding: 180px 0;
}
.competitive-research{
    padding: 0;
}
.competitive-research .overview-content {
    padding: 108px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.competitive-research .border-none {
    border-bottom: 0;
}
.owl-carousel-slider .owl-nav button{
    position: absolute;
    top: 47%;
    transition: all .5s ease-in-out;
    transform: translateY(-50%);
}
.owl-carousel-slider .owl-nav  button.owl-prev{
    left: -80px;
}
.owl-carousel-slider .owl-nav  button.owl-next{
    right: -80px;
}
.owl-carousel-slider .owl-nav button:hover svg * {
    transition: all .5s ease-in-out;
}
.creation-content div p:last-child{
    margin-top: 24px;

}
.creation-content-section {
    padding: 70px 0 70px;
}
.creation-content-section .creation-content {
    align-items: center;
}
.owl-carousel-slider .owl-nav button:hover svg circle {
    stroke: #365DA8;
    stroke-opacity: 1;
}
.owl-carousel-slider .owl-nav button:hover svg path {
    fill: #365DA8;
    fill-opacity: 1;
}
.use-flow-section {
    padding: 0 0;
}
.use-flow-section  .overview-content {
    padding: 108px 0 102px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.use-flow-section .border-none {
    border-bottom: 0;
}
.project-solution{
    padding: 0;
}
.about-process {
    padding: 108px 0 0;
}
.responsive-mobile {
    padding-bottom: 195px;
}
.creation-content img {
    width: 100%;
    display: block;
}
.creation-content :first-child {
    max-width: 540px;
    width: 100%;
}
/* Protected Places pages css end */
/* Netcome pages css start */
.project-problem-content.border {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.project-problem-heading {
    max-width: 730px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 108px 0 80px 0;
}
.project-problem-content h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    font-family: "Anton";
    color: #2B2B3F;
}
.project-problem-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.80);
}
.project-problem-subcontent p:first-child {
    padding: 32px 0 0;
}
.netcom-image2 {
    padding:80px 0 108px;
}
.netcom-image {
    width: 100%;display: block;
}
.netcom-image-section {
    padding: 91px 0 173px 0;
}
.netcom-clutter-section .left {
    text-align: left;
    gap: 30px;
}
.netcom-items {
    max-width: 350px;
    width: 100%;
}
.design-content {
    padding: 108px 0;
}
.search-section {
    margin: 152px 0;
}
.netcom-image-section9 {
    border: 1px 0 1px 0;
}
.netcom-image9 {
    padding-bottom: 108px;
}
.netcom-image10 {
    padding: 108px 0;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    display: block;
}
.return-portfolio-section {
    background-color: #EEEEEE;
    padding: 120px 0    ;
}
.return-item {
    max-width: 730px;
    text-align: center;
    margin: auto;
}
.Return-spacing {
    margin-top: 108px;
}
.before-after-section {
    padding-bottom: 180px;
    position: relative;
    height: 100%;
}
.beforeAfter {
    box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.25)
}
/* Netcome pages css end */
/* about page css start */
.down-arrow {
    margin-top: 32px;
    cursor: pointer;
}
.about-hero-section {
    padding: 180px 0 68px;
}
.about-hero-section.hero_section h1 {
    padding: 0;
}
.designer-background-section .design-background-content{
    padding: 180px 0 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.design-background-content {
    gap: 30px;
    display: flex;
    align-items: start;
}
.design-background-content img {
    width: 100%;
}
.profile-content h2 {
    color: #2B2B3F;
    font-family: 'anton';
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 40px;
}
.profile-content {
    max-width: 540px;
    width: 100%;
}
.profile-content p{
    color: rgba(0, 0, 0, 0.80);
    font-family: "Work Sans";
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}
.profile-content p:last-child {
    margin-top: 20px;
}
.major-brands-logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 540px;
    width: 100%;
    gap: 30px;
}
.major-brands-logo img{
    width: 100%;
}
.about-image1 {
    position: relative;
}
.about-image1::after {
    background: rgba(0, 0, 0, 0.3);
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.major-brands-section.border .design-background-content {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.major-brands-section .design-background-content{
    padding: 100px 0 138px;
}
.contact-resume-section {
    padding: 100px 0 180px;
}
.portfolio_section div{
    max-width: 441px;
    width: 100%;
}
/* about page css end */
/* corolam page css start */
.overview-heading-p {
    padding-top: 20px;
}
/* corolam page css end */

/* figma review page css start */
.figma-review-section {
    padding: 80px 0;
}
.viewport-section .overview-heading {
    margin-bottom: 100px;
}
.resources-section.major-brands-section.border .design-background-content{
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.viewport-section.competitive-research .overview-content {
    padding-bottom: 0;
    padding-top: 100px;
}
.viewport-section1.viewport-section.competitive-research .overview-content {
    padding-top: 180px;
}
.viewport-section2.viewport-section.competitive-research .overview-content {
    padding-bottom: 108px;
}
/* figma review page css end */
/* fixt page css start */
.highlight-section .highlights-content .overview-heading p:last-child {
    margin-top: 20px;
}
/* fixt  page css end */