body {
    font-family: sans-serif;
}

/* Start Navbar */

.bg-light {
    background-color: transparent !important;
    height: 0;
    position: absolute;
    z-index: 5;
    width: 100%;
    padding: 30px 0 30px;
}

@media(max-width:768px){
    .bg-light {
        padding: 10px;
        display: block;
    }
}

@media(max-width: 767.98px){
    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.navbar-nav {
    margin: auto;
}

@media(max-width:768px){
    .navbar-nav {
        margin: 0;
        margin-right: 13px;
    }
}

.navbar-light .navbar-brand {
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1.3px;
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-light .navbar-brand:hover {
    color: #fff;
}

@media(max-width:768px){
    .nav-link {
        padding: 0;
    }
}

.navbar-collapse .nav-link {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    margin-left: 10px;
    letter-spacing: -.4px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

@media(max-width:768px){
    .navbar-light .navbar-nav .nav-link {
        padding-top: 13px;
    }
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #1fb4cc;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #1fb4cc;
}

.navbar-light .navbar-nav .active>.nav-link {
    color: #1fb4cc;
}

@media(max-width:992px){
    .navbar-toggler {
        float: right;
    }
}

.navbar-light .navbar-toggler {
    color: transparent;
    border-color: transparent;
}

.navbar-light .navbar-toggler-icon {
    background-image: url(../imgs/menu.png);
    height: 27px;
    width: 25px;
    margin-top: 5px;
}

button:focus {
    outline: none;
}

.icon {
    text-align: end;
}

.icon img {
    width: 14px;
    margin-left: 13px;
    cursor: pointer;
    display: inline-block;
}

@media(max-width: 768px){
    .icon {
        display: none;
    }
}

.icon span {
    font-size: 9px;
    color: #fff;
    position: absolute;
    top: 11px;
    right: 51px;
}

.dropdown-toggle::after {
    display: none;
 }

@media(max-width:768px){
    .dropdown-toggle::after {
        display: block;
        border-top: 5px solid #fff;
        margin-left: 96.8%;
        position: absolute;
        right: 13px;
        top: 15px;
    }
}

.nav-item::before {
    display: none;
}

@media(max-width:768px){
    .nav-item::before {
        display: block;
        content: "";
        float: right;
        width: 35px;
        height: 35px;
        background-color: #1fb4cc;
    }
    
}

@media(max-width:768px){
    .navbar-nav {
        background-color: #100f0f;
        margin-top: 10px;
    }
}

.navbar-nav .dropdown-menu {
    position: static;
}

.dropdown-menu {
    padding: 0.9rem 0.5rem;
    font-size: 13px;
    background-color: #060606;
    border: none;
    border-radius: 0;
    border-bottom: 4px solid #1fb4cc;
    margin-top: 14px;
}

@media(max-width:768px){
    .dropdown-menu {
        border-bottom: 0;
    }
}

.dropdown-item {
    padding: .25rem 1.5rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 10px;
}

@media(max-width:768px){
    .dropdown-item{
        padding: .25rem 5px;
    }

    .navbar-collapse .nav-link {
        font-size: 13px;
    }
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #1fb4cc;
    text-decoration: none;
    background-color: transparent;
}

.proto-type {
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-left: 18px;
    text-transform: uppercase;
}

@media(max-width:768px){
    .proto-type{
        margin-left: 3px;
    }
}

.porto a:first-of-type {
    margin-top: 10px;
}

/* End Navbar */

/* Start Slider */

.slider {
    position: relative;
    min-height: 600px;
}

.slider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;  
    background-color: #a6a6a645;
    top: 60px;
    z-index: 2;
}

.slider .carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000054;
}

.carousel-inner {
    position: relative;
}

.carousel-caption{
    position: absolute;
    margin-top: 25vh;
    margin-bottom: 25vh;
}

.carousel-caption .h1 {
    font-size: 65px;
    font-weight: bold;
    line-height: 1.3;
    margin: auto;
}

@media(max-width:992px){
    .carousel-caption .h1 {
        font-size: 55px;
        width: 93%;
    }
}

@media(max-width:768px){
    .carousel-caption .h1 {
        font-size: 43px;
        width: 100%;
    }
}

@media(max-width:576px){
    .carousel-caption .h1 {
        font-size: 37px;
        width: 100%;
    }
}  

.carousel-caption .lead {
    font-size: 14px;
    margin-top: 13px
}

@media(max-width:992px){
    .carousel-caption .lead {
        font-size: 13px;
    }
}

@media(max-width:768px){
    .carousel-caption .lead {
        font-size: 12px;
    }
}

@media(max-width:576px){
    .carousel-caption .lead {
        font-size: 10px;

    }
}

.slider .carousel-inner .carousel-item {
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    height: 100vh;
}

.slider .carousel-inner .carousel-one {
    background-image: url('../imgs/1.jpg');
}

.slider .carousel-inner .carousel-two {
    background-image: url('../imgs/2.jpg');
}

.slider .carousel-inner .carousel-three {
    background-image: url('../imgs/3.jpg');
}

.carousel-control-next,
.carousel-control-prev {
     z-index: 3;
}

.carousel-indicators {
    z-index: 4;
}

.carousel-indicators li {
    border-radius: 50%;
    height: 7px;
    width: 7px;
    background-color: #fff;
    margin-left: 5px;
}

.carousel-indicators .active {
    background-color: #1fb4cc;
}

/* End Slider */

/* Start About Us */

.about-us {
    padding-top: 140px;
    padding-bottom: 140px;
}

.about-us .container {
    padding-left: 40px;
    padding-right: 40px;
}

.about-us .part-one {
    width: 489px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}

@media(max-width:992px){
    .about-us .part-one {
        margin-left: 160px;
    }
}

@media(max-width:768px){
    .about-us .part-one {
        margin-left: 59px;
    }
}

@media(max-width:530px){
    .about-us .part-one {
        margin-left: -19px;
    }
}

.about-us .part-one::before,
.about-us .part-one::after {
    position: absolute;
    background-color: #1fb4cc;
    height: 150px;
    width: 135px;
    border-radius: 4px;
}

.about-us .part-one::before {
    content: "";
    top: -25px;
    left: -15px;
    height: 125px;
    width: 125px;
}

@media(max-width:530px){
    .about-us .part-one::before {
        left: -5px;
    }
}

.about-us .part-one::after {
    content: "";
    top: 177px;
    left: 293px;
}

@media(max-width: 530px){
    .about-us .part-one::after {
        left: 236px;
    }
}

.about-us img {
    position: relative;
    width: 350px;
    height: 357px;
}

.about-us .part-one div {
    top: 204px;
    left: 313px;
    position: absolute;
    z-index: 9;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

@media(max-width: 530px){
    .about-us .part-one div {
        left: 266px;
    }
}

.about-us .part-one div span {
    display: block;
    font-size: 32px;
    margin-bottom: -23px;
}

.about-us h2 {
    font-weight: bold;
    margin-top: 67px;
    margin-bottom: 20px;
}

@media(max-width:576px){
    .about-us h2 {
        font-size: 26px;
    }
}

.about-us .about-p {
    color: #a6a6a6;
    font-size: 13px;
}

@media(max-width:576px){
    .about-us .about-p {
        font-size: 11px;
    }
}

.about-us h5 {
    font-weight: bold;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 17px;
}

.about-us h5:hover {
    color: #1fb4cc;
}

.about-us h5:hover::before {
    content: "";
    height: 1px;
    width: 60px;
    position: absolute;
    background-color: #1fb4cc;
    margin-top: 36px;
}

.about-us h5.selected::before{
    content: "";
    height: 1px;
    width: 60px;
    position: absolute;
    background-color: #1fb4cc;
    margin-top: 36px;
}

.about-us h5:not(:first-of-type) {
    margin-left: 30px;
}

.about-us hr {
    margin: 0;
}

.about-us .content .about-text p {
    color: #a6a6a6;
    font-size: 12px;
    margin-top: 30px;
}

.selected {
    color: #1fb4cc;
}

.about-us .part-two div:not(.info-one) {
    display: none;
}

/* End About Us */

/* Start Gallery */

.gallery .row {
    margin-right: 0;
    margin-left: 0;
}

.gallery .gallery-box {
    padding: 0;
    margin: 0;
}

.gallery .gallery-box img {
    width: 100%;
    cursor: pointer;
    position: relative;
}

.gallery .item {
    position: absolute;
    z-index: 1;
    background-color: #fff;
    text-align: center;
    bottom: 0;
    right: 20px;
    left: 20px;
    padding-bottom: 30px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.gallery .gallery-box:hover .item {
    transform: translateY(-20px);
    opacity: 1;
}

.gallery .gallery-box .item-content {
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.gallery .gallery-box:hover .item-content {
    transform: translateY(15px);
    opacity: 1;
}

.gallery .item h6 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .5px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.gallery .item span {
    font-size: 12px;
    color: #797777;
    transition: all 0.3s ease-in-out;
}

.gallery .item h6:hover,
.gallery .item span:hover {
    color: #1fb4cc;
}

/* End Gallery */

/* Start Featrues */

.features {
    padding-top: 100px;
    padding-bottom: 100px;
}

.features .row .feat-box{
    margin-bottom: 35px;
}

.features .feat-box {
    overflow: hidden;
}

.features .feat-icon {
    width: 25%;
    float: left;
    margin-right: 3%;
}

.features .feat-icon img {
    width: 40px;
}

.features .feat-content {
    width: 72%;
    float: right;
}

.features .feat-content h6 {
    font-weight: bold;
}

.features .feat-content p {
    font-size: 11px;
    color: #969494;
}

/* End Featrues */

/* Start Our Clients */

.our-clients {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f7f7f7;
}

.our-clients .active {
    display: block;
}

.our-clients .not-active {
    display: none;
}

@media(max-width: 992px){
    .our-clients .col img {
        width: 90px;
    }
}

@media(max-width: 768px){
    .our-clients .col img {
        width: 59px;
    }
}

@media(max-width: 576px){
    .our-clients .col img {
        width: 50px;
    }
}

@media(max-width: 480px){
    .our-clients .col img {
        width: 32px;
    }
}

/* End Our Clients */

/* Start Video */

.main-video {
    width: 100%;
    min-height: 600px;
    position: relative;
    background: url("../imgs/19.jpg") fixed;
    background-size: cover;
}

.main-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #00000047;
}

.main-video .box-play1 {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .7s ease-in-out;
}

.main-video .box-play1 span {
    position: absolute;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin-top: 100px;
}

.main-video .box-play2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 200px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-video .box-play2 .box-img {
    z-index: 2;
    margin-bottom: -101px;
    background-color: #fff;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    text-align: center;
    line-height: 73px;
    transition: all .7s ease-in-out;
}


.main-video .box-play2 .box-img:hover {
    background-color: #1fb4cc;
}

.main-video .box-play2 span {
    position: absolute;
    border-radius: 50%;
    animation: a1 4s linear infinite;
}

.main-video .box-play2 span:nth-child(1) {
    animation-delay: 0s;
}
.main-video .box-play2 span:nth-child(2) {
    animation-delay: 1s;
}
.main-video .box-play2 span:nth-child(3) {
    animation-delay: 2s;
}
.main-video .box-play2 span:nth-child(4) {
    animation-delay: 3s;
}
.main-video .box-play2 span:nth-child(5) {
    animation-delay: 4s;
}

@keyframes a1 {
    0% {
        width: 0;
        height: 0;
        background-color: rgba(141, 141, 141, 0.308);
    }
    25% {
        width: 25%;
        height: 25%;
        background-color: rgba(141, 141, 141, 0.295);
    }
    50% {
        width: 50%;
        height: 50%;
        background-color: rgba(141, 141, 141, 0.253);
    }
    75% {
        width: 75%;
        height: 75%;
        background-color: rgba(163, 159, 159, 0.226);
    }
    100% {
        width: 100%;
        height: 100%;
        background-color: transparent;
    }
}

.popup-overlay {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(43 43 43 / 59%);
}

.popup-box {
    position: fixed;
    z-index: 1001;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 700px;
}

.popup-box .video {
    width: 100%;
}

@media(max-width:768px){
  .popup-box {
      width: 500px;
  }
}

@media(max-width:576px){
  .popup-box {
      width: 390px;
  }
  .close-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
        line-height: 35px;
    }
}

.close-button {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d3d3d3;
    position: fixed;
    font-size: 20px;
    text-align: center;
    line-height: 39px;
    color: #d3d3d3;
    cursor: pointer;
}

@media(max-width:576px){
    .close-button {
          width: 35px;
          height: 35px;
          font-size: 18px;
          line-height: 35px;
      }
  }

.main-video video {
    display: none;
}

/* End Video */

/* Start Latest News */

.latest-news {
    padding-top: 80px;
    padding-bottom: 80px;
}

.latest-news h2 {
    font-weight: bold;
    margin-bottom: 60px;
}

@media(max-width:576px){
    .latest-news h2 {
        font-size: 30px;
    }
}

.latest-news .card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}

.latest-news .card:hover .card-img-top {
    transform: scale(1.1) rotate(-1deg);   
}

.latest-news .card img {
    margin-bottom: 25px;
    cursor: pointer;
    transition: all .4s linear;
}

.latest-news .card-body {
    padding: 0;
}

.latest-news .card-body span {
    font-size: 11px;
    color: #9c9c9c;
}

.latest-news .card-body .card-subtitle {
    display: inline-block;
    font-size: 11px;
    color: #9c9c9c;
    margin-bottom: 10px;
    transition: all .4s ease-in-out;
}

.latest-news .card-body .card-subtitle:hover {
    color: #1fb4cc;
}

.latest-news .card-body .span-line {
    color: #e6e6e6;
    margin: 0 5px;
}

.latest-news .card-body .card-title {
    font-size: 15px;
    font-weight: bold;
    transition: all .4s ease-in-out;
}

.latest-news .card-body .card-title:hover {
    color: #1fb4cc;
}

.latest-news .card-body .card-text {
    color: #9c9c9c;
    font-size: 12px;
    margin-top: 18px;
    margin-bottom: 25px;
}

.latest-news .card-body .card-link {
    text-decoration: none;
    color: #313030;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 50px;
    transition: all .4s ease-in-out;
}


.latest-news .card-body .card-link:hover {
    color: #1fb4cc;
}

/* End Latest News */

/* Start Contact Us */

.contact-us {
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
    width: 100%;
    background-size: cover;
    background: url('../imgs/52.jpg') fixed;
}

.contact-us .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #ffffff54;
}

.contact-us .content {
    z-index: 2;
    position: relative;
}

.contact-us h6 {
    color: #9c9c9c;
    font-size: 14px;
    margin: 0;
}

.contact-us h2 {
    font-weight: bold;
    margin: 5px 0 35px;
}

.contact-us span {
    background-color: #1fb4cc;
    color: #fff;
    text-transform: uppercase;
    padding: 16px 28px;
    font-size: 11px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: .7s ease-in;
}

.contact-us span:hover {
    background-color: #212020;
}

/* End Contact Us */

/* Start Footer */

.footer {
    background-color: #181818;
}

.footer .first-row {
    padding-top: 20px;  
    padding-bottom: 20px;
    position: relative;
}

@media(max-width: 576px){
    .footer .first-row {
        padding-top: 30px;  
        padding-bottom: 30px;
    }
}

.footer .first-row::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #3d3b3b;
    height: 1px;
    top: 63px;
}

@media(max-width: 576px){
    .footer .first-row::after {
        top: 122px;
    }
}

.footer .first-row .name {
    top: 2px;
}

@media(max-width:576px){
    .footer .first-row .name {
        margin-bottom: 20px;
    }
}

.footer .name h5 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.footer .links {
    margin-top: -4px;
    top: 2px;
}

@media(max-width:768px){
    .footer .links {
        margin-top: -21px;
    }
}

@media(max-width: 576px){
    .footer .links {
        margin-top: -4px;
    }
}

.footer .links span {
    font-size: 10px;
    color: #c1c0c0;
    margin-right: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all .7s ease-in-out;
}

.footer .links span:hover {
    color: #1fb4cc;
}

.footer .links span:last-of-type {
    margin-right: 0;
}

.footer .second-row {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media(max-width:768px){
    .footer .second-row {
        padding-bottom: 7px;
    }
}

@media(max-width:576px){
    .footer .second-row {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

.footer .copy-right {
    font-size: 10px;
    color: #c1c0c0;
    top: 6px;
}

@media(max-width:576px){
    .footer .copy-right {
        top: 0;
    }
}

.footer .copy-right span {
    color: #fff;
}

.footer .social-media {
    top: 6px;
}

@media(max-width:768px){
    .footer .social-media {
        top: -9px;
    }
}

@media(max-width:576px){
    .footer .social-media {
        top: 15px;
    }
}

.footer .social-media img {
    width: 13px;
    margin-left: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

/* End Footer */

/* Start Scroll To Top */

.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 15px;
    z-index: 10;
    width: 30px;
    height: 30px;
    background-color: #1fb4cc;
    cursor: pointer;
    text-align: center;
    display: none;
}

.scroll-top:hover {
    background-color: black;
}

.scroll-top img {
    width: 12px;
    height: 11px;
}

/* End Scroll To Top */