@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Noto Sans', sans-serif;
}

a {
    text-decoration: none;
}

p {
    color: grey;
}

:root {
    --main: #337cd1;
}

.main_body{
    background: linear-gradient(to right, #ffffff9c, #ffffff9c), url(../images/pettern.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* btn */
.theme-btn {
    background: #337cd1 !important;
    font-size: 14px;
    color: #fff;
    padding: 8px 25px !important;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
    position: relative;
    border: none !important;
}

.theme-btn:hover{
    color: #fff;
}




/* header */
header {
    background:#f7ffff !important;
    padding: 5px 0;
    width: 100%;
    z-index: 1000000;
    transition: all 0.4s ease;
}

header.sticky {
    position: fixed;
    padding: 5px 0 !important;
}

.navbar-brand {
    width: 130px;
}

.navbar-brand img {
    width: 100%;
}

.new-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-link {
    color: #5c5c5c;
    font-size: 16px;
    position: relative;
    margin: 0 20px;
    padding: 5px 2px !important;
}

.nav-link::after{
    position: absolute;
    content: "";
    background: #337cd1;
    height: 2px;
    width: 0%;
    font-weight: 600;
    bottom: 5px;
    left: 0;
    transition: 0.3s all ease-in-out;
}

.nav-link:hover::after{
    width: 100%;
}

.nav-link:hover{
    color: #337cd1 !important;
}

.nav-link:hover {
    color: var(--three);
}

.navbar {
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0px !important;
}

.right-side {
    display: flex;
    align-items: center;
    padding-right: 40px
}

.heart {
    position: relative;
    margin: 0 20px;
}

.heart i {
    color: #fff;
    font-size: 17px;
}

.heart span {
    position: absolute;
    z-index: 3;
    right: -7px;
    bottom: -4px;
    background: var(--three);
    color: #fff;
    width: 14px;
    border-radius: 50%;
    height: 14px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signin {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    cursor: pointer;
}

.signin:hover {
    color: var(--three)
}

.right-side li {
    list-style: none;
}














/* bannar */
.bannar{
    background: linear-gradient(to right, rgb(0, 0, 0, 0.4), rgb(0, 0, 0, 0.4)), url(../images/ser.jpg) no-repeat;
    background-size: cover;
    height: 650px;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.bannar h2{
    font-size: 72px;
}

.bannar-text h5{
    font-size: 17px;
    margin: 20px auto 30px auto !important;
    color: #eeeeee;
}

.bannar-text{
    transform: translateY(500px);
    opacity: 0;
    transition: 0.8s all ease-in-out;
}

.bannar-sticky{
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s all ease-in-out;
}









/* service */
.service{
    padding: 80px 0;
    position: relative;
}

.service::after{
    position: absolute;
    right: 0;
    top: 60px;
    width: 40%;
    content: "";
    height: 4px;
    background: #337cd1;
}

.ser_box{
    transition: 0.2s all ease-in-out;
}

.ser_des{
    position: relative;
    width: 90%;
    background: #ffffff;
    margin-top: -60px;
    padding: 20px 25px 20px 4px; 
    transition: 0.2s all ease-in-out;
}

.ser_box img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.ser_box h4{
    color: #282828;
    font-size: 25px;
    margin-bottom: 10px;
}

.ser_box p{
    font-size: 13px;
}

.ser_box a{
    color: #337cd1;
    font-size: 14px;
    border: 1px solid #337cd1;
    padding: 7px 10px;
    border-radius: 4px;
}

.theme_heading{
    position: relative;
    color: #565656;
    margin-left: 55px;
}

.theme_heading::after{
    position: absolute;
    content: "";
    background: #337cd1;
    height: 3px;
    width: 40px;
    left: -30px;
    top: 50%;
    transform: translateX(-50%);
}

.service h2{
    font-size: 45px;
}

.service .theme_btn2{
    color: rgb(78, 78, 78);
}

.card_an_1{
    transform: translateY(500px);
    opacity: 0;
    transition: 1s all ease-in-out;
}

.card_an_1.card_st_1{
    opacity: 1;
    transform: translateY(0);
    transition: 1s all ease-in-out;
}

.card_an_2{
    transform: translateY(500px);
    opacity: 0;
    transition: 1.5s all ease-in-out;
}

.card_an_2.card_st_2{
    opacity: 1;
    transform: translateY(0);
    transition: 1.5s all ease-in-out;
}

.card_an_3{
    transform: translateY(500px);
    opacity: 0;
    transition: 2s all ease-in-out;
}

.card_an_3.card_st_3{
    opacity: 1;
    transform: translateY(0);
    transition: 2s all ease-in-out;
}















/* about */
.about{
    position: relative;
    margin: 60px 0;
    padding: 90px 0 10px 0;
}

.new_about img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about::after{
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    content: "";
    height: 4px;
    background: #337cd1;
}

.about h5{
    color: #337cd1;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.about h2{
    font-size: 40px;
    color: #000;
}

.about h2 span{
    color: #337cd1;
}

.about img{
    border-radius: 5px;
    width: 100%;
}

.about_contact{
    display: flex;
    align-items: center;
    justify-content: start;
}

.about_contact img{
    width: 40px;
}

.about_contact span{
    font-size: 12px;
    color: grey;
}

.about_contact h4{
    font-size: 16px;
    color: #000;
}

.about_c_text{
    margin-left: 6px;
}


















/* product */
.product{
    position: relative;
    margin: 60px 0;
}

.product h2{
    font-weight: 600;
    font-size: 35px;
    color: #337cd1;
}

.product h5{
    font-size: 14px;
    color: #337cd1;
}

.product_box{
    border-radius: 3px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.product_box h3{
    font-size: 24px;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    z-index: 100;
    margin-top: 20px;
}

.product_box p{
    font-size: 14px;
    color: rgb(77, 77, 77);
}

.product_box a{
    color: #337cd1;
}

.pro_blue{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}




.product_bg{
    background: url(../images/vertical.webp) no-repeat;
    height: 1100px;
    background-size: cover;
    display: flex;
    align-items: center;
    background-position: bottom;
    justify-content: center;
}

.product_bg h4{
    font-size: 90px;
    color: #fff;
}
















.new_why{
    margin: 70px 0;
}

.new_why h2{
    font-weight: 600;
    font-size: 35px;
    color: #337cd1;
}

.new_why p{
    margin-bottom: 40px !important;
}











/* question */
.question{
    margin-top: 70px;
    padding: 200px 0;
    background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url(../images/question.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    background-attachment: fixed;
    position: relative;
}

.question h2{
    font-size: 60px;
    padding: 10px 0;
}

.question button{
    padding: 6px 30px !important;
    font-size: 18px;
    margin-top: 20px;
}


















/* footer */
.footer{
    background: rgb(44, 44, 44);
    padding: 70px 0;
    position: relative;
}

.footer h4{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer ul{
    padding-left: 0 !important;
}

.footer ul li{
    list-style: none;
    margin-bottom: 15px;
}

.footer ul li a{
    color: #cfcfcf;
    font-size: 14px;
}

.footer ul li i{
    margin-right: 10px;
}

.join{
    background: #337cd1;
    padding: 20px;
    border-radius: 10px;
}

.subs{
    position: relative;
}

.subs input{
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    padding: 5px 10px;
    position: relative;
    border: none;
    outline: none;
}

.subs input::placeholder{
    font-size: 13px;
}

.subs button{
    background: #265e9f;
    outline: none;
    border: none;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.join li{
    color: #fff;
    font-size: 13px;
    margin-top: 20px;
}





















.about_page{
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #265e9f;
    background-position: center;
}

.about_page h2{
    font-size: 70px;
    font-weight: 600;
}
























.about_text{
    margin: 100px 0;
}

.about_img img{
    height: 500px;
    object-fit: cover;
}

.about_text .main_img{
    height: 300px;
    object-fit: cover;
    margin-bottom: 40px;
}

.about_text h2 span{
    color: #337cd1;
}


.about_contact_new{
    background: rgba(255, 255, 255, 0.59);
    display: block;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.about_contact_new img{
    width: 70px;
}

.about_contact_new h2{
    font-size: 60px;
    color: #265e9f;
    font-weight: 600;
}

.about_contact_new h4{
    font-size: 24px;
    color: #265e9f;
}

.about_contact_new span{
    color: #707070;
    font-size: 15px;
}





















.ser_new{
    margin: 50px 0;
}

.ser_new img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.ser_new h2{
    color: #265e9f;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}




























.con_page{
    background: linear-gradient(to right, rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5)), url(../images/con.jpg) no-repeat;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-position: center;
}

.con_page h2{
    font-size: 70px;
}

.con_img{
    background: #265e9f;
    background-size: cover;
    height: 650px;
    padding: 30px 20px; 
    border-radius: 10px;
    align-items: center;
    display: flex;
}

.con_img h4{
    font-size: 30px;
    color: #ffffff;
}

.con_img h5{
    color: #dfdfdf;
    margin-bottom: 0 !important;
    font-size: 16px;
}

.con-icon {
    display: flex;
    align-items: center;
    color: #fff;
}

.con-icon i{
    margin: 0px 20px 0 3px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.2s all ease-in-out;
}

.con-icon i:hover{
    transform: translateY(-5px);
}

.con_img img{
    width: 150px;
    margin-bottom: 40px;
}

.con_img p{
    color: #dfdfdf;
    font-size: 13px;
}

.contact_form h3{
    color: #337cd1;
    font-size: 40px;
}

.contact_form .form-group{
    margin-bottom: 20px;
}

.contact_form label{
    color: grey;
}

.contact_form input[type="text"],
.contact_form input[type="email"]{
    width: 100%;
    padding: 6px 10px;
    background: rgb(255, 255, 255);
    border: none;
    border-bottom: 2px solid rgb(128, 128, 128);
    outline: none;
}

.contact_form input:focus{
    border-color: #337cd1;
}

.contact_form textarea{
    width: 100%;
    padding: 6px 10px;
    background: rgb(249 249 249);
    border: 2px solid rgb(249 249 249);
    border-radius: 3px;
    outline: none;
}

.contact_form textarea:focus{
    border-color: #337cd1;
}

.contact{
    margin: 50px 0 100px 0;
}









.work{
    padding: 100px 0;
}

.work h1{
    font-size: 100px;
    font-weight: 700;
    text-transform: uppercase;
    color: #cecece;
}

.work img{
    width: 70%;
    border-radius: 10px;
}