/* ***** Common Css **** */

:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;
	width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

a,
button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1385px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    position: relative;
}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.col-1 {
    flex: 0 0 auto;
    width: 8%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.text-align-center {
    text-align: center !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.m-0{
    margin: 0 !important;
}
.d-flex {
    display: flex !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.position-relative{
    position: relative !important;
}

.bg-theme{
    background-color: #000D1A !important;
}
/* ***** End Common Css **** */


/* **** Header **** */

.header .container {
    max-width: 1343px;
	max-width:1385px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

header.nav-new {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #000;
    padding: 20px 0;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner .navbar {
    display: flex;
    align-items: center;
}

.navbar-social ul {
    display: flex;
    align-items: center;
    margin: 0 0 0 85px;
}

.navbar-social ul li {
    margin: 0 0 0 14px;
}
.navbar-social ul li a:hover img{
    opacity: 0.5;
}

.navbar-row {
    display: flex;
    align-items: center;
}

.navbar-row .nav-item {
    margin: 0 0 0 49px;
}

.navbar-row .nav-item .nav-link {
    font-weight: 300;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}
.navbar-row .nav-item .nav-link::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.navbar-row .nav-item .nav-link:hover::after {
    width: 100%;
}
.navbar-row .nav-item.active .nav-link::after{
    width: 100%;
}
.toggle {
    position: relative;
    width: 30px;
    height: 30px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    display: none;
}

.toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #000;
    transition: 0.5s;
}

.toggle span:nth-child(2) {
    transform: translateY(-10px);
    width: 10px;
    left: 5px;
}

.toggle span:nth-child(3) {
    transform: translateY(10px);
    width: 10px;
    left: 5px;
}

.toggle.active span:nth-child(1) {
    transform: translateX(60px);
}

.toggle.active span:nth-child(2) {
    width: 20px;
    transform: translateX(0) rotate(45deg);
    transition-delay: 0.2s;
}

.toggle.active span:nth-child(3) {
    width: 20px;
    transform: translateX(0) rotate(-45deg);
    transition-delay: 0.4s;
}

.navbar {
    transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
}

.navbar.navbar-moble {
    left: 0;
}

.header-bg-black{
    background-color: #050506 !important;
}

.header-bg-black .navbar-row .nav-item .nav-link{
    color: #fff;
}
.header-bg-black .navbar-row .nav-item .nav-link:hover{
    color: #E9511A;
}
/* **** End Header **** */

/* **** Banner **** */
.banner-wrp{
    position: relative;
    width: 100%;
    height: 745px;
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.7s linear;
    -webkit-transition: all 0.7s linear;
	background-attachment:fixed;
}
/*.banner-wrp:hover{
    background-position: bottom;
}*/
.banner-wrp::before{
    content: '';
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 1, 1, 0.68) 0%, rgba(1, 1, 1, 0) 90.37%);
    z-index: -1;
}
.banner-wrp-data{
    text-align: center;
}
.banner-wrp-data h1{
    font-weight: 300;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #FFFFFF;
}
/* **** End Banner **** */

/* **** Projects **** */
.comman-title{
    position: relative;
    padding: 0 0 30px;
}
.comman-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 69px;
    height: 1px;
    background: #000000;
    transition: all 0.7s linear;
    -webkit-transition: all 0.7s linear;
}
.comman-title:hover::after{
    width: 50%;
}
.comman-title h3{
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #7E7D7C;
    margin: 0 0 5px;
}
.comman-title h2{
    font-weight: 300;
    font-size: 42px;
    line-height: 51px;
    color: #000000;
    margin: 0;
}
.projects-wrp{
    position: relative;
    width: 100%;
    padding: 70px 0 56px;
}
.projects-wrp .comman-title{
    margin: 0 0 50px;
}
.projects-wrp-box-img figure{
    margin: 0;
    width: 100%;
}
.projects-wrp-box-img figure img{
    width: 100%;
}
.projects-wrp-box{
    position: relative;
    width: 100%;
    margin: 0 0 17px;
}
.projects-wrp-box:hover .projects-wrp-box-data{
    opacity: 1;
    visibility: visible;
}
.projects-wrp-box-data{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s linear;
    -webkit-transition: all 0.7s linear;
}
.projects-wrp-box-data figure{
    margin: 0 0 23px;
}
.projects-wrp-box-data h2{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 5px;
}
.projects-wrp-box-data p{
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
	max-width:88%;
}
.projects-wrp-box-img img{
    width: 100%;
}
.projects-wrp-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.projects-wrp-row .projects-wrp-box{
    width: 49.45%;
}
.btn-main{
    font-weight: 300;
    font-size: 13px;
    line-height: 32px;
    color: #000000;
    background: #E2E2DE;
    border-radius: 6px;
    text-transform: uppercase;
    padding: 1.5px 17.25px;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.btn-main:hover{
    background: #000000;
    color: #fff;
}
.btn-main .btn-main-arrow{
    width: 70px;
    height: 7px;
    margin: 4px 0 0 22px;
}
.btn-main .btn-main-arrow svg{
    width: 10px;
    height: 6px;
    fill: #000;
    display: block;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    position: absolute;
}
.btn-main:hover .btn-main-arrow svg{
    width: 70px;
    fill: #fff;
    opacity: 0;
    visibility: hidden;
}
.btn-main .btn-main-arrow svg:last-child{
    opacity: 0;
    visibility: hidden;
}
.btn-main:hover .btn-main-arrow svg:last-child{
    opacity: 1;
    visibility: visible;
}
.projects-wrp .btn-main{
    margin: 37px 0 0;
}
/* **** End Projects **** */

/* **** About **** */
.btn-link{
    font-weight: 300;
    font-size: 11px;
    line-height: 32px;
    color: #000000;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.btn-link .btn-link-arrow{
    width: 70px;
    height: 7px;
    margin: 4px 0 0 7px;
}
.btn-link .btn-link-arrow svg{
    width: 10px;
    height: 6px;
    fill: #000;
    display: block;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    position: absolute;
}
.btn-link:hover .btn-link-arrow svg{
    width: 70px;
    opacity: 0;
    visibility: hidden;
}
.btn-link .btn-link-arrow svg:last-child{
    opacity: 0;
    visibility: hidden;
}
.btn-link:hover .btn-link-arrow svg:last-child{
    opacity: 1;
    visibility: visible;
}
.about-wrp{
    position: relative;
    width: 100%;
    padding: 75px 0;
    background: rgba(217, 217, 217, 0.2);
}

.about-wrp-data p{
    font-weight: 300;
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
    color: #000000;
    margin: 21px 0 55px;
    max-width: 629px;
}

.about-wrp-img figure{
    display: flex;
    justify-content: end;
}
/* **** End About **** */

/* **** Testimonial **** */
.testimonial-wrp{
    position: relative;
    width: 100%;
    padding: 110px 0;
    background-image: url(../images/bg2.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    transition: all 0.7s linear;
    -webkit-transition: all 0.7s linear;
}
.testimonial-wrp::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.52);
}
.testimonial-wrp:hover{
    background-position: top;
}
.testimonial-wrp-title{
    padding: 0 40px 0 0;
}
.testimonial-wrp-title h2{
    font-weight: 300;
    font-size: 30px;
    line-height: 37px;
    text-align: right;
    color: #FFFFFF;
}
.testimonial-wrp-slider-box p{
    font-weight: 300;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    max-width: 850px;
    margin: 18px auto 0;
}
.testimonial-slider-img-1{
    display: flex;
    justify-content: left;
}
.testimonial-slider-img-1 img{
    width: 66px;
    filter: brightness(0) invert(1);
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.testimonial-slider-img-1:hover img{
    filter: brightness(1) invert(0);
}
.testimonial-slider-img-2{
    display: flex;
    justify-content: right;
}
.testimonial-slider-img-2 img{
    width: 66px;
    filter: brightness(0) invert(1);
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.testimonial-slider-img-2:hover img{
    filter: brightness(1) invert(0);
}
.testimonial-wrp-slider .slick-arrow{
    font-size: 0;
    background: url(../images/right2-w.svg) 0 0 no-repeat;
    background-size: 100% 100%;
    border: none;
    width: 71px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: -50%;
    z-index: 9;
    cursor: pointer;
}
.testimonial-wrp-slider .slick-prev{
    right: -15%;
    left: auto;
}
.testimonial-wrp-slider .slick-next{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
/* **** End Testimonial **** */

/* **** Believe **** */
.believe-wrp{
    position: relative;
    width: 100%;
    padding: 60px 0;
}
.believe-wrp-data h2{
    font-weight: 300;
    font-size: 30px;
    line-height: 39px;
    text-align: center;
    color: #000000;
    position: relative;
    margin: 0 0 23px;
    padding: 0 0 23px;
}
.believe-wrp-data h2::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 248px;
    height: 1px;
    background: #000000;
}
.believe-wrp-data p{
    font-weight: 300;
    font-size: 15px;
    line-height: 32px;
    text-align: center;
    color: #000000;
    max-width: 832px;
    margin: 0 auto;
}
/* **** End Believe **** */

/* **** Contact **** */
.contact-wrp{
    position: relative;
    width: 100%;
    padding: 116px 0;
    background: #000000;
}
.contact-wrp .container{
    max-width: 1554px;
}
.contact-wrp-top .comman-title h2{
    font-weight: 300;
    font-size: 30px;
    line-height: 37px;
    color: #FFFFFF;
}
.contact-wrp-top .comman-title::after{
    background: #fff;
}
.contact-wrp-top .comman-title{
    padding: 0 0 15px;
    margin: 0 0 30px;
    width: 80%;
}
.social-media{
    display: flex;
    align-items: center;
}
.social-media li{
    margin: 0 0 0 14px;
}
.social-media li a:hover img{
    opacity: 0.5;
}
.social-media li a img{
    height: 17px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.contact-wrp-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-form-btn input[type="submit"]{
    border: none;
    background: none;
    font-size: 13px;
    line-height: 32px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    padding: 4px 18px;
    cursor: pointer;
	font-family: "Montserrat", sans-serif;
}
.contact-form-btn.btn-main:hover input[type="submit"]{
    color: #fff;
}
.contact-form-btn.btn-main .btn-main-arrow{
    margin: 4px 0 0 102px;
}
.contact-form-btn.btn-main{
    margin: 0 0 17px 16px;
    height: 39px;
    position: relative;
}
.contact-wrp form{
    display: flex;
    align-items: end;
    position: relative;
    width: 100%;
}
.contact-form-row {
    width: 84.26%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-form-btn{
    width: 15.74%;
}
.form-control,.form-select{
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    background: transparent;
    padding: 8px 10px;
    width: -webkit-fill-available;
    display: block;
}
.form-control:focus,.form-select:focus{
    outline: none;
    box-shadow: none;
}
.form-control::placeholder{
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
}
.form-select option{
    color: #000;
}
.form-select{
    padding: 10.5px 10px;
}
.contact-form-row .form-group{
    width: 32%;
    margin: 0 0 17px;
}
.contact-wrp-data p{
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #FFFFFF;
    max-width: 332px;
}
/* **** End Contact **** */

/* **** Footer **** */
footer{
    position: relative;
    width: 100%;
    padding: 69px 0;
    background: #FFFFFF;
}
footer .container{
    max-width: 1554px;
}
footer .container .col-5{
    width: 47%;
}
footer .container .col-1{
    width: 5%;
}
.footer-menu ul li{margin-bottom:20px;}
.footer-menu ul li a{
    font-weight: 300;
    font-size: 12px;
    line-height: 45px;
    color: #010101;
	line-height:normal;
}
.footer-menu ul li.active a,
.footer-menu ul li a:hover{
    font-weight: 400;
    /*font-size: 14px;*/
}

.footer-contact p,
.footer-contact ul li{
    font-weight: 500;
    font-size: 14px;
    line-height: 45px;
	line-height:normal;
    color: #010101;
	margin-bottom:20px;
}
.footer-contact ul li a{
    font-weight: 300;
    font-size: 14px;
    line-height: 45px;
	line-height:normal;
    color: #010101;
}
.footer-contact ul li a:hover{
    font-weight: 500;
}
.footer-social-media{
    display: flex;
    align-items: center;
    justify-content: end;
}
.footer-social-media li{
    margin: 0 0 0 23px;
}
.footer-social-media li a:hover{
    opacity: 0.5;
}
.footer-row{
    display: flex;
}
.footer-logo {
    margin: 0 25px 0 0;
}

.copyright-data li,.copyright-data li a{
    font-weight: 300;
    font-size: 12px;
    line-height: 45px;
    color: #010101;
}
.copyright-data li a:hover{
    font-weight: 400;
}
.copyright-data{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright{
    position: relative;
    width: 100%;
    border-top: 1px solid #010101;
    margin: 35px 0 0;
}

.fixed-social-media{
    position: fixed;
    left: 7px;
    bottom: 60px;
    z-index: 9;
}
.fixed-social-media li a{
    width: 49px;
    height: 49px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 49px;
}
.fixed-social-media li a:hover{
    opacity: 0.5;
}
.fixed-social-media li{
    margin: 0 0 5px;
}
/* **** End Footer **** */

/* **** Inner Page Banner **** */
.inner-page-banner{
    position: relative;
    width: 100%;
    height: 328px;
}
.inner-page-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.25);
}
.inner-page-banner figure{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
}
.inner-page-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    text-align: center;
}
.page-title h1{
    font-weight: 300;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #000000;
    margin: 45px 0;
}
/* **** End Inner Page Banner **** */

/* **** About Page **** */
.about-page-wrp{
    position: relative;
    width: 100%;
    padding: 0 0 59px;
}
.about-page-wrp-data{
    display: flex;
    align-items: center;
    position: relative;
}
.about-page-wrp-data p{
    max-width: 609px;
    font-weight: 300;
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
	text-align:left;
    color: #000000;
}
.about-page-wrp-data img{
    position: relative;
    left: -40px;
}
/* **** End About Page **** */

/* **** Projects Page **** */
.projects-page-wrp{
    position: relative;
    width: 100%;
    padding: 0 0 63px;
}

.projects-wrp-row-3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.projects-wrp-row-3 .projects-wrp-box{
    width: 32.6%;
}
.projects-in-page-data h1{
    font-weight: 275;
    font-size: 30px;
    line-height: 37px;
    color: #000000;
    margin: 0 0 20px;
    padding: 0 0 20px;
    position: relative;
	max-width:90%;
}
.projects-in-page-data h1::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background: #010101;
}
.projects-in-page-data h2{
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
    margin: 0 0 18px;
	max-width:80%;
}
.projects-in-page-data p{
    max-width: 513px;
    font-weight: 275;
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
    color: #000000;
	margin-bottom:12px;
}
.projects-in-page-data ul{
	max-width:513px;
	list-style:disc;
	padding-left:20px;
	margin:0 0 20px;
}
.projects-in-page-data ul li{
	font-weight: 275;
    font-size: 16px;
    line-height: 32px;
	color: #000000;
	list-style:disc;
}
.projects-in-page-data ol{
	max-width:513px;
	list-style:deciaml;
	padding-left:20px;
	margin:0 0 20px;
}
.projects-in-page-data ol li{
	font-weight: 275;
    font-size: 16px;
    line-height: 32px;
	color: #000000;
	list-style:deciaml;
}

/* **** End Projects Page **** */

/* **** Contact Page **** */
.contact-page.contact-wrp{
    background: url(../images/contact-bg.png) 0 0 no-repeat;
    background-size: cover;
    position: relative;
    padding: 178px 0 116px;
	background-position: center center !important;
}
.contact-page.contact-wrp::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.52);
}
.contact-page.contact-wrp .comman-title{
    width: 100%;
}

.contact-page.contact-wrp .comman-title h1{
    font-weight: 300;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #FFFFFF;
	padding-bottom:20px;
}
.contact-page-data{
    position: relative;
    width: 100%;
    border-top: 1px solid #fff;
    margin: 71px 0 0;
    padding: 55px 0 0;
}
.contact-page-data ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-page-data ul li,
.contact-page-data ul li a{
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
}
.contact-page-data ul li a{
    font-weight: 300;
}
.contact-page-data ul li a:hover{
    font-weight: 400;
}
.contact-page-data ul li{
    position: relative;
    margin: 0 22px 0 0;
    padding: 0 22px 0 0;
    border-right: 1px solid #fff;
}
.contact-page-data ul li:last-child{
    margin: 0;
    padding: 0;
    border: none;
}
/* **** End Contact Page **** */

/* **** Media Page **** */
.media-page-wrp{
    position: relative;
    width: 100%;
    padding: 0 0 60px;
}
.media-wrp-box{
    position: relative;
    width: 100%;
    margin: 0 0 17px;
}
.media-wrp-box:hover .media-wrp-box-data{
    opacity: 1;
    visibility: visible;
}
.media-wrp-box-data{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s linear;
    -webkit-transition: all 0.7s linear;
}
.media-wrp-box-data h3{
    font-weight: 300;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    color: #FFFFFF;
    padding: 31px;
}
.media-wrp-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.media-wrp-row .media-wrp-box {
    width: 49.45%;
}
/* **** End Media Page **** */

/* **** Media In Page **** */
.media-in-page-wrp{
    position: relative;
    width: 100%;
    padding: 51px 0 40px;
}
.media-in-page-wrp-data h1{
    font-weight: 300;
    font-size: 30px;
    line-height: 45px;
    color: #000000;
    margin: 0 0 33px;
}
.media-in-page-wrp-data h4{
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
    color: #000000;
}
.media-in-page-wrp-data p,.media-in-page-wrp-data ul li{
    font-weight: 300;
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
    color: #000000;
}
.media-in-page-wrp-data ul li{
    list-style: auto;
}
.media-in-page-wrp-data ul{
    padding-left: 22px;
}
.back-link{
    margin: 80px auto 0;
    text-align: center;
}
.back-link .btn-link{
    text-transform: capitalize;
    font-size: 11px;
}
.back-link .btn-link .btn-link-arrow{
    margin-left: 48px;
}
/* **** End Media In Page **** */