/* ***** 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;
}
a,button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

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

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: .5625rem 0 .5rem;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
header.nav-new {
    background-color: #fff;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, .31);
    -webkit-box-shadow: 0 2px 15px -3px rgba(0, 0, 0, .31);
    position: fixed !important;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    width: 100%;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: .3rem 0;
}
.navbar-brand img {
    max-width: 161px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.nav-row{
    display: flex;
    align-items: center;
    width: 100%;
}
.navbar-light .navbar-nav {
    margin: 0 auto;
}
.navbar-light .navbar-nav li {
    margin-right: 30px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}

.navbar-light .navbar-nav .nav-link {
    padding: 8px 0;
    color: #2e2e2e;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: #ef5366;
}
.navbar .navbar-nav .active a,
.navbar .navbar-nav .active a:focus,
.navbar .navbar-nav .active a:hover {
    color: #ef5366;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #ef5366;
}

ul.enter-nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
ul.enter-nav li{
    margin-right: 20px;
}
ul.enter-nav li:last-child{
    margin: 0;
}
ul.enter-nav li a{
    border-radius: 13px;
    min-width: 150px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 15px;
    color: #ef5366;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0px 3.53623px 17.6812px rgba(0, 0, 0, 0.05);
}
ul.enter-nav li a:hover{
    background: #ef5366;
    color: #fff;
}
ul.enter-nav li a.btn-nav{
    background: #ef5366;
    border: 1px solid #ef5366;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    width: 160px;
}
ul.enter-nav li a.btn-nav:hover{
    background: #fff;
    color: #ef5366;
}
.main-menu:hover .submenu{
    display: flex;
}
.main-menu .nav-link svg{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.main-menu:hover .nav-link svg{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.submenu {
    padding-top: 21px;
    background-color: transparent;
    /*border-radius: 10px;*/
    /*box-shadow: -1.7px 1px 20px 0 rgba(0, 0, 0, .16);*/
    display: none;
    left: 50%;
    position: fixed;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    width: 100%;
}
.submenu:hover{
    display: flex;
}
.submenu:before {
    background: #fff;
    content: "";
    display: block;
    height: 13px;
    left: 32%;
    position: absolute;
    top: -5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
}
.main-menu.second_ddl .submenu:before{
	left:42%;
}
.subpage {
    padding: 10px 30px;
    width: 40%;
}
.subpage ul {
    list-style-type: none;
    padding-left: 2rem;
}
.subpage li {
    cursor: pointer;
    padding-bottom: 10px;
    margin: 0 !important;
}
.subpage ul li a h2{
    align-items: center;
    color: #2e2e2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    justify-content: space-between;
    line-height: 36px;
    margin: 0;
    width: 100%;
}
.subpage ul li a:hover h2{
    color: #ef5366;
}
.subpage ul li a:hover h2 .right-aerrow{
    opacity: 1;
    visibility: visible;
}
.right-aerrow {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
.subpage p {
    color: grey;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin: 0;
    padding: 0;
}
.subpagecontent {
    border-left: 1px solid #ddd;
    padding: 10px 60px 10px 47px;
    width: 60%;
}
.subpagedetail {
    display: none;
}
.subpagedetail.active {
    display: block;
}
.subpagecontent h2{
    color: #2e2e2e;
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
    text-transform: uppercase;
}
.subpagecontent h2 span{
    color: #ef5366;
}
.subpagecontent p {
    color: grey;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
    padding: 20px 0 0;
}
.subpagedetail img {
    display: flex;
    margin: auto;
    max-height: 330px;
    padding-top: 15px;
}
/* **** End Header **** */

/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: 50px;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #000;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #000;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */

/* **** Banner Page **** */
.blog-banner{
    position: relative;
    width: 100%;
    padding-top: 110px;
}
.blog-banner-data{
    text-align: center;
}
.blog-banner-data h1{
    color: #2a3756;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 60px;
}
.blog-banner-data h1 span{
    color: #ef5366;
}
.blog-banner-data p{
    color: #33475b;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 15px;
    margin: 0 auto 20px;
    max-width: 922px;
}
/* **** End Banner Page **** */

/* **** Blog Page **** */
.blog-page-wrp{
    position: relative;
    width: 100%;
    padding: 50px 0;
    background: #f9f9f9;
}
.blog-page-wrp-tab{
    margin: 0 0 55px;
}
.sapce-top{
    margin: 160px 0 0;
}
.blog-page-wrp-tab .nav-tabs .nav-link{
    padding: 0 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #3d3d3d;
    cursor: pointer;
    border: none;
    background-color: none;
}
.blog-page-wrp-tab .nav-tabs .nav-link.active{
    border-bottom: 3px solid #ef5366 !important;
    color: #ef5366;
    font-weight: 600;
    background-color: transparent !important;
}
.blog-page-wrp-tab .nav-tabs{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page-block-title{
    position: relative;
    text-align: center;
}
.blog-page-block-title h2{
    font-size: 48px;
    font-weight: 800;
    line-height: 140%;
    padding-bottom: 30px;
    color: #2a3756;
}
.blog-page-block-title p{
    color: #33475b;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 auto 85px;
    padding: 33px 15px 0;
    max-width: 922px;
}
.blog-page-wrp-content .tab-content{
    display: block !important;
}

.blog-page-block-box figure{
    margin: 0;
}
.blog-page-block-box figure img{
    width: 100%;
    height: 140px;
}

.blog-page-block-box a{
    background: #fff;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .07), 0 1px 18px rgba(0, 0, 0, .05);
    cursor: pointer;
    display: block;
    display: flex;
    flex-direction: column;
    height: 455px;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.blog-page-block-box a:hover{
    box-shadow: 4px 4px 26px 5px rgba(0, 0, 0, .05), 6px 8px 26px 0 rgba(0, 0, 0, .02);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: 1s;
    -webkit-transition: 1s;
}
.blog-page-block-box a:hover .right-aerrow {
    display: inline-block;
    font-size: 30px;
    margin-left: 20px;
    transition: 1s;
    opacity: 1;
    visibility: visible;
}
.blog-page-block-data{
    padding: 15px 20px
}
.blog-page-block-data h5{
    font-size: 16px;
    font-weight: 600;
    color: #2a3756;
}
.blog-page-block-data p{
    letter-spacing: -0.217391px;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    height: 114px;
    color: #33475b;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 15px;
}

.blog-page-block-bottom h3{
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 0 20px 15px;
    color: #ef5366;
}
.blog-page-block-bottom ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 1rem;
}
.blog-page-block-bottom ul .author, .blog-page-block-bottom ul .date {
    font-size: 12px;
    font-weight: 400;
    line-height: 13px;
}
.blog-page-block-bottom ul .author{
    color: #ef5366;
}
.blog-page-block-bottom ul .date{
    color: rgba(61,61,61,.7);
}
.btn-main{
    background: #ef5366;
    border: 1px solid #ef5366;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    display: inline-block;
    margin: 17px 0 30px;
}
.btn-main:hover{
    background: transparent;
    color: #ef5366;
}
.blog-row {
    row-gap: 30px;
}
.web-devlopment{
    display:none;
}
.ar-vr{
    display:none;
}
.saas{
    display:none;
}
.mobile-app{
    display:none;
}
.web-devlopment-2{
    display:none;
}
.ar-vr-2{
    display:none;
}
.saas-2{
    display:none;
}
.mobile-app-2{
    display:none;
}
/* **** End Blog Page **** */

/* **** Footer **** */
.footer{
    position: relative;
    width: 100%;
}
.footer-top{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
}
.footer-top p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0;
}
.footer-top ul{
    display: flex;
    align-items: center;
}
.footer-top ul li{
    margin: 0 0 0 1.5rem;
}
.footer-top ul li a{
    font-size: 1rem;
    color: #000;
}
.footer-top ul li a:hover{
    color: #ef5366;
}
.footer-logo figure{
    margin: 0 0 1.5rem;
}
.footer-logo figure img{
    max-width: 161px;
}
.footer-logo p{
    color: #2e2e2e;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}
.footer-menu h6{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #2e2e2e;
}
.footer-menu p{
	color:#2e2e2e;
	margin:0 0 15px;
}
.footer-menu p strong{
	display:block;
}
.footer-menu p a{
	display:block;
	color:#2e2e2e;
}
.footer-menu ul li{
    margin: 0 0 1rem;
}
.footer-menu ul l:last-child{
    margin: 0;
}
.footer-menu ul li a{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2e2e2e;
}
.footer-menu ul li a:hover{
    color: #ef5366;
}
.footer-menu p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0 0 15px;
}
.footer-menu .btn-main{
    width: 160px;
    text-align: center;
}
.footer-midle {
    background: #fff;
    padding: 50px 0 30px;
}
.copyright{
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 0.5rem;
}
.copyright p{
    color: #2e2e2e;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}
/* **** End Footer **** */

/* **** Back To Top **** */
.back-to-top {
    background-color: #ef5366;
    border-radius: 50%;
    bottom: 40px;
    box-shadow: 0 4px 40px rgba(81, 64, 153, .4);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    right: 40px;
    text-align: center;
    transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
    width: 35px;
    position: fixed;
    z-index: 99;
    display: none;
}
.back-to-top .back-toop-tooltip {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    left: -25px;
    line-height: 1;
    opacity: 0;
    position: absolute;
    top: -65px;
    -webkit-transform: rotate(-90deg) translateX(20px);
    transform: rotate(-90deg) translateX(20px);
    transition: .2s linear;
    visibility: hidden;
    width: -webkit-max-content;
    width: max-content;
    color: #ef5366;
}
.back-to-top:hover .back-toop-tooltip {
    opacity: 1;
    -webkit-transform: rotate(-90deg) translateX(5px);
    transform: rotate(-90deg) translateX(5px);
    visibility: visible;
}
.back-to-top .top-arrow {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 8px;
    left: 14px;
    position: absolute;
    top: 13px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: .2s ease-in-out;
    width: 8px;
}
.back-to-top:hover .top-arrow {
    top: 11px;
}
.back-to-top .top-line {
    background-color: #fff;
    height: 10px;
    left: 18px;
    margin-left: -1px;
    position: absolute;
    top: 14px;
    transition: .2s ease-in-out;
    width: 2px;
}
.back-to-top:hover .top-line {
    height: 14px;
    top: 12px;
}
/* **** End Back To Top **** */

/* **** Blog Detail Page **** */
.breadcrumb{
    position: relative;
    width: 100%;
    background: #fff1f1;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 1rem;
}
.breadcrumb li{
    margin: 0 5px;
}
.breadcrumb li a{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
}
.breadcrumb li a:hover{
    color: #ef5366;
}
.banner-sec {
    padding-top: 110px;
}
.blog-detail-page-data h1{
    color: #1f1f51;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: capitalize;
}
.blog-detail-page-data figure img{
    width: 100%;
}
.blog-detail-page-data p{
    color: #565656;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
}
.blog-detail-page-data p a{
    border-bottom: 1px dotted #ef5366;
    color: #ef5366;
    font-weight: 700;
}
.blog-detail-page-data h3{
    font-size: 1.17rem;
    color: #565656;
    line-height: 24px;
    margin-bottom: 35px;
}
.blog-detail-page-data ul{
    color: #565656;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
    padding-left: 2rem;
}
.blog-detail-page-data ul li{
    list-style-type: disc;
}

.blog-detail-page-data h2{
    color: #1f1f51;
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0 50px;
}
.blog-detail-page-data form .form-control{
    background-color: initial;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border .2s linear, box-shadow .2s linear;
    border-radius: 4px;
    color: #555;
    line-height: 20px;
    vertical-align: middle;
    font-size: 16px;
    height: 40px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
}
.blog-detail-page-data form textarea.form-control{
    padding: 10px 20px;
    height: auto;
    max-height: 200px;
    margin: 0;
}
.blog-detail-page-data form .wpcf7-submit,
.blog-detail-page-data form button{
    align-items: center;
    background-color: #fff !important;
    background-image: none;
    border: 3px solid #1f1f51;
    border-radius: 0;
    box-shadow: none !important;
    color: #1f1f51;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
}

.blog-detail-right h3{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}
.blog-detail-right h3::after{
    background-color: #ef5366;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 40px;
}
.blog-detail-right ul{margin:0 0 30px;}
.blog-detail-right ul li,
.category-row li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.category-row li:hover a{
    color: #ef5366;
}
.blog-detail-right ul li a,
.category-row li a{
    font-size: 16px !important;
    font-weight: 500;
    padding: 12px 0;
    color: #2e2e2e;
}
.tagcloud a,
.tags-row li a{
    background: transparent;
    border: 1px solid #ddd;
    color: #565656;
    display: block;
    font-size: 16px!important;
    font-weight: 600;
    padding: 5px 15px;
    text-decoration: none;
    margin: 0 10px 10px 0;
}
.tagcloud,
.tags-row {
    display: flex;
    flex-wrap: wrap;
}
.tagcloud a:hover,
.tags-row li a:hover{
    background: #2e2e2e;
    border-color: #2e2e2e;
    border-left: 5px solid #ef5366;
    color: #fff;
}
/* **** End Blog Detail Page **** */
