/*
--------------------------------------------------------------------------------------------------------
* Template Name             :                                                                          *
* Author Name               :                                                                          *
* Version                   : 1.0                                                                      *
* Design and Developed by   :                                                                          * 
*-------------------------------------------------------------------------------------------------------
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/

/*================================================
[  Table of contents  ]
================================================== 
:: Global
    :: Base
    :: Helper Classes 
:: Components
    :: Buttons  
    :: Animations      

==================================================
[ End table content ]
================================================*/

/*==========================================
    :: Base
==========================================*/
@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');


:root {
    --main-color: #186fb6;
    --secondary: #2d5a87;

    --white-color: #ffffff;
    --black-color: #202020;
    --text-color: #1e2538;
 
    /*main black*/
    --black-color-1: #f5f6fa;
    --black-color-2: #fafafa;

    --gray-color: #1e2538;
    /*main gray*/
    --gray-color-1: #1e2538;
    --gray-color-2: #1e2538;

    --border-color: #e8eaf2;

    --border: #e8eaf2;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white-color);
    color: var(--gray-color-2);
}

*:focus {
    outline: none
}

h1,
.h1 {
    font-size: 48px;
    line-height: normal;
}

h2,
.h2 {
    font-size: 40px;
    line-height: normal;
}

h3,
.h3 {
    font-size: 30px;
    line-height: normal;
}

h4,
.h4 {
    font-size: 24px;
    line-height: normal;
}

h5,
.h5 {
    font-size: 20px;
    line-height: normal;
}

h6,
.h6 {
    font-size: 18px;
    line-height: normal;
}

a[href*="tel"],
a[href*="mailto"] {
    white-space: nowrap;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
[class^=heading-] {
    margin-top: 0;
    margin-bottom: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
[class^=heading-] a {
    color: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
[class^=heading-] a:hover {
    color: var(--gray-color-2);
}

a {
    transition: all .25s ease-in-out;
}

a,
a:focus,
a:active,
a:hover {
    text-decoration: none;
}

a,
a:focus,
a:active {
    color: var(--gray-color-2);
}

a:hover {
    color: var(--gray-color);
}

input {
    outline: medium none !important;
}

button:focus {
    outline: 0px dotted;
    outline: 0px auto;
}

::selection {
    background: #484848;
    color: var(--white-color);
}

::-moz-selection {
    background: #484848;
    color: var(--white-color);
}

::-webkit-selection {
    background: #484848;
    color: var(--white-color);
}

iframe {
    width: 100%;
    border: 0px;
}

/*grid*/
.grid-1 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
}

.grid-2 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.grid-3 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

.grid-4 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
}

.grid-5 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 2rem;
}

.grid-6 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 2rem;
}


/*==========================================
    :: Helper Classes 
==========================================*/
/* Color */
.text-white {
    color: var(--white-color);
}

.text-black {
    color: var(--black-color);
}

.text-color {
    color: var(--text-color);
}

.hide-after:after,
.hide-before:before {
    display: none;
}

.form-control {
    height: calc(2.3em + .75rem + 2px);
    border-radius: 0;
}

.required {
    color: red;
}

.box-shadow-2 {
    box-shadow: 0 10px 18px 0 rgb(62 57 107 / 20%);
}

.btn.round {
    border-radius: 50px;
}

/*==========================================
    :: Button 
==========================================*/
.button {
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    padding: 10px 25px;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--white-color);
    border-radius: 5px;
    outline: 0;
    box-sizing: border-box;
    color: #fff;
    position: relative;
    overflow: hidden; 
    background: var(--main-color); 
    box-shadow: 4px 5px 0px 0px #d2d2d2;
    -webkit-box-shadow: 4px 5px 0px 0px #d2d2d2;
    -moz-box-shadow: 4px 5px 0px 0px #d2d2d2; 
}

.button:hover,
.button:active,
.button:focus {
    color: #fff !important;
    box-shadow: none !important;
}

.button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    background-color: rgba(255, 255, 255, 0.8);
}

.button:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}


/*==========================================
    :: Animations 
==========================================*/
@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    10% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }

    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }

    30% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    70% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    40% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    60% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    10% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }

    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }

    30% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    70% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    40% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    60% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}