/*Base font*/

@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css);
@font-face {
    font-family: 'FuturaBook';
    src: url("../fonts/futura_book_font.woff2") format("woff2"), url("../fonts/futura_book_font.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'futuraheavy';
    src: url("../fonts/futura_heavy_font.woff2") format("woff2"), url("../fonts/futura_heavy_font.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 30px;
    font-weight: normal;
    color: #555;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

body {
    letter-spacing: 0;
    color: #677294;
    overflow-x: hidden;
    background: #000;
}
.height_vh {
    height: 100vh;
}
header.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1080;
    padding: 20px 5px 20px 30px;
    transition: all 0.5s;
}

header.header .navbar .logo .logo_text {
    color: #f6f7fb;
    position: relative;
    font-size: 25px;
    font-weight: normal;
    line-height: 40px;
    font-family: 'FuturaBook', serif;
    letter-spacing: 2px;
}
header.header .navbar .hamburger {
    color: #f6f7fb;
    font-size: 18px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

header.header .navbar .hamburger .m_close {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

header.header .navbar .hamburger .m_menu,
header.header .navbar .hamburger .m_close {
    transition: 0.5s;
}

header.header .navbar .hamburger .bar_icon {
    width: 32px;
    height: 30px;
    display: inline-block;
    position: relative;
    margin-left: 30px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header.header .navbar .hamburger .bar_icon .bar {
    width: 100%;
    height: 2px;
    background: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header.header .navbar .hamburger .bar_icon .bar.bar_1 {
    width: 75%;
    left: 0;
    right: auto;
    transform: translateY(-9px);
}

header.header .navbar .hamburger .bar_icon .bar.bar_3 {
    width: 75%;
    right: 0;
    left: auto;
    transform: translateY(9px);
}

header.header .navbar .hamburger:hover .bar_icon .bar.bar_1 {
    width: 100%;
}

header.header .navbar .hamburger:hover .bar_icon .bar.bar_3 {
    width: 100%;
}
header.header .opnen_menu {
    position: fixed;
    width: 100%;
    height: 0;
    background: #000000;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

header.header .opnen_menu .header_main_menu {
    margin-top: 235px;
}

header.header .opnen_menu .header_main_menu .menu_item {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
    overflow-y: scroll;
    max-width: 460px;
    width: 100%;
}

header.header .opnen_menu .header_main_menu .menu_item::scrollbar {
    display: none;
}

header.header .opnen_menu .header_main_menu .menu_item::-webkit-scrollbar {
    display: none;
}

header.header .opnen_menu .header_main_menu .menu_item li {
    display: block;
    margin-bottom: 5px;
}

header.header .opnen_menu .header_main_menu .menu_item li:last-child {
    margin-bottom: 0;
}

header.header .opnen_menu .header_main_menu .menu_item li a {
    color: #ccc;
    display: inline-block;
    font-size: 40px;
    line-height: 54px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
}

header.header .opnen_menu .header_main_menu .menu_item li a:hover {
    color: #fff;
}

header.header .opnen_menu .header_main_menu .menu_item li a.dropdown-toggle::after {
    display: none;
}

header.header .opnen_menu .header_main_menu .menu_item li.submenu .submenu_item {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: max-height 1s ease-out !important;
    transition-delay: 0s !important;
}

header.header .opnen_menu .header_main_menu .menu_item li.submenu:hover .submenu_item {
    max-height: 1000px;
    transition: max-height 2s ease-in !important;
}

header.header .opnen_menu .header_main_menu .menu_item li.submenu .submenu_item li {
    margin-bottom: 0;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

header.header .opnen_menu .header_main_menu .menu_item li.submenu .submenu_item li:first-child {
    padding-top: 10px;
}

header.header .opnen_menu .header_main_menu .menu_item li.submenu .submenu_item li:last-child {
    padding-bottom: 10px;
}

header.header .opnen_menu .header_main_menu .menu_item li.submenu .submenu_item li a {
    font-size: 20px;
    line-height: 30px;
    color: #999999;
}

header.header .opnen_menu .header_main_menu .menu_item li.submenu .submenu_item li a:hover {
    color: #fff;
}

header.header .sub_footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: -20%;
    opacity: 0;
    visibility: hidden;
    background: #000;
    padding-bottom: 60px;
    transition: all 0.5s;
}

header.header .sub_footer .footer_contact {
    margin-bottom: 45px;
}

header.header .sub_footer .footer_contact li {
    display: block;
    margin-bottom: 10px;
}

header.header .sub_footer .footer_contact li a {
    display: inline-block;
    color: #bbbbbb;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    transition: all 0.5s;
    height: 28px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

header.header .sub_footer .footer_contact li a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s;
}

header.header .sub_footer .footer_contact li a span+span {
    top: 100%;
}

header.header .sub_footer .footer_contact li a:hover span {
    top: -100%;
    color: #fff;
}

header.header .sub_footer .footer_contact li a:hover span+span {
    top: 0;
}

header.header .sub_footer .footer_contact li:last-child a {
    color: #bbbbbb;
}

header.header .sub_footer .footer_social {
    margin-bottom: 15px;
}

header.header .sub_footer .footer_social li {
    display: inline-block;
}

header.header .sub_footer .footer_social li+li {
    margin-left: 30px;
}

header.header .sub_footer .footer_social li a {
    display: inline-block;
    font-size: 16px;
    color: #888888;
    transition: all 0.5s;
    width: 20px;
    height: 16px;
    position: relative;
    overflow: hidden;
}

header.header .sub_footer .footer_social li a i {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s;
}

header.header .sub_footer .footer_social li a i+i {
    top: 100%;
}

header.header .sub_footer .footer_social li a:hover {
    color: #fff;
}

header.header .sub_footer .footer_social li a:hover i {
    top: -100%;
}

header.header .sub_footer .footer_social li a:hover i+i {
    top: 0;
}

header.header.menu_open .opnen_menu {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

header.header.menu_open .sub_footer {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

header.header.menu_open .navbar .hamburger .m_menu {
    opacity: 0;
    visibility: hidden;
}

header.header.menu_open .navbar .hamburger .m_close {
    opacity: 1;
    visibility: visible;
}

header.header.menu_open .navbar .hamburger .bar_icon .bar.bar_1 {
    width: 100%;
    transform: rotate(45deg);
}

header.header.menu_open .navbar .hamburger .bar_icon .bar.bar_2 {
    width: 0;
}

header.header.menu_open .navbar .hamburger .bar_icon .bar.bar_3 {
    width: 100%;
    transform: rotate(-45deg);
}

header.header.headerFixed {
    background: #000;
    padding: 10px 5px 10px 30px;
}

.hero_warp {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1;
}

.hero_warp.hide {
    display: none;
}

.hero_warp:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero_warp.blog_single_banner:before {
    background: rgba(0, 0, 0, 0.8);
}


.hero_warp .banner_content .banner_title {
    color: #f6f7fb;
    font-size: 180px;
    line-height: 160px;
    font-weight: normal;
    font-family: "futuraheavy";
    margin-bottom: 10px;
}

.hero_warp .banner_content .exp_list {
    margin: 0;
    padding: 0 0 0 7px;
    list-style: none;
}

.hero_warp .banner_content .exp_list li {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #f6f7fb;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero_warp .banner_content .exp_list li+li {
    padding-left: 35px;
}

.hero_warp .banner_content .exp_list li+li:before {
    position: absolute;
    content: "/";
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    color: #d7d4cf;
    font-size: 14px;
    z-index: -1;
}

.hero_warp .social_link {
    position: absolute;
    bottom: 22px;
    left: 35px;
}

.hero_warp .social_link li {
    display: block;
    margin-bottom: 15px;
}

.hero_warp .social_link li a {
    display: block;
    color: #fff;
    font-size: 18px;
    width: 20px;
    height: 18px;
    position: relative;
    overflow: hidden;
}

.hero_warp .social_link li a i {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    padding: 1px 0;
}

.hero_warp .social_link li a i+i {
    top: 100%;
}

.hero_warp .social_link li a:hover i {
    top: -100%;
}

.hero_warp .social_link li a:hover i+i {
    top: 0;
}

.hero_warp .scroll_down {
    position: absolute;
    bottom: 50px;
    right: 25px;
    transform: rotate(90deg);
}

.hero_warp .scroll_down a {
    color: #fff;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}

.hero_warp .scroll_down a:before {
    position: absolute;
    content: "";
    top: 0;
    height: 1px;
    background: #b9c9db;
    animation: go_bottom 2s infinite;
    width: 100%;
    left: -50px;
}

.hero_warp.inner_banner {
    background-size: cover;
    background-attachment: scroll;
    height: auto;
    position: relative;
    padding: 175px 0 110px;
}

.hero_warp.inner_banner.hide {
    display: block;
}

.hero_warp.inner_banner .banner_content .banner_title {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 0;
}

.hero_warp.inner_banner .banner_content .banner_para {
    color: #f6f7fb;
    font-size: 20px;
    line-height: 40px;
    font-weight: 300;
    padding-left: 5px;
}

.hero_warp.inner_banner .social_link {
    bottom: 80px;
}


@keyframes go_bottom {
    0% {
        left: -100%;
    }
    100% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}


/* start about_wrap */

.about_wrap {
    padding: 240px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.about_wrap .about_title {
    color: #333333;
    font-size: 90px;
    font-weight: normal;
    font-family: "futuraheavy";
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    margin-bottom: 63px;
}

.about_wrap .about_title:before {
    position: absolute;
    content: "";
    bottom: 20px;
    right: -60px;
    width: 50px;
    height: 6px;
    background: #333;
}

.about_wrap .about_content {
    position: relative;
    z-index: 1;
    padding-left: 215px;
}

.about_wrap .about_content .bg_text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.about_wrap .about_content .bg_text .bg_strock_text {
    font-weight: normal;
    font-size: 350px;
    font-family: "futuraheavy";
    color: white;
    text-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
    letter-spacing: 10px;
    line-height: 290px;
}

.about_wrap .about_content h4 {
    color: #171819;
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    line-height: 65px;
    font-weight: 500;
}

.about_wrap .about_content h4 a {
    display: inline-block;
    font-weight: 700;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
}

.about_wrap .about_content h4 a:before {
    position: absolute;
    content: "";
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.5s;
    z-index: -1;
}

.about_wrap .about_content h4 a:hover {
    color: #fff;
}

.about_wrap .about_content h4 a:hover:before {
    height: 45px;
}


/* end about_wrap */
/* start porftolio */
.portfolio_wrap{
    background: #171819;
        position: relative;
        padding-bottom: 95px;
        padding-top: 173px;
}
.portfolio_title{
    color: #999999;
font-size: 90px;
font-weight: normal;
font-family: "futuraheavy";
letter-spacing: 1px;
display: inline-block;
position: relative;
margin-bottom: 68px;
}
.bg_text{
    position: absolute;
    left: 255px;
    top: 60px;
}
.bg_strock_text {
    font-size: 220px;
    color: transparent;
    font-weight: normal;
    font-family: "futuraheavy";
    letter-spacing: 3px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    line-height: 220px;
  }
  .cbp-item a{
    border-radius: 10px;
  }
/* start footer */

.footer {
    padding: 115px 0 100px;
    position: relative;
    z-index: 10;
}

.footer .footer_content .footer_logo {
    margin-bottom: 30px;
}

.footer .footer_content .footer_logo a {
    display: inline-block;
}

.footer .footer_content .footer_logo a .logo_text {
    color: #f6f7fb;
    position: relative;
    font-size: 25px;
    font-weight: normal;
    line-height: 40px;
    font-family: "futurabook";
    letter-spacing: 2px;
}

.footer .footer_content .footer_logo a .logo_text:before {
    position: absolute;
    content: "/";
    left: -15px;
    top: -8px;
    width: 100%;
    height: 100%;
    color: #979591;
    text-align: left;
}

.footer .footer_content .footer_title {
    color: #f6f7fb;
    font-size: 50px;
    font-family: "futurabook";
    line-height: 55px;
    letter-spacing: 1px;
    font-weight: normal;
    max-width: 542px;
    width: 100%;
    margin: 0 auto 60px;
}

.footer .footer_content .footer_title span {
    font-family: "futuraheavy";
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer_contact {
    margin-bottom: 45px;
}

.footer .footer_contact li {
    display: block;
    margin-bottom: 10px;
}

.footer .footer_contact li a {
    display: inline-block;
    color: #bbbbbb;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    transition: all 0.5s;
    height: 28px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.footer .footer_contact li a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s;
}

.footer .footer_contact li a span+span {
    top: 100%;
}

.footer .footer_contact li a:hover span {
    top: -100%;
    color: #fff;
}

.footer .footer_contact li a:hover span+span {
    top: 0;
}

.footer .footer_social {
    margin-bottom: 15px;
}

.footer .footer_social li {
    display: inline-block;
}

.footer .footer_social li+li {
    margin-left: 30px;
}

.footer .footer_social li a {
    display: inline-block;
    font-size: 16px;
    color: #888888;
    transition: all 0.5s;
    width: 20px;
    height: 16px;
    position: relative;
    overflow: hidden;
}

.footer .footer_social li a i {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s;
}

.footer .footer_social li a i+i {
    top: 100%;
}

.footer .footer_social li a:hover {
    color: #fff;
}

.footer .footer_social li a:hover i {
    top: -100%;
    color: #fff;
}

.footer .footer_social li a:hover i+i {
    top: 0;
}

.footer .footer_copy_right {
    color: #848892;
    font-weight: 300;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    line-height: 28px;
}

.footer .footer_copy_right a {
    color: #bbbbbb;
    transition: all 0.5s;
}

.footer .footer_copy_right a:hover {
    color: #fff;
}


/* end footer */

.go_to_top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1080;
    display: none;
}

.go_to_top a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    background: #171819;
    border-radius: 50%;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
}

.go_to_top a i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 35px;
    transition: all 0.5s;
}

.go_to_top a i+i {
    top: 100%;
}

.go_to_top a:hover i {
    top: -100%;
}

.go_to_top a:hover i+i {
    top: 0;
}

/* contact us */
.hero_wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero_wrapper {
  background-size: cover;
  background-attachment: scroll;
  height: auto;
  position: relative;
  padding: 175px 0 110px;
}
.hero_wrapper .banner_content .banner_title {
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 0;
  color: #f6f7fb;
}
.hero_wrapper .social_link {
    position: absolute;
    bottom: 80px;
    left: 35px;
}
.hero_wrapper .social_link li {
    display: block;
    margin-bottom: 15px;
}
.hero_wrapper .social_link li a {
    display: block;
    color: #fff;
    font-size: 18px;
    width: 20px;
    height: 18px;
    position: relative;
    overflow: hidden;
}
.hero_wrapper .social_link li a i {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    padding: 1px 0;
  }
.hero_wrapper .social_link li a i+i {
    top: 100%;
}

.hero_wrapper .social_link li a:hover i {
    top: -100%;
}

.hero_wrapper .social_link li a:hover i+i {
    top: 0;
}
.contact_form_wrap {
    padding: 35px 0 120px;
    background-color: #fff;
}
.contact_form_wrap .contact_form_title {
    color: #333333;
    font-size: 55px;
    font-weight: normal;
    font-family: "futuraheavy";
    letter-spacing: 2px;
    margin-bottom: 55px;
}
.contact_form {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
  }
.contact_form .form-group .form-control {
    color: #333333;
    font-weight: 300;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    line-height: 30px;
    border: 1px solid #c1c1c1;
    box-shadow: none;
    outline: none;
    border-radius: 0;
    height: 60px;
    padding: 10px 25px;
    transition: all 0.5s;
}
.contact_form .form-group {
    margin-bottom: 30px;
}
.contact_form .form-group .sibmit_btn {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    line-height: 30px;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(135deg, #292929 50%, transparent 50%);
    background-size: 300% 300%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    transition: all 1s;
    border: none;
    padding: 15px 55px;
    cursor: pointer;
    border: 1px solid #292929;
}
.contact_form .form-group .sibmit_btn:hover {
    background-size: 0px 50px;
    background-position: -50px -50px;
    color: #292929;
}

/* Services */
.services_wrapper{
    position: relative;
    padding-bottom: 95px;
    padding-top: 173px;
    background: #fff;
}
.services_wrapper .bg_strock_text{
    color: white;
    text-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}
.services_wrapper .portfolio_title{
    color: #333333;
}