html {
  scroll-behavior: smooth;
}
body {
    margin: 0px;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #000;
}
h1, h2, h3, h4, h5 {
    font-family: 'Work Sans', sans-serif;
    line-height: 1em;
    color: #000;
}
strong {
    font-weight: 700;
}
p:last-of-type {
    margin-bottom: 0;
}
.hide-on-mobile {
    display: block;
}
.hide-on-desktop {
    display: none;
}
/* menu */
#main-header{
    position: fixed;
    top: 0;
    z-index: 99;
    background: transparent;
    width: 100%;
    padding-top: 0.5rem;
}
#main-header .row{
    align-items: center;
}
#main-header .col-md-4 {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
#main-header .header-logo img{
    width: 90%;
}
.menu_social ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
}
.menu_social ul li {
    padding-right: 10px;
}
.menu_social ul li:last-child {
    padding-right: 0;
}
.menu_social ul li img {
    width: 30px;
    height: 30px;
}
.header-logo {
    display: block;
    -webkit-transition: -webkit-transform 1s, opacity 0.8s;
    transition: transform 1s, opacity 0.8s;
    -webkit-transform: translateY(-50vh);
    transform: translateY(-50vh);
}
.header-logo img {
    display: none;
}
.menu_social {
    display: flex;
    height: 51.3px;
    align-items: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 1s, opacity 0.8s;
    transition: transform 1s, opacity 0.8s;
}
.popup-overlay-logo .header-logo {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.popup-overlay-logo .header-logo img {
    display: block;
}
.popup-overlay-logo .menu_social {
    display: none;
}
.right_menu_options{
    display: flex;
    align-items: center;
    justify-content: end;
    float: right;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}
input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    float: right;
    width: 40px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #ED197A;
    margin-bottom: 8px;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
    margin-bottom: 0;
}
.sidebarIconToggle:hover div {
    background: #4d4d4d;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
    margin-bottom: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
    margin-bottom: 0;
    background-color: #ED197A;
    margin-left: 5px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
    margin-bottom: 0;
    background-color: #ED197A;
    margin-left: 5px;
}

/* Overlay Menu */
.overlay {
    position: fixed;
    background: #FFF;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.overlay-menu {
    position: relative;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: 400;
    text-align: center;
}
.overlay-menu-wrapper {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: auto;
    grid-template-rows: 195px 195px;
    grid-template-areas:
            'a b c d'
            'a e f f'
    ;
}
.overlay-menu-wrapper .menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ccc;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
    -webkit-transition: -webkit-transform 1s, opacity 0.8s;
    transition: transform 1s, opacity 0.8s;
}
.overlay.open .overlay-menu-wrapper .menu-item {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    cursor: pointer;
}
.menu-item.menu-item-1 {
    grid-area: a;
    -webkit-transform: translate3d(100vh, -50vh, 0vh);
    transform: translate3d(-100vh, -50vh, 0vh);
}
.menu-item.menu-item-2 {
    grid-area: b;
    -webkit-transform: translate3d(50vh, -100vh, 0vh);
    transform: translate3d(50vh, -100vh, 0vh);
}
.menu-item.menu-item-3 {
    grid-area: c;
    -webkit-transform: translate3d(-50vh, 100vh, 0vh);
    transform: translate3d(-50vh, 100vh, 0vh);
}
.menu-item.menu-item-4 {
    grid-area: d;
    -webkit-transform: translate3d(-150vh, -100vh, 0vh);
    transform: translate3d(-150vh, -100vh, 0vh);
}
.menu-item.menu-item-5 {
    grid-area: e;
    -webkit-transform: translate3d(150vh, 100vh, 0vh);
    transform: translate3d(50vh, 100vh, 0vh);
}
.menu-item.menu-item-6 {
    grid-area: f;
    -webkit-transform: translate3d(-50vh, -100vh, 0vh);
    transform: translate3d(-50vh, -100vh, 0vh);
}
.overlay-menu-wrapper .menu-item a {
    font-family: 'Work Sans', sans-serif;
    font-size: 32px;
    width: 100%;
    text-decoration: none;
    display: block;
    color: #ED197A;
    font-weight: 500;
    transition: 0.4s ease-in-out;
}
.overlay-menu-wrapper .menu-item:hover a {
    color: #4d4d4d;
}
.overlay-menu-wrapper .menu-item.menu-item-1 a {
    transform: rotate(270deg);
}

/* Hero Section */
.hero-section video.hide-on-mobile {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

/* Menu Modal Contents */
.ps-modal {
    background: #ccc;
    padding: 32px 35px;
    height: calc(100vh - 25%);
    overflow-y: auto;
    overflow-x: clip;
    position: fixed;
    top: 54.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999;
    border-radius: 5px;
    scrollbar-width: auto;
    scrollbar-color: #ED197A #ffffff;
}
.ps-modal.contact-modal {
    padding: 35px;
}
.ps-modal::-webkit-scrollbar {
    width: 5px;
}
.ps-modal::-webkit-scrollbar-track {
    background: transparent;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.ps-modal::-webkit-scrollbar-thumb {
    background-color: #ED197A;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 5px solid #ED197A;
}
.ps-modal .ps-modal-close {
    position: sticky;
    float: right;
    top: -36px;
    color: #ED197A;
    margin-top: -36px;
    margin-right: -22px;
    font-size: 30px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
.ps-modal.contact-modal .ps-modal-close {
    top: -39px;
    margin-top: -39px;
}
.ps-modal .ps-modal-close:hover {
    color: #4d4d4d;
}
.ps-modal.coming-soon-modal {
    height: 140px;
    width: 278px !important;
    top: 50%;
    background: #4d4d4d;
}
.ps-modal.coming-soon-modal .ps-modal-close {
    color: #fff;
}
.ps-modal.coming-soon-modal .ps-modal-close:hover {
    color: #ED197A;
}
.ps-modal.coming-soon-modal .ps-modal-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.coming-soon-content-wrapper p {
    color: #fff;
}
/* About Us Modal */
.about-list-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-list-wrapper ul {
    list-style: none;
    padding-left: 0;
    width: 45%;
}
.about-list-wrapper ul li {
    padding-bottom: 3px;
    position: relative;
    padding-left: 23px;
    display: flex;
    align-items: center;
}
.about-list-wrapper ul li:last-child {
    padding-bottom: 0;
}
.about-list-wrapper ul li:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    content: "\f00c";
    color: #fff;
    position: absolute;
    left: 0;
    top: 4px;
    background: #ED197A;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: end;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}
.about-list-wrapper ul li:hover:before {
    color: #4d4d4d;
}
/* Services Modal */
.services-top-content {
    padding-bottom: 20px;
}
.services-select-box {
    padding-bottom: 20px;
    width: 45%;
    position: relative;
}
.services-select-box .select-services {
    width: 100%;
    margin-left: 0;
    outline: none;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid #ED197A;
    appearance: none;
    cursor: pointer;
}
.services-select-box::after {
    font-family: "Font Awesome 5 Pro";
    content: '\f0d7';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 12px;
    color: #ED197A;
    pointer-events: none;
    cursor: pointer;
}
.services-owl-carousel .item ul {
    list-style: none;
    padding-left: 2rem;
    margin-bottom: 0;
}
.services-owl-carousel .item ul li {
    padding-bottom: 3px;
    position: relative;
    padding-left: 23px;
    display: flex;
    align-items: center;
}
.services-owl-carousel .item ul li:last-child {
    padding-bottom: 0;
}
.services-owl-carousel .item ul li:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    content: "\f00c";
    color: #fff;
    position: absolute;
    left: 0;
    top: 4px;
    background: #ED197A;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: end;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}
.services-owl-carousel .item ul li:hover:before {
    color: #4d4d4d;
}
.services-owl-carousel .owl-dots {
    display: none;
}
/* Contact Modal */
.contact-section-wrapper {
    display: flex;
    gap: 50px;
}
.contact-us-details {
    width: 30%;
}
.contact-form-wrapper {
    width: 70%;
}
.contact-us-details .contact-socials h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0.7em;
    position: relative;
    text-transform: capitalize;
}
.contact-us-details .contact-socials ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.contact-us-details .contact-socials ul li {
    padding-bottom: 15px;
}
.contact-us-details .contact-socials ul li:last-child {
    padding-bottom: 0;
}
.contact-us-details .contact-socials a {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    transition: 0.4s ease-in-out;
}
.contact-us-details .contact-socials a img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}
.contact-form-wrapper form {
    margin-bottom: 0;
}
.contact-form-wrapper h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0.7em;
    position: relative;
    text-transform: capitalize;
}
.form-field-wrapper {
    margin-bottom: 20px;
}
.form-field-wrapper:last-child {
    margin-bottom: 0;
}
.contact-form-wrapper form input {
    width: 100%;
    outline: none;
    color: #000;
    padding: 0.65rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.contact-form-wrapper form textarea {
    width: 100%;
    outline: none;
    color: #000;
    padding: 0.65rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: 110px;
    resize: none;
}
.contact-form-wrapper form select {
    width: 100%;
    outline: none;
    color: #000;
    padding: 0.65rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.contact-form-wrapper .submit-btn .success-msg {
    display: inline-block;
    color: #ED197A;
}
.contact-form-wrapper form button {
    background: #ED197A;
    float: right;
    padding: 0.75rem;
    width: 200px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    transition: 0.4s ease-in-out;
}
.contact-form-wrapper form button:hover {
    background: #4d4d4d;
}
.contact-form-wrapper .form-field span.error {
    color: #ED197A;
    text-transform: lowercase;
}
::placeholder {
    color: #000;
}
:-ms-input-placeholder {
    color: #000;
}
::-ms-input-placeholder {
    color: #000;
}
#loader{
    display: none;
}
/* Portfolio Modal */
.portfolio-wrapper {
    display: grid;
    grid-template-columns: auto;
}
.portfolio-list {
    display: flex;
    align-items: center;
    box-shadow: rgba(165, 165, 165, 0.5) 5px 5px, rgba(165, 165, 165, 0.4) 10px 10px, rgba(165, 165, 165, 0.3) 15px 15px, rgba(165, 165, 165, 0.2) 20px 20px, rgba(165, 165, 165, 0.1) 25px 25px;
    padding: 30px;
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
}
.portfolio-list:hover {
    box-shadow: rgba(77, 77, 77, 0.4) 5px 5px, rgba(77, 77, 77, 0.3) 10px 10px, rgba(77, 77, 77, 0.2) 15px 15px, rgba(77, 77, 77, 0.1) 20px 20px, rgba(77, 77, 77, 0.05) 25px 25px;
    transform: translate3d(-2px, -2px, 1px);
}
.portfolio-list .portfolio-logo img {
    width: 60px;
    height: auto;
}
.portfolio-list .portfolio-logo {
    float: left;
    padding: 0 10px 0 0;
}
.portfolio-list p a.portfolio-title {
    color: #ED197A;
    text-decoration: none;
    position: relative;
}
.portfolio-list p a.portfolio-title:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ED197A;
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}
.portfolio-list:hover p a.portfolio-title:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* partners slider */
.partners-slider {
    width: 100%;
    height: auto;
}
.partners-slider .swiper-slide {
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.partners-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;: none;
}
.partners-slider.swiper-3d .swiper-slide-shadow-left {
    background-image: none;
}
.partners-slider.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}
.partners-slider .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 62px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
}
.partners-slider .swiper-pagination-bullet-active {
    background: #ED197A;
}

/* footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
.copyright p {
    text-align: center;
    margin: 0;
    padding: 0.5rem 0;
    color: #000;
}