/*banner*/

.temp01-banner-01 .container{
    display: flex;
    align-items: center;
}


.temp01-banner-01 {
    height: 100vh;
    background-size: cover !important;
    position: relative;
    z-index: 0;
}

.temp01-banner-01 .mouse-btn-down {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: 20px;
    width: 30px;
    height: 68px;
    cursor: pointer;
    display: block;
    z-index: 20;
    cursor: pointer;
}

.temp01-banner-01 .mouse-btn-down .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.chevron {
    position: absolute;
    width: 25px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.temp01-banner-01::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    z-index: 1;
}

.btn-primary {
    font-size: 15px;
    padding: 13px 25px;
    border: 2px solid #fff;
    color: #fff;
    position: relative;
    min-width: 150px;
    transition: .4s;
    border-radius: 25px;
    background: transparent;
}

.btn-primary:hover,
.btn-dark:hover {
    /* border-color: #FF1D2C;
    color: #FF1D2C; */
    transition: .4s;
    background: transparent;
}

.btn-primary:hover svg path {
    /* stroke: #FF1D2C; */
}

.btn-dark:hover svg path {
    /* stroke: #FF1D2C !important; */
}

.btn-dark {
    font-size: 15px;
    padding: 13px 25px;
    border: 2px solid #010814;
    color: #010814;
    position: relative;
    min-width: 150px;
    transition: .4s;
    border-radius: 25px;
    background: transparent;
}

.text-link {
    /* color: #FF1D2C !important; */
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    text-align: left;
    display: block;
}

.text-link:after {
    content: "";
    /* background: #FF1D2C; */
    height: 3px;
    display: block;
    transition: .4s;
    width: 45px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.text-link:hover:after {
    width: 85px;
    transition: .4s;
}

.temp01-banner-01 .banner-content {
    position: relative;
    z-index: 10;
    transform: translate(50%, 0%);
    left: -50%;
    /* top: 15%; */
}

.temp01-banner-01 .banner-content .logo-wrap {
    width: 210px;
    height: 210px;
    background-size: cover !important;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid #ededed;
}

.temp01-banner-01 .banner-content .logo-wrap-2 {
    width: 100px;
    height: 100px;
    background-size: cover !important;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid #ededed;
}

.temp01-banner-01 .banner-content h1 {
    font-weight: 700;
    font-size: 2.9rem;
    color: #fff;
    text-shadow: 0px 0px 5px #0006;
}

.temp01-banner-01 .banner-content h6 {
    font-size: 1.5rem;
    padding-top: 5px;
    font-weight: 700;
    color: #fff;
}

.temp01-banner-01 .banner-content p {
    font-size: 1.2rem;
    font-weight: 300;
    padding-top: 10px;
    line-height: 35px;
    color: #fff;
    text-shadow: 0px 0px 5px #0006;
}


/*banner*/

@media only screen and (min-device-width: 320px) and (max-device-width:667px) {
    .banner-content {
        /* transform: translate(50%, 0%) !important; */
        padding: 0px 15px;
    }

    .temp01-banner-01 {
        height: 100vh;
    }

    .temp01-banner-01 .banner-content .logo-wrap {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .temp01-banner-01 .banner-content h1 {
        font-size: 30px;
    }

    .temp01-banner-01 .banner-content h6 {
        font-size: 19px;
    }

    .btn {
        min-width: 133px;
    }

    .temp01-banner-01 .banner-content .btn-primary{
        margin-top: 15px;
    }

    .temp01-banner-01 .banner-content p {
        font-size: 1.1rem;
        font-weight: 300;
        padding-top: 10px;
        line-height: 22px;
        padding-top: 0;
    }
}

@media only screen and (min-device-width: 393px) and (max-device-width: 393px) {
    .temp01-banner-01 {
        height: 75vh;
    }

    .temp01-banner-01 .banner-content {
        transform: translate(50%, -5%);
    }
}

@media only screen and (min-device-width: 411px) and (max-device-width: 411px) {
    .temp01-banner-01 {
        height: 70vh;
    }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 414px) {
    .temp01-banner-01 {
        height: 85vh;
    }

    .banner-content {
        transform: translate(50%, -3%) !important;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 375px) {
    .temp01-banner-01 {
        height: 75vh;
    }

    .temp01-banner-01 .banner-content {
        transform: translate(50%, -5%);
    }
}


@media only screen and (min-device-width: 1024px) {
    .temp01-banner-01 .banner-content .row{
        min-width: 980px;
      }
}

/* @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .temp01-banner-01 .banner-content .row{
        min-width: 730px;
      }
}*/



@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .left-alligned-banner {
        height: 70vh;
    }

    .banner-content {
        transform: translate(50%, 0%);
    }

    .temp01-banner-01 {
        height: 65vh;
    }

    .temp01-banner-01 .banner-content {
        transform: translate(50%, 1%);
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {}