/*
Theme Name: deltamax
Theme URI: 
Author: the WordPress team
Author URI: https://wordpress.org/
Description: 
Version: 3.7
Tested up to: 6.9
Requires at least: 4.4
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, block-patterns
Text Domain: 

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigation
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Widgets
 * 11.0 - Content
 *    11.1 - Header
 *    11.2 - Posts and pages
 *    11.3 - Post Formats
 *    11.4 - Comments
 *    11.5 - Sidebar
 *    11.6 - Footer
 * 12.0 - Media
 *    12.1 - Captions
 *    12.2 - Galleries
 * 13.0 - Multisite
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */


/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

*{
	margin:0;
	padding:0;
}
.main_menu .menu-item a {
    position: relative;
    text-decoration: none;
}

.main_menu .menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* text ke thoda niche */
    width: 0;
    height: 1px;
    background-color: #01304c;
    transition: width 0.3s ease;
}

.main_menu .menu-item a:hover::after {
    width: 70%;
}
.contact_page input::placeholder {
    font-family: "Nunito Sans", Sans-serif;
}
.contact_page textarea::placeholder {
    font-family: "Nunito Sans", Sans-serif;
}

button#wpforms-submit-333 {
    background-color: #01304C;
    font-family: "Nunito Sans", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #01304C;
    border-radius: 6px 6px 6px 6px;
    padding: 12px 30px 13px 30px;
}
button#wpforms-submit-333:hover {
    background:#fff;
    color:#01304C;
}

/* ============================= 404 css =============================== */
.error-page-area {
    text-align: center;
    margin-bottom:50px;
}
.error-bottom h2 {
    font-size: 27px;
    font-weight: 500;
    font-family: "Oxanium", Sans-serif;
    color: #000;
    margin-bottom: 20px;
}
.error-top img {
    border-radius: 5px;
    width: 300px;
}
.error-bottom p {
    font-family: "Nunito Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #636363;
    margin-bottom: 35px;
}

a.default-btn-error {
    font-family: "Nunito Sans", Sans-serif;
    font-weight: 600;
    background-color: transparent;
    background: #01304c;
    border-radius: 5px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 14px 25px 14px 25px;
    color:#fff;
    text-decoration:none;
    border:1px solid #01304c;
}
a.default-btn-error:hover{
    background:#fff;
    color:#01304c;
}
@media only screen and (min-width: 768px) and (max-width: 992px){
    .error-page-area {
        padding: 0 10px;
    }
}