/*==================================================
KALPOC SOLUTIONS
STYLE.CSS
Global Styles
==================================================*/

/*=========================================
GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:#555;

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

/*=========================================
VARIABLES
=========================================*/

:root{

    --primary:#0F2747;

    /*--secondary:#D4AF37;*/
	--secondary:#9DC03F;

    --dark:#1D1D1D;

    --text:#555;

    --light:#F8F9FA;

    --white:#FFFFFF;

    --border:#E5E5E5;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);

    --shadow-md:0 10px 30px rgba(0,0,0,.12);

    --shadow-lg:0 25px 60px rgba(15,39,71,.18);

}

/*=========================================
CONTAINER
=========================================*/

.container{

    width:100%;

    max-width:1240px;

    margin:auto;

    padding:0 20px;

}

/*=========================================
IMAGES
=========================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}

/*=========================================
LINKS
=========================================*/

a{

    text-decoration:none;

    color:inherit;

    transition:.35s ease;

}

/*=========================================
LIST
=========================================*/

ul{

    list-style:none;

}

/*=========================================
SECTIONS
=========================================*/

.section{

    padding:120px 0;

}

/*=========================================
SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-subtitle{

    display:inline-block;

    background:var(--secondary);

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.section-title h2{

    font-size:48px;

    color:var(--primary);

    margin:20px 0;

    font-weight:800;

}

.section-title p{

    color:#666;

    font-size:18px;

    line-height:1.8;

}

/*=========================================
BUTTONS
=========================================*/

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:var(--secondary);

    color:#fff;

    padding:18px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 25px rgba(212,175,55,.30);

}

.btn-primary:hover{

    background:var(--primary);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    border:2px solid var(--primary);

    color:var(--primary);

    padding:18px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================================
TEXT
=========================================*/

.text-center{

    text-align:center;

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}

/*=========================================
SELECTION
=========================================*/

::selection{

    background:var(--secondary);

    color:#fff;

}

.modal-email{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.modal-email.show{

    opacity:1;

    visibility:visible;

}

.modal-email-box{

    background:#fff;

    width:90%;

    max-width:500px;

    border-radius:15px;

    padding:40px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.modal-icone{

    font-size:60px;

    color:#9DC03F;

    margin-bottom:20px;

}

.modal-email button{

    margin-top:25px;

    border:0;

    padding:14px 35px;

    border-radius:50px;

    background:#9DC03F;

    color:#fff;

    cursor:pointer;

}