body {
    line-height: 1.9;
    font-family: century-gothic, sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}
/********* Start Navbar *********/
.header {
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

.header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/wave-lg.svg);
    background-repeat: no-repeat;
    background-position: top center ;
}

.navbar a {
    color:#fff;
}

.navbar .nav-item {
    margin-left: 2rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.navbar .nav-link:hover,
.navbar .home {
    border-bottom: 1px solid #fff;
}

.header .header-info {padding: 4rem 4rem 0 0;}

.header .header-info p {color: #455a64;}

.header .mobile-app .btn {
    border-radius: 20px;
}
/********* End Header *********/ 


/********* Start Display Temp *********/ 
.display-temp .search {width: 32%;}

.display-temp #search-bar {
    padding: 5px 15px;
    border: 1px solid #3199ab;
    border-radius: 20px;
}

.display-temp .temp-card {
    width: 32%;
    border-radius: 8px;
}

.display-temp .temp-card:first-of-type {
    background-color: #3199ab;
}
.display-temp .temp-card:first-of-type h2 {
    font-size: 50px;
    font-weight: 600;
}

.display-temp .temp-card:first-of-type .day-and-date {
    background-color: #374850;
}

.display-temp .temp-card:nth-of-type(2) {
    margin-left: 2%;
    margin-right: 2%;
}

.display-temp .temp-card:nth-of-type(2), 
.display-temp .temp-card:nth-of-type(3) {
    background-color: #83bbc4;
    transition: all 0.3s;
}

.display-temp .temp-card:nth-of-type(2):hover,
.display-temp .temp-card:nth-of-type(3):hover {background-color: #3199ab;}

.display-temp .temp-card .day-and-date {
    background-color: #455a64;
    color: #bfc1c8;
    padding: 10px 25px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.display-temp .temp-card .day-and-date p {margin: 0 !important;}

.display-temp .temp-card #location {
    font-size: 22px;
    text-shadow: 0 0 1px #fff,  0 0 1px #fff
}

.display-temp .temp-card .temp-datails {
    padding: 25px;
    color: #fff;
}

.display-temp .temp-card .temp-datails #today-description,
.display-temp .temp-card .temp-datails .nextDay-description {
    font-size: 14px;
    color: #455a64;
    text-shadow: 0 0 1px #455a64,  0 0 1px #455a64;
}
/********* End Display Temp *********/ 


/********* Start Download Mobile App *********/ 
.download-app p {color: #455a64;}

.download-app .btn {
    border-radius: 25px;
    padding: 10px 15px !important;
}
/********* End Download Mobile App *********/ 


/********* Start Subscribe *********/ 
.subscribe .subscribe-info {width: 65%;}

.subscribe .subscribe-img {width: 35%;}

.subscribe .subscribe-info p {color: #455a64;}

.subscribe .subscribe-info input {
    padding: 5px 15px;
    border: 1px solid #3199ab;
    border-radius: 20px;
}

.subscribe .subscribe-info .btn,
#closeBtn {
    margin-left: 0.5rem;
    border-radius: 25px;
    padding: 10px 15px !important;
}

#submit-lighBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #455a6448;
    display: none;
    justify-content: center;
    align-items: center;
}

#submit-lighBox .lighBox-content{
    width: 410px;
    height: 410px;
    padding: 20px;
    border-radius: 7px;
    background-color: #fff;
}

#submit-lighBox .lightBox-info {color: #455a64;}
/********* End Subscribe *********/ 


/********* Start Footer *********/ 
footer {
    background-color: #374850;
    padding: 10px 0;
}

footer i {
    margin-right: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

footer i:hover {color: #37aec3;}
/********* End Footer *********/ 


/********* Start To Top Arrow *********/
.to-top-arrow {
    position: fixed;
    right: 10px;
    bottom: 20px;
    background: #37aec3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/********* End To Top Arrow *********/


/********* Start Global *********/
.main-color {color: #37aec3}

input:focus-visible {outline: none;}

.btn {transition: all 0.3s;}

.btn:hover {
    color: #37aec3;
    background-color: #fff;
    border: 1px solid #37aec3;
}
/********* End Global *********/