body {
    font-family: "Montserrat";
}

.fw-600 {
    font-weight: 600 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

.bg-hover-dark:hover {
    background: #000000!important;
    border-color: #000000!important;
}

.bg-hover-dark:hover a,
a.bg-hover-dark:hover {
    color: #FFFFFF!important;
}

.text-dark-hover-white {
    color: #343a40!important;
}

.text-dark-hover-white:hover {
    color: #FFF!important;
}


/* HAMBURGER ICON ANIMATION */

.icon-bar {
    width: 22px;
    height: 2px;
    background-color: #B6B6B6;
    display: block;
    transition: all 0.2s;
    margin-top: 4px
}

.navbar-toggler {
    border: none;
    background: transparent !important;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}


/* HAMBURGER ICON ANIMATION */

.ml-min-15 {
    margin-left: -15px!important;
}

.mr-min-15 {
    margin-right: -15px!important;
}

.mb-none {
    margin-bottom: 0px!important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.border-10 {
    border-width: 10px !important;
}

.border-hover-1:hover {
    border-width: 1px !important;
}

.border-hover-2:hover {
    border-width: 2px !important;
}

.border-hover-3:hover {
    border-width: 3px !important;
}

.border-hover-4:hover {
    border-width: 4px !important;
}

.border-hover-5:hover {
    border-width: 5px !important;
}

.border-hover-10:hover {
    border-width: 10px !important;
}

.border-radius-top-left-05 {
    border-top-left-radius: 0.5rem!important;
}

.border-radius-top-right-05 {
    border-top-right-radius: 0.5rem!important;
}

.border-radius-bottom-left-05 {
    border-bottom-left-radius: 0.5rem!important;
}

.border-radius-bottom-right-05 {
    border-bottom-right-radius: 0.5rem!important;
}

.fs-3 {
    font-size: 3rem!important;
}

.fs-4 {
    font-size: 4rem!important;
}

.rotate {
    transform: rotate(90deg);
    /* Legacy vendor prefixes that you probably don't need... */
    /* Safari */
    -webkit-transform: rotate(90deg);
    /* Firefox */
    -moz-transform: rotate(90deg);
    /* IE */
    -ms-transform: rotate(90deg);
    /* Opera */
    -o-transform: rotate(90deg);
    /* Internet Explorer */
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.bg-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}


/*.bg-shop-online {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
  transition: background 1s ease-in-out;
}
.bg-shop-online:hover {
  background: linear-gradient(rgba(25, 25, 5, 0.6), rgba(255, 255, 255, 0.9));
}*/

.zoom-container {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bg-zoom-hover {
    transition: transform 0.5s;
}

.bg-zoom-hover:hover {
    transform: scale(1.03);
}

.bg-shop-online {
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
    z-index: 1;
}

.bg-shop-online::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(rgba(25, 25, 5, 0.2), rgba(23, 25, 5, 0.1));
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
}

.bg-shop-online:hover::before {
    opacity: 1;
}


/* START OF SUBMENU */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #cccccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #555;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}


/* END OF SUBMENU*/


/* PROJECTS BRANDS*/

.brands-box {
    position: relative;
    height: auto;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.brands-box:hover .image {
    opacity: 0.3;
}

.brands-box:hover .middle {
    opacity: 1;
}

.text {
    color: black;
    font-family: "Poppins";
}

.text:hover {
    color: black;
    text-decoration: none;
}


/* PROJECTS MODELS s*/

.models-box {
    position: relative;
    height: 220px;
}

.models-box:hover .image {
    opacity: 0.3;
}

.models-box:hover .middle {
    opacity: 1;
}


/* CONTACTFORM */

#ccms_form_contact label {
    display: none;
}

#ccms_form_contact textarea {
    height: 8em;
}


/* END OF CONTACTFORM*/

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}


/* extra css */

:root {
    --blue: #00CBFF;
    --pink: #F20081;
}

.blue {
    color: var(--blue);
}

.pink {
    color: var(--pink);
}

.bg-dark {
    background-color: rgb(34, 34, 34) !important;
}

.text-underlined {
    text-decoration: underline;
}

.text-decoration-none {
    text-decoration: none;
}

.body {
    width: 100%;
    overflow-x: hidden;
}

.navigation {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
}

.navigation-page {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: rgb(36, 35, 35);
    transition: background-color 0.2s ease-in-out;
}

.navbar {
    height: 115px;
}

.navbar-brand {
    opacity: 0;
}

.navbar-brand img {
    height: 65px;
    /*opacity: 0;*/
    max-height: 75px;
}

.navbar-brand-page img {
    height: 65px;
    opacity: 1;
    max-height: 75px;
}

.navbar .nav-item {
    margin-right: 1rem;
    margin-left: 1rem;
}

.navbar-nav .nav-item .nav-link {
    color: var(--pink);
    font-weight: 600;
    text-transform: uppercase;
}

.nav-item:hover .nav-link {
    color: var(--blue);
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--blue);
}

.nav-item .nav-link:hover {
    cursor: pointer;
    color: var(--blue);
}

.navbar .contact-btn {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar .contact-btn .nav-item {
    border: 1px solid var(--pink);
}

.navbar .contact-btn .nav-item:hover {
    border: 1px solid var(--blue);
}

.navbar .contact-btn .nav-item .nav-link {
    color: var(--pink);
    text-transform: uppercase;
    font-weight: 600
}

.navbar .contact-btn .nav-item:hover .nav-link {
    color: var(--blue);
}

.navbar-toggler .icon-bar {
    background-color: white;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.langnav ul li .nav-link:hover,
.langnav ul li .nav-link.font-weight-bold {
    color: var(--blue);
}

.fullscreen-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.fullscreen-bg video {
    object-fit: cover;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.viewport-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.bannerLogo {
    max-height: 80vh;
    margin-top: 1vh;
    margin-bottom: 7vh;
}

.aboutuslogoarea {
    display: flex;
    align-items: center;
}

.aboutuslogoarea img {
    width: 100%;
}

.scrollViewMore {
    border: 1px solid var(--pink);
    color: var(--pink);
    padding: .5rem;
    font-weight: 600;
    cursor: pointer;
}

.scrollViewMore:hover,
.scrollViewMore:focus {
    color: var(--blue);
    border: 1px solid var(--blue);
    text-decoration: none;
}


/* instagram section */

.Heading {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.75rem;
}

.Heading span {
    font-weight: 400;
}

.instagram_col {
    /* height: 250px;
  width: auto;
  display: inline-block;
  margin-bottom: 1rem; */
    transition: opacity 0.5s linear;
}

.instagram_col:hover {
    opacity: 0.5;
}


/* client ara */

.clientLogos {
    text-align: center;
    justify-content: center;
}


/* contact form */

.contact-form #contact_name,
.contact-form #contact_message,
.contact-form #contact_email,
.contact-form #contact_phone {
    border: none;
    border-bottom: 1px solid var(--pink);
    border-radius: 0;
    font-weight: bold;
    color: #000000;
}

.contact-form #contact_name:hover,
.contact-form #contact_message:hover,
.contact-form #contact_email:hover,
.contact-form #contact_phone:hover,
.contact-form #contact_name:focus,
.contact-form #contact_message:focus,
.contact-form #contact_email:focus,
.contact-form #contact_phone:focus {
    outline: none;
    box-shadow: none;
}

.contact-form #contact_name:focus,
.contact-form #contact_message:focus,
.contact-form #contact_email:focus,
.contact-form #contact_phone:focus {
    border-bottom: 1px solid var(--blue);
}

.contact-form #contact_name::placeholder,
.contact-form #contact_message::placeholder,
.contact-form #contact_email::placeholder,
.contact-form #contact_phone::placeholder {
    color: #000000;
}

.contact-form button[type='submit'] {
    color: var(--pink);
    border: 1px solid var(--pink);
    background-color: white;
    font-weight: bold;
    border-radius: 0;
    padding: 5px 1rem;
    text-transform: uppercase;
    float: right;
}

.contact-form button[type='submit']:hover,
.contact-form button[type='submit']:focus {
    box-shadow: none;
    color: var(--blue);
    border: 1px solid var(--blue);
}

.link {
    color: inherit;
}

.link:hover,
.link:focus {
    color: inherit;
}


/* portofolio page */

.portfolioNavigation .navigationArea {
    justify-content: center;
    padding-top: 9rem;
}

.portfolioNavigation .navigationArea {
    justify-content: center;
}

.portfolioNavigation .navigationArea .navigation-item {
    color: var(--pink);
    text-transform: uppercase;
    border: 1px solid var(--pink);
    padding: 10px 1rem;
    margin: 0 1rem;
    transition: background-color 0.5s ease;
}

.portfolioNavigation .navigationArea .navigation-item:hover,
.portfolioNavigation .navigationArea .navigation-item.active {
    background-color: var(--pink);
    color: white;
    text-decoration: none;
}

.categoriesnav {
    list-style: none;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.categoriesnav li {
    padding: 0 1rem;
    text-transform: uppercase;
    cursor: pointer;
}


/* MASONRY */

.masonry_grid-item {
    margin-bottom: 8px;
    padding: 0 4px;
    overflow: hidden;
}

.grid-item--width2 {
    width: 400px;
}

.portfoliogrid {
    max-width: 8.33%;
    width: 8.33%
}

.grid-flex--width3 {
    max-width: 33.33%;
    width: 33.33%
}

.grid-flex--width2 {
    max-width: 50%;
    width: 50%
}

.grid-flex--width {
    max-width: 25%;
    width: 25%
}

.grid-item--height {
    min-height: 250px;
    height: 250px;
}

.grid-item--height2 {
    min-height: 300px;
    height: 300px;
}


/* MASONRY */

.opacityAnimation {
    transition: 0.5s linear opacity;
}

.opacityAnimation:hover {
    opacity: 0.65;
}

.ekko-lightbox {
    z-index: 9999;
}

.ekko-lightbox .modal-content {
    background: transparent;
    border: none;
}

.videoEl {
    color: var(--pink);
    text-decoration: none;
}

.videoEl:hover {
    text-decoration: none;
    color: var(--pink);
    cursor: pointer;
}

.videoEl>div {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.photobox {
    overflow: hidden;
}

.videoEl:hover>div {
    transform: scale(1.2);
}

.videoEl>div::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 4em;
    content: "\f144";
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: 0.5s linear opacity;
}

.videoEl>div:hover:before {
    opacity: 1;
}


/* footer */

.footerLogo {
    max-height: 90px;
}


/* scroll to top button */

#backToTop {
    position: fixed;
    opacity: 0;
    right: 50px;
    bottom: 50px;
    z-index: 100;
    padding: 10px;
    border: 1px solid var(--pink);
    cursor: pointer;
    transition: opacity .25s ease-in, bottom .25s ease;
    text-transform: uppercase;
    background-color: var(--pink);
    font-size: .5rem;
    font-weight: bolder;
}

#backToTop:hover,
#backToTop:focus {
    border: 1px solid var(--pink);
    background-color: var(--pink);
    outline: none;
}

#backToTop:hover span,
#backToTop:focus span {
    color: white !important;
}

.btn-social {
    max-width: 2em;
    max-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border-radius: 50%;
}

.socialArea {
    align-items: center;
    justify-content: flex-end;
}

.footerDetails {
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 991px) {
    .aboutuslogoarea img {
        transform: scale(1.5);
    }
}

@media (max-width: 991px) {
    .Heading {
        margin: 0 auto 1rem !important;
        text-align: center;
    }
    .portfolioNavigation .navigationArea {
        padding-top: 9rem;
    }
    .navbar-collapse {
        /* height: calc(100vh - 90px) !important; */
        height: 101vh !important;
        transition: height 0.2s ease-in-out;
        width: 100vw !important;
        top: 0;
        left: 0;
        position: absolute;
        background: rgb(34, 34, 34);
        z-index: -1;
    }
    .navbar {
        height: auto;
        min-height: 90px;
        transition: height 0.2s ease-in-out;
    }
    .navbar-brand img {
        max-height: 55px;
    }
    .navbar-brand-page img {
        max-height: 55px;
    }
    .navbar ul li {
        margin: 20px 0px !important;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        width: 100%;
        padding-bottom: 1rem;
    }
    .fullscreen-bg video {
        height: 100vh;
    }
    .viewport-header {
        justify-content: center;
    }
    .grid-item--height {
        min-height: 170px;
        height: 170px;
    }
    .contact-form {
        padding-top: 3rem;
    }
    footer .footerLogoArea {
        order: 1;
    }
    footer .footerDetails {
        order: 2;
        justify-content: center;
        text-align: center;
    }
    footer .socialArea {
        order: 3;
        justify-content: center;
    }
    #backToTop {
        right: 15px;
        bottom: 15px;
    }
}


/* new css grid */

.collage-row {
    margin-bottom: 8px;
    display: flex;
}

.collage-row.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 8px;
}

.videogrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px;
}

.collage-row a {
    overflow: hidden;
    position: relative;
    max-height: 40vw;
}

.collage-row a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1s;
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.collage-row a:hover {
    cursor: pointer;
    opacity: 0.6;
}

.collage-row.collage-25_50_25 a:nth-of-type(1) {
    width: 25%;
    margin-right: 8px;
}

.collage-row.collage-25_50_25 a:nth-of-type(2) {
    width: 50%;
}

.collage-row.collage-25_50_25 a:nth-of-type(3) {
    margin-left: 8px;
    width: 25%;
}

.collage-row.collage-65_35 a:nth-of-type(1) {
    width: 65%;
    margin-right: 8px;
}

.collage-row.collage-65_35 a:nth-of-type(2) {
    width: 35%;
}

.collage-row.collage-50_25_25 a:nth-of-type(1) {
    width: 50%;
    margin-right: 8px;
}

.collage-row.collage-50_25_25 a:nth-of-type(2) {
    width: 25%;
}

.collage-row.collage-50_25_25 a:nth-of-type(3) {
    margin-left: 8px;
    width: 25%;
}

.collage-row.collage-30_30_40 a:nth-of-type(1) {
    width: 30%;
    margin-right: 8px;
}

.collage-row.collage-30_30_40 a:nth-of-type(2) {
    width: 30%;
}

.collage-row.collage-30_30_40 a:nth-of-type(3) {
    margin-left: 8px;
    width: 40%;
}

.collage-row.collage-35_65 a:nth-of-type(1) {
    width: 35%;
    margin-right: 8px;
}

.collage-row.collage-35_65 a:nth-of-type(2) {
    width: 65%;
}

.collage-row.collage-25_25_50 a:nth-of-type(1) {
    width: 25%;
    margin-right: 8px;
}

.collage-row.collage-25_25_50 a:nth-of-type(2) {
    width: 25%;
}

.collage-row.collage-25_25_50 a:nth-of-type(3) {
    margin-left: 8px;
    width: 50%;
}

.collage-row.collage-33_33_33 a:nth-of-type(1) {
    width: 33.33%;
    margin-right: 8px;
}

.collage-row.collage-33_33_33 a:nth-of-type(2) {
    width: 33.33%;
}

.collage-row.collage-33_33_33 a:nth-of-type(3) {
    margin-left: 8px;
    width: 33.33%;
}

.collage-row.collage-50_50 a:nth-of-type(1) {
    width: 50%;
    margin-right: 8px;
}

.collage-row.collage-50_50 a:nth-of-type(2) {
    width: 50%;
}


/* instagrid */

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 8px;
}

.insta-grid .insta-grid-item {
    transition: all 1s;
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
    padding-top: 100%;
    box-sizing: border-box;
    position: relative;
}

.insta-grid .insta-grid-item:hover {
    opacity: 0.6;
}

.insta-grid .insta-grid-item .content {
    /* absolutely positioned */
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

@media (max-width: 991px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* added comment so that a commit can happen */