/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --main-color: #25262f;
  --primary-color: #ffffff;
  --secondary-color: #d9e1e2;
  --text-color: #4d4d5c;
  --meta-text-color: #9b9db1;
  --section-bg: #f3f6f8;
  --main-border: #bcc7d3;
  --bgDarkColor: #010409;
  --bgWhiteColor: #FAFDFF;
  --bgDarkTextColor: #010409;
  --bgWhiteTextColor: #010409;
}


body {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}
.navbarClassCustom{
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    transition: 0.6s;
    z-index:9999
}
.navbarClassCustom.fixed-header{
    box-shadow: 0 8px 10px rgb(0 0 0 / 10%);
    background: var(--bgDarkColor);
}
.bg_dark{
    color: var(--bgDarkTextColor);
    background: var(--bgDarkColor);
}
.bg_light{
    color: var(--bgWhiteTextColor);
    background: var(--bgWhiteColor);
}

.section {
    padding: 160px 0px;
}

.navbarClassCustom .container{
    height: 75px !important;
}
/***** Header ***************************/
.navbar-expand-md .navbar-nav{
    justify-content: flex-end;
    width: 100%;
}

/******** Home Banner *******************/

.nav-link{
    text-transform: uppercase;
    font-weight: 700;
}

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: relative;
  display: flex;
  padding: 26px 0px;
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  width: 40px;
  height:40px;
  padding: 6px;
  background-color: #010409;
  border: 1px solid #b4b3b34f;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  transform: scale(1.2);
}

.technology_language_sec{
    display: flex;
    align-items: center;
    gap:40px;
}
.technology_language_sec div span{
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: #e0e0e0;
    margin-bottom: 25px;
    margin-top: 0;
    font-family: "Nunito Sans", sans-serif;
    justify-content: center;
}
.row_common_class{
    display: flex;
    justify-content: center;
    flex-direction:column;
}

.home_section{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_section .row {
    width:100%;
    text-align: center;
}
.home_section h1{
    font-size: 60px;
    font-weight: 600;
    line-height: 80px;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    text-align: left;
}

.home_section .typewrite {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    line-height: 50px;
    font-size: 50px;
    font-family: "Nunito Sans", sans-serif;
}
.title_description_content{
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: #e0e0e0;
    margin-bottom: 25px;
    margin-top: 0;
    font-family: "Nunito Sans", sans-serif;
    text-align: left;
    padding-top:40px;
}
.home_banner_image{
    overflow: hidden;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vid_icon{
    position: absolute;
    width: 100px;
    height: 100px;
    text-align: center;
    background: rgb(249, 223, 0);
    background: -moz-linear-gradient(45deg, rgba(249, 223, 0, 1) 0%, rgba(245, 146, 31, 1) 35%, rgba(221, 102, 36, 1) 60%, rgba(217, 94, 37, 1) 80%, rgba(236, 130, 33, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(249, 223, 0, 1) 0%, rgba(245, 146, 31, 1) 35%, rgba(221, 102, 36, 1) 60%, rgba(217, 94, 37, 1) 80%, rgba(236, 130, 33, 1) 100%);
    background: linear-gradient(45deg, rgba(249, 223, 0, 1) 0%, rgba(245, 146, 31, 1) 35%, rgba(221, 102, 36, 1) 60%, rgba(217, 94, 37, 1) 80%, rgba(236, 130, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9df00', endColorstr='#ec8221',GradientType=1 );
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ripple 0.7s linear infinite;
    text-decoration: none;
}
@keyframes ripple {
	0% {
		box-shadow: 0 0 0 0 rgba(248, 231, 136, 0.3), 0 0 0 1em rgba(255,255,255, 0.3), 0 0 0 3em rgba(255,255,255, 0.3), 0 0 0 5em rgba(255,255,255, 0.3);
	}
	100% {
		box-shadow: 0 0 0 1em rgba(255,255,255, 0.3), 0 0 0 3em rgba(255,255,255, 0.3), 0 0 0 5em rgba(255,255,255, 0.3), 0 0 0 8em rgba(255,255,255, 0);
	}
}
.vid_icon i {
    color: #fff;
    font-size: 43px;
    margin-left: 10px;
}
.home_banner_image img{
    width: 350px;
    height: 350px;
}
.learn_more_home{
    padding: 50px 0px;
    text-align: left;
}

.learn_more_home .sayHello {
    margin-right: 1rem;
    border: 1px solid #fff !important;
    color: #fff;
}
.learn_more_home .aboutMe{
    color: #000;
    background-color: #fff;
}

.learn_more_home a {
    border-radius: 0px;
    background-color: #000;
    border: 1px solid #000 !important;
    padding: 16px 32px;
    outline: 0 none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.learn_more_home .sayHello:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid #000 !important;
}

.home_banner_container {
    height: 100vh;
}


.home_bannerWrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.home_banner h1 {
    font-size: 12.5rem;
    line-height: 1.07;
    letter-spacing: 7px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: inherit;
    font-family: "Open Sans", sans-serif;
}

.home_banner .sub-heading {
    font-size: 1.875rem;
    line-height: 1.3;
    letter-spacing: 7px;
    font-weight: 400;
    text-align: center;
    color: #000;
}

.my_name_last {
    line-height: 1.07;
    -webkit-text-stroke: 2px #0d9488;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}


.color_bg_text {
    color: #0D9488;
}

.slider-social-link {
    top: 30%;
    right: 0;
    z-index: 11;
}

.slider-social-link .social {
    padding-right: 40px;
}

.slider-social-link .social li {
    border: 1px solid #0D9488;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin: 10px 0px 10px 0px;
    list-style: none;

}

.slider-social-link a {
    font-size: 18px;
    width: 55px;
    margin: 2px 0;
    height: 50px;
    line-height: 52px;
    color: #0D9488;
}

.section_heading_title {
    font-weight: 600;
    font-size: 18px;
    color: #0D9488;
    padding-bottom: 20px;
    letter-spacing: 7px;
    text-transform: uppercase;
    
}

.section_heading_desc {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Nunito Sans", sans-serif;
    
}

.section_heading_desc_content {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: #4D4D5C;
    margin-bottom: 25px;
    margin-top: 0;
    font-family: "Nunito Sans", sans-serif;
}

/********* ABout ME ************/
.about-info {
    margin-bottom: 0;
}

.about-info-wrapper {
    border-top: 1px solid #bcc7d3;
    border-bottom: 1px solid #bcc7d3;
    padding: 25px 0;
    margin-top: 25px;
}

.about-info li:first-child {
    margin-right: 20px;
}

.about-info li:first-child p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: "Nunito Sans", sans-serif;
}

.about-info li:nth-child(2) p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: "Nunito Sans", sans-serif;
}

.about-footer-content .signature {
    padding-right: 45px;
    color: #bcc7d3;
}

.about-footer-content-right h6 {
    padding-right: 5px;
}

/******* contact us ***********/
.coffee_with_me_form {
    display: flex;
    justify-content: center;
}

.contact_us_left_panel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.form_container {
    max-width: 750px;
    border-radius: 4px;
    padding: 10px 30px;
    background-color: #0F172A;
}



.form-item label {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 18px;
    left: 10px;
    font-size: 18px;
    background: #0F172A;
    padding: 0 10px;
    color: #0D9488;
    transition: all .3s ease
}

::placeholder {
    color: #c8ccd4;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #c8ccd4;
}

.form-item input:focus+label,
.form-item input:valid+label,
.form-item textarea:focus+label,
.form-item textarea:valid+label {
    font-size: 11px;
    top: -5px
}

.form-item input:focus+label,
.form-item textarea:focus+label {
    color: #0D9488
}

.contact-form {
    width: 100%;
    margin-top: 45px;
    padding-top: 20px;
}

.submit_btn {
    border-radius: 6px;
    background-color: #0D9488;
    height: 60px;
    width: 100%;
    color: #fff;
    box-shadow: none;
    border: 1px solid #0D9488;
    text-transform: uppercase;
}

.contact-form h2 {
    margin-bottom: 20px;
    text-align: center;
}

.map_wrapper {}

.marquee_wrapper marquee {
    font-size: 96px;
    font-weight: 600;
    line-height: 1.1;
    font-family: inherit;
    text-transform: uppercase;
}

.marquee_wrapper_second {
    -webkit-text-stroke: 2px #0d9488;
    -webkit-text-fill-color: transparent;
}

#marquee {
    background-color: #f3f6f8;
}

/******** Fan facts ******************/
.bg-dark {
    background: #0F172A !important;
}

.fun-fact-area {
    position: relative;
    overflow: hidden;
}

.fun-fact-content {
    margin-bottom: 50px;
}

.fun-fact-content span {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 7px;
    color: #9b9db1;
}

.fun-fact-content h2 {
    text-transform: uppercase;
    font-size: 60px;
    color: #fff;
    margin-bottom: 30px;
}

.fun-fact-content p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 30px;
    font-family: "Nunito Sans", sans-serif;
}

.single-fact {
    padding: 48px 30px;
    border: 1px solid rgb(204, 211, 217, 0.2);
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single-fact div {
    margin-right: 25px;
}

.single-fact span {
    font-size: 72px;
    line-height: 0.4;
    color: #fff;
}

.single-fact h3 {
    font-size: 21px;
    line-height: 1.5;
    color: #fff;
}

/********** My Experience*****************/
.experience-service-text h3 {
    font-size: 30px;
    margin-bottom: 2px;
}

.experience-service-text h4 {
    font-size: 18px;
}

.experience-service-text h4 span {
    font-size: 15px;
    color: #9B9DB1;
    font-family: "Open Sans", sans-serif;
}

.mb-32 {
    margin-bottom: 32px;
}

.mt-15 {
    margin-top: 15px;
}

.experience-service-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.67;
    color: #4d4d5c;
}

.experience-ser-icon span {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 35px;
}

.experience-content li .experience-ser-icon span,
.education-content li .experience-ser-icon span {
    color: #25262f;
}

.flaticon-briefcase:before {
    content: "\f101";
}

.rotate {
    transition: 0.9s;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    z-index: 1;
}

.flat-family {
    font-family: "Flaticon";
}

.experience-ser-icon {
    background: transparent;
    border: 1px solid #d9e1e2;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.mt-10 {
    margin-top: 10px;
}

.mr-30 {
    margin-right: 30px;
}

.transition3 {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.my_experience_left_panel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

/*.my_experience_left_panel img,
.my_education_left_panel img,
.contact_us_left_panel img {
    width: 500px;
    height: 500px;
}*/

.my_education_left_panel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

/*************service*******************/
.mt-80 {
    margin-top: 80px;
}

.mb-6 {
    margin-bottom: 6px;
}

.mb-15 {
    margin-bottom: 15px;
}

.service-text h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.16;
    color: #2e2e37;
}

.service-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #4d4d5c;
    font-family: "Nunito Sans", sans-serif;
}

/************* pricing **************/
.single-price {
    /* box-shadow: 0px 5px 15px 0px rgba(7, 7, 7, 0.09); */
    box-shadow: 0px 0px 19px 4px rgba(7, 7, 7, 0.09);
    /* border: 1px solid var(--main-border); */
}

.single-price h3 {
    font-size: 30px;
}

ul {
    margin: 0px;
    padding: 0px;
}

.rate {
    font-size: 60px;
}

.price-list li {
    margin-bottom: 8px;
}

.price-list li span {
    width: 20px;
    height: 20px;
    line-height: 1.4;
}

.price-list li p,
.price-list li span {
    font-size: 16px;
}

.single-price p {
    font-size: 18px;
}

.single-price .btn {
    padding: 10px 35px;
}



.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 60px;
}

.footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col .links {
    margin-top: 20px;
}

.footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
}

.footer-col .links li a:hover {
    color: #fff;
}

.footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    line-height: 25px;
}

.footer-col form {
    display: flex;
    gap: 5px;
}

.footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
}

.footer-col input::placeholder {
    color: #ccc;
}

.footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
}

.footer-col form button:hover {
    background: #cecccc;
}

.footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
}

.footer-col .icons i {
    color: #fff;
}

.all_right_reserved {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    color: #fff;
}

.all_right_reserved p {
    color: #bfbfbf;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

    .footer .footer-row {
        padding: 20px;
        gap: 1rem;
    }

    .footer-col form {
        display: block;
    }

    .footer-col form :where(input, button) {
        width: 100%;
    }

    .footer-col form button {
        margin: 10px 0 0 0;
    }
}

/************** About Me Page ******************/
.page_banner_section{
    padding: 60px 0px;
}
.container_about_me{
    padding: 100px 0px;
}

/*********** Contact Me Page ***************/
.inner_banner_container{
    display:block;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    min-height: 160px;
    
}
.common_banner_description{
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #353c3e;
    font-family: "Nunito Sans", sans-serif;
}
.inner_banner_container h1{
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}
.contact_us_container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}
#contact-form{
    width: 100%;
}
#contactform-body{
    min-height: 120px;
}
.btn_contact_me{
    border-radius: 0px;
    background-color: #000;
    border: 1px solid #000 !important;
    padding: 16px 32px;
    outline: 0 none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

/**************** technology ******************************/
.technology_container div{
    color: #fff;
    text-align: center;
    display: flex !important;
    justify-content: center;
    align-items: center;

}
.technology_container div img{
    width: 100px;
    height: 100px;
    color: red;
}

/******************** success stories ************************/
.gallery__card--img {
    position: relative;
}
.gallery__card--img:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 0%;
    height: 80%;
    background: rgba(0,0,0,0.8);
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}
.gallery_card:hover .gallery_card--img:before{
   width: 80%; 
}
.gallery__card--img img {
    width: 100%;
    height:300px;
    object-fit: cover;
}


.gallery__card{
    width: 100%;
    display: block;
    margin-top:28px;
}


/*****Banner section******/
.dynamic_section_banner{
   width: 100%;
   height: 100%;
}
.dynamic_section_banner img{
    width:100%;
    height: auto;
    object-fit: cover;
}

/***************************** Blog *********************************/
.blog_category_search{
    position: relative;
}
.blog_category_search i {
    position: absolute;
    top: 13px;
    left: 15px;
    font-size: 20px;
    color: #4D4D5C;
}
.blog_category_search input{
    padding-left: 50px;
}
.blog_category ul{
    margin-top: 35px;
}
.blog_category ul li {
    padding: 10px 0px 10px 20px;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
    line-height: 16px;
    border-left: 1px solid #4d4d5c45;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog_category ul li.active{
    background: #4d4d5c1f;
    border-left: 3px solid #4d4d5c;
}
.blog_category ul li a {
    color: #4D4D5C;
    text-decoration: none;
    transition: all .3s ease-in;
}

.blog_category ul li a:hover {
    color: #4d4d5cbd;
}

.blog_container_banner{
    width: 420px;
    height: 280px;
    overflow: hidden;
    
}
.blog_container_banner img {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    object-fit: cover;
    transition: all .3s ease-in;
}

.blog_container_banner img:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
}
.blog_wrapper h2{
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    padding-bottom: 5px;
    color: #4D4D5C;
}
.blog_wrapper p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 5px;
    margin: 0;
    color: #4D4D5C;
}
.blog_wrapper span {
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    color: #4D4D5C;
}
.blog-card {
    margin-bottom: 60px;
}
.blog_wrapper {
    padding: 10px 0px;
}
.blog_container a {
    text-decoration: none;
}
.reset_filter_area{
    text-align: right;
    padding: 5px 0px;
}
.reset_filter_area a{
    color: #4D4D5C;
    font-size: 14px;
}

/*********Get started section ************/
.get_started_section div h2{
    font-size: 40px;
    font-weight: 800;
    line-height: 58px;
}
.get_started_section_btn_sec{
    display: flex;
    justify-content: center;
    align-items: center;
}
/********************/

.back-to-top-area.active-backTop{
    bottom: 5%;
    opacity: .5;
    visibility: visible;
}
.back-to-top-area {
    width: 50px;
    height: 50px;
    background: #000;
    position: fixed;
    bottom: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 999;
}
.back-to-top-area img {
    width: 23px;
    height: 26px;
}