@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    scroll-behavior: smooth;
    background: #ffffff;
}

::-webkit-scrollbar 
{
    width: .425rem;
}

::-webkit-scrollbar-track 
{
    background: #f9f9f9;
}

::-webkit-scrollbar-thumb 
{
    background: var(--two-color);
}

ul li 
{
    list-style: none;
}

a 
{
    text-decoration: none;
}

/* custom css  */
:root 
{
    --one-color: #222328;
    --two-color: #f75757;
    --three-color: #a1a1a1;
    --hover-color: #f33030;
    --f-font: "Noto Sans", serif;
    --s-font: "Kanit", serif;
}

#active 
{
    color: var(--two-color);
}

.para 
{
    color: var(--two-color);
}

.main-btn 
{
    background: var(--two-color);
    padding: 10px 20px;
    color: #ffffff;
    border: none;
    border-radius: 30px;
}

.main-btn:hover 
{
    background: var(--hover-color);
}

/* 1st nav start */
header 
{
    background: var(--one-color);
    border-bottom: 1px solid #f4f4f4;
    font-family: var(--f-font);
}

.social-1 
{
    width: 200px;
    display: flex;
    border-right: 1px solid #d0d0d0;
    justify-content: end;
    gap: 20px;
}

.social-1 i 
{
    color: var(--three-color);
    font-size: 1.1rem;
}
/* 1st nav End */


/* 2nd nav start */
nav 
{
    background: var(--one-color);
}

.navbar-brand p 
{
    color: #fff;
    font-family: var(--f-font);
    font-weight: 550;
    color: var(--hover-color);
}

.navbar-brand span 
{
    color: #ffff;
    transition: 0.3s;
}

.navbar-brand:hover span 
{
    color: var(--hover-color)
}

nav .nav-link 
{
    color: #fff;
    font-family: var(--f-font);
}

.nav-item button 
{
    border-radius: 30px;
    padding: 5px 18px;
    transition: 0.3s;
    background: transparent;
    border: 3px solid var(--two-color);
}

.nav-item button:hover 
{
    background: var(--hover-color);
    color: white;
}

.navbar .navbar-toggler:focus 
{
    outline: none;
    box-shadow: none;
    border: none
}
/* 2nd nav End */


/* hero sec start */
.hero-sec 
{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url('img/bg/home-1.jpg');
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content 
{
    margin-top: 200px;
    font-family: var(--f-font);
}

.hero-content h1 
{
    font-size: 4rem;
    font-weight: bold;
}

.hero-content .main-btn 
{
    margin-top: 50px;
}
/* hero sec End */


/* intro section start */
.intro-content 
{
    font-family: var(--f-font);
}

.intro-content p 
{
    color: var(--hover-color);
    font-size: 1.1rem;
}

.intro-content h2 
{
    font-weight: 650;
    font-size: 2rem;
}

.intro-item i 
{
    font-size: 60px;
    color: var(--two-color);
}
/* intro section End */


/* About sec start */
.about-content p 
{
    color: var(--two-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-content h3 
{
    font-size: 2.5rem;
    font-weight: bold;
}
/* About sec End */


/* couneter sec start */
#counter span 
{
    font-size: 2.5rem;
    font-weight: bold;
}

#counter h2 
{
    font-size: 1.2rem;
    font-weight: bold;
}
/* couneter sec End */


/* services sec start */
.service-header  p
{
    color: var(--two-color);
}
/* services sec End */


/* cat sec start */
.cat-sec 
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/bg/home-3.jpg');
    height: 500px;
    background-size: cover;
    background-attachment: fixed;
}

.cat-content .create 
{
    color: var(--two-color);
}

.cat-content i 
{
    color: var(--two-color);
}

.part-2 
{
    display: none;
}

.part-1,
.part-2  
{
    transition: 0.3s ease-in-out;
}

.btx 
{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #696969;
    cursor: pointer;
}
/* cat sec End */


/* background & cards sec start */
.card-sector 
{
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),url('img/bg/home-5.jpg');
    background-size: cover;
}

.card-sector .card .main-btn
{
    background: none;
    transition: 0.3s ease-in-out;
    border: 2px solid var(--two-color);
    margin-top: 20px;
}

.card-sector .card .main-btn:hover 
{
    background: var(--two-color);
}
/* background & cards sec End */


/* Footer & Contact Sec start */
.contact-sec 
{
    margin-top: -50px;
    background: #f9f9f9;
}

.contact-sec  .main-btn 
{
    font-family: var(--f-font);
    font-size: 0.9rem;
    padding: 15px 30px;
}


.latest-footer a
{
    color: black;
    font-weight: 450;
}

.latest-footer a:hover 
{
    color: var(--two-color);
}

.latest-footer input 
{
    font-size: 0.9rem;
    font-weight: 550;
}

.latest-footer input:focus
{
    outline: 1px solid var(--hover-color);
    background: #f5f8f9;
}

.mail  
{
    font-size: 1rem;
    font-family: var(--f-font);
}

.social-sec a 
{
    color: black;
    font-size: 1.1rem;
    font-weight: 550;
}

.social-sec a:hover 
{
    color: var(--two-color);
}
/* Footer & Contact Sec End */


/* scroll top button satrt */
.scroll-top 
{
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 30px;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
}

.scroll-top i
{
    background: var(--two-color);
    cursor: pointer;
}
/* scroll top button End */


                        /* --------- service.html start --------- */
/* service hero sec start */
.service-hero 
{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url("img/bg/home-2.jpg");
    height: 400px;
    background-size: cover;
    background-position: center;
    font-family: var(--f-font);
}

.service-hero h1 
{
    font-size: 3.5rem;
}
/* service hero sec End */


/* banner sec start  */
.service-banner 
{
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),url('img/bg/home-3.jpg');
    background-size: cover;
    height: 200px;
}

.service-banner .main-btn  
{
    padding: 15px 45px;
} 

.service-banner .row
{
    margin: 0 auto
}
/* banner sec End  */

                        /* --------- service.html End --------- */

                        /* --------- contact.html Start --------- */
/* contact form sec start */
.form-sec input,
.form-sec textarea 
{
    border: none;
    background: #f5f8f9;
    font-size: 1rem;
}

.form-sec input:focus,
.form-sec textarea:focus {
    outline: none;
}

.socials-icon a 
{
    color: black;
}

.socials-icon a:hover 
{
    color: var(--two-color);
}
/* contact form sec End */


/* map start */
.map iframe 
{
    width: 100%;
}
/* map End */
                        /* --------- contact.html End --------- */


                        /* --------- Portfolio.html start --------- */
/* portfolio sec start */
.portfolio .img-sec 
{
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
}

.img-sec:hover .overlay::before
{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.68);
}

.img-sec .plus-icon 
{
    position: absolute;
    top: 50%;
    left: 200%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 3rem;
    color: var(--two-color);
    transition: left 0.3s ease, color 0.5s ease;
}

.img-sec:hover .plus-icon
{
    left: 50%;
    color: var(--two-color);
}

.img-sec .overlay-content
{
    position: absolute;
    bottom: 0;
    right: -600px;
    transition: right 0.3s ease;
}

.img-sec:hover .overlay-content  
{
    right: 20px;
}


/* portfolio sec End */
                        /* --------- Portfolio.html End --------- */


                        /* --------- Company.html Start --------- */
/* who we are sec statr */
.company-about 
{
    font-family: var(--f-font);
}
/* who we are sec End */


/*  counter sec start  */
.counter 
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),url("img/bg/counter.jpg");
    background-size: cover;
    height: 350px;
}

.counterss .row 
{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*  counter sec End  */


/* card sec start */
.card-section .card 
{
    font-family: var(--f-font);
}

.card-section .card-image
{
    position: relative;
}

.card-image:hover .overlays-sec::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.card-image .socails-section 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translatex(-50%) translateY(-50%);
    display: none;
    font-size: 1.4rem;
}

.card-image .socails-section i 
{
    padding: 10px 10px;
    background: #0e79e9;
    border-radius: 50%;
}

.card-image .socails-section i:nth-child(2){
    background: #EE82EE;
}

.card-image .socails-section i:nth-child(3){
    background:	#808000;
}

.card-image:hover .socails-section 
{
    display: block;
}
/* card sec End */
                        /* --------- Company.html End --------- */


