/* Start Change Version */

.change-version {
    position: fixed;
    right: 0;
    top: 44%;
    z-index: 2;
    padding: 15px 0;
    width: 170px;
    border-radius: 0 0 0 26px;
    right: -170px;
    transition: all .5s linear;
}

.change-version.open {
    right: 0;
}

.change-version.open .main-arrow img {
    display: none;
}

.change-version.open .main-arrow .arrow-right {
    width: 14px;
    height: 14px;
    background-image: url("../imgs/4.png");
    background-size: cover;
    margin-top: 7px;
}

.change-version .main-arrow {
    width: 32px;
    padding: 10px 8px;
    left: -32px;
    position: absolute;
    top: 0;
    display: inline-block;
    text-align: left;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    height: 47px;
}

.change-version img {
    width: 14px;
}

.change-version p {
    font-weight: bold;
    font-size: 13px;
}

.change-version .hold {
    display: inline-block;
    width: 129px;
    border-radius: 30px;
}

.change-version .hold div:first-of-type,
.change-version .hold div:last-of-type {
    margin: auto;
    padding: 13px 11px 12px 15px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
}

.change-version .hold div:first-of-type {
    border-radius: 30px 0 0 30px;
}

.change-version .hold div:last-of-type {
    border-radius: 0 30px 30px 0;
}

/* End Change Version */

/* Start Navbar */

.navbar {
    min-height: 60px;
}

.navbar.box-shadow {
    box-shadow: 0 0 20px #8986861f;
}

.navbar .navbar-brand {
    font-size: 23px;
    font-weight: bold;
}

@media(max-width:768px){
    .navbar-nav {
        margin-top: 15px;
    }
}

.navbar .navbar-nav .nav-link {
    font-weight: bold;
    font-size: 14px;
    margin-left: 20px;
    transition: all .5s ease-in-out;
}

.dropdown-toggle::after {
    margin-left: 9px;
    vertical-align: 1px;
    transition: all .5s ease-in-out;
}

.navbar-nav .dropdown-menu {
    width: 177px;
    border-radius: 0 0 7px 7px;
    border: none;
    box-shadow: 10px 10px 19px #0000001a, -10px -10px 19px #0000001a;
    transition: all 2s ease-in-out;
    opacity: 0;
    top: 50px;
}

@media(max-width:768px){
    .dropdown-menu {
        padding: 0;
    }
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(-13px);
}

@media(max-width:768px){
    .dropdown-menu.show {
        transform: translateY(0);
        width: 100%;
        border: 1px solid #e7e7e7 !important;
        box-shadow: none;
        border-top: 1px solid #e7e7e7;
        border-radius: 0;
    }
}

.dropdown-item {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 6px;
}

@media(max-width:768px){
    .dropdown-item {
       padding: 10px 20px;
    }
}

@media(max-width:768px){
    .dropdown-menu a:first-child {
        border-bottom: none;
    }
}

@media(max-width:768px){
    .dropdown-item:not(:last-of-type) {
        border-bottom: 1px solid #e7e7e7;
    }
}

.dropdown-item:hover {
    background-color: transparent;
}

button:focus {
    outline: none;
}

.navbar-light .navbar-toggler {
    color: transparent;
    border-color: transparent;
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

@media (min-width: 768px){
.navbar-fixed-top {
    border-radius: 0;
}
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* End Navbar */

/* Start Header */

.header {
    min-height: 100vh;
    padding-top: 60px;
}

.header .centering-vh {
    padding-top: 25vh;
}

@media(max-width:768px){
    .header .centering-vh {
        padding-top: 100px;
    }
}

.header .part-one h6 {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 60px;
}

@media(max-width:768px){
    .header .part-one h6 {
        font-size: 12px;
        margin-bottom: 30px;
    }
}

.header .part-one h1 {
    font-size: 66px;
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: -0.7px;
}

@media(max-width:992px){
    .header .part-one h1 {
        font-size: 53px;
        margin-bottom: 40px;
    }
}

@media(max-width:768px){
    .header .part-one h1 {
        font-size: 51px;
    }
}

.header .part-one .button {
    width: 218px;
    padding: 18px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .5s linear;
}

.header .part-one .button:hover {
    transform: translateY(-10px);
}

@media(max-width:768px){
    .header .part-one .button {
        width: 205px;
        margin-bottom: 55px;
    }
}

.header .part-one .button span {
    margin-right: 20px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

@media(max-width:768px){
    .header .part-one .button span {
       margin-right: 7px;
       font-size: 11px;
    }
}

.header .part-two img {
    width: 100%;
}

/* End Header */

/* Start Projects */

.our-projects {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.our-projects ul li {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 12px;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.our-projects ul li:not(:first-child) {
    margin-left: 40px;
}

@media(max-width:576px){
    .our-projects ul li:not(:first-child) {
        margin-left: 30px;
    }
}


.our-projects .gallery {
    position: relative;
    column-count: 4;
    overflow: hidden;
}

@media(max-width:768px){
    .our-projects .gallery {
        column-count: 3;
    }
}

@media(max-width:576px){
    .our-projects .gallery {
        column-count: 1;
    }
}

.our-projects .gallery .img-hold {
    position: relative;
    cursor: pointer;
    transition: all 1.5s ease-in-out !important;
}

.our-projects .gallery .item-name {
    position: absolute;
    width: 86%;
    padding: 16px 30px 20px;
    border-radius: 5px;
    margin-left: 7%;
    bottom: 0;
    transition: all .3s linear;
    opacity: 0;
    cursor: pointer;
}

.our-projects .gallery .img-hold:hover .item-name {
    opacity: 1;
    transform: translateY(-30px);
}

.our-projects .gallery .item-name h6 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: 13px;
    margin: 0;
}

@media(max-width:992px){
    .our-projects .gallery .item-name h6 {
        font-size: 10px;
    }
}

@media(max-width:768px){
    .our-projects .gallery .item-name h6 {
        font-size: 9px;
    }
}

@media(max-width:576px){
    .our-projects .gallery .item-name h6 {
        font-size: 12px;
    }
}

.our-projects .gallery .item-name span {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -.2px;
    transition: all .5s ease-in-out;
}


@media(max-width:992px){
    .our-projects .gallery .item-name span {
        font-size: 15px;
    }
}

@media(max-width:768px){
    .our-projects .gallery .item-name span {
        font-size: 13px;
    }
}

@media(max-width:576px){
    .our-projects .gallery .item-name span {
        font-size: 17px;
    }
}

.our-projects .gallery img {
    width: 100%;
    margin-bottom: 15px;
}

/* End Projects */

/* Start Contact Us */

.contact-us {
    padding-top: 100px;
    padding-bottom: 50px;
}

.contact-us h6 {
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.9px;
    font-weight: bold;
    margin-bottom: 40px;
}

@media(max-width:768px){
    .contact-us h6 {
        font-size: 12px;
    }
}

@media(max-width:576px){
    .contact-us h6 {
        font-size: 9px;
    }
}

.contact-us h6::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: -23px;
    bottom: 0;
}

.contact-us .h1 {
    font-size: 54px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

@media(max-width:768px){
    .contact-us .h1 {
        font-size: 40px;
    }
}

@media(max-width:576px){
    .contact-us .h1 {
        font-size: 30px;
    }
}

.contact-us a {
    display: inline-block;
    padding: 20px 30px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 150px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.7px;
    cursor: pointer;
    transition: all .5s linear;
    text-decoration: none;
}

@media(max-width:768px){
    .contact-us a {
        font-size: 11px;
    }
}

@media(max-width:576px){
    .contact-us a {
        font-size: 10px;
    }
}

.contact-us a img {
    margin-right: 12px;
}


.contact-us a:hover {
    transform: translateY(-10px);
}

.contact-us span:first-of-type {
    display: block;
    font-size: 13px;
    font-weight: bold;
}

.contact-us span:first-of-type p {
    display: inline-block;
}

/* End Contact Us */
