html {
  scroll-behavior: smooth;
}

#imageBackground {
    display: block;
}

.trackmanInfo {
    padding-right: 5vw;
    padding-left: 5vw;
}

.trackmanInfo p {
    font-family: 'Montserrat';
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}

.site-section {
  background-color: #1a1a1a;
  padding: 2.5em 0; }
  @media (min-width: 768px) {
    .site-section {
      padding: 5em 0; } }
  .site-section.site-section-sm {
    padding: 4em 0; }

@media (max-width: 768px) {
  .img-md-fluid {
    max-width: 100%; } }

.img-fluid {
  max-width: 100%;
  height: auto; }

.btn {
    border: none;
    font-family: 'Montserrat';
    font-size: 16px;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 20px 40px;
    display: inline-block;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 1px;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

/* Button 1 */
.btn-1 {
    border: 2px solid #fff;
    color: #fff;
}

/* Button 1f */
.btn-1f {
    overflow: hidden;
}

.btn-1f:after {
    width: 101%;
    height: 0;
    top: 50%;
    left: 50%;
    background: #fff;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.btn-1f:hover,
.btn-1f:active {
    color: #313131;
}

.btn-1f:hover:after {
    height: 75%;
    opacity: 1;
}

.btn-1f:active:after {
    height: 130%;
    opacity: 1;
}



/* Logo Images */

.logo-image {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    margin-bottom: 0px;
    background-position: 50% 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 280px;
}

.logo-circle {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-left: 4px;
    margin-right: auto;
    width: 40px;
}

span.line {
    display: inline-block;
}

body {
    font-family: 'Montserrat';
}

body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.9);
}
/* Add a thumb */
body::-webkit-scrollbar-thumb {
    background: rgba(250, 250, 250, 0.5);
}

body, html {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
}


.page-heading {
    background-image: url(../img/heading_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    text-align: center;
}

.page-heading .heading-content h1 {
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    background-color: rgba(250,250,250,0.1);
    display: inline-block;
    margin-bottom: 0;
    margin-top: 220px;
    padding: 20px 60px;
}

.page-heading .heading-content em {
    font-style: normal;
    font-weight: 200;
}


/* Navigtion Bar */

nav .logo {
    float: left;
    margin-left: 30px;
    margin-top: -12px;
}

nav .logo a {
    font-size: 28px;
    line-height: 80px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav .logo em {
    font-style: normal;
    font-weight: 200;
}

nav {
    background: rgba(0,0,0,0.0);
    height: 55px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 300;
    /*box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);*/
}

.menu-icon {
    background: transparent;
    width: 50px;
    height: 50px;
    margin-right: 30px;
    position: relative;
    float: right;
    cursor: pointer;
    transition: background 0.5s;
}

.menu-icon span,
.menu-icon span:before,
.menu-icon span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 2px;
    width: 35px;
    background: white;
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    transition: all 0.5s ease-in-out;
}

.menu-icon span:before {
    left: 0;
    top: -10px;
}

.menu-icon span:after {
    left: 0;
    top: 10px;
}

.menu-icon.active span {
    background-color: transparent;
}

.menu-icon.active span:before,
.menu-icon.active span:after {
    top: 0;
}

.menu-icon.active span:before {
    transform: rotate(135deg);
}

.menu-icon.active span:after {
    transform: rotate(-135deg);
}

/* Side Menu */

.overlay-menu {
    background: #2f6576;
    color: #ffffff;
    position: fixed;
    z-index: 100;
    right: 0;
    top: 0;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 250px;
    padding: 1px 0;
    opacity: 0;
    text-align: left-side;
    transform: translateY(-100%);
    transition: all 0.5s;
}

.overlay-menu.open {
    opacity: 1;
    transform: translateY(0%);
}

.overlay-menu .main-menu {
    transform: translateY(50%);
    opacity: 0;
    transition: all 0.3s;
    transition-delay: 0s;
}

.overlay-menu.open .main-menu {
    transition: all 0.7s;
    transition-delay: 0.0s;
    opacity: 1;
    transform: translateY(0%);
}

.overlay-menu .main-menu:nth-child(2) {
    transition-delay: 0s;
}

.overlay-menu.open .main-menu:nth-child(2) {
    transition-delay: 1.25s;
}

.overlay-menu {
    overflow: scroll;
}

.overlay-menu::-webkit-scrollbar {
    display: none;
}

.overlay-menu ul {
    list-style: none;
    margin-top: 50px;
    margin-right: 80px;
    padding-left: 15px;
}
.overlay-menu ul li {
    padding-bottom: 30px;
}

.overlay-menu ul li a {
    font-family: "Montserrat";
    font-size: 19px;
    font-weight: 250;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
}

.overlay-menu ul li a:hover {
    color: rgba(250,250,250,0.5);
}


.overlay-menu p {
    margin-top: 60px;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.5px;
    text-align: center;
}

.aboutUs {
    padding-right: 10vw;
    padding-left: 10vw;
}


#video-container  {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#video-container video,
.video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

#video-container .video-overlay {
    z-index: 9999;
    /* VIDEO background: rgba(0,0,0,0.5); */
    background: rgba(0,0,0,0.40);
    width: 100%;
}

#video-container .video-content {
    z-index: 99999;
    position: absolute;
    height: 100%;
    width: 100%;
}

#video-container .video-content .inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    flex-wrap: nowrap;
}

#video-container .video-content .inner h1 {
    font-size: 64px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
}

#video-container .video-content .inner em {
    font-style: normal;
    font-weight: 200;
}


#video-container .video-content .inner p {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 250;
    letter-spacing: 3px;
    text-align: center;
    padding: 0px 0px;
}

#video-container .video-content .inner a {
    color: #fff;
    text-decoration: underline;
}

#video-container .video-content .inner .scroll-icon {
    margin-top: 45px;
}

.full-screen-portfolio .container-fluid,
.full-screen-portfolio .col-md-4, .col-md-8 {
    padding-left: 0px;
    padding-right: 0px;
}


.portfolio-item img {
    width: 100%;
    overflow: hidden;
}

.portfolio-item .thumb {
    position: relative;
}


.portfolio-item .hover-effect .hover-content {
    position: absolute;
    text-align: left;
    width: 100%;
    bottom: 0;
    left: 0;
}


.full-screen-portfolio .portfolio-item h1 {
    position: relative;
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    padding-left: 20px;
    line-height: 15px;
    transform: translateY(25px);
    transition: .5s ease-in-out;
    letter-spacing: 0.5px;
}

.full-screen-portfolio .portfolio-item em {
    font-style: normal;
    font-weight: 200;
}

.full-screen-portfolio .portfolio-item:hover h1 {
    transform: translateY(0);
}

.full-screen-portfolio .portfolio-item p {
    padding-left: 20px;
    font-weight: 300!important;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: .5s ease-in-out;
    text-transform: uppercase;
}

.full-screen-portfolio .portfolio-item {
    text-align: center;
    line-height: 150%;
    text-transform: lowercase;
    cursor: pointer;
}

.full-screen-portfolio .portfolio-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.popup-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 300;
    display: inline-block;
    width: 60px;
    height: 60px;
}

.popup-icon button {
    background-color: transparent;
    outline: none;
    border: none;
}

.modal-btn img {
    width: 60px;
    height: 60px;
}

/* Modal */
.modal {
    background: transparent;
    display: none;
    overflow: auto;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: all 0.6s;
}

.modal::-webkit-scrollbar {
    display: none;
}

/* Modal Content */
.modal-content {
    display: table;
    text-align: center;
    position: relative;
    top: 0;
    width: 50vw;
    margin: 0 auto;
    margin-top: 5%;
    padding-top: 15px;
    padding-bottom: 40px;
    background-color: #2f6576;
}
.modal-animated-in {
    animation: totop-in .6s ease;
}
.modal-animated-out {
    animation: totop-out .6s ease forwards;
}
.modal-header {
    border-bottom: none;
}
.modal-header h3 {
    color: #fff;
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 22px;
    font-family: 'Montserrat';
    margin-top: 5vh;
    border-bottom: none;
    margin-bottom: 20px;
}

.modal-header em {
    font-style: normal;
    font-weight: 200;
}

.modal-content .close-btn {
    position: absolute;
    z-index: 99999999;
    color: #fff;
    right: 38px;
    top: 15px;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
}

.modal-body {
    text-align: center;
    margin: 0 auto;
    margin-top: -5px;
}

.modal-body input {
    border-radius: 5px;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 200;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.15);
    outline: none;
    border: none;
    box-shadow: none;
    line-height: 40px;
    height: 40px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.modal-body textarea {
    border-radius: 5px;
    padding-left: 15px;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 200;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.15);
    outline: none;
    border: none;
    box-shadow: none;
    height: 165px;
    max-height: 220px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    margin-bottom: 25px;
}

.modal-body button {
    border-radius: 0px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: transparent;
    color: #fff;
    letter-spacing: 2px;
    border-bottom: 3px solid #fff;
    display: inline-block;
    padding: 20px 0px 3px 0px;
    transition: all 0.5s;
    border-top: none;
    border-right: none;
    border-left: none;
}

.modal-body button:hover {
    color: rgba(250,250,250,0.5);
    border-color: rgba(250,250,250,0.5);
    outline: none;
}

/* Keyframes */
@keyframes totop-in {
    0% {
        top: 600px;
        opacity: 0;
    }
    100% {
        top: 0%;
        opacity: 1;
    }
}

@keyframes totop-out {
    0% {
        top: 0px;
        opacity: 1;
    }
    100% {
        top: -100%;
        opacity: 0;
    }
}

footer {
    width: 100%;
    height: 80px;
    background-color: #232323;
}

footer p {
    font-family: "Montserrat";
    text-align: center;
    color: #fff;
    font-weight: 200;
    font-size: 13px;
    text-transform: uppercase;
    padding-top: 33px;
    letter-spacing: 0.5px;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: none;
    color: #aaa;
}


.masonry-portfolio .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

.masonry .col-md-4, .masonry .col-md-8 {
    padding-right: 0px;
    padding-left: 0px;
}

.masonry {
    width: 100%;
    background-color: transparent;
    position: relative;
}

.masonry .item {
    display: inline-block;
    float: left;
}

.masonry .first-item {
    margin-bottom: -0.5px;
}

.masonry .last-item {
    float: left;
}

.masonry .item img {
    width: 100%;
    overflow-y: hidden;
}

.masonry .item .thumb {
    position: relative;
}

.masonry .item .hover-effect .hover-content {
    position: absolute;
    text-align: left;
    width: 100%;
    bottom: 5px;
    left: 0;
}


.masonry .item h1 {
    position: relative;
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    padding-left: 20px;
    line-height: 15px;
    transform: translateY(25px);
    transition: .5s ease-in-out;
    letter-spacing: 0.5px;
}

.masonry .item em {
    font-style: normal;
    font-weight: 200;
}

.masonry .item:hover h1 {
    transform: translateY(0);
}

.masonry .item p {
    padding-left: 20px;
    font-weight: 300!important;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: .5s ease-in-out;
    text-transform: uppercase;
}

.masonry .item {
    text-align: center;
    line-height: 150%;
    text-transform: lowercase;
    cursor: pointer;
}

.masonry .item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.grid-portfolio {
    padding: 65px 0px;
    background-color: #1a1a1a;
}

.grid-portfolio .portfolio-item {
    margin: 15px 0px;
}

.portfolio-item .hover-effect .hover-content {
    position: absolute;
    text-align: left;
    width: 100%;
    bottom: 5px;
    left: 0;
}


.grid-portfolio .portfolio-item h1 {
    font-family: "Montserrat";
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    padding-left: 20px;
    line-height: 15px;
    transform: translateY(25px);
    transition: .5s ease-in-out;
    letter-spacing: 0.5px;
}

.grid-portfolio .portfolio-item em {
    font-style: normal;
    font-weight: 200;
}

.grid-portfolio .portfolio-item:hover h1 {
    transform: translateY(0);
}

.grid-portfolio .portfolio-item p {
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 300!important;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: .5s ease-in-out;
}

.grid-portfolio .portfolio-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.services {
    background-color: #232323;
    padding: 65px 0px;
}

.services .step-item {
    margin-top: 10px;
    text-align: center;
    transition: all 0.5s;
}

.services .step-item h4 {
    font-family: "Montserrat";
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-align: center;
    padding-top: 30px;
}

.services .step-item p {
    font-family: "Montserrat";
    color: #fff;
    font-size: 13.5px;
    font-weight: 50;
    line-height: 28px;
    text-align: center;
}

.services .service-item {
    margin: 15px 0px;
    padding: 30px;
    text-align: center;
    height: 210px;
    transition: all 0.5s;
}

.services .service-item:hover {
    background-color: #313131;
    cursor: default;
}

.services .service-item .icon {
    margin-top: -18px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: inline-block;
    line-height: 50px;
}

.services .service-item .icon img {
    max-width: 100%;
}

.services h4 {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 19px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 250;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 20px;
    margin-top: -10px;
}

.masonry h4 {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 19px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 250;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 20px;
    margin-top: -10px;
}

.services p {
    font-family: 'Montserrat';
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}

.services ul {
    font-family: 'Montserrat';
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}

.services .service-item h4 {
    font-family: "Montserrat";
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-align: center;
}

.services .service-item p {
    font-family: "Montserrat";
    color: #bbb;
    font-size: 13.5px;
    font-weight: 50;
    line-height: 28px;
    text-align: center;
}

.more-about-us {
    background-image: url(../img/trackman.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    width: 100%;
    text-align: center;
}

.more-about-us .content {
    background-color: rgba(0,0,0,0.8);
    text-align: left;
    padding: 150px 60px;
    color: #fff;
}

.more-about-us .content h2 {
    margin-top: 0px;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.more-about-us .content span {
    font-size: 16px;
    font-weight: 200;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.more-about-us .content p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}

.more-about-us .content .simple-btn {
    margin-top: 30px;
}

.more-about-us .content .simple-btn a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: transparent;
    color: #fff;
    letter-spacing: 2px;
    border-bottom: 3px solid #fff;
    padding-bottom: 3px;
    text-decoration: none;
    transition: all 0.5s;
}

.more-about-us .content .simple-btn a:hover {
    opacity: 0.5;
}



.pricing-tables {
    padding: 65px 0px;
    background-color: #232323;
}

.pricing-tables p {
    font-family: 'Montserrat';
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}

.pricing-tables .table-item {
    padding: 60px 0px;
    margin: 15px 0px;
    text-align: center;
    background-color: #313131;
}

.pricing-tables .table-item h4 {
    margin-top: 0px;
    font-size: 30px;
    font-weight: 200;
    color: #4594ad;
    letter-spacing: 0.5px;
}

.pricing-tables .table-item span {
    font-size: 16px;
    display: inline-block;
    color: #cccccc;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-bottom: 40px;
}

.pricing-tables .table-item ul {
    list-style: none;
    padding: 0;
    margin-top: 35px;
}

.pricing-tables .table-item ul li {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0px 0px;
}

.pricing-tables .table-item .simple-btn {
    margin-top: 40px;
    padding-bottom: 10px;
    cursor: pointer;
}

.pricing-tables .table-item .simple-btn a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: transparent;
    color: #4594ad;
    letter-spacing: 2px;
    border-bottom: 3px solid #4594ad;
    padding-bottom: 3px;
    text-decoration: none;
    transition: all 0.5s;
}

.pricing-tables .table-item .simple-btn a:hover {
    opacity: 0.5;
}

.pricing-tables .premium-item {
    background-color: #2f6576;
}

.pricing-tables .premium-item h4, .pricing-tables .premium-item span, .pricing-tables .premium-item ul li, .pricing-tables .premium-item .simple-btn a {
    color: #fff;
    border-color: #fff;
}

.simple-btn-big {
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.simple-btn-big a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: transparent;
    color: #fff;
    letter-spacing: 2px;
    border-bottom: 3px solid #4594ad;
    padding-bottom: 3px;
    text-decoration: none;
    transition: all 0.5s;
}

.simple-btn-big a:hover {
    opacity: 0.5;
}

.sidebar-heding h2 {
    font-size: 20px;
    text-transform: capitalize;
    color: #fff;
    margin-top: 40px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #414141;
    margin-bottom: 20px;
}

.archives ul, .categories ul {
    margin-top: -5px;
    padding: 0;
    list-style: none;
}

.archives ul li, .categories ul li {
    margin-bottom: 12px;
}

.archives ul li:last-child, .categories ul li:last-child {
    margin-bottom: 0px;
}

.archives ul li a, .categories ul li a {
    font-size: 15px;
    font-weight: 200;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.5s;
}


.archives ul li a:hover, .categories ul li a:hover {
    opacity: 0.5;
}

.recent-posts ul {
    padding: 0;
    list-style: none;
}

.recent-posts ul li {
    margin-bottom: 15px;
}

.recent-posts ul a {
    text-decoration: none;
}

.recent-posts ul li img {
    display: inline-block;
    max-width: 100%;
    margin-right: 15px;
}

.recent-posts ul li .text {
    display: inline-block;
}

.recent-posts ul li h6 {
    margin-bottom: 5px;
    padding-top: 0px;
    margin-top: 0px;
    display: block;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
}

.recent-posts ul li span {
    display: inline-block;
    font-size: 14px;
    font-weight: 200;
    color: #f4dd5b;
}


.latest-gallery ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.latest-gallery ul li {
    display: inline-block;
    max-width: 59px;
    overflow-y: hidden;
    margin-bottom: 3px;
    margin-right: 1px;
}

.latest-gallery ul li:nth-child(4){
    margin-right: 0px;
}

.latest-gallery ul li:nth-child(8){
    margin-right: 0px;
}

.latest-gallery ul li img {
    width: 100%;
    transition: all 0.5s;
}

.latest-gallery ul li img:hover {
    cursor: pointer;
    opacity: 0.5;
}


@media (hover:none) {
    /* start mobile styles */
    select, textarea, input[type=”text”], input[type=”password”],
    input[type=”datetime”], input[type=”datetime-local”],
    input[type=”date”], input[type=”month”], input[type=”time”],
    input[type=”week”], input[type=”number”], input[type=”email”],
    input[type=”url”], input[type=”tel”]{ font-size: 16px; }
    /* end mobile styles */
}

@media (max-width: 530px) {

    #videoBackground {
        display: none;
    }

    .modal-content {
        width: 90vw;
    }

    .logo-image {
        width: 80%;
    }

    .grid-portfolio .portfolio-item {
        margin: 30px 0px;
    }

    .grid-portfolio .load-more-button {
        padding-bottom: 30px;
    }

    .more-about-us .content {
        padding: 60px 30px;
    }
}


@media (max-width: 992px) {

    .blog-entries .blog-posts {
        margin-right: 0px;
    }

    .single-blog-post {
        margin-right: 0px;
        margin-bottom: 80px;
    }

    .blog-entries .page-number {
        margin-bottom: 80px;
    }

    .single-blog-post .tags-share .tags {
        text-align: center;
    }

    .single-blog-post .tags-share .share {
        text-align: center;
    }
}
