* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Mona Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 163%;
    font-style: normal;
    letter-spacing: 0px;
    word-spacing: 0px;
    text-transform: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Signora Sans";
    font-weight: 600;
}
@font-face {
    font-family: "Signora Sans";
    src: url("../font/SignoraSans-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Signora Sans";
    src: url("../font/SignoraSans-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Signora Sans";
    src: url("../font/SignoraSans-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Signora Sans";
    src: url("../font/SignoraSans-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
img {
    width: auto;
    height: auto;
}
/* thumbnail S */
.thumbnail-container,
.thumbnail_container {
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #f7f7f7;
}
.thumbnail-container .thumbnail {
    margin: 0px;
    display: block;
    padding: 0px;
    border: none;
    height: 100%;
    width: 100%;
    position: absolute;
    background: none;
}
.thumbnail-container a,
.thumbnail-container img {
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
.thumbnail-container video,
.thumbnail-container .youtube-video,
.thumbnail-container .vimeo-video,
.thumbnail-container iframe {
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.thumbnail-container.object-fit img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* thumbnail E */
.main-wrap {
    height: 100vh;
    width: 100%;
    position: relative;
}
.main-wrap::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0 0 0 0;
    background: #0000002d;
    z-index: 1;
}
.main-wrap .thumbnail-container {
    padding-bottom: 100vh;
}
.main-wrap .thumbnail-container video {
    object-position: right;
}
.main-wrap .content {
    height: 100%;
    width: 100%;
    padding: 50px;
    position: absolute;
    inset: 0 0 0 0;
    z-index: 2;
}
.main-wrap .content-wrap {
    position: relative;
    border-radius: 30px;
    height: 100%;
    padding: 50px;
    overflow: hidden;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo {
    max-width: 300px;
}
.header .logo img {
    height: 100%;
    width: 100%;
}
.header .call-us .icon {
    height: 40px;
    width: 40px;
    min-width: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .call-us img {
    height: 20px;
    width: 20px;
    filter: invert(13%) sepia(98%) saturate(7492%) hue-rotate(358deg) brightness(97%) contrast(123%);
}
.header .call-us a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.header .call-us a:hover {
    color: #f00a0a;
}
.contact-btn {
    background-color: #c81d1d;
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
}
.footer-icons{display: flex;margin-top: 50px;}
.footer-icons a+a{margin-left: 25px;}
.footer-icons a {
    display: flex;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    font-size: 18px;
    align-items: center;
}
.footer-icons p{ color: #fff;
    font-weight: 400;
    text-decoration: none;max-width: 300px !important;
    font-size: 16px !important;}
.footer-icons .icon {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c81d1d;
}
.body-part {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
    padding: 250px 0px 60px 0px;
}
.body-part .title {
    font-size: 100px;
    color: #fff;
    /* max-width: 630px; */
    line-height: 100%;
    text-align: center;
}
.body-part p {
    text-align: center;
    font-size: 26px;
    color: #fff;
    max-width: 900px;
    line-height: 160%;
    margin-bottom: 0px;
    font-family: "Mona Sans";
}
.preloader {
    position: absolute;
    left: 0;
    bottom: 50px;
    z-index: 5;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
    padding-left: 50px;
}
.content-wrap.start-animation .preloader{
    opacity: 1;
}
.content-wrap.loaded .preloader {
    opacity: 0;
    visibility: hidden;
}
.border-line {
    position: absolute;
    background: #c81d1d;
    z-index: 3;
    pointer-events: none;
}
.c-border-top {
    top: 0;
    left: 30px;
    width: 0;
    height: 5px;
}
.c-border-right {
    top: 30px;
    right: 0;
    width: 5px;
    height: 0;
}
.c-border-bottom {
    bottom: 0;
    right: 30px;
    width: 0;
    height: 5px;
}
.c-border-left {
    bottom: 30px;
    left: 0;
    width: 5px;
    height: 0;
}
.content-wrap.start-animation .c-border-top {
    animation: drawTop 0.6s linear forwards;
}

.content-wrap.start-animation .c-border-right {
    animation: drawRight 0.6s linear .6s forwards;
}

.content-wrap.start-animation .c-border-bottom {
    animation: drawBottom 0.6s linear 1.2s forwards;
}

.content-wrap.start-animation .c-border-left {
    animation: drawLeft 0.6s linear 1.8s forwards;
}
.c-border-top::before,
.c-border-top::after,
.c-border-bottom::before,
.c-border-bottom::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0;
    pointer-events: none;
}
.content-wrap.start-animation .c-border-top::before {
    animation: cornerIn 0.15s ease forwards;
    animation-delay: 2.4s;
}

.content-wrap.start-animation .c-border-top::after {
    animation: cornerIn 0.15s ease forwards;
    animation-delay: 0.6s;
}

.content-wrap.start-animation .c-border-bottom::before {
    animation: cornerIn 0.15s ease forwards;
    animation-delay: 1.8s;
}

.content-wrap.start-animation .c-border-bottom::after {
    animation: cornerIn 0.15s ease forwards;
    animation-delay: 1.2s;
}
.c-border-top::before {
    left: -30px;
    top: 0;
    border-top: 5px solid #c81d1d;
    border-left: 5px solid #c81d1d;
    border-top-left-radius: 30px;
}
.c-border-top::after {
    right: -30px;
    top: 0;
    border-top: 5px solid #c81d1d;
    border-right: 5px solid #c81d1d;
    border-top-right-radius: 30px;
}
.c-border-bottom::before {
    left: -30px;
    bottom: 0;
    border-bottom: 5px solid #c81d1d;
    border-left: 5px solid #c81d1d;
    border-bottom-left-radius: 30px;
}
.c-border-bottom::after {
    right: -30px;
    bottom: 0;
    border-bottom: 5px solid #c81d1d;
    border-right: 5px solid #c81d1d;
    border-bottom-right-radius: 30px;
}
@keyframes drawTop {
    to {
        width: calc(100% - 60px);
    }
}
@keyframes drawRight {
    to {
        height: calc(100% - 60px);
    }
}
@keyframes drawBottom {
    to {
        width: calc(100% - 60px);
    }
}
@keyframes drawLeft {
    to {
        height: calc(100% - 60px);
    }
}
@keyframes cornerIn {
    to {
        opacity: 1;
    }
}
.header {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-80px);
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.content-wrap.loaded .header {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.body-part .title {
    text-shadow:
        1px 1px 1px rgba(0, 0, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.9s ease 0.2s,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.body-part p {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease 0.4s,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    text-shadow:
        1px 1px 1px rgba(0, 0, 0, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.1);
}
.content-wrap.loaded .body-part .title,
.content-wrap.loaded .body-part p {
    opacity: 1;
    transform: translateY(0);
}

.body-part .footer-icons{
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease 0.4s,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
   
}
.content-wrap.loaded .body-part .footer-icons{
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1399px) {
    .body-part .title {
        font-size: 75px;
    }
    .body-part p {
        font-size: 22px;
    }
    .body-part {
        padding: 80px 0px 60px 0px;
    }
}
@media (max-width: 991px) {
    .footer-icons a+a {
    margin-top: 25px;
    margin-left: 0;
    }
    .footer-icons{flex-direction: column;}
    .body-part {
        justify-content: center;
        padding: 40px 0px;
    }
    .main-wrap .content {
        padding: 30px;
    }
    .main-wrap .content-wrap {
        padding: 30px;
    }
    .header .logo {
        max-width: 250px;
    }
    .body-part .title {
        font-size: 80px;
        margin-bottom: 30px;
    }
  
    .preloader {
        padding-left: 30px;
        bottom: 30px;
    }
    .footer-icons .icon{min-width: 40px;}
    .footer-icons a{
        align-items: start;
    }
    .footer-icons p{
       text-align: start;
    }
}
@media (max-width: 767px) {
    .contact-btn{
        padding: 10px 20px;
        font-size: 14px;
    }
    .footer-icons p{
            max-width: unset !important;
    font-size: 14px !important;
    }
    .footer-icons a{font-size: 16px;}
    .header .logo {
        max-width: 220px;
    }
    .header .call-us .icon {
        height: 32px;
        width: 32px;
    }
    .header .call-us img {
        height: 16px;
        width: 16px;
    }
    .header .call-us a {
        font-size: 14px;
    }
    .body-part {
        padding: 40px 0px;
    }
    .body-part .title {
        font-size: 60px;
        margin-bottom: 30px;
    }
    .body-part p {
        font-size: 19px;
    }
    .preloader {
        font-size: 35px;
        bottom: 30px;
    }
    .c-border-top {
        height: 3px;
    }
    .c-border-right {
        width: 3px;
    }
    .c-border-bottom {
        height: 3px;
    }
    .c-border-left {
        width: 3px;
    }
    .c-border-top::before {
        border-top: 3px solid #c81d1d;
        border-left: 3px solid #c81d1d;
    }
    .c-border-top::after {
        border-top: 3px solid #c81d1d;
        border-right: 3px solid #c81d1d;
    }
    .c-border-bottom::before {
        border-bottom: 3px solid #c81d1d;
        border-left: 3px solid #c81d1d;
    }
    .c-border-bottom::after {
        border-bottom: 3px solid #c81d1d;
        border-right: 3px solid #c81d1d;
    }
}
@media (max-width: 575px) {
    .header .logo {
        max-width: 150px;
    }
    .header .call-us .icon {
        height: 24px;
        min-width: 24px;
        width: 24px;
    }
    .header .call-us a {
        font-size: 12px;
    }
    .main-wrap .content {
        padding: 15px;
    }
    .main-wrap .content-wrap {
        padding: 25px;
    }
    .body-part {
        padding: 35px 0px;
    }
    .body-part .title {
        font-size: 45px;
        margin-bottom: 30px;
    }
    .body-part p {
        font-size: 16px;
    }
    .preloader {
        font-size: 30px;
        bottom: 25px;
    }
}
@media (max-width: 400px) {
    .header .logo {
        max-width: 130px;
    }
    .header .call-us .icon {
        height: 20px;
        min-width: 20px;
        width: 20px;
    }
    .header .call-us a {
        font-size: 12px;
    }
    .main-wrap .content {
        padding: 10px;
    }
    .main-wrap .content-wrap {
        padding: 15px;
    }
    .body-part {
        padding: 25px 0px;
    }
    .body-part .title {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .body-part p {
        font-size: 15px;
    }
    .preloader {
        font-size: 26px;
        bottom: 15px;
    }
}
