/* Override */
#inner-page-wrapper > .custom-container {
    max-width: 100%;
    padding: 0;
}


/* Section 1 */
.ip-proj-col.title {
    width: 30%;
}

.ip-proj-col.desc {
    width: 70%;
}

.proj-top {
    padding: 100px 0 50px;
    border-bottom: 1px solid var(--secondary);
}

.proj-top h2 {
    font-family: var(--font-family-title);
    text-transform: uppercase;
    font-size: clamp(30px,1.82vw,35px);
    font-weight: 700 !important;
    margin: 5px 0 0;
    line-height: 1;
    color: var(--primary);
}

.ip-proj-desc {
    font-size: clamp(18px,1.15vw,22px);
    font-weight: 300;
    font-family: var(--font-family-title);
    line-height: 1.7;
    padding: 0 0 0 30px;
}

/* Section 2 */
.ip-proj-slides {
    padding: 50px 0;
}

.ip-proj-slides-content h3 {
    font-size: clamp(20px,1.3vw,25px);
    font-weight: 700;
    font-family: var(--font-family-title);
}

.ip-proj-slides-content {
    text-align: center;
}

.ip-proj-slides-col.content p {
    font-size: clamp(17px,1.04vw,20px);
    line-height: 1.7;
    font-weight: 300;
}

.ip-proj-slides-item {
    padding: 50px 15px;
}

.ip-proj-slides-item {
    width: 50%;
}

.ip-proj-slides-container {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

/* Section 3 */
.ip-proj-contact {
    background: #343636;
    background: linear-gradient(0deg, rgba(52, 54, 54, 1) 0%, rgba(116, 141, 158, 1) 100%);
    padding: 100px 15px;
    text-align: center;
}

.ip-proj-contact .bg-canvas {
    filter: grayscale(1);
    opacity: 0.2;
}

.ip-proj-contact-main {
    color: #fff;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    font-size: clamp(20px,1.56vw,30px);
    font-family: var(--font-family-title);
    font-weight: 700;
    letter-spacing: 1px;
}

.ip-proj-contact-main span {
    display: block;
    font-size: clamp(14px,0.89vw,17px);
    font-weight: 400;
    letter-spacing: 0;
}

/* Section 4 */
.ip-proj-contact-txt {
    padding: 100px 0;
    text-align: center;
    background: var(--primary);
}

.ip-proj-contact-txt-container {
    max-width: 880px;
    width: 100%;
    margin: auto;
}

.ip-proj-contact-txt-main h2 {
    font-family: var(--font-family-title);
    font-size: clamp(40px,4.69vw,90px);
    text-shadow: rgb(255, 255, 255) 1px 0px 0px, rgb(255, 255, 255) 0.540302px 0.841471px 0px, rgb(255, 255, 255) -0.416147px 0.909297px 0px, rgb(255, 255, 255) -0.989992px 0.14112px 0px, rgb(255, 255, 255) -0.653644px -0.756802px 0px, rgb(255, 255, 255) 0.283662px -0.958924px 0px, rgb(255, 255, 255) 0.96017px -0.279415px 0px;
    color: var(--primary);
    margin: 0 0 36px;
}

.ip-proj-contact-txt-main h2 span {
    color: #fff;
    text-shadow: none;
}

.ip-proj-contact-txt .global-btn a {
    margin: auto;
}

.ip-proj-contact-txt .global-btn a::before {
    background: #fff;
}

.ip-proj-contact-txt .global-btn a::after {
    background: var(--secondary);
}

.ip-proj-contact-txt .global-btn a:hover {
    color: var(--secondary);
}

.ip-proj-contact-txt .global-btn a:hover::after {
    background: #FFF;
}

.ip-proj-contact-txt .global-btn a:hover::before {
    background: transparent;
}

.arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: -28px;
}

.arrows path {
  stroke: #fff;
  fill: transparent;
  stroke-width: 1px;  
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
  animation-delay:-1s;
  -webkit-animation-delay:-1s; /* Safari 和 Chrome */
}

.arrows path.a2 {
  animation-delay:-0.5s;
  -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
}

.arrows path.a3 { 
  animation-delay:0s;
  -webkit-animation-delay:0s; /* Safari 和 Chrome */
}

@media only screen and (max-width: 1024px) {
    .ip-proj-col {
        width: 100% !important;
    }

    .ip-proj-desc {
        padding: 30px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .ip-proj-slides-item {
        width: 100%;
    }
}