/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
/* Font Family */

/* Universal Css Start Here */
:root {
    --first-color: #fff;
    --second-color: #000;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "roboto", sans-serif;
}
p {
    font-size: 16px;
}
h2,
h3,
h4,
h5,
h6 {
    font-family: "roboto", sans-serif;
}
h1 {
    font-size: 75px;
    line-height: 75px;
}
h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 52px;
}
h3 {
    font-size: 31px;
    font-weight: 400;
    line-height: 41px;
}
h4 {
    font-size: 19px;
    line-height: 25px;
    font-weight: 400;
}
h5 {
    font-size: 13px;
    line-height: 23px;
}
a.reyton-btn {
    background-color: transparent;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.6s;
    border-radius: 0px;
}
#df-btn-cont .df-btn {
    bottom: 15px !important;
}
figure {
    margin-bottom: 0;
}
/* Universal Css End Here */

/* Mobile Header Css Start Here */
header {
    overflow-x: hidden;
}
header .canvas_btn {
    display: flex;
    justify-content: flex-start;
    padding: 0 10px 0 0px;
    cursor: pointer;
}
.canvas_btn button.btn.btn-open {
    background: transparent;
    border-radius: 0;
    border: 0;
    width: 25px;
    padding: 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 0 0;
    cursor: pointer;
}
.canvas_btn button.btn.btn-open span.menu-line {
    width: 35px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    display: block;
}
.canvas_btn button.btn.btn-open span.menu-line.line-2x {
    width: 25px;
}
.mobile_header {
    position: fixed;
    z-index: 2;
    right: 0;
    background: #000;
    width: 100%;
    height: 100%;
    display: block;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 0px 0px 30px;
    transition: 0.8s;
    transform: translateX(120%);
    top: 0;
    z-index: 99999;
}
.mobile_header.show {
    transform: translateX(0%);
}
.mobile_header .cancel {
    position: absolute;
    top: 30px;
    right: 29px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mobile_header ul.mobile_menus {
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 1;
    text-align: center;
}
.mobile_header ul.mobile_menus li.menu_items {
    margin: 10px 0;
}
.mobile_header ul.mobile_menus li.menu_items.menu_btn {
    margin-top: 30px;
}
.mobile_header ul.mobile_menus li.menu_items a {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    position: relative;
    text-decoration: none;
    font-family: "roboto";
    text-transform: uppercase;
    line-height: 60px;
}
/* .mobile_header ul.mobile_menus li.menu_items.menu_btn a {
  background: #c98536;
  padding: 13px 25px;
  border-radius: 50px;
} */
.mobile_header ul.mobile_menus li.menu_items.cart_btn a span.count {
    background: #c98536;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 9px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: -10px;
}
.mobile_header .menus {
    height: 100%;
    display: flex;
    align-items: center;
}
.mobile_header .logo {
    padding: 20px 0;
    text-align: center;
}
.nav-links {
    transition: all 1s ease-out;
}
.nav-links li {
    opacity: 0;
}

.nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
}
.nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
}
.nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
}
.nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
}
.nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
}
.nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
}
.nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
}
.fade {
    opacity: 1 !important;
}

@media (max-width: 991px) {
    header .canvas_btn button.btn.btn-open {
        display: flex;
    }
}
@media (max-width: 768px) {
    .mobile_header {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .mobile_header {
        width: 100%;
    }
}
@media (max-width: 480px) {
    header#headerTop .secondary_header .social ul {
        display: flex;
        justify-content: center;
    }
    .mobile_header {
        width: 100%;
        padding: 0px;
    }
    header#headerTop .secondary_header .social ul {
        margin: 0px !important;
    }
    .mobile_header .logo img {
        width: 45%;
    }
    header#headerTop .logoDv img {
        width: 70%;
    }
    .banner_sec .content_wrapper p {
        max-width: 83% !important;
    }
    .banner_sec .content_wrapper h1 {
        padding: 0px 36px;
    }
}
/* Mobile Header Css Start Here */

/* Header Css Start Here */
header#headerTop {
    background: transparent;
    padding: 19px 0;
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
}
header#headerTop .secondary_header {
    text-align: end;
}
header#headerTop .secondary_header .social ul {
    padding: 0;
    list-style: none;
    margin: 0px 0px 10px 0;
}
header#headerTop .secondary_header .social ul li {
    display: inline-block;
}
header#headerTop .secondary_header .social ul li.heading {
    color: #fff;
    font-family: "Poppins";
    padding-right: 15px;
}
header#headerTop .secondary_header .social ul li {
    margin-right: 20px;
}
header#headerTop .secondary_header .social ul li a {
    color: #fff;
    text-decoration: none;
}
header#headerTop .canvas_btn i {
    color: #fff;
    font-size: 25px;
}
header#headerTop .action-links {
    text-align: right;
}
header#headerTop .action-links ul.auth {
    margin: 0;
    padding: 0;
    list-style: none;
}
header#headerTop .action-links ul.auth li {
    display: inline-block;
    margin: 0px 10px;
}
header#headerTop .action-links ul.auth li a {
    color: #fff;
    font-family: "Roboto";
    text-decoration: none;
}
@media (max-width: 480px) {
    header .canvas_btn {
        position: relative;
        top: 37px;
        z-index: 99;
        display: inline-block;
    }
    .mobile_header .logo {
        padding: 36px 0;
        text-align: center;
    }
}

/* Header Css End Here */

/* Inner Banner Css Start Here */
.innerBanner {
    background: #202020;
    text-align: center;
    padding: 10px 0;
}
.innerBanner h4 {
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
}
/* Inner Banner Css End Here */

/* Banner Css Start Here */
.banner_sec {
    position: relative;
}
.banner_sec .banner_video {
    position: relative;
    overflow: hidden;
}
.banner_sec .banner_video .img-box {
    height: 750px;
}
.banner-slider {
    overflow: hidden;
    background-color: #000;
}
.banner_sec .banner_video video {
    height: 750px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.banner_sec .banner_video .shade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}
.banner_sec .banner_video .shade img {
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.banner_sec .content_wrapper {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
    height: 60vh;
    z-index: 99;
}
.banner_sec .content_wrapper h4 {
    color: #ffffff;
    text-transform: uppercase;
    font-family: "roboto";
    font-weight: 300;
}
.live-chat-text span {
    position: fixed;
    right: 90px;
    bottom: 30px;
    font-size: 14px;
    color: #fff;
    z-index: 999;
    padding: 5px;
    font-weight: bold;
}
.banner_sec .content_wrapper h1 {
    color: #fff;
    line-height: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.banner_sec .content_wrapper p {
    max-width: 44%;
    margin: 0px auto;
    color: #fff;
}
.banner_sec .content_wrapper h1 span.light {
    font-weight: 200;
    text-transform: uppercase;
    font-size: 50px;
}
.banner_sec .content_wrapper h1 span.bold {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 60px;
}
.banner_sec .content_wrapper a.reyton-btn {
    border: 2px solid #fff;
    text-transform: uppercase;
    font-family: "Roboto";
    font-weight: 400;
    padding: 12px 40px;
}
.banner_sec .content_wrapper .button-group {
    margin-top: 50px;
}
.banner_sec .bottom-bar {
    z-index: 999;
    position: relative;
}
.banner_sec .bottom-bar ul.info {
    padding: 0;
    list-style: none;
    margin-top: -50px;
}
.banner_sec .bottom-bar ul.info li {
    display: inline-block;
    margin-right: 40px;
}
.banner_sec .bottom-bar ul.info li a {
    color: #fff;
    text-decoration: none;
}
.banner_sec .bottom-bar ul.info li a i {
    margin-right: 10px;
}
.banner_sec .angel {
    height: 100%;
    width: 48%;
    background: transparent;
    position: absolute;
    top: -10%;
    border: 3px solid #ffffff7a;
    z-index: 9;
    left: 0;
    right: 0;
    margin: 0px auto;
    border-radius: 0px 0% 50% 50%;
}
/* banner responsive starts here */
@media (max-width: 1100px) {
    /*.banner_sec .banner_video .shade img {*/
    /*    height: 672px;*/
    /*}*/
    /*.banner_sec .banner_video video .img-box img {*/
    /*    height: 672px;*/
    /*    width: 100%;*/
    /*}*/
    .banner_sec .angel {
        display: none;
    }
}
@media (max-width: 1024px) {
    .banner_sec .content_wrapper p {
        max-width: 60%;
    }
}
@media (max-width: 768px) {
    .logoDv {
        width: 40%;
        margin: -30px auto;
    }
    .banner_sec .content_wrapper h1 span.light {
        font-size: 40px;
    }
    .banner_sec .content_wrapper h1 {
        line-height: 40px;
    }
    .banner_sec .content_wrapper p {
        max-width: 100%;
    }
    .banner_sec .content_wrapper .button-group {
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .banner_sec .banner_video video {
        height: 500px !important;
        width: 100%;
    }
    .logoDv {
        width: auto;
        margin: auto;
    }
    .banner_sec .content_wrapper {
        bottom: 40px;
    }
    .banner_sec .content_wrapper h1 {
        line-height: 23px;
        text-overflow: ellipsis;
        white-space: normal;
    }
    .banner_sec .content_wrapper h1 span.light {
        font-weight: 400;
        font-size: 30px;
    }
}
@media only screen and (min-width: 280px) and (min-height: 653px){
    .banner_sec .content_wrapper {
        bottom: 10px;
    }

}
@media only screen and (min-width: 375px) and (min-height: 667px){
    .banner_sec .content_wrapper {
        bottom: -50px;
    }
}
@media only screen and (min-width: 414px) and (min-height: 896px){
    .banner_sec .content_wrapper {
        bottom: -180px;
    }
}
@media only screen and (min-width: 360px) and (min-height: 740px){
    .banner_sec .content_wrapper {
        bottom: -90px;
    }
}
@media only screen and (min-width: 390px) and (min-height: 844px){
    .banner_sec .content_wrapper {
        bottom: -160px;
    }
}
@media only screen and (min-width: 412px) and (min-height: 915px){
    .banner_sec .content_wrapper {
        bottom: -190px;
    }
}
@media only screen and (min-width: 540px) and (min-height: 720px){
    .banner_sec .content_wrapper {
        bottom: -130px;
    }
    .banner_sec .content_wrapper p {
        max-width: 90%;
    }
}
@media only screen and (min-width: 768px) and (min-height: 1024px){
    .banner_sec .content_wrapper {
        bottom: -320px;
    }
}
@media only screen and (min-width: 820px) and (min-height: 1180px){
    .banner_sec .content_wrapper {
        bottom: -410px;
    }
}
@media only screen and (min-width: 912px) and (min-height: 1368px){
    .banner_sec .content_wrapper {
        bottom: -490px;
    }
    .banner_sec .angel {
        opacity: 0.01;
        display: block;
    }
}
@media only screen and (min-width: 1280px) and (min-height: 800px){
    .banner_sec .bottom-bar {
        z-index: 999;
        position: relative;
        margin-bottom: 20px;
    }
}




/* banner responsive ends here */
/* Banner Css End Here */

/* Product Sec Start Here */
.product_sec {
    padding: 220px 0;
    background: #000;
    overflow: hidden;
    position: relative;
}
.product_sec .heading_wrapper {
    color: #fff;
}
.product_sec .heading_wrapper h4 {
    font-size: 15px;
    text-transform: uppercase;
    font-family: "Roboto";
}
.product_sec .heading_wrapper h2 {
    font-family: "Roboto";
    font-weight: 300;
}
.product_sec .heading_wrapper h2 span.bld {
    font-weight: 600;
}
.product_sec p {
    color: #fff;
    font-family: "Roboto";
    font-size: 14px;
    padding: 5px 0;
}
.product_sec .button-group {
    margin-top: 30px;
}
.product_sec .button-group a.btn {
    font-family: "Roboto";
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #fff;
    border-radius: 0;
    padding: 10px 40px;
}
.product_sec .product_sliders {
    margin-right: -240px;
    z-index: 2;
}
.product_sec .product_box {
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}
.product_sec .product_box .img_box img {
    height: 380px;
    object-fit: cover;
    width: 98%;
}
.product_sec .product_box .product-detail {
    position: absolute;
    bottom: 0;
    height: 100%;
    background: #fffc;
    display: flex;
    align-items: end;
    padding: 20px 20px;
    transition: 0.6s;
    transform: translateY(150%);
}
.product_sec .product_box:hover .product-detail {
    transform: translateY(0);
}
.product_sec .product_box .product-detail h4 {
    text-transform: uppercase;
    font-weight: 600;
    padding-right: 0px;
    letter-spacing: 1px;
    font-size: 17px;
}
.product_sec .product_box .product-detail p {
    color: #000;
    font-weight: 500;
}
.product_sec .product_box .product-detail a.lnk {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}
.product_sec .product_box .product-detail a.lnk i {
    font-size: 21px;
    margin-left: 5px;
    font-weight: 600;
}
.product_sec button.slick-prev::before {
    content: "\f104" !important;
    font-family: "FontAwesome";
    opacity: 1;
}
.product_sec button.slick-prev {
    position: absolute;
    left: -30%;
    top: unset;
    bottom: 10%;
    border: 2px solid #fff;
    height: 30px;
    text-align: center;
    width: 32px;
    line-height: 39.5px;
}
.product_sec button.slick-next {
    position: absolute;
    left: -23%;
    top: unset;
    bottom: 10%;
    border: 2px solid #fff;
    height: 30px;
    text-align: center;
    width: 32px;
    line-height: 39.5px;
}
.product_sec button.slick-next::before {
    content: "\f105";
    font-family: "FontAwesome";
    opacity: 1;
}
.product_sec .angel-right {
    border: 2px solid #ffffff96;
    width: 50%;
    height: 75%;
    position: absolute;
    top: 12%;
    right: -20%;
    border-radius: 32%;
}
@media (max-width: 1440px) {
    .product_sec .product_sliders {
        margin-right: -152px;
    }
    .product_sec .product_box .img_box img {
        width: 100%;
    }
}
@media (max-width: 1366px) {
    .product_sec .product_sliders {
        margin-right: -118px;
    }
    .product_sec .angel-right {
        height: 16%;
        top: unset;
        bottom: 17%;
    }
    .product_sec .product_sliders {
        margin-top: 37px;
    }
    .product_sec {
        padding: 100px 0px;
    }
}
@media (max-width: 480px) {
    .product_sec .product_sliders {
        margin-right: 12px;
    }
    .product_sec button.slick-prev {
        left: 36%;
        bottom: -20%;
    }
    .product_sec button.slick-next {
        left: 54%;
        bottom: -20%;
    }
    .product_sec .heading_wrapper {
        text-align: center;
    }
    .product_sec p {
        text-align: center;
    }
    .product_sec .button-group {
        text-align: center;
    }
    .services_sec .heading_wrapper {
        text-align: center;
    }
    .services_sec .content_wrapper {
        max-width: 100%;
    }
    .who_we_are .content_wrapper {
        text-align: center;
    }
    .blog_box .blog_content {
        padding-top: 10px;
        color: #fff;
        text-align: center;
    }
    footer .content {
        text-align: center;
    }
    footer .newsletter .head p {
        text-align: center;
    }
    footer .newsletter .head h2 {
        text-align: center;
    }
}
/* Product Sec End Here */

/* Services Css Start Here */
.services_sec {
    background: #000;
    padding: 60px 0;
    position: relative;
}
.services_sec .img_box img {
    height: 352px;
    width: 100%;
    object-fit: cover;
}
.services_sec .angel {
    border: 2px solid #ffffff96;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 22%;
    left: -6%;
    border-radius: 0% 380px 380px 0px;
}
.services_sec .heading_wrapper {
    text-align: center;
    color: #fff;
}
.services_sec .heading_wrapper h4 {
    font-weight: 300;
}
.services_sec .heading_wrapper h2 {
    font-weight: 300;
}
.services_sec .heading_wrapper h2 span.bld {
    font-weight: 600;
}
.services_sec .row {
    margin: 80px 0;
}
.services_sec .content_wrapper {
    color: #fff;
    max-width: 80%;
}
.services_sec .content_wrapper h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 28px;
    line-height: 33px;
}
.services_sec .content_wrapper a.lnk {
    color: #fff;
    font-weight: 500;
}
.services_sec .content_wrapper a.lnk i {
    margin-left: 10px;
    font-size: 21px;
    font-weight: 500;
}
.services_sec .content_wrapper p {
    margin: 20px 0px 25px;
    line-height: 18px;
    font-size: 14px;
}
/* Services Css End Here*/

/* Who We Are Css Start Here */
.who_we_are {
    background: #000;
    padding: 80px 0 140px;
    position: relative;
    overflow: hidden;
}
.partner {
    padding: 120px 0 270px;
}
.who_we_are .angel {
    border: 2px solid #ffffff96;
    width: 50%;
    height: 95%;
    position: absolute;
    top: 0%;
    right: -17%;
    border-radius: 320px;
}
.partner .angel {
    border: 2px solid #ffffff96;
    width: 60%;
    height: 78%;
    position: absolute;
    top: 3%;
    left: -17%;
    border-radius: 0 320px 320px 0;
}
.partner .img_box {
    padding-right: 100px;
}
.who_we_are .content_wrapper {
    color: #fff;
}
.who_we_are .content_wrapper .heading_wrapper h4 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
}
.who_we_are .content_wrapper .heading_wrapper h2 {
    text-transform: uppercase;
}
.who_we_are .content_wrapper p {
    font-size: 15px;
}
.who_we_are .content_wrapper .button-group {
    margin-top: 40px;
}
.who_we_are .content_wrapper a.reyton-btn {
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 40px;
}
.who_we_are .img_box img {
    z-index: 2;
    position: relative;
    /*height: 416px;*/
    width: 100%;
    object-fit: cover;
}
/* RESPONSIVE STARTS HERE */

@media (max-width: 1100px) {
    .who_we_are .angel {
        height: 79%;
        top: 7%;
    }
}
@media (max-width: 480px) {
    .partner .img_box {
        padding: 0px;
    }
    .who_we_are .img_box {
        margin: 43px 0px;
    }
    .services_sec .img_box {
        margin: 20px 0px;
    }
    .partner {
        padding: 80px 0px;
    }
    .who_we_are .img_box img {
        object-fit: contain;
    }
}

/* Who We Are Css End Here */

/* Blog Sec css Start Here */
.blog_sec {
    padding: 60px 0;
    background-image: url("../images/blog-back.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.blog_sec .heading_wrapper {
    text-align: center;
    color: #fff;
    padding-bottom: 50px;
}
.blog_sec .heading_wrapper h4 {
    margin: 0;
    text-transform: uppercase;
}
.blog_sec .heading_wrapper h2 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 35px;
    line-height: 45px;
}
.blog_sec .heading_wrapper h2 span.bld {
    font-weight: 700;
}
.blog_box .blog_img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}
.blog_box .blog_content {
    padding-top: 10px;
    color: #fff;
}
.blog_box .blog_content h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}
.blog_box .blog_content a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.blog_box .blog_content a i {
    font-size: 18px;
    margin-left: 5px;
}
.recent_blogs .rblog_box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.recent_blogs .rblog_box .img_box img {
    height: 125px;
    width: 320px;
    object-fit: cover;
}
.recent_blogs .rblog_box .content {
    padding-left: 15px;
}
.recent_blogs .rblog_box .content h2 {
    color: #fff;
    font-size: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 40px;
    margin: 0;
}
.recent_blogs .rblog_box .content p {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 7px;
}
.recent_blogs .rblog_box .content .button-group a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.recent_blogs .rblog_box .content .button-group a i {
    font-size: 18px;
    font-weight: 600;
    margin-left: 4px;
}
.blog_sec .blo-wrapper {
    height: 425px;
    overflow-y: scroll;
}
.blog_sec .blo-wrapper::-webkit-scrollbar {
    width: 0px;
    display: none;
    background-color: #000000;
}
/* RESPONSIVE STARTS HERE */
@media (max-width: 480px) {
    .blog_sec .blo-wrapper {
        margin-top: 30px;
    }
}
@media (max-width: 360px) {
    .product_sec .product_sliders {
        margin-right: 0px;
    }
}
/* RESPONSIVE ENDS HERE */
/* Blog Sec css End Here */

/* Footer Css Start Here */
footer {
    background: #000;
    padding: 80px 0;
}
footer p {
    color: #fff;
    padding: 20px 0 0;
}
footer ul.links {
    padding: 0;
    list-style: none;
    margin-top: 30px;
    margin-bottom: 0;
}
footer ul.links li {
    display: inline-block;
}
footer ul.links li a {
    color: #fff;
    padding-right: 25px;
}
footer .newsletter {
    position: relative;
}
footer .newsletter .head h2 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    line-height: 36px;
}
footer .newsletter .head p {
    padding-top: 10px;
}
footer .newsletter .form-group {
    display: flex;
}
footer .newsletter .form-group input.form-control {
    border: 2px solid #404040;
    border-radius: 0;
    background: transparent;
    border-right: 0;
    color: #fff;
    height: 60px;
    font-family: "Roboto";
}
footer .newsletter .form-group button {
    background: #ffffff;
    border: 0;
    padding: 0 20px;
    cursor: pointer;
}
footer .newsletter ul.social_icons {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    right: -50px;
    top: 0;
}
footer .newsletter ul.social_icons li a {
    color: #fff;
}
footer .newsletter ul.social_icons li {
    margin: 12px 0px;
}
footer .spacer {
    width: 1px;
    height: 100%;
    background: #272727;
    text-align: center;
    margin: 0px auto;
}
footer .col-lg-5 {
    padding: 20px 0 30px;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright p {
    margin: 0;
}
.copyright .right ul.links li a {
    padding: 0;
}
.copyright .right ul.links li.sep {
    padding: 0 10px;
    color: #fff;
}
/* RESPONSIVE STARTS HERE */
@media (max-width: 800px) {
    footer {
        overflow-x: hidden;
    }
    footer .newsletter .form-group {
        width: 90%;
    }
    footer .newsletter ul.social_icons {
        right: -8px;
    }
}
@media (max-width: 480px) {
    footer .col-lg-5 {
        padding: 20px 10px 30px 10px;
    }
    footer .newsletter ul.social_icons {
        right: 6px;
    }
    .copyright {
        flex-direction: column;
    }
    footer {
        padding: 80px 0 100px;
    }
}
@media (max-width: 414px) {
    footer ul.links li a {
        padding-right: 12px;
    }
}
@media (max-width: 360px) {
    footer ul.links li a {
        padding-right: 8px;
        font-size: 14px;
    }
    footer .newsletter .head h2 {
        font-size: 25px;
    }
    footer .newsletter .head p {
        padding-top: 10px;
        font-size: 13px;
    }
}
/* RESPONSIVE ENDS HERE */
/* Footer Css End Here */

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #000;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
