/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url(https://allfont.net/allfont.css?fonts=agency-fb);

@font-face {
    font-family: myBanglaFirstFont;
    src: url(font/LiUllashRRRUnicode.ttf);
}

body {
    font-family: 'Agency FB', arial, serif;
    color: #444444;
}

a {
    color: #ffc451;
    text-decoration: none;
}

a:hover {
    color: #ffd584;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Agency FB", serif;
}

p {
    font-size: 20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffc451;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
}

.back-to-top:hover {
    background: #151515;
}

.back-to-top:hover i {
    color: #ffc451;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
}

.sk-rotating-plane {
    width: 50px;
    height: 50px;
    background-color: #FFC815;
    /*background-color: #222;*/
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(0, 0, 0, 0.8);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #ffc815;
    padding: 10px 15px;
}

#header .logo a {
    color: #fff;
}

#header .logo a span {
    color: #ffc815;
}

#header .logo img {
    max-height: 50px;
}

@media (max-width: 768px) {
    #header .logo {
        padding: 5px 7px;
    }

    #header .logo img {
        max-height: 30px;
    }
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
    color: #fff;
    border-radius: 4px;
    padding: 7px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #ffc815;
}

.get-started-btn:hover {
    background: #ffc815;
    color: #343a40;
}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #ffc815;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #151515;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    background-color: #ffc815;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #151515;
    background-color: #ffc815;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #151515;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    background-color: #ffc815;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 97vh;
    background: url("../img/banner_2-1.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.03);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    position: relative;
    padding-top: 74px;
    text-align: center;
}

#hero h1 {
    margin: 0;
    font-size: 46px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

#hero h1 span {
    color: #ffc815;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0 0 0;
    font-size: 20px;
}


@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 60vh;
    }

    #hero h1 {
        font-size: 18px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 16px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #000000;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1f1f1f;
}

/*.section-title h2::after {*/
/*  content: "";*/
/*  width: 120px;*/
/*  height: 1px;*/
/*  display: inline-block;*/
/*  background: #ffc815;*/
/*  margin: 4px 10px;*/
/*}*/

.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    position: relative;
}

.section-title p:after {
    content: "";
    width: 80px;
    height: 3px;
    background: #ffc815;
    position: absolute;
    bottom: -7px;
    left: 0;
}

@media (max-width: 992px) {
    .section-title {
        padding-bottom: 20px;
    }

    section {
        padding: 10px 0;
        overflow: hidden;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .about-img {
    position: relative;
    transition: 0.5s;
    height: 400px;
    margin-top: 80px;
    box-shadow: 4px 4px 15px -3px rgba(0, 0, 0, 0.75);
}

.about .about-img img {
    width: 100%;
    height: 100%;
    position: relative;
}

.about .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 8px solid #ffffff;
    border-top: 8px solid #ffffff;
    transition: 0.5s;
}

.about .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 8px solid #ffffff;
    border-bottom: 8px solid #fefefe;
    transition: 0.5s;
}

.about .about-img:hover {
    transform: scale(1.03);
}

.about .about-img:hover::before {
    left: 10px;
    top: 10px;
}

.about .about-img:hover::after {
    right: 10px;
    bottom: 10px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content p {
    text-align: justify;
    color: #848484;
}

.about .fst-italic {
    color: black;
}

@media (max-width: 768px) {
    .about .about-img {
        height: auto;
    }
}

/*mission & vision*/

.serviceBox {
    text-align: center;
    padding-top: 10px;
}

.service-image
{
    width: 90%;
    height: 450px;
    margin-bottom: 30px;
    box-shadow: 5px 5px 16px 0px rgba(0,0,0,0.75);
}

.service-image img
{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.serviceBox {
    border: 1px solid #e5e4e4;
    padding: 40px;
    border-radius: 5px;
    background: #f7f7f7;
    position: relative;
    z-index: 1;
    color: #000000;
    height: 100%;
}

.serviceBox .title {
    color: #000000;
    font-size: 22px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: bold;
}

.serviceBox .description {
    color: #848484;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: justify;
}

.serviceBox.red .service-icon:before {
    background: linear-gradient(to right, #000000 50%, transparent 50%);
}
.serviceBox.red .service-icon:after {
    background: #202020;
}
.serviceBox.red .title {
    color: #202020;
}

.serviceBox.green .service-icon:before {
    background: linear-gradient(to right, #a1c52d 50%, transparent 50%);
}
.serviceBox.green .service-icon:after {
    background: #a1c52d;
}
.serviceBox.green .title {
    color: #a1c52d;
}

@media only screen and (max-width: 990px) {
    .serviceBox {
        margin: 0 0 30px;
    }

    .serviceBox {
        padding: 20px;
    }

    .service-image
    {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
        box-shadow: 5px 5px 16px 0px rgba(0,0,0,0.75);
    }
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
    padding: 10%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #6D675E;
    height: 100%;
}


.why-us .box p {
    color: #fefefe;
    font-size: 16px;
    text-align: justify;
}

.why-us .box:hover {
    background: #ffc815;
    padding: 10%;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
    color: #fff;
}

.image-box {
    height: 70vh;
    width: 65%;
    border: 4px solid #636363;
    padding: 4px;
}

.why-us .image-box img {
    transition: all 0.8s ease-in-out;
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.why-us .image-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .image-box {
        height: auto;
        width: auto;
    }
}


/*--------------------------------------------------------------
# Self Doing
--------------------------------------------------------------*/
.left_content {
    width: 35%;
    height: 100%;
    padding: 40px 0;
}

.left_content_inner {
    background: linear-gradient(0deg, #a0611f, #a87e51);
    height: 100%;
    padding: 60px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.left_content_image img {
    width: 55px;
    height: 55px;
    margin-right: 15px;
    margin-bottom: 20px
}

.left_content_inner h3 {
    font-size: 22px;
    text-align: center;
    line-height: 1.2;
    color: #fff;
}

.right_content {
    width: 50%;
    background: #eee4c4;
    box-shadow: 0px 0px 40px 16px rgba(0, 0, 0, 0.22);
    position: relative;
    padding: 40px 40px 10px 40px;
}

@media screen and (max-width: 768px) {
    .left_content {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .left_content_inner {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .right_content {
        width: 100%;
        background: #eee4c4;
        box-shadow: 0px 0px 40px 16px rgba(0, 0, 0, 0.22);
        position: relative;
        padding: 40px 20px;
    }
}


/*--------------------------------------------------------------
# Modal Section Design
--------------------------------------------------------------*/
.modal-body-custom {
    background: #f9f9f9;
}

.screen {
    background: linear-gradient(120deg, #111111, #000000);
    position: relative;
    height: 100%;
    width: 100%;
    box-shadow: 0px 0px 24px #b9b8b7;
}

.screen__content {
    z-index: 1;
    position: relative;
    height: 100%;
}

.screen__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.screen__background__shape {
    transform: rotate(45deg);
    position: absolute;
}

.screen__background__shape1 {
    height: 520px;
    width: 520px;
    background: #FFF;
    top: -50px;
    right: 120px;
    border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
    height: 220px;
    width: 220px;
    background: #111111;
    top: -172px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape3 {
    height: 540px;
    width: 190px;
    background: linear-gradient(270deg, #111111, #000000);
    top: -24px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape4 {
    height: 400px;
    width: 200px;
    background: #111111;
    top: 420px;
    right: 50px;
    border-radius: 60px;
}

.login {
    width: 100%;
    padding: 10px 30px 120px 30px;
}

.login__field {
    padding: 20px 0px;
    position: relative;
}

.login__icon {
    position: absolute;
    top: 30px;
    color: #a0611f;
}

.login__input {
    border: none;
    border-bottom: 2px solid #D1D1D4;
    background: none;
    padding: 10px;
    padding-left: 24px;
    font-weight: 700;
    width: 75%;
    transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
    outline: none;
    border-bottom-color: #7B3F00;
}

.login__submit {
    background: #ffc815;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 26px;
    border: 1px solid #ffc815;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 60%;
    color: black;
    box-shadow: 0px 2px 2px black;
    cursor: pointer;
    transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
    border-color: #000000;
    outline: none;
}

.button__icon {
    font-size: 24px;
    margin-left: auto;
    color: #000000;
}

.text-content {
    padding-top: 40px;
    padding-left: 30px;
}

.text-content h4 {
    font-size: 18px;
    line-height: 1.3;
}

/*--------------------------------------------------------------
# Management
--------------------------------------------------------------*/
.management .management-img {
    width: 100%;
    height: 500px;
    padding: 4px;
    border-radius: 10px;
    border: 5px solid #ffc815;
}

.management .management-img img {
    width: 100%;
    height: 100%;
}

.management_content p
{
    text-align: justify;
}


.management_image_big img
{
    width: 60%;
    height: 750px;
    padding: 3rem;
}

.blink-text
{
    font-size: 45px;
    font-weight:bold;
    color: #949494;
    animation: blink 1s linear infinite;
}


@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 992px) {
    .management .management-img {
        padding: 4px;
        border-radius: 5px;
        border: 2px solid #ffc815;
    }
    .management_image_big img
    {
        width: 100%;
        height: 75vh;
        padding: 5px;
    }

    .management_image_last img
    {
        height: 150px;
    }
    
    .blink-text
{
    font-size: 30px;
}

}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .content + .content {
    margin-top: 40px;
}

.features .content p {
    text-align: justify;
}

/*--------------------------------------------------------------
# Employee
--------------------------------------------------------------*/

.register {
    background: #191919;
    padding: 2%;
}

.register-left {
    text-align: center;
    color: #8f8f8f;
    margin-top: 28%;
}

.register-right {
    background: #f8f9fa;
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
}

.register-left img {
    margin-top: 15%;
    margin-bottom: 5%;
    width: 25%;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.register-left p {
    font-weight: lighter;
    padding: 12%;
    margin-top: -9%;
}

.register .register-form {
    padding: 10%;
}

.btnRegister {
    float: right;
    margin-top: 3%;
    border: none;
    border-radius: 1.5rem;
    padding: 10px 30px;
    background: #ffc815;
    color: #000000;
    font-weight: 600;
    width: 50%;
    cursor: pointer;
}

.btnRegister:hover {
    background-color: #ffc815;
}

.register-heading {
    text-align: center;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #495057;
}

.iti {
    display: table-cell;
    width: 100%;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #454035;
    border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    height: 250px;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding-top: 20px;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc815;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
    overflow: hidden;
}

.specials .nav-tabs {
    border: 0;
}

.specials .nav-link {
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: #000000;
    border-radius: 0;
    border-right: 2px solid #ffc815;
    font-weight: 600;
    font-size: 15px;
}

.specials .nav-link:hover {
    color: #ffc815;
}

.specials .nav-link.active {
    color: #1a1814;
    background: #ffc815;
    border-color: #ffc815;
}

.specials .nav-link:hover {
    border-color: #ffc815;
}

.specials .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.specials .details p {
    color: #2b2b2b;
}

.specials .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .specials .nav-link {
        border: 0;
        padding: 15px;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    background: #ffc815;
    color: #151515;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #151515;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #484848;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #ffc815;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #ffc815;
    border: 0;
    padding: 10px 24px;
    color: #151515;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #ffc815;
}

.contact_lst img {
    height: 80vh;
    width: 100%;
}

.contact_banner {
    height: 70vh;
    width: 100%;
    padding: 5px;
    border: 3px solid #ffc815;
    margin-bottom: 10px;
}

.contact_banner img {
    width: 100%;
    height: 100%;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .contact_lst img {
        height: 50vh;
        width: 100%;
    }

    .contact_banner {
        height: 30vh;
        width: 100%;
        padding: 5px;
        border: 3px solid #ffc815;
        margin-bottom: 10px;
    }

    .contact_banner img {
        width: 100%;
        height: 100%;
    }

}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: whitesmoke;
    min-height: 40px;
    margin-top: 100px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #2f2f2f;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.visfooter {
    visibility: visible;
}

.wrapper-inner, footer {
    width: 70%;
}

footer {
    background: #191919;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding-top: 100px;
    visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 0;
}

.text-left {
    text-align: left;
}

.footer-info {
    float: left;
    width: 100%;
    padding-bottom: 20px;
}

.footer-info h4 {
    float: left;
    width: 100%;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 45px;
}

.spo-footer-widget-title {
    float: left;
    width: 100%;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 30px;
}

.spo-footer-widget .footer-social {
    text-align: center;
}

.visfooter ol, .visfooter ul {
    list-style: none;
    margin-left: -39px;
}

.spo-footer-widget .footer-social ul li {
    border-bottom: 0 solid #ddd;
    margin-right: 5px;
}

.spo-footer-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.footer-social li {
    float: left;
    padding: 4px;
}

.to-top-holder {
    float: left;
    width: 100%;
    background: #000;
    position: relative;
}


.to-top-holder p {
    color: #fff;
    position: relative;
    top: 45px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    padding-left: 20px;
    text-align: left;

}

.to-top-holder p:before {
    width: 2px;
    height: 50px;
}

.to-top-holder p:before, .to-top-holder p:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    z-index: 2;
}


.copyright a {
    color: #ffffff;
}

.to-top-holder p:after {
    width: 50px;
    height: 2px;
}

.to-top-holder p:before, .to-top-holder p:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    z-index: 2;
}

.to-top {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 50px;
    height: 70px;
    float: right;
    font-size: 24px;
    color: #fff;
    line-height: 70px;
}


.copyright a:hover {
    color: #fff;
}

p a {
    color: #ffc815;
}

.footer-contacts li a, .twitter-holder .customNavigation a, .to-top i, .footer-social li a i {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.clearfix:after, .container:after, .container-fluid:after, .row:after {
    clear: both;
}

.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after {
    content: " ";
    display: table;
}


.spo-footer-widget .footer-social ul li a {
    color: #191919;
}

.spo-footer-widget ul li a {
    color: #707070;
    text-transform: inherit;
}

.spo-footer-widget ul li a {
    color: #707070;
}

.color-bg, .logo-holder, .section-title h3, .st-separator, .st-separator:before, .section-title-icon, .facts-title h3, .section-separator a:before, .box-popup:before, .featur-carousel-holder .customNavigation a, .services-holder li:before, .bg-title:before, .single-slider-holder .customNavigation a, .btn, .custom-skillbar, .testi-item-text:before, .testi-item-text:after, .nav-inner:before, .resume-box-holder:before, .resume-box-holder:after, .section-separator span:before, .to-top, .to-top-holder p:before, .to-top-holder p:after, .footer-social li a, .footer-info h4:before, .ser-tooltip h5:before, .scroll-nav li a:before, .nav-button span:before, #contact-form input[type="submit"], .fixed-filter a:before, .vis-filter li a, .project-decr h3.text-title:before, .share-icon, .fwslider-holder .customNavigation a, .show-info, .pagination a.current-page, .pagination a:hover, .post-tags a:hover, .fwslider-holder .owl-dots .owl-dot.active span:before, .halig-center h4:before, .ser-carous-holder .customNavigation a, .scroll-nav-btn, .controls button {
    background: #ffc815;
}

.footer-social li a {
    width: 40px;
    height: 40px;
    float: left;
    border-radius: 100%;
    line-height: 40px;
    color: #191919;
    font-size: 18px;
}


.spo-footer-widget ul.footer-contacts li {
    border-bottom: 0 solid #ddd;
    padding: 0 0 5px;
}

.spo-footer-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.footer-contacts li {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.footer-info h4:before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 60px;
    height: 2px;
}

.spo-footer-widget-title:before {
    content: '';
    background: #ffc815;
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 60px;
    height: 2px;
}


.footer-info h4:before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 60px;
    height: 2px;
}

.color-bg, .logo-holder, .section-title h3, .st-separator, .st-separator:before, .section-title-icon, .facts-title h3, .section-separator a:before, .box-popup:before, .featur-carousel-holder .customNavigation a, .services-holder li:before, .bg-title:before, .single-slider-holder .customNavigation a, .btn, .custom-skillbar, .testi-item-text:before, .testi-item-text:after, .nav-inner:before, .resume-box-holder:before, .resume-box-holder:after, .section-separator span:before, .to-top, .to-top-holder p:before, .to-top-holder p:after, .footer-social li a, .footer-info h4:before, .ser-tooltip h5:before, .scroll-nav li a:before, .nav-button span:before, #contact-form input[type="submit"], .fixed-filter a:before, .vis-filter li a, .project-decr h3.text-title:before, .share-icon, .fwslider-holder .customNavigation a, .show-info, .pagination a.current-page, .pagination a:hover, .post-tags a:hover, .fwslider-holder .owl-dots .owl-dot.active span:before, .halig-center h4:before, .ser-carous-holder .customNavigation a, .scroll-nav-btn, .controls button {
    background: #ffc815;
}

.footer-info h4:before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 60px;
    height: 2px;
}

.color-bg, .logo-holder, .section-title h3, .st-separator, .st-separator:before, .section-title-icon, .facts-title h3, .section-separator a:before, .box-popup:before, .featur-carousel-holder .customNavigation a, .services-holder li:before, .bg-title:before, .single-slider-holder .customNavigation a, .btn, .custom-skillbar, .testi-item-text:before, .testi-item-text:after, .nav-inner:before, .resume-box-holder:before, .resume-box-holder:after, .section-separator span:before, .to-top, .to-top-holder p:before, .to-top-holder p:after, .footer-social li a, .footer-info h4:before, .ser-tooltip h5:before, .scroll-nav li a:before, .nav-button span:before, #contact-form input[type="submit"], .fixed-filter a:before, .vis-filter li a, .project-decr h3.text-title:before, .share-icon, .fwslider-holder .customNavigation a, .show-info, .pagination a.current-page, .pagination a:hover, .post-tags a:hover, .fwslider-holder .owl-dots .owl-dot.active span:before, .halig-center h4:before, .ser-carous-holder .customNavigation a, .scroll-nav-btn, .controls button {
    background: #ffc815;
}

.spo-footer-widget-title:before {
    content: '';
    background: #ffc815;
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 60px;
    height: 2px;
}

.spo-footer-widget-title:before {
    content: '';
    background: #ffc815;
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 60px;
    height: 2px;
}


.scroll-nav-holder nav li a:hover, .nav-inner nav a.curpage, .social-item a i, .grid-item span, .box-popup i, .text-title span, .testi-item-text a, #twitter-feed li a, .footer-contacts li a i, .price, .contact-info ul li a i, .skills-description, .services-box h3, .accordion-title i, .pr-list li span, .project-pagination ul li a, .post-link, .post-meta i, .search-submit, .hero-title h4 a:hover, .abl, #success_page p strong, #success_page h3, .nav-inner nav li.subnav:hover i.subnavicon {
    color: #ffc815;
}

.footer-contacts li a i {
    padding-right: 10px;
}

.copyright .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}








