@charset "utf-8";

@font-face {
    font-family: "UbuntuC";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/UbuntuC.woff") format("woff");
}

/* Icons Font */
@font-face {
    font-family: "FontAwesomeBrands";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Font-Awesome-Brands.woff") format("woff");
}
@font-face {
    font-family: "FontAwesomeRegular";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Font-Awesome-Regular.woff") format("woff");
}
@font-face {
    font-family: "FontAwesomeSolid";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Font-Awesome-Solid.woff") format("woff");
}
/* END Icons Font */

body, html {
    margin: 0 auto;
    padding: 0;
    font-family: UbuntuC!important;
}
.innerBlock{
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 0;
}
ol, ul {
    list-style: none;
    margin: 0;
}
a img, :link img, :visited img {
    border: 0;
}
a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fdb302;
}
a:hover {
    color: #000;
    text-decoration: none;
}
p {
    margin-bottom: 14px;
}
body {
    max-width: 1920px;
    height:100%;
    font-family: UbuntuC;
    font-size: 18px;
    color: #000;
}
html {
    height:100%;
    width:100%;
}
.hero {
    display: block;
    width: 100%;
    height: 100vh;
    float: left;
    background-image: url(../images/hero.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.logoCont {
    width: 100%;
    display: flex;
    justify-content: center;
}
.logo {
    width: 30%;
    float: left;
    text-align: center;
    border-bottom: 1px solid #000;
    padding: 20px 0 10px;
}
.logo img {
    width: 100%;
}
.title {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 40px;
}
.menuInt {
    display: flex;
    justify-content: center;
}
.menuInt a {
    margin-right: 15px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    transition: all .3s ease;
    text-decoration: none;
}
.menu {
    display: flex;
    width: 40%;
    justify-content: space-around;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menu a {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    transition: all .3s ease;
}
.menu a:hover, .menuInt a:hover {
    filter: drop-shadow(3px 3px 0 #fdb302);
    transition: all .3s ease;
}
.appIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    width: 10%;
    padding: 20px;
    transition: all .3s ease;
}
.appIcon:hover {
    filter: drop-shadow(3px 3px 0 #fdb302);
    transition: all .3s ease;
}
.appIcon a {
    color: #000;
}
.appIcon img {
    width: 100%;
    opacity: 0;
    animation: rollIcon .3s ease-out .3s forwards;
}
@keyframes rollIcon {
    from {
        opacity: 0;
        rotate: -127deg;
        transform: scale(.1);
      }
      to {
        left: 50%;
        opacity: 1;
        rotate: 0deg;
    }
}
.appText {
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    animation: rising .3s ease-out .4s forwards;
    transition: all .3s ease;
}
@keyframes rising {
    from {
        opacity: 0;
        transform: scale(.1);
    }
    to {
        opacity: 1;
    }
}
.weather {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    float: left;
}
.weatherImg, .weatherInfo {
    padding: 100px 50px;
}
.weatherImg {
    text-align: center;
    width: 25%;
}
.weatherImg img {
    border-radius: 50%;
    border: 10px solid #fff;
}
.weatherInfo {
    width: 60%;
}
.weatherText {
    text-align: justify;
    text-justify: inter-word;
    font-size: 20px;
}
.buttonsCont {
    width: 100%;
    float: left;
}
.liveWeather, .fourteen {
    display: block;
    width: 50%;
    float: left;
    text-align: center;
}
.fourteen .buttonBlock {
    max-width: 200px;
}
.button {
    max-width: 100px;
    padding: 10px 20px;
}
.buttonBlock {
    text-align: center;
    margin: 40px auto 0;
    max-width: 140px;
    position: relative;
}
.buttonBlock a {
    background-color: #000;
    color: #fdb302;
    font-size: 20px;
}
.blinkDot {
  width: 5px;
  height: 5px;
  background-color: red;
  border-radius: 10px;
  animation-name: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 90%;
  transform: translate(-50%, 0);
  z-index: 10;
}
@keyframes blink {
  50% {opacity: 0;}
}
.buttonBlock a:hover {
    filter: drop-shadow(3px 3px 0 #fdb302);
}
.footer {
    display: block;
    width: 100%;
    height: 40px;
    float: left;
    background-color: #f1f1f1;
}
.copyright {
    width: 29%;
    float: left;
    text-align: center;
    padding: 10px 0;
}
.contact {
    width: 70%;
    float: right;
    text-align: right;
    padding: 10px 0;
}
.contact ul {
    margin-left: -30px;
}
.contact li {
    float: left;
    margin-right: 20px;
}
.contact li:last-child {
    margin-right: 0;
}
.contact li i {
    font-family: FontAwesomeSolid;
    font-size: 14px;
    color: #000;
    margin-right: 5px;
}
.fullText {
    padding: 50px 100px;
}
.fullText h3 {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    font-size: 20px;
}
.accordion-flush h2 button {
    font-size: 22px;
    font-weight: bold;
    color: #fdb302;
}
.accordion-body {
    font-size: 18px;
}



@media (max-width: 480px) {
    .liveWeather,
    .fourteen {
        width: 100%;
    }

    .weatherImg {
        width: 100%;
    }

    .weatherImg,
    .weatherInfo {
        padding: 50px 20px;
    }

    .weatherInfo {
        width: 100%;
    }

    .appIcon {
        width: 50%;
        text-align: center;
    }

    .appIcon img {
        width: 60%;
    }

    .menu {
        width: 90%;
    }

    .menu a {
        font-size: 16px;
    }

    .footer {
        height: auto;
    }

    .copyright,
    .contact {
        width: 100% !important;
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 800px) {
    .liveWeather,
        .fourteen {
            width: 100%;
        }
    
        .weatherImg {
            width: 100%;
        }
    
        .weatherImg,
        .weatherInfo {
            padding: 50px 20px;
        }
    
        .weatherInfo {
            width: 100%;
        }
    
        .appIcon {
            width: 50%;
            text-align: center;
        }
    
        .appIcon img {
            width: 60%;
        }
    
        .menu {
            width: 90%;
        }
    
        .menu a {
            font-size: 16px;
        }
    
        .footer {
            height: auto;
        }
    
        .copyright,
        .contact {
            width: 100% !important;
            font-size: 14px;
        }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .weatherInfo {
        width: 50%;
    }
    .footer {
        font-size: 16px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .weatherInfo {
            width: 50%;
        }
}