/* global */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 3.125rem;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

.color1 {
    background-color: #0F66E6;
}

.color2 {
    background-color: #052a60;
}

.color3 {
    background-color: #052a60;
}

.color4 {
    background-color: #052a60;
}

.color5 {
    background-color: #052a60;
}

/* scrollbar */
::-webkit-scrollbar {
    width: .75rem;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #052A60;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: gray;
}

/* nav */
nav .container a.navbar-brand img {
    width: 75px;
}

.nav-item {
    position: relative;
}

.nav-item a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0px;
    left: 8px;
    background-color: #0dcaf0;
    transition: width 300ms ease;
}

.nav-item>a:hover::before {
    width: 60%;
}

nav.navbar .container #navbarSupportedContent .navbar-nav .active::before {
    width: 60%;
}

/* header */
#home.background-img {
    background-image: url(../images/a95714af-c16d-4926-b389-61d3b0da77e6.png);
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* search */
.icon {
    position: relative;
}

.search {
    width: 40%;
    padding: 10px 20px 10px 40px;
    border: solid 2px #0dcaf0;
    outline: none;
    background-color: #052A60;
    transition: all 0.2s ease-in-out;
}

.container-search {
    margin-top: 8rem;
}

.container-search i {
    width: 20px;
    height: 20px;
    color: #0dcaf0;
    position: absolute;
    top: 55%;
    left: 10px;
    transform: translate(0, -50%);
    z-index: 999;
}

.search {
    width: 65%;
}

.search:hover {
    width: 75%;
}

.search:focus {
    opacity: 1;
    width: 85%;
}

/*data */
.col-12 {
    scale: 1;
    filter: brightness(1);
    transition: all 0.3s ease-in-out;
}

.col:hover {
    scale: 1.06;
    filter: brightness(1.3);
}

input#subscribe {
    padding: 14px 20px;
    border: solid 1px #0dcaf0;
    outline: none;
    background-color: #052A60;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.col-md-8 {
    position: relative;
}

.col-md-8 button {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.bg-icon {
    width: 2.25rem;
    height: 2.25rem;
    cursor: pointer;
    color: #0dcaf0;
    background-color: #1e202b;
    transition: all 0.3s ease-in-out;
}

.bg-icon:hover {
    color: white;
    background-color: #0dcaf0;
}

/* contact */
body {
    background-color: #15509E;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    background-image: url(../images/a95714af-c16d-4926-b389-61d3b0da77e6.png);
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.menu {
    position: relative;
}

.menu a {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: white;
}

.menu a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 8px;
    background-color: #0dcaf0;
    transition: width 300ms ease;
}

.menu a:hover::before {
    width: calc(100% - 16px);
}

.menu .current-menu-item a::before {
    width: calc(100% - 16px);
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.site-header {
    color: white;
    padding: 15px 0;
}

.branding img.logo {
    width: 50px;
    margin-right: 10px;
}

.branding {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.site-footer {
    background-color: #003366;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    margin-right: 10px;
}

.contact-details img {
    width: 25px;
    margin-right: 10px;
}

.map {
    width: 100%;
    height: 250px;
    background-color: #052A60;
    margin-bottom: 20px;
}


.frrom {
    background-color: #052A60;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.frrom::placeholder {
    color: #aaa;
}

.frrom:focus {
    background-color: #052A60;
    border-color: #0dcaf0;
    box-shadow: 0 0 5px #0dcaf0;
    color: #fff;
}