/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');
/* Space Grotesk */
/* @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap'); */

/* Cormorant Garamond', serif */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

/* Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


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

:root {
    --body-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Montserrat", sans-serif;

    /* Primary Theme */
    --theme-color: #063783;
    --theme-color2: #957c52;
    --theme-color3: #c8a25c;
    --theme-color4: #ffeccd;
    --theme-color5: #F8FCFF;

    /* Accent Colors */
    --theme-color6: #E31E24;
    /* Logo Red */
    --theme-color7: #FF4D57;
    /* Light Red */

    /* Background */
    --theme-bg-light: #F8FCFF;
    --theme-bg-light2: #FFFFFF;

    /* Transparent Colors */
    --theme-color-light: rgba(20, 135, 207, 0.08);
    --theme-color-light2: rgba(20, 135, 207, 0.18);

    /* Text */
    --body-text-color: #666666;
    --color-dark: #1C1C1C;
    --color-white: #FFFFFF;

    /* Brand Colors */
    --color-blue: #1487CF;
    --color-red: #E31E24;
    --color-gray: #F5F7FA;

    /* Optional */
    --color-yellow: #FFC107;
    --color-pink: #E31E24;

    /* Shadows */
    --box-shadow: 0 15px 40px rgba(20, 135, 207, 0.12);
    --box-shadow2: 0 10px 30px rgba(20, 135, 207, 0.18);
    --box-shadow3: rgba(0, 0, 0, 0.08) 0 8px 24px;

    /* Transition */
    --transition: all .5s ease;
    --transition2: all .3s ease;

    /* Borders */
    --border-info-color: rgba(20, 135, 207, .18);
    --border-info-color2: rgba(20, 135, 207, .08);
    --border-info-color3: #D6ECFA;

    --border-colo--color-white: rgba(255, 255, 255, .15);
    --border-colo--color-white2: rgba(255, 255, 255, .30);

    /* Footer */
    --footer-bg: #0B2F4A;
    --footer-text-color: #F5F5F5;

    /* Social */
    --facebook-color: #1877F2;
    --instagram-color: #E1306C;
    --youtube-color: #FF0000;
    --whatsapp-color: #25D366;
}


*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     /* overflow-x: hidden !important; */

}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.8;
    overflow-x: hidden;
    overflow-y: auto;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none !important;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 500;
    font-family: var(--heading-font) !important;
}

p {
    margin: 0px;
}

.img,
img {
    /* max-width: 100%; */
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

*::-moz-selection {
    background: var(--theme-color);
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

/*  */

