/* Theme Default CSS */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');

html {
    scroll-behavior: smooth;
}

/* Global Styles */
body {
    font-family: 'Lato', sans-serif;
    color: #333;
}

hr {
    border-bottom: 1px solid #eceff8;
    margin: 30px 0;
}

label {
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

::selection {
    background: #d6b161;
    color: #fff;
}

/* Theme Overlay */
.theme-overlay {
    position: relative;
}

.theme-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 114, 215, 0.6);
}

/* Buttons */
.hybtn {
    display: inline-block;
    padding: 13px 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    background: #4272d7;
    border: 2px solid #4272d7;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hybtn:hover {
    background: transparent;
    color: #4272d7;
}

.hybtn-lg {
    padding: 10px 25px;
}

.hybtn-xl {
    font-weight: 700;
    padding: 13px 31px;
}

/* Input Fields */
input:focus, button:focus {
    outline: none;
    box-shadow: none;
}

/* Header */
.header-area {
    border-top: 5px solid #4272d7;
}

.header-area.sticky {
    position: fixed;
    width: 100%;
    z-index: 9;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
}

.main-menu li {
    display: inline-block;
    margin-left: 20px;
}

.main-menu li a {
    display: block;
    padding: 0 10px;
    color: #333;
    transition: color 0.3s ease;
}

.main-menu li a:hover,
.main-menu li.active a {
    color: #4272d7;
}

/* Slider */
.single-slider {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ccc;
    text-align: center;
}

.slider-inner h1 {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.slider-inner h3 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Hire Us Section */
.hire-us-area {
    padding: 30px 0;
    text-align: center;
}

.hire-us-button {
    padding: 15px 40px;
    border-color: #fff;
    background: transparent;
    color: #fff;
    transition: background 0.3s ease;
}

.hire-us-button:hover {
    background: #333;
}

/* Icon Boxes */
.single-icon-box {
    height: 280px;
    background: #cccc;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.icon-box-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(66, 114, 215, 0.9);
    color: #fff;
    padding: 20px;
    transition: transform 0.3s ease;
    transform: translateY(100%);
}

.single-icon-box:hover .icon-box-content {
    transform: translateY(0);
}

/* Projects Section */
.single-project {
    height: 225px;
    background: #cccc;
    position: relative;
}

.single-project:hover .project-inner:after {
    transform: scaleY(1);
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #4272d7;
}

