*{
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.container-full {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-flex{display:flex;justify-content:center;align-items:center;flex-direction:column}
.colr-whit{color:#fff}
.fz-14{font-size:14px}
.m-0{margin:0}
.fz-25{font-size:25px}
.fw-300{font-weight:300}
.fw-400{font-weight:400}
.p-30{padding:30px}
.p-10{padding:10px}
.w-full{width:100%}
.txt-c{text-align:center}
.mt-15{margin-top:15px}
.mt-30{margin-top:30px}
.w-half{width:50%}
/* End Component Rules */
/* Start Media Query */
/* Small Screen */
@media (min-width: 768px) {
    .container {
        width: 80%;
    }
}
/* Medium Screen */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
/* Larg Screen */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* End Media Query */
/* ====================================== */
/* Start Weather App */
/* ====================================== */
.weather-app {
    background: linear-gradient(135deg,#6441A5,#2a0845);
}
.container .copr span,
.weather-app .container h1 span {
    color: #FFBE0A;
}
.weather-app .app-box {
    width: 350px;
    height: auto;
    background-color: #fff;
    border: solid 10px #D4D2EA;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all .5s linear ;
    -webkit-transition: all .5s linear ;
    -moz-transition: all .5s linear ;
    -ms-transition: all .5s linear ;
    -o-transition: all .5s linear ;
}
/* Start Search Box */
.weather-app .search-box {
    position: relative;
}
.weather-app .search-box input {
    padding: 10px;
    padding-left: 20px;
    border-radius: 20px;
    border: none;
    background-color: #E8E8F4;
    outline: solid 2px #E8E8F4;
    color: #7878ac;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
}
.weather-app .search-box input:focus{
    outline: solid 2px #D4D2EA;
}
.weather-app .search-box input::placeholder{
    color: #7878ac;
}
.weather-app .search-box button {
    color: #7878ac;
    position: absolute;
    background-color: transparent;
    border: none;
    right: 0;
    top: 10px;
    cursor: pointer;
    margin-right: 10px;
}
.weather-app .search-box p {
    height: 16px;
    margin: 10px auto 0;
    color: red;
}
/* End Search Box */
/* Start Status */
.weather-status {
    display: none;
    justify-content: space-between;
}
.weather-status h2 {
    color: #2b2b6e;
    margin: 30px 0 20px 0;
    font-size: 60px;
}
.weather-status h3 {
    color: #2b2b6e;
}
.weather-status .the-day {
    margin: 20px 0 5px 0;
}
.weather-status h4 {
    color: #7878ac;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}
.weather-status .date {
    color: #7878ac;
}
/* Weather Details */
.weather-status .weather-details {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    flex: auto;
    color: #7878ac;
    margin-top: 30px;
}
.weather-details .col {
    text-align: left;
}
.weather-details .col i {
    font-size: 30px;
    margin-right: 10px;
    color: #F19B9E;
}
.weather-details .col p {
    margin: 10px 0 0 0 ;
}
.weather-details .col p:first-of-type {
    font-size: 18px;
    font-weight: 600;
}
/* Start Media Query */
@media (max-width:767px) {
    .weather-app .app-box {
        width: 300px;
    }
    .weather-app .search-box p {
        font-size: 12px;
    }
    .weather-status img {
        width: 30%;
        margin-top: 5px;
    }
    .weather-status h2 {
        color: #2b2b6e;
        margin: 20px 0 10px 0;
        font-size: 50px;
        font-weight: 400;
    }
    .weather-status .the-day {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .weather-status .weather-details {
        flex: revert;
        margin-top: 20px;
    }
}
/* ====================================== */
/* End Weather App */
/* ====================================== */
