@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

body {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    color: #000;
} 

:root {
  --light-yellow: #f6f5ee;
  --transition_3: 0.3s ease all;;
}



.banner {
    background: var(--light-yellow);
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
}

/*.banner::after {
    content: "";
    position: absolute;
    right: 0;
    background: #84d8d1;
    top: 15%;
    width: 180px;
    height: 70%;
}

.banner::before {
    content: "UI.UX";
    position: absolute;
    right: 0;
    font-size: 160px;
    transform: rotate(-90deg);
    z-index: 1;
    line-height: 0;
    margin: 0 auto;
    font-weight: 700;
    color: #84d8d1;
    text-shadow: -2px 2px 0 #f6f5ee, 2px 2px 0 #f6f5ee, 2px -2px 0 #f6f5ee, -2px -2px 0 #f6f5ee;
    height: 14%;
    bottom: 7%;
    width: 0;
}*/
 
.nav-link {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    margin-left: 18px;
}

.navbar-nav {
    margin-left: auto;
}

.nav_contact_btn {
    background: #000;
    padding: 4px 20px 5px 20px;
    color: #fff;
    border-radius: 100px;
    font-size: 17px;
    margin-left: 25px;
    border: 2px solid transparent;
    transition: var(--transition_3);
}

.nav_contact_btn:hover {
    background: transparent;
    color: #000; 
    border: 2px solid #000;
    transition: var(--transition_3);
}

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

.navbar-toggler {
    border: 0;
}


/*@media only screen and (min-width:991px) {
.navbar-brand {
    display: none;
}
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
.logo {
    display: none;
}    
}*/

.banner-text {
    background: url(../images/devices-pack.png) no-repeat;
    background-position: 95%;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.banner-text h1 {
    font-size: 62px;
    font-weight: 800;
     color: #84d8d1; 
    line-height: 1.5;
    margin: 0;
    background-image: linear-gradient(40deg, #dcb211 0%, #cd5930 22%, #cd9082 58%, #0fa9d5 80%);
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: heading-animated 5s ease-in-out infinite;
}
 
@keyframes heading-animated {
    0%,
    100% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.banner-text h2 {
    font-size: 64px;
    font-weight: 800;
    color: #282828;
    line-height: 1.4;
    margin-top: 4px;
    margin-bottom: 75px;
}

.banner-text h2 span {
    display: block;
}

.banner-text .btn {
    background: #84d8d1;
    border-radius: 0;
    padding: 10px 30px;
    font-size: 35px;
    font-weight: 600;
    box-shadow: 6px 6px 0 #000;
    color: #000; 
    transition: var(--transition_3);
}

.banner-text .btn:hover{
    box-shadow: none;     
    transition: var(--transition_3);
}

.banner-text .badge {
    max-width: 90px;
}

.badge figure {
    margin-bottom: 0;
}

.banner-text .d-flex {
    gap: 20px;
    align-items: center;
}

.banner-stats ul {
    padding-left: 0;
    margin-top: 40px;
}

.banner-stats ul li {
    display: inline-block;
    list-style: none;
    padding-right: 37px;
}

.banner-stats ul li h3 {
    font-size: 28px;
    color: #000;
    font-weight: 800;
    margin-bottom: 3px;
}

.banner-stats ul li p {
    font-size: 20px;
    color: #888888;
    font-weight: 400;
}

.marquee_ {
    overflow-x: clip;
    background: #f6f5ee;
}

.marquee {
    display: flex;  
    overflow: hidden; 
    transform: rotate(-5deg);
    background: #000;
    color: #fff;
    width: 102%;
    margin-left: -9px;
    padding: 5px 0 
}

.marquee1 {
    top: 65px;
    position: relative;
}

.marquee2 {
    transform: rotate(5deg);
    background: #84d8d1;
    color: #fff; 
    width: 102%;
    margin-left: -9px;
}
 
.marquee h1 {
    font-size: 30pt;
    white-space: nowrap;
    text-transform: uppercase;
    align-self: center;
    margin: 0;
    line-height: 1.5;
}

/*.marquee_ {
    overflow-x: clip;
    background: #f6f5ee;
}*/

/*.marquee {
    transform: rotate(5deg);
    background: #84d8d1;
    width: 102%;
    margin-left: -9px;
     font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.5;
}
 
.marquee-text {
     height: 40px; 
     position: relative; 
     overflow: hidden; 
    min-width: 100vw;
    animation: bannermove 40s linear infinite;
    display: flex;
    justify-content: space-between;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    transform: rotate(10deg);
    font-style: italic;
    padding-bottom: 13px;
    line-height: 1.5;
    padding-top: 5px;
}

.marquee-text:hover {
  animation-play-state: paused;
}

@keyframes bannermove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}*/


/*.marquee {
    transform: rotate(5deg);
    background: #84d8d1;
    width: 102%;
    margin-left: -9px;
    padding-top: 14px;
    padding-bottom: 20px;
}

.marquee {
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.5;  
}

.marquee .item{  
    text-align: center;
}

.marquee .item:after{
    position: absolute;
    content: '';
    width: 3px;
    height: 50px;
    background: #fff;
    left: 0;
    top: 10px;
    right: 0;
} 

.marquee_dark {
    transform: rotate(-5deg);
    background: #000000;
    width: 102%;
    margin-left: -9px;
    margin-top: -95px;
    padding-top: 14px;
    padding-bottom: 20px;
}

.marquee_dark {
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.5;  
}*/

.marquee_dark .item{ 
   /* min-width:400px; */
    /*text-align: center;*/
}

/*.marquee_dark .item:after{
    position: absolute;
    content: '';
    width: 3px;
    height: 50px;
    background: #fff;
    left: 0;
    top: 10px;
    right: 0;
} */

/*.marquee_dark_text { 
    min-width: 100vw;
    animation: bannermover 40s linear infinite;
    display: flex;
    justify-content: space-between;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    transform: rotate(10deg);
    font-style: italic;
    padding-bottom: 13px;
    line-height: 1.5;
    padding-top: 5px;
}

.marquee_dark_text:hover {
  animation-play-state: paused;
}

@keyframes bannermover {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}*/

.remarkable {
    background: url(../images/lines.png) no-repeat, var(--light-yellow);
    padding-top: 80px;
    padding-bottom: 50px;
    background-position: 0 30%;
}

.trophy {
    text-align: center;
    background: linear-gradient(to right,#f6f5ee 50%, #f8f7f4 50%);
    border-radius: 100px;
    padding: 33px;
    width: 130px;
    height: 130px;
    box-shadow: 0 0 260px rgba(166, 107, 1, 0.2);
    margin: 0 auto;
}

.trophy img {
    max-width: 57px;
}

.remarkable h1 {
    font-size: 70px;
    text-align: center;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    margin-bottom: 100px;
}

.remarkable h1 span {
    display: block;
    font-weight: 600;
    color: #84d8d1;
    background-image: linear-gradient(40deg, #dcb211 0%, #cd5930 22%, #cd9082 58%, #0fa9d5 80%);
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: heading-animated 5s ease-in-out infinite;
}
  
.remarkable h4 {
    color: #333333;
    font-size: 16px;
    letter-spacing: 4px;
    margin: 0;
    text-transform: capitalize;
}

.remarkable h2 {
    color: #000000;
    font-size: 49px;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

.remarkable p {
    font-size: 19px;
    line-height: 1.6;
    color: #282828;
    margin: 0;
}

.remarkable .owl-carousel .owl-stage-outer { 
    padding-bottom: 40px;
}

.remarkable .owl-carousel {
    margin-top: 50px;
    margin-bottom: 100px;
}

.remarkable .owl-item img:hover {
    box-shadow: 0 0 60px rgba(166, 107, 1, 0.2);    
    transition: var(--transition_3);
}

.remarkable .owl-item img { 
    border-radius: 10px;
    border: 1px solid#f0f0f0;
}

.remarkable .owl-carousel .owl-nav.disabled {
    display: block;
    text-align: right;
    max-width: 1160px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
.remarkable .owl-carousel .owl-nav.disabled {
    max-width: 1320px;
}
}

.remarkable .slider-right-btn, 
.remarkable .slider-left-btn {
    border: 1px solid #282828;
    width: 38px;
    height: 38px;
    border-radius: 100px;
    padding: 7px;
    margin: 0 5px;
    color: #282828;
    transition: var(--transition_3);
}

.remarkable .slider-right-btn:hover, 
.remarkable .slider-left-btn:hover { 
    background: #282828;
    color: #fff;
    transition: var(--transition_3);
}

.remarkable .btn-default {
    background: #84d8d1;
    border-radius: 0;
    padding: 10px 30px;
    font-size: 35px;
    font-weight: 600;
    box-shadow: 6px 6px 0 #000;
    color: #000;
    transition: var(--transition_3);
    margin: 0 auto;
    display: table;
}

.remarkable .btn-default:hover{
    box-shadow: none;     
    transition: var(--transition_3);
}

.reviews {
    padding-top: 130px;
    padding-bottom: 130px;
    position: relative;
}

.review-user {
    background: #84d8d1;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    padding-top: 85px;
}

.review-user figure {
    margin: 0 auto;
}

.review-user figure img {
    mix-blend-mode: luminosity;
}

.reviews-slider {
    background: #f2fbfa;
    padding: 40px;
    border-radius: 30px;
}

.reviews-slider .rating {
    background: #84d8d1;
    display: table;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 100px;
}

.reviews-slider p {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

.reviews-slider h5{
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
    color: #282828;
    font-style: italic;
}

.reviews-slider .carousel-control-prev,
.reviews-slider .carousel-control-next {
    color: #000;
    opacity: 1;
    font-size: 15px;
    border-radius: 100px;
    border: 1px solid #000;
    width: 38px;
    height: 38px;
    background: #f2fbfa;
}

.reviews-slider .carousel-control-prev:hover,
.reviews-slider .carousel-control-next:hover {
    color: #f2fbfa; 
    background: #000;
}

.reviews-slider .carousel-control-prev {
    left: auto;
    right: 45px;
}

.projects {
    margin-top: 80px;
    margin-bottom: 80px;
}

.projects h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.preview_window {
    margin-bottom: 25px;
    position: relative;
}

.preview_window_link {
    position: absolute;
    left: 10px;
    background: #fff;
    bottom: 10px;
    font-size: 12px;
    line-height: 1.5;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.26);
    width: 36px;
    height: 36px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: #000;
}

.preview_window_link:hover {
    background: #f5f4ed;
}

.preview_window img {
    width: 100%;
    -o-object-fit: cover;
     object-fit: cover;
    -o-object-position: top;
     object-position: top;
    height: 300px;
    transition: 5s all ease; 
    border: 2px solid #fff;
    box-shadow: 0 7px 131px rgba(0, 0, 0, 0.05);
}

.preview_window img:hover {
    -o-object-position: bottom;
    object-position: bottom;
} 

/*.preview_window_link {
    position: absolute;
}*/

.hand {
    position: absolute;
    right: 0;
    top: -10%;
}

.logos {
    padding-top: 100px;
    padding-bottom: 40px;
}

.logos ul {
    padding-left: 0;
    margin-top: 40px;
    margin: 0 auto;
    text-align: center;
}

.logos ul li {
    display: inline-block;
    list-style: none;
    padding-right: 50px;
}

.logos ul li:nth-last-child(1) {
    padding-right: 0; 
}

.about_ {
    background: url(../images/star.svg) no-repeat;
    background-position: 40px bottom;
}

.about {
    background: url(../images/wavesline.png) #84d8d1 no-repeat;
    background-position: center;
    padding: 50px 100px;
    border-radius: 30px;
    position: relative;
    margin-bottom: 130px;
}

.about h1 {
    font-size: 60px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.about p {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

.about a {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

.about .mobile {
    position: absolute;
    bottom: -20px;
}

.about_us {
    background: #f2fbfa;
    padding-top: 60px;
    padding-bottom: 70px;
}

.about_us h1 {
    font-size: 60px;
    font-weight: 600;
    color: #000;
    margin-bottom: 70px;
    text-align: center;
}

.about_us p {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
}

.about_us figure {
    text-align: center;
}

footer {
    background: #100F15;
    padding-top: 70px;
    padding-bottom: 50px;
} 

footer p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 1.5px;
}
/*
footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    list-style: none;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
} 

footer ul li a {
    color: #fff;
    text-decoration: none;
}*/
 
footer h4 {
    font-size: 18px;
    font-weight: 400;
    color: #ffc83d;
    line-height: 1.5;
}

footer h2 {
    font-size: 80px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    text-transform: capitalize;
    line-height: 1.1;
}

footer h2 span {
    display: block;
    color: #84d8d1;
}

footer label {
    color: #49426C;
    font-size: 15px;
    margin-bottom: 6px;
}
 
footer input, 
footer textarea {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    height: 45px;
    padding: 20px;
    font-size: 16px;
    color: #A59ADB;
    background: top;
    border: 1px solid #342F4D;
}
 
footer select  {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    height: 45px;
    padding: 0 20px;
    font-size: 16px;
    color: #A59ADB;
    background: top;
    border: 1px solid #342F4D;
}

footer select option {
    background: #100f15;
    color: #fff;
}


footer textarea {
    height: auto;
}

footer button {
    background: #84d8d1;
    border-radius: 0;
    padding: 7px 30px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 6px 6px 0 #000;
    color: #000;
    transition: var(--transition_3);
    border: 0;
    text-transform: uppercase;
}

footer button:hover {
    box-shadow: none;
    transition: var(--transition_3);
}

.bottom {
    background: #1A1826;
    padding: 24px 40px;
    margin-top: 70px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px #00000036;
}

.bottom h5 {
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
    color: #514b6f;
    letter-spacing: 2px; 
}

.footer-text {
    text-align: right;
}

.footer-text ul {
    padding: 0;
    margin: 0;
}

.footer-text ul li {
    list-style: none;
    font-size: 15px;
    display: inline-block;
    font-weight: 400;
    margin-left: 7px;
}

.footer-text ul li a {
    color: #fff;
    text-decoration: none;
    background: #342f4d;
    width: 38px;
    height: 38px;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    border-radius: 100px;
    padding: 7px;
    box-shadow: 4px 4px 0 #000;
    transition: var(--transition_3);
}

.footer-text ul li a:hover {
    box-shadow: none;    
    transition: var(--transition_3);
} 




@media only screen and (min-width: 992px) and (max-width: 1199px) {
.banner-text {
    background-position: 95% center;
    background-size: 50%;
    padding-bottom: 0;
}

.banner-text h1 {
    font-size: 50px;
}   

.banner-text h2 {
    font-size: 50px;
    margin-bottom: 35px;
} 
 
.remarkable h1 {
    font-size: 90px;
}

.remarkable h2 {
    font-size: 40px;
} 

.remarkable p {
    font-size: 17px;
}

.preview_window img {
    height: 220px;
}

.projects {
    margin-top: 30px;
    margin-bottom: 30px;
}
 
.hand {
    max-width: 200px;
}

.review-user {
    padding-top: 40px;
    width: 33.33333333%;
}

.reviews-slider .rating {
    margin-bottom: 60px;
}

.reviews-slider { 
    width: 66.66666667%;
}
 
.logos ul li img {
    max-width: 50px;
}

.reviews {
    padding-bottom: 60px;
}    
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
.navbar-brand {
    max-width: 150px;
}

.nav-link {
    padding-right: 0 !important;
}

.banner-text {
    background-position: 95% center;
    background-size: 50%;
    padding-bottom: 0;
}

.banner-text h1 {
    font-size: 37px;
}   

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 35px;
    margin-top: 0;
} 

.banner-text .btn {
    font-size: 22px;
}

.banner-stats ul li h3 {
    font-size: 25px;
}

.banner-stats ul li p {
    font-size: 17px;
}

.banner-stats ul li {
    padding-right: 25px;
}

.marquee1 {
    top: 50px;
}

.marquee h1 {
    font-size: 20pt;
}

.remarkable {
    background: var(--light-yellow);
}

.remarkable h1 {
    font-size: 60px;
}

.remarkable h2 {
    font-size: 40px;
}

.remarkable h4 {
    letter-spacing: 2px;
}

.remarkable p,
.reviews-slider p ,
.about p ,
.about a ,
.about_us p{
    font-size: 16px;
}

.remarkable .owl-carousel .owl-nav.disabled {
    text-align: center;
}

.remarkable .owl-carousel {
    margin-bottom: 40px;
}
 
.projects {
    margin-top: 50px;
    margin-bottom: 50px;
}

.projects .col-md-3 {
    flex: 0 0 auto;
    width: 50%;
}

.hand {
    max-width: 200px;
}

.review-user {
    padding-top: 40px;
    width: 33.33333333%;
}

.reviews-slider .rating {
    margin-bottom: 20px;
}

.reviews-slider {
    padding: 40px 20px;
    width: 66.66666667%;
}

.logos ul li {
    padding-right: 25px;
}

.logos ul li img {
    max-width: 50px;
}

.reviews {
    padding-bottom: 60px;
}

.logos {
    padding-bottom: 70px;
}

.about {
    padding: 30px 40px;
    margin-bottom: 80px;
}

.about h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.about_us h1 {
    font-size: 40px;
}

footer h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

footer input {
    margin-bottom: 10px;
    height: 45px;
}

footer button {
    font-size: 20px;
}

footer img {
    margin-bottom: 10px;
} 

.footer-text h5 {
    margin-top: 30px;
}

footer h2 span {
    display: inline;
}

footer p {
    font-size: 12px;
}

.lightbox .btn-close {
    background: black !important;
    padding: 10px !important;
    font-size: 11px !important;
    border-radius: 0 !important;
    opacity: 1;
    border: 1px solid #fff;
}

}





@media only screen and (min-width: 0px) and (max-width: 767px) {
.banner {
    padding-top: 0;
    padding-bottom: 10px;
}

.banner::after,
.banner::before {
    display: none;
}

.navbar-brand  {
    max-width: 130px;
}

.nav-link {
    margin-left: 0;
}

.navbar-nav .nav-item:nth-child(1) {
    display: none;
}

.nav_contact_btn {
    font-size: 14px;
    margin-left: 0;
}

.banner-text {
    background: var(--light-yellow);
    padding-top: 30px;
    padding-bottom: 0;
    text-align: center;
}

.banner-text .badge {
    display: none;
}

.banner-text .d-flex { 
    justify-content: center;
}

.banner-text h1 {
    font-size: 34px; 
}

.banner-text h2 {
    font-size: 34px;
    margin-bottom: 30px;
    margin-top: 0;
}

.banner-text .d-flex {
    margin-bottom: 30px;
}

.banner-stats ul li h3 {
    font-size: 23px;
}

.banner-stats ul li p {
    font-size: 16px;
}

.banner-stats ul li {
    padding-right: 9px;
    padding-left: 9px;
}

.banner-text .btn ,
.remarkable .btn-default {
    font-size: 25px;
}

.marquee1 {
    position: unset;
}

.marquee h1 {
    font-size: 15pt;
}

.marquee,
.marquee2 {
    transform: rotate(0deg);
}

.trophy { 
    width: 100px;
    height: 100px;
}

.trophy img {
    max-width: 40px;
}

.remarkable {
    padding-top: 40px;
    padding-bottom: 40px;
}

.remarkable h1 {
    font-size: 30px;
    margin-top: 20px;
}

.remarkable h4 {
    font-size: 12px;
    text-align: center;
}

.remarkable h2 {
    font-size: 30px;
    text-align: center;
}

.remarkable p {
    text-align: center;
}

.remarkable .owl-carousel {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.remarkable {
    background: var(--light-yellow);
}

.remarkable .owl-carousel .owl-nav.disabled {
    text-align: center;
}

.projects {
    margin-top: 20px;
    margin-bottom: 20px;
}

.hand {
    top: -20px;
    max-width: 100px;
}

.reviews {
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.review-user {
    padding-top: 25px;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 30px 30px  0px 0 ;
}

.reviews-slider { 
    padding: 20px 20px;
    border-radius: 0px 0 30px 30px;
    max-width: 350px;
    margin: 0 auto;
}

.reviews-slider .rating {
    margin-bottom: 30px;
}

.remarkable p,
.reviews-slider p ,
.about p ,
.about a ,
.about_us p{
    font-size: 16px;
}

.logos {
    padding-top: 40px;
    padding-bottom: 0;
}

.logos ul li {
    padding-right: 8px;
}

.logos ul li img {
    max-width: 26px;
}

.about {
    padding: 30px 30px;
    border-radius: 0;
    margin-bottom: 0px;
}

.about .mobile {
    position: unset;
}

.about h1 {
    font-size: 30px; 
    margin-bottom: 10px;
}

.about_us h1 {
    font-size: 30px;
    margin-bottom: 30px;
}

footer {
    padding-bottom: 30px;
}

footer h2 {
    font-size: 30px;
    margin-bottom: 20px; 
}

footer h2 span {
    display: inline;
}

.bottom h5 { 
    text-align: center;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
}

.preview_window {
    max-width: 300px;
    margin: 0 auto 20px auto;
}

.lightbox .btn-close {
    background: black !important;
    padding: 10px !important;
    font-size: 11px !important;
    border-radius: 0 !important;
    opacity: 1;
    border: 1px solid #fff;
}

}