@import url('https://fonts.googleapis.com/css2?family=Montserrat: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=Playfair+Display:ital@1&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #444444;
}

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

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

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


/*--------------------------------------------------------------
# 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;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #151515;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid #ffc451;
    border-top-color: #151515;
    border-bottom-color: #151515;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# 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;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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


/*--------------------------------------------------------------
#  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 #ffc451;
}

.get-started-btn:hover {
    background: #ffbb38;
    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: 0px 0 10px 75px;
    font-size: 15px;
    font-weight: 600;
    color: #D5A75A;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}

.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: #D5A75A;
}

.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: #ffc451;
}

.navbar .active:before {
    content: '';
    position: absolute;
    display: block;
    top: 39px;
    left: 60%;
    transform: translateX(75%);
    border-style: solid;
    border-width: 0px 9px 9px 9px;
    border-color: transparent transparent orange transparent;
}

.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%;
    }
}

.underline {
    border: 1px solid #ffa500;
    width: 665px;
    display: block;
    margin: 0px auto;
    opacity: inherit;
    position: relative;
    top: 15px;
    left: 20px;
}

.logo-set {
    width: 28%;
    margin-top: 30px;
}

.logo-section {
    position: relative;
    top: -185px;
}


/**
* 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: #ffc451;
}

.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: #ffc451;
}

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/main-banner2.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero .container {
    position: relative;
    text-align: center;
}

#hero h1 {
    margin: 0;
    font-size: 46px;
    line-height: 100px;
    color: #d5a75a;
    font-family: 'Wondar Quason Free';
}

#hero h1 span {
    color: #ffc451;
}


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

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

.about-bg {
    background-image: url(../img/Asset20@3x.png);
    background-size: contain;
    background-attachment: fixed;
}

.about-bg h2 {
    font-size: 46px;
    line-height: 65px;
    color: #d5a75a;
    font-family: 'Wondar Quason Free';
    margin-top: 25px;
    text-align: center;
}

.about-bg p {
    color: #000;
    text-align: center;
    font-size: 22px;
    line-height: 45px;
    margin-top: 20px;
}

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

.image-text-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
}

.text-bottom-right .text-overlay {
    vertical-align: bottom;
    text-align: right;
}

.text-bottom-right {
    display: table;
}

.text-bottom-right .text-overlay {
    display: table-cell;
    position: relative;
    z-index: 2;
    padding: 15px 0px 15px 20px;
}

.text-overlay {
    color: #fff;
}

.img-section-2 {
    background-color: #cc844e;
    padding: 45px 45px 45px 45px;
    color: #fff;
}

.img-section-2 h2 {
    font-family: 'Wondar Quason Free';
    font-size: 46px;
}

.img-section-2 p {
    font-size: 16px;
    line-height: 35px;
    margin-top: 15px;
}

.content-box {
    border: 1px solid #fff;
    text-align: center;
    padding: 38px;
    width: 75%;
}

.name-box {
    background: rgb(0 0 0 / 50%);
    padding: 15px;
    width: 39%;
    float: right;
    position: relative;
    bottom: 50px;
}

.overlay-title {
    font-size: 24px;
    font-weight: 500;
}

.features {
    padding-top: 0px;
}

.services h2 {
    font-size: 46px;
    line-height: 65px;
    color: #d5a75a;
    font-family: 'Wondar Quason Free';
    margin-top: 25px;
    text-align: center;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    text-align: center;
    padding: 0px 50px;
    background: #fff;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 115px;
    height: 115px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.border-set {
    padding: 10px;
}

.services .icon-box .icon i {
    color: #151515;
    font-size: 28px;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 40px;
    color: #d5a75a;
    font-family: 'Wondar Quason Free';
    letter-spacing: 3px;
}

.services .icon-box h4 a {
    color: #151515;
}

.services .icon-box h4 a:hover {
    color: #ffc451;
}

.services .icon-box p {
    font-size: 16px;
    margin-bottom: 0;
    color: #000;
    line-height: 35px;
    font-weight: 500;
}

.services .icon-box:hover {
    border-color: #fff;
}

.dt-info::after {
    border-right: 1px solid #cc844e;
    content: "";
    height: 77%;
    position: absolute;
    top: 70px;
    right: -65px;
}

.dt-info {
    position: relative;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    padding: 60px 0;
}

.cta-banner {
    background-image: url(../img/Asset12@3x.png);
    background-size: cover;
    height: 75vh;
    padding-top: 75px;
    padding-bottom: 75px;
}

.content-box-2 {
    background-color: #d5a75a;
    padding: 15px;
    color: #fff;
    width: 40%;
    text-align: center;
    display: block;
    margin: 0px auto;
}

.cta h3 {
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    font-family: 'Wondar Quason Free';
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 20px;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio h2 {
    font-size: 46px;
    line-height: 65px;
    color: #d5a75a;
    font-family: 'Wondar Quason Free';
    margin-top: 25px;
    text-align: center;
}

.portfolio p {
    font-size: 18px;
    line-height: 35px;
    margin-top: 25px;
    text-align: center;
    font-weight: 500;
}

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 50px;
}

.tz-gallery {
    padding: 40px;
}


/* Override bootstrap column paddings */

.tz-gallery .row>div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}

.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

.youtube-video {
    width: 100%;
    height: 319px;
}

.lightbox-content {
    background-color: #f7eee5;
    padding: 23px;
    text-align: center;
    margin-top: 10px;
}

.lightbox-content p {
    font-family: 'Wondar Quason Free';
    color: #aa8349;
    font-size: 42px;
    line-height: 47px;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    padding: 0px 0px 75px 0px;
}

.counts p {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    text-align: center;
    line-height: 38px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    position: relative;
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials h2 {
    font-family: 'Wondar Quason Free';
    color: #d5a75a;
    font-size: 52px;
    line-height: 52px;
    margin-top: 60px;
}

.testimonials p {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 35px;
    margin-top: 15px;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
    padding: 100px 0px 100px 0px;
}

.border-set-row {
    border: 1px solid #ffc451;
    padding: 60px;
    text-align: center;
}

.team h2 {
    font-family: 'Wondar Quason Free';
    color: #d5a75a;
    font-size: 55px;
    line-height: 47px;
}

.team p {
    font-size: 19px;
    color: #000;
    font-weight: 500;
    line-height: 42px;
    margin-top: 30px;
}


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

#footer {
    background: black;
    color: #fff;
    padding-bottom: 10px;
    font-size: 14px;
}

#footer .footer-top {
    background: #d5a75a;
    padding: 30px 0 15px 0;
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
    color: #ffc451;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    position: relative;
}

#footer .footer-top p {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.border-rgtset {
    border-right: 1px solid #a7a7a7;
    height: 15px;
    position: relative;
    top: 3px;
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
}

.footer-text {
    margin-left: 50px;
}

.copyright a {
    color: #fff;
    text-transform: uppercase;
}

#footer .footer-top a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

#footer .footer-top strong {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.footer-newsletter h4 {
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif;
}

.footer-newsletter p {
    font-weight: 400 !important;
    font-family: 'Montserrat', sans-serif;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-newsletter form {
    padding: 6px 0px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 88px);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 3px 0px;
    border-radius: 5px;
    font-size: 18px;
    height: 40px;
    color: #aa8349;
}

.send-btn {
    background-color: #000;
    color: #fff;
    box-shadow: rgb(22 22 23 / 10%) 0px 3px 0px;
    border: none;
    height: 40px;
    font-weight: 600;
    position: relative;
    top: -2px;
}

.border-rgt3 {
    border-right: 1px solid #fff;
    position: relative;
    top: 13px;
    height: 185px;
}

.pad-1 {
    padding-right: 25px;
}

.pad-2 {
    padding-left: 30px;
}

.pad-3 {
    padding-left: 65px;
}

.send-btn img {
    position: relative;
    bottom: 3px;
}

#footer .copyright {
    position: relative;
    top: 0px;
    font-size: 12px;
    height: 25px;
    color: #fff;
    padding-top: 10px;
}

.send-btn:hover {
    background-color: #000;
}

.arrow-set {
    width: 30px;
}

::placeholder {
    color: #aa8349;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #aa8349;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #aa8349;
}


/* Media Query */

@media screen and (max-width: 768px) {
    .menu-mob {
        justify-content: flex-start !important;
    }
    .underline {
        display: none !important;
    }
    .about-bg h2 {
        font-size: 30px;
        line-height: 45px;
        margin-top: 0px;
    }
    #hero {
        height: 60vh;
    }
    #hero h1 {
        font-size: 35px;
        line-height: 60px;
        margin-top: 25px;
    }
    .logo-set {
        margin-top: 130px;
    }
    .navbar-mobile {
        height: 30vh;
    }
    .navbar .active:before {
        display: none;
    }
    .about-bg p {
        font-size: 18px;
        line-height: 30px;
    }
    .image-text-overlay {
        height: 360px;
    }
    .name-box {
        bottom: -10px;
        width: 100%
    }
    .overlay-title {
        font-size: 16px;
        ;
    }
    .overlay-subtext {
        font-size: 13px;
    }
    .content-box {
        padding: 15px;
        width: 100%;
    }
    .img-section-2 {
        padding: 25px 25px 25px 25px;
    }
    .img-section-2 h2 {
        font-size: 34px;
    }
    .img-section-2 p {
        font-size: 14px;
        line-height: 25px;
        margin-top: 15px;
    }
    .services h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .dt-info::after {
        display: none;
    }
    .services .icon-box {
        padding: 25px 15px;
    }
    .content-box-2 {
        width: 100%;
    }
    .cta-banner {
        height: auto;
    }
    .cta {
        padding: 0px;
    }
    .portfolio h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .section-title {
        padding-bottom: 0px;
    }
    .lightbox-content {
        padding: 0px;
    }
    .portfolio {
        padding: 0px;
    }
    .counts p {
        font-size: 15px;
    }
    .counts {
        padding: 0px 0px 0px 0px;
    }
    .testimonials h2 {
        font-size: 38px;
        line-height: 47px;
        margin-top: 25px;
        text-align: center;
    }
    .testimonials p {
        font-size: 19px;
        line-height: 30px;
        text-align: center;
    }
    .team {
        padding: 0px;
    }
    .border-set-row {
        padding: 25px;
    }
    .team p {
        font-size: 16px;
        line-height: 32px;
    }
    .footer-info img {
        width: 55%;
        display: block;
        margin: 0px auto;
    }
    #footer .footer-top a {
        font-size: 15px;
    }
    .pad-3 {
        padding-left: 30px;
    }
    #footer .footer-top .footer-links {
        margin-bottom: 0px;
    }
    .pad-3 h4 {
        margin-top: 25px;
    }
    #footer {
        padding-bottom: 30px;
    }
    #footer .copyright {
        font-size: 11px;
    }
    .footer-text {
        margin-left: 0px;
    }
    .back-to-top {
        bottom: 144px;
    }
}

@media screen and (max-width: 995px) {
    .menu-mob {
        justify-content: flex-start !important;
    }
    .underline {
        display: none !important;
    }
    .about-bg h2 {
        font-size: 30px;
        line-height: 45px;
        margin-top: 0px;
    }
    #hero {
        height: 60vh;
    }
    #hero h1 {
        font-size: 35px;
        line-height: 60px;
        margin-top: 25px;
    }
    .logo-set {
        margin-top: 170px;
    }
    .navbar-mobile {
        height: 30vh;
    }
    .navbar .active:before {
        display: none;
    }
    .about-bg p {
        font-size: 18px;
        line-height: 30px;
    }
    .image-text-overlay {
        height: 80vh;
    }
    .name-box {
        bottom: -10px;
        width: 100%
    }
    .overlay-title {
        font-size: 16px;
        ;
    }
    .overlay-subtext {
        font-size: 13px;
    }
    .content-box {
        padding: 15px;
        width: 100%;
    }
    .img-section-2 {
        padding: 25px 25px 25px 25px;
    }
    .img-section-2 h2 {
        font-size: 34px;
    }
    .img-section-2 p {
        font-size: 14px;
        line-height: 25px;
        margin-top: 15px;
    }
    .services h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .dt-info::after {
        display: none;
    }
    .services .icon-box {
        padding: 25px 15px;
    }
    .content-box-2 {
        width: 100%;
    }
    .cta-banner {
        height: auto;
    }
    .cta {
        padding: 0px;
    }
    .portfolio h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .section-title {
        padding-bottom: 0px;
    }
    .lightbox-content {
        padding: 0px;
    }
    .portfolio {
        padding: 0px;
    }
    .counts p {
        font-size: 18px;
    }
    .counts {
        padding: 0px 0px 0px 0px;
    }
    .testimonials h2 {
        font-size: 38px;
        line-height: 47px;
        margin-top: 25px;
        text-align: center;
    }
    .testimonials p {
        font-size: 19px;
        line-height: 30px;
        text-align: center;
    }
    .team {
        padding: 0px;
    }
    .border-set-row {
        padding: 25px;
    }
    .team p {
        font-size: 16px;
        line-height: 32px;
    }
    .footer-info img {
        width: 65%;
        display: block;
        margin: 0px auto;
    }
    #footer .footer-top a {
        font-size: 15px;
    }
    .pad-3 {
        padding-left: 30px;
    }
    #footer .footer-top .footer-links {
        margin-bottom: 0px;
    }
    .pad-3 h4 {
        margin-top: 25px;
    }
    #footer {
        padding-bottom: 30px;
    }
    #footer .copyright {
        font-size: 11px;
    }
    .footer-text {
        margin-left: 0px;
    }
    .back-to-top {
        bottom: 144px;
    }
    .youtube-video {
        height: 160px;
    }
    .lightbox-content p {
        font-size: 24px;
        line-height: 32px;
    }
    .portfolio p {
        margin-top: 15px;
    }
    .pad-2 {
        padding-left: 30px;
        margin-top: 30px;
    }
    .line-none {
        border-right: none;
    }
}

.row-bg-img2 {
    background-image: url(../img/Asset18@3x2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 15px;
    padding-bottom: 65px;
}