/*
-- 01 Typography
    FONT SIZE SYSTEM (px)
    10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

-- 02 Colors
    primary color :-#e67e22
    tint :- #fdf2e9
    shades :
    accent :- 
    grey : - #555 , #333  #212529

--03 Font weight 
    1-- 400

-- 05 shadow


-- 06 border radius

-- 07 line height(in px)
    2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128







*/


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

html{
    /* 62.5 % = 1 rem = 10px */
    font-size: 62.5%;
    /* Overflow x is use to hidden element in right of the page to use animations */
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: #555;
    line-height: 1;

    /* Overflow x is use to hidden element in right of the page to use animations */
    overflow-x: hidden;

}
/**************************************/
/*Resuable Components */
.container{
    max-width: 130rem;
    padding: 2rem;
    
    margin: 0 auto;
}

.primary-heading{
    font-size: 5.2rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 4rem;
    color: #333;
}

.secondary-heading{
    font-size: 3.6rem;
    line-height: 1.1;
    
    color: #212529;
    
}

.teritory-heading{
    font-size: 2.4rem;
    line-height: 1.6rem;
    color: #212529;
    
}



/**************************************/
/* Reusable Button Components */

.btn{
    font-weight: 500;
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    text-decoration: none;
    border: none;
    transition: all 500ms;
    color: white;
    
}

.btn--1:link ,.btn--1:visited{
    background-color:#e67e22 ;
}


.btn--1:hover,.btn--1:active{
    background-color: #40c057;
    font-size: 1.7rem;
}

.btn--2:link,.btn--2:active{
    background-color:#333333 ;
}

.btn--2:hover,.btn--2:active{
    background-color: #cccccc;
    box-shadow: inset 0 0 0 3px #fff;
    color: black;
}

/**************************************/

/* Grid reusable components*/

.grid{
    display: grid;
    gap: 2rem;
}

.grid--col-2{
    grid-template-columns: repeat(2,1fr);
}

.grid--col-3{
    grid-template-columns: repeat(3,1fr);
}
.grid--col-4{
    grid-template-columns: repeat(4,1fr);
}

.grid--center-v{
    align-items: center;
}

.grid--col-gap-md{
    column-gap: 4.4rem;
}

.grid--col-gap-lg{
    column-gap: 10rem;
}

/**************************************/

/**************************************/

/* Flex reusable components*/

.flex{
    display: flex;
    gap: 2rem;
}

.flex--column{
    flex-direction: column;
}

.flex--gap--md{
    gap: 2.4rem;
}
/**************************************/


.margin-right-sm{
    margin-right: 1.6rem !important;
}

.margin-top-md{
    margin-top: 5.2rem !important;
}

.align-center{
    text-align: center;
}


/**************************************/
