@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* font-family: "Inter", sans-serif; */
:root {
    --primary-font: "Inter", sans-serif;
    --primary-color: #333333;
    --opacity: #333333B2;
    --white: #ffffff;
    --link-color: #4762FF;
}

body {
    font-family: var(--primary-font);
    color: var(--primary-color);
    position: relative;
}

.preloader {
    position: fixed;
    min-width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .spiner {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 25px;
    font-weight: 700;
}
.spiner span:nth-child(1),
.spiner span:nth-child(2) {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
}
.spiner span:nth-child(1) {
    left: 0;
    animation: ani1 2s linear infinite;
    background-color: var(--link-color);
    
}
@keyframes ani1 {
    0%, 100% {
        left: 0;
        transform: rotate(0deg);
    }
    50% {
        left: 100%;
        transform: rotate(180deg);
    }
}
.spiner span:nth-child(2) {
    right: 0;
    animation: ani2 2s linear infinite;
    background-color: var(--primary-color);
}
@keyframes ani2 {
    0%, 100% {
        right: 0;
        transform: rotate(0deg);
    }
    50% {
        right: 100%;
        transform: rotate(-180deg);
    }
}

/* Common Part */
.common_section {
    padding: 50px 0;
    
}
.common_box {
& h2 {
        margin-bottom: 18px;
        font-size: 40px;
        font-weight: 700;
        color: var(--primary-color);
    }
    & p {
        width: 60%;
        margin: 0 auto;
    }
}
.common_btn {
    padding: 10px 23px;
    position: relative;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: var(--link-color);
    color: var(--white);
    overflow: hidden;
    &:hover {
        background-color: #2747ff;
    }
}

.common_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; 
    left: -100%;
    background: linear-gradient(45deg, transparent, var(--white), transparent);
    transition: .2s linear;
}
.common_btn:hover::before {
    left: 100%;
}
/* Common Part */
header {
    background-color: var(--white);
}
header .top {
    padding: 17px 0;
    border-bottom: 1px solid #3333331A;
    color: var(--opacity);
}
.top span {
    margin-left: -20px;
}
.location {
    padding-left: 20px;
}
.location span {
    border-bottom: 2px solid var(--opacity);
}
.top p {
    margin-left: 10px;
}
header .time {
    padding-left: 40px;
    border-inline-start: 1px solid #3333331A;
}
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1000;
}
.bottom {
    padding: 18px 0;
    
}
.shadow {
    border-bottom: 2px solid #cfcfcf;
    
}
.big_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.big_menu .logo {
    width: 200px;
}
.menus ul {
    display: flex;
}
.menus ul li {
    margin: 0 15px;
}

.menus ul li a{
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color) !important;
    text-decoration: none;
    &:hover {
        color: var(--link-color) !important;
    }
}
.toggle_btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    outline: none;
    &:focus {
        box-shadow: none;
    }
}

/* Banner section */
.banner {
    min-height: 700px;
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}
.banner_img {
    width: 1000px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
background-image: url(../images/banner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
/* This is for small screen */
.banner_sm {
    width: 100%;
    height: 450px;
    background-image: url(../images/banner.png);
}
/* This is for small screen */
.heading {
    margin-top: 100px;
}
.heading h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
}
.heading p {
    margin: 16px 0 32px;
}
/* Banner section */

/* Service section */

.service .single_service{
    height: 300px;
    margin-top: 50px;
    padding: 25px 0 0 28px;
    background-color: #F4F6FA;
    border-radius: 10px;
    position: relative;
}
.text {
    width: 350px;
}
.text h3 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}
.single_service .img {
    width: 300px;
    position: absolute;
    bottom: 15px;
    right: 0;
}
/* Service section */

/* Brand section */
.brands .left h3 {
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}
.brands .right {
    height: 100%;
    position: relative;
}
.right .brand {
    position: absolute;
    width: 175px;
}
.right .brand:first-child {
    top: 0;
    left: 0;
}
.right .brand:nth-child(4) {
    bottom: 0;
    left: 0;
}
.right .brand:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.right .brand:nth-child(2) {
    top: 0;
    right: 0;
}
.right .brand:nth-child(5) {
    bottom: 0;
    right: 0;
}
/* Brand section */

/* Map section */
.map {
    height: 500px;
    position: relative;
    background-color: #f3f3f3;
}
.map .m_left {
    margin-top: 95px;
}
.map .m_left h3 {
    margin-bottom: 42px;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}
.map .m_right {
    width: 700px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.m_right iframe{
    width: 100%;
    height: 100%;
}
/* Map section */

/* Slider section */
.mySlide {
    width: 100%;
            position: relative;
            overflow: hidden;
}
.slider {
    display: flex;
            transition: transform 0.5s ease-in-out;
    /* position: relative; */
}
.slider .item {
    min-width: 100%;
            box-sizing: border-box;
    /* position: absolute;
    opacity: 0; */
}
.slider .item:first-child {
    opacity: 1;
    z-index: 20;
}
.indicators {
    margin-top: 30px;
}
.indicators button {
    width: 8px;
    height: 12px;
    margin: 0 3px;
    border-radius: 50%;
    background-color: #4762FFBD;
    border: none;
    outline: none;
    transition: .2s linear;
}
.indicators button.active {
    width: 20px;
    height: 10px;
    margin: 0 8px;
    border-radius: 10px;
    background-color: var(--link-color);
}
/* Slider section */

/* Contact section */
.contact {
    padding: 70px 0;
    background-image: url(../images/contact-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.contact_form {
    width: 611px;
    padding: 40px 70px;
    /* background-color: var(--white); */
    color: var(--white);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.contact_form .c_title {
    width: 90%;
    margin-bottom: 30px;
}
.contact_form .c_title h3 {
    margin-bottom: 16px;
    font-size: 56px;
    font-weight: 700;
}
.contact_form form input {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #4763ff54;
    border: none;
    border: 1px solid transparent;
}
form .input {
    margin: 23px 0;
}
::placeholder {
    color: #cfcfcf;
}
.contact_form form input:focus,
/* :not(:placeholder-shown) etar kaj holo jokhon input e value thakbe tokhon nicher code golo kaj korbe */
.contact_form form input:not(:placeholder-shown){
    background-color: #4762FF14;
    box-shadow: none;
    border: 1px solid var(--link-color);
}
form .c_btn {
    margin-top: 37px;
}
/* Contact section */

/* Footer */
.footer {
    /* padding-top: 50px; */
    background-color: #1A1A1A;
}
.footer .first_footer {
    padding: 50px 0 70px;
    border-bottom: 1px solid #474747;
    color: #D9DBE1;
}
.footer_menu h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}
.footer_menu ul li {
    font-size: 16px;
    font-weight: 400;
}
.footer_menu ul li a {
    text-decoration: none;
    color: var(--white);
    &:hover {
        color: var(--link-color);
    }
}
.footer_menu ul li span {
    margin-right: 8px;
    font-size: 20px;
}
.myborder i {
    border-bottom: 1px solid var(--white);
}
.footer .footer_last {
    padding: 18px 0;
    color: #D9DBE1;
}
.highlight {
    color: var(--link-color);
}
/* Footer */