/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : pus_infotech                                                                            * 
* Support    : pusinfotech@gmail.com                                                                   * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/
/*================================================
[  Table of contents  ]
================================================== 
:: general css Style
   :: google font
   :: basic style     
   :: headings
   :: button style
   :: helper classes 
   :: section title
   :: box border
   :: custome class
:: preloader CSS
:: scroll-top button CSS
:: animations 
==================================================
[ End table content ]
================================================*/
@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/
/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Paytone+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/* :: basic style  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: #edf0f7;
    color: #202020;
    background-image: url("../../assets/images/main-bg.png");
    background-attachment: fixed;
}

p {
    font-size: 16px;
    line-height: 26px;
    color: #202020;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, li, a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a, a:hover, a:active, a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}

label, span {
    color: #202020;
}

ol, ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

    button:focus {
        outline: none;
        outline: 0;
    }

iframe {
    width: 100%;
    border: 0px;
}
/* :: Form */
textarea {
    resize: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

::-moz-selection {
    background: #ff00ae;
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: #ff00ae;
    color: #ffffff;
    text-shadow: none;
}
/* :: headings */
/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}
/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}
/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 26;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 26;
    }
}
/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}
/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}
/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}
/* :: button style */
.button-style {
    display: inline-block;
    vertical-align: top;
    line-height: 48px;
    padding: 0 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #ec5151;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

    .button-style:before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgb(202 38 38 / 30%);
        color: #ffffff;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        transition: .5s;
        transform-origin: 0 100%;
        transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
    }

    .button-style:hover {
        color: #ffffff;
    }

        .button-style:hover:before {
            transform: scaleX(1);
            -webkit-transform: scaleX(1);
            -moz-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -o-transform: scaleX(1);
        }
/* :: helper */
.text-gray {
    color: #606060 !important;
}

.text-color {
    color: #ff00ae !important;
}

.text-yellow {
    color: #ffff00 !important;
}

.bg_white {
    background-color: #ffffff !important;
}

.bg_color {
    background-color: #ff00ae !important;
}

.bg_01 {
    background-color: #202020 !important;
}

.bg_02 {
    background-color: #f1f1f1 !important;
}

.bg_03 {
    background-color: #f1f1f1 !important;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 2rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 2rem;
}
/*font family*/
.font-Bebas-Neu {
    font-family: 'Bebas Neue', cursive !important;
}

.font-Paytone-One {
    font-family: 'Paytone One', sans-serif !important;
}

.font-Roboto {
    font-family: 'Roboto', sans-serif !important;
}

/* :: form */
.form-control {
    height: 46px;
}

    .form-control:focus {
        background-color: transparent;
    }

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px 25px;
    color: #888888;
    height: 185px;
    background: transparent;
    color: #ffffff;
    resize: none;
    border-radius: 0px;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

input.error, select.error, textarea.error {
    border-color: #ff0000 !important;
}

/*================================================
:: preloader CSS
==================================================*/
.preloader {
    display: flex;
    justify-content: center;
    position: fixed;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: url("../../assets/images/main-bg.png");
    z-index: 9999;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
}

.preloader-icons {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: auto;
    width: 100% !important;
    position: absolute;
}
    /*.preloader-icons:before {content: ""; background: url(../../assets/images/view_border.png); height: 100px; width: 100px; display: inline-block; top: 0; bottom: 0; position: absolute; left: 0; right: 0; margin: auto; background-size: 100px; z-index: 9; -webkit-animation: rotate 4s linear infinite; -moz-animation: rotate 4s linear infinite; animation: rotate 4s linear infinite; }
.preloader-icons:after {content: ""; background: url(../../assets/images/view_icon.png); height: 100px; width: 100px; display: inline-block; top: 0; bottom: 0; position: absolute; left: 0; right: 0; margin: auto; background-size: 100px; z-index: 9; }*/
    .preloader-icons img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 200px;
    }

    .preloader-icons:before {
        content: "";
        background: url(../../assets/images/lion_loader_line.png);
        height: 220px;
        width: 220px;
        display: inline-block;
        top: 0;
        bottom: 0;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        background-size: 220px;
        z-index: 9;
        transform: rotate(0deg);
        transition: transform 0.7s linear;
        animation: rotate 7s infinite linear;
    }


/*================================================
:: animations
==================================================*/
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*================================================
:: home page
==================================================*/
.fullvideo video {
    cursor: url("../../assets/images/stop.png"), auto;
}

.fullvideo.stopicon video {
    cursor: url("../../assets/images/play.png"), auto;
}

.hover-video-area .video-list {
    position: relative;
}

.hover-video-area .gallery-text {
    position: absolute;
    bottom: 0;
}

.hover-video-area a.video, .hover-video-area a.image {
    display: block;
    position: relative;
}

.hover-video-area .gallery-text {
    position: absolute;
    bottom: 30px;
    z-index: 9;
    display: block;
    left: 25px;
    color: #fff;
}

.hover-video-area .video-list a.video video:before {
    content: "";
    position: absolute;
    background: rgb(32 32 32 / 0%);
    height: 100%;
    width: 100%;
    top: 0;
}

.hover-video-area .video-list a.image image:before {
    content: "";
    position: absolute;
    background: rgb(32 32 32 / 0%);
    height: 100%;
    width: 100%;
    top: 0;
}

.hover-video-area video {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    position: relative;
}

.hover-video-area image {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    position: relative;
}

.hover-video-area .video-list a.video video:hover:before {
    background: rgb(32 32 32 / 75%);
    z-index: 9;
}

.hover-video-area .video-list a.image image:hover:before {
    background: rgb(32 32 32 / 75%);
    z-index: 9;
}

.hover-video-area a.video:hover .gallery-text h3 {
    color: #ff00ae;
}

.hover-video-area a.image:hover .gallery-text h3 {
    color: #ff00ae;
}

/*view-icons*/
.view-icons {
    width: 100%;
    height: 100%;
    text-align: center;
    display: block;
}

    .view-icons img.view_icon {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        transform: translate(0px, 70%);
    }

.view_border {
    position: absolute;
    top: 28%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: scale(0.8);
}

.hover-video-area a.video:hover .view_border {
    transform: scale(1) rotate(0.1turn);
}

.hover-video-area a.image:hover .view_border {
    transform: scale(1) rotate(0.1turn);
}

.view-icons img {
    opacity: 0;
}

.hover-video-area a.video:hover .view-icons img {
    opacity: 1;
}

.hover-video-area a.image:hover .view-icons img {
    opacity: 1;
}

/*hoverview*/
.hoverview-icons {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: auto;
    width: 100% !important;
    position: absolute;
    opacity: 0;
}

    .hoverview-icons:before {
        content: "";
        background: url(../../assets/images/view_border.png);
        height: 100px;
        width: 100px;
        display: inline-block;
        top: 0;
        bottom: 0;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        background-size: 100px;
        z-index: 9;
        transform: scale(0.9) rotate(0.1turn);
        -webkit-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
        transition: all linear 0.3s;
    }

    .hoverview-icons:after {
        content: "";
        background: url(../../assets/images/view_icon.png);
        height: 100px;
        width: 100px;
        display: inline-block;
        top: 0;
        bottom: 0;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        background-size: 100px;
        z-index: 9;
    }

.hover-video-area a.video:hover .hoverview-icons:before {
    transform: scale(1) rotate(0.2turn);
}

.hover-video-area a.image:hover .hoverview-icons:before {
    transform: scale(1) rotate(0.2turn);
}

.hover-video-area a.video:hover .hoverview-icons {
    opacity: 1;
}

.hover-video-area a.image:hover .hoverview-icons {
    opacity: 1;
}

/*text-banner-area*/
.text-banner-area {
    background-color: #ff00ae;
    display: inline-block;
    width: 100%;
}


/*================================================
:: contact
==================================================*/
.contact-full-area {
    background-image: url(../../assets/images/contact_bg.gif);
    background-size: cover;
    height: 100vh;
    background-position: center;
}


/*================================================
:: directors
==================================================*/
.directors-full-area {
    background-image: url(../../assets/images/directors_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

.directors-center {
    min-height: calc(100vh - 80px);
}

.directors-center-text {
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 15px;
    background: url(../../assets/images/directors_user_bg.png);
    min-height: 290px;
    align-content: space-between;
    justify-content: space-around;
    border-radius: 15px;
}
    /*.directors-center-text:before {content: ""; background: url(../../assets/images/main-bg.png); width: 100%; height: 100%; position: absolute; opacity: 0.5; border-radius: 15px; min-height: 250px; }*/
    .directors-center-text > div {
        position: relative;
    }

.singledirectors {
    transform: inherit !important;
}

.directors-image {
    position: relative;
}

.directors-text-1 {
    transform: translate(50px, -60px );
}

.directors-text-2 {
    transform: translate(-60px, 50px );
}

.text-pagination-area {
    position: relative;
}

.header.sticky .Individual-patten {
    display: none;
}

.home-area .home-header .navbar-brand {
    display: none;
}

.home-area.body-area .home-header .navbar-brand {
    display: block;
}

/*directors_02*/



/*================================================
:: Individual
==================================================*/
.Individual-patten {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.Individual-user-area {
    background-image: url(../../assets/images/Individual-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0 25px 0;
}

/*================================================
:: about
==================================================*/
.box-about .about-image img {
    position: relative;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.box-about:hover .about-image img {
    transform: skew(15deg);
}


/*================================================
:: footer
==================================================*/
.footer-area {
    border-top: 2px solid #ff00ae;
}

.footer-lion {
    width: 190px;
}

.footer-social-media {
    text-align: right;
}

.footer-grid .footer-social-media li a {
    width: 60px;
    height: 60px;
    display: inline-block;
}

    .footer-grid .footer-social-media li a.social-vimeo {
        background: url(../../assets/images/footer_social_media/vimeo.png) no-repeat;
        background-size: 60px;
    }

        .footer-grid .footer-social-media li a.social-vimeo:hover {
            background: url(../../assets/images/footer_social_media/vimeo_white.png) no-repeat;
            background-size: 60px;
        }

    .footer-grid .footer-social-media li a.social-instagram {
        background: url(../../assets/images/footer_social_media/instagram.png) no-repeat;
        background-size: 60px;
    }

        .footer-grid .footer-social-media li a.social-instagram:hover {
            background: url(../../assets/images/footer_social_media/instagram_white.png) no-repeat;
            background-size: 60px;
        }

    .footer-grid .footer-social-media li a.social-fb {
        background: url(../../assets/images/footer_social_media/fb.png) no-repeat;
        background-size: 60px;
    }

        .footer-grid .footer-social-media li a.social-fb:hover {
            background: url(../../assets/images/footer_social_media/fb_white.png) no-repeat;
            background-size: 60px;
        }


/*====================================================*/
/*====================================================*/
/*============= portfolio area css ============*/
.portfolio_area {
    overflow: hidden;
}

    .portfolio_area .price_btn {
        border-color: #5f51fb;
        color: #5f51fb;
        background: transparent;
        margin-top: 50px;
        line-height: 48px;
        padding: 0px 30px;
    }

        .portfolio_area .price_btn:hover {
            background: #5f51fb;
            color: #fff;
        }

.portfolio_filter {
    display: flex;
    justify-content: center;
}

    .portfolio_filter .work_portfolio_item {
        font: 400 16px/22px "Poppins", sans-serif;
        color: #677294;
        display: inline-block;
        border-radius: 3px;
        transition: all 0.2s linear;
        position: relative;
        cursor: pointer;
    }

        .portfolio_filter .work_portfolio_item:before {
            content: "";
            width: 0;
            height: 1px;
            bottom: 0;
            background: transparent;
            position: absolute;
            left: auto;
            right: 0;
            transition: width 0.3s linear;
        }

        .portfolio_filter .work_portfolio_item.active, .portfolio_filter .work_portfolio_item:hover {
            color: #5e2ced;
        }

            .portfolio_filter .work_portfolio_item.active h3 {
                color: #ff00ae;
            }

            .portfolio_filter .work_portfolio_item.active:before, .portfolio_filter .work_portfolio_item:hover:before {
                width: 100%;
                background: #5e2ced;
                right: auto;
                left: 0;
            }

        .portfolio_filter .work_portfolio_item + .work_portfolio_item {
            margin-left: 60px;
        }

.portfolio_filter_blue .work_portfolio_item.active, .portfolio_filter_blue .work_portfolio_item:hover {
    color: #26c4e5;
}

    .portfolio_filter_blue .work_portfolio_item.active:before, .portfolio_filter_blue .work_portfolio_item:hover:before {
        width: 100%;
        background: #26c4e5;
    }

.pr_btn {
    margin-top: 70px;
    background: transparent;
    color: #26c4e5;
    border-color: #26c4e5;
}

    .pr_btn:hover {
        background: #26c4e5;
        color: #fff;
    }

.portfolio_gallery .portfolio_item .portfolio_img {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

    .portfolio_gallery .portfolio_item .portfolio_img img {
        max-width: 100%;
        width: 100%;
    }

    .portfolio_gallery .portfolio_item .portfolio_img .img_rounded {
        border-radius: 6px;
    }

    .portfolio_gallery .portfolio_item .portfolio_img .hover_content {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(44, 44, 57, 0.7);
        opacity: 0;
        transition: opacity 300ms linear;
    }

        .portfolio_gallery .portfolio_item .portfolio_img .hover_content .img_popup {
            width: 50px;
            height: 50px;
            font-size: 18px;
            line-height: 50px;
            text-align: center;
            right: 50px;
            top: 50px;
            border: 1px solid #fff;
            border-radius: 50%;
            color: #fff;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease-in;
        }

            .portfolio_gallery .portfolio_item .portfolio_img .hover_content .img_popup:hover {
                background: #fff;
                color: #282835;
            }

        .portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description {
            bottom: 0;
            padding-left: 50px;
            padding-bottom: 48px;
            width: 100%;
        }

            .portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description h3 {
                transform: translateY(25px);
                transition: all 0.4s linear;
                color: #fff;
            }

            .portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links {
                overflow: hidden;
            }

                .portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links a {
                    transform: translateY(25px);
                    color: #fff;
                    transition: all 0.3s linear;
                }

                    .portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links a:before {
                        background: #fff;
                    }

        .portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .img_popup {
            right: 30px;
            top: 30px;
        }

        .portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .portfolio-description {
            padding-left: 30px;
            padding-bottom: 30px;
        }

            .portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .portfolio-description .links a {
                font-size: 14px;
            }

    .portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content {
        opacity: 1;
    }

        .portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .img_popup {
            opacity: 1;
            transform: scale(1);
        }

        .portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .portfolio-description h3, .portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .portfolio-description a {
            transform: translateY(0);
        }

.portfolio-description .portfolio-title {
    overflow: hidden;
    display: inline-block;
}

.portfolio-description h3 {
    margin-top: 22px;
    margin-bottom: 0px;
    transition: color 0.2s linear;
    color: #282835;
}

    .portfolio-description h3:hover {
        color: #5e2ced;
    }

.portfolio-description .links {
    overflow: hidden;
}

    .portfolio-description .links a {
        font-size: 15px;
        color: #677294;
        font-weight: 300;
        position: relative;
        display: inline-block;
        margin-right: 8px;
        transition: color 0.01s linear;
    }

        .portfolio-description .links a:before {
            content: "";
            width: 0;
            height: 1px;
            bottom: 0;
            background: #5e2ced;
            position: absolute;
            left: auto;
            right: 0;
            transition: width 0.3s linear;
        }

        .portfolio-description .links a:hover {
            color: #5e2ced;
        }

            .portfolio-description .links a:hover:before {
                width: 100%;
                right: auto;
                left: 0;
            }

.portfolio_fullwidth_area {
    padding-top: 100px;
}

/*==============Start portfolio_details_area css ==============*/
.p_category_item .social_icon, .icon .social_icon {
    padding-top: 8px;
}

    .p_category_item .social_icon a, .icon .social_icon a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 13px;
        line-height: 43px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        margin-right: 5px;
        transition: all 0.2s linear;
        color: #fff;
    }

        .p_category_item .social_icon a:nth-child(1), .icon .social_icon a:nth-child(1) {
            background: #4779de;
        }

        .p_category_item .social_icon a:nth-child(2), .icon .social_icon a:nth-child(2) {
            background: #e43e30;
        }

        .p_category_item .social_icon a:nth-child(3), .icon .social_icon a:nth-child(3) {
            background: #1da1f3;
        }

        .p_category_item .social_icon a:hover, .icon .social_icon a:hover {
            box-shadow: 0px 5px 12px 2px rgba(0, 11, 40, 0.2);
        }

.portfolio_pagination {
    display: flex;
    justify-content: space-between;
}

    .portfolio_pagination .prev, .portfolio_pagination .next {
        font-size: 14px;
        font-weight: 300;
        color: #9ca3b9;
        transition: color 0.2s linear;
    }

        .portfolio_pagination .prev:hover, .portfolio_pagination .next:hover {
            color: #222d39;
        }

        .portfolio_pagination .prev i {
            padding-right: 8px;
        }

        .portfolio_pagination .next i {
            padding-left: 8px;
        }

.pr_slider .owl-prev, .pr_slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: transparent;
    border: 0px;
    background: transparent;
    padding: 0px;
    font-size: 24px;
    color: #677294;
    transition: color 0.2s linear;
    cursor: pointer;
}

    .pr_slider .owl-prev:hover, .pr_slider .owl-next:hover {
        color: #5e2ced;
    }

.pr_slider .owl-prev {
    left: 40px;
}

.pr_slider .owl-next {
    right: 40px;
}

.p_details_three .portfolio_category {
    flex-wrap: wrap;
    margin-top: 50px;
}

    .p_details_three .portfolio_category .p_category_item {
        flex: 0 0 50%;
        max-width: 50%;
    }

.p_details_three .portfolio_pagination {
    margin-top: 190px;
}

.p_details_three .icon {
    margin-top: 120px;
}

/*==============End portfolio_details_area css ==============*/


.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.about-video-container {
    position: relative;
    overflow: hidden;
}

.brand-multicolor-box {
    background-image: url(../../assets/images/multi-color-box.jpg);
    background-size: 100%;
    height: 100vh;
    background-position: center;
}

.freelance-bg {
    background-image: url(../../assets/images/Freelance-BG.jpg);
    background-size: 100%;
    height: 100vh;
    background-position: center;
}

.directors-bg {
    background-image: url(../../assets/images/shai-BG.jpg);
    background-size: 100%;
    height: 100vh;
    background-position: center;
}