@import url('https://fonts.googleapis.com/css2?family=Antic+Slab&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root{
    --bs-dark-rgb:43, 43, 43;
    --web-green: #89cebe;
    --web-red: #921418;
    --web-lite-red: #c90404;
    --web-blue: #110ae9;
    --web-blue-dark: #002f58;
}

body {
    color: #000000;
    background-color: #f7f8f9;
    font-family: "PT Sans", sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    color: #000000;
    font-family: "Antic Slab", serif;
}

h1, .h1 {
    font-weight: 500;
    font-size: 48px;
}

h2, .h2 {
    font-weight: 500;
    font-size: 30px;
}

h3, .h3 {
    font-weight: 500;
    font-size: 24px;
}

h4, .h4 {
    font-size: 16px;
}

h5, .h5 {
    font-size: 14px;
}

h6, .h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

p, a, li, span, label, tr, td, th, input {
    color: #7a7a7a;
}

select{
    background-color: #fff;
    background-image: url('../images/3.png');
    background-repeat: no-repeat;
    background-position-x: calc(100% - 8px);
    background-position-y: 50%;
    background-size: 12px;
    padding: 4px 10px;
    color: #6e6e6e;
    font-size: 13px;
    height: 35px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input, textarea{
    padding: 4px 10px;
    color: #6e6e6e;
    font-size: 13px;
    height: 35px;
    background-color: #fff;
    border: 1px solid #767676;
}

textarea{
    height: 100px;
}

p {
    font-size: 15px;
    margin-top: 18px;
}

a {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    outline: none;
    display: inline-block;
    width: fit-content;
    /* font-size: 15px; */
    color: var(--web-green);
    text-decoration: none;
}

a:hover {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    color: var(--web-red);
}



@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (min-width: 1125px) {
    .container {
        max-width: 1125px;
        margin-left: auto;
        margin-right: auto;
    }

}

.web-red{
    color: var(--web-red);
}

.bg-web-red{
    background-color: var(--web-red);
}

.web-lite-red{
    color: var(--web-lite-red)
}

.bg-lite-red{
    background-color: var(--web-lite-red);
}

.web-green{
    color: var(--web-green);
}

.bg-web-green{
    background-color: var(--web-green);
}

.web-blue-dark{
    color: var(--web-blue-dark);
}

.font-primary{
    font-family: "Antic Slab", serif;
}

.font-secondary{
    font-family: "PT Sans", sans-serif;
}

.fs-36{
    font-size:36px;
}

.fs-30{
    font-size:30px;
}

.fs-28{
    font-size: 28px;
}

.fs-18{
    font-size: 18px !important;
}

.fs-14{
    font-size: 14px;
}

.fs-12{
    font-size: 12px;
}

.list-style-none {
    list-style: none;
}

.border-radius-20 {
    border-radius: 20px !important
}

.border-radius-10 {
    border-radius: 10px !important
}

.box-shadow {
    box-shadow: 0 0 35px rgb(196 196 196 / 64%);
}

/**Button CSS**/
.red-btn {
    background: var(--web-red)  !important;
    color: #fff !important;
    padding: 10px 12px !important;
    border-radius: 0;
    font-weight: 600 !important;
    font-size: 14px;
    overflow: hidden;
    transition: all .4s ease-out 0s;
    box-shadow: 2px 2px 2px #9eaab1 !important;
}

.red-btn:hover{
    background: var(--web-lite-red) !important;
}

.blinking-button {
    border: 2px solid #fff;
    margin-bottom: 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    animation-name: flashes;
    animation-duration: 2s;
    /* animation-timing-function: linear; */
    animation-iteration-count: infinite;
    color: #fff;
}

.btn-dark{
    padding: 10px 20px;
    background: #000;
    color: #fff;
    display: block;
    text-align: center;
    width: fit-content;
    margin: auto;
    margin-top: 20px;
}

.btn-dark:hover{
    background: #EC2027;
}

/**Button CSS end**/

/**Header CSS**/

.top-bar .top-bar-btn a {
    border: 2px solid #fff;
    margin-bottom: 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    animation-name: flashes;
    animation-duration: 2s;
    /* animation-timing-function: linear; */
    animation-iteration-count: infinite;
    color: #fff !important;
    text-decoration: none;
}

/* @keyframes flashes {
    0% {
        background: #002f58;
    }    
    50% {
        background: var(--web-green);
    }
    100% {
        background: var(--web-blue);
    }
} */

@keyframes flashes {
    0% {
        background: #002f58;
    }    
    50% {
        background: var(--web-blue);
    }
    100% {
        background: #002f58;
    }
}

.header {
    /* height: 85px; */
    background: #ffffff;
    z-index: 99;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.header .navbar .navbar-nav li a {
    font-size: 14px;
    color:#7a8896;
    border: 0;
    font-weight: 500;
    padding: 6px 10px;
    margin-left: 7px;
    text-transform: uppercase;
    border-top: 2px solid transparent;
    line-height: 45px;
}

.header .navbar .navbar-nav li a i{
    font-size: 14px;
}

.header .navbar .navbar-nav li a:hover{
    border-top-color: #002f58 !important;
    transition: .5s linear;
}

.header .navbar .navbar-nav li a.active{
    color: var(--web-blue);
}

.header .navbar .navbar-nav li ul{
    width: 250px;
    border:none;
    padding-top:30px;
}

.header .navbar .navbar-nav li li a{
    margin: 0;
    padding: 10px 15px;
    text-wrap: wrap;
}

.header .navbar .navbar-nav li li a:hover,.header .navbar .navbar-nav li li a.active{
    background-color: #EC2027;
    color: #fff
}

/* Home Page */

.home p{
    color: #0e101a
}

/* contact */

.contact-frm .red-btn{
    width: 200px;
    border-radius: 100px;
    background: var(--web-green) !important;
    box-shadow: none !important;
    border: 0;
    margin-top: 20px;
}

/* sidebar */

.form-sec{
    background-color: #f8f8f8;
}

.form-sec label{
    font-size: 15px;
    font-weight: 700;
    color: #3b3b3b;
}

/* footer */

footer h3{
    font-size: 20px;
}



footer ul li a, footer ul li{
    /* text-transform: uppercase; */
    /* color: #ccc; */
    transition: all .4s ease 0s;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: var(--web-green);
}

footer ul li{color: #fff}

footer ul li a:hover{
    color: var(--web-lite-red);
}

.footer-social ul li a{
    color: #fff
}


.iti {
    /* position: relative; */
    display: block !important;
}
.iti__selected-flag {
    top: 6px;
    height: 33px !important;
    border-radius: 4px;
    transition: .3s;
}
input#phone {
    padding-left: 47px !important;
  	top: 6px;
}  
.intl-tel-input .flag-dropdown .selected-flag {
  padding: 11px 16px 11px 6px;
}
.intl-tel-input {
  z-index: 99;
  width: 100%;
}
.iti-flag {
  box-shadow: none;
}
.intl-tel-input .selected-flag:focus {
  outline: none;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
}  
.iti--allow-dropdown input{
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0;
}
.iti__country-list {
    border-radius: 4px !important;
    z-index: 999 !important;
    box-shadow: 0 0 16px 0 rgb(0 0 0 / 8%) !important;
    border: 1px solid #ececec !important;
  	width: 270px !important;
}