/*------------------------------------------------------------------
[Table of contents]

1.  Global
2.  Header
3.  Archive (Category and tag page)
4.  Blog Page (Single)
5.  Gravity Forms

-------------------------------------------------------------------*/

/******************* 
1.  Global
*******************/

a:hover {
    color: #00bd5f;
}

.tdc-lowercase {
    text-transform: lowercase;
}

/******************* 
2.  Header
*******************/

.logo a {
    text-transform: none;
    font-family: Consolas;
}

.welcome-image-area {
    background: url('/wp-content/uploads/2019/07/DSC_0725.jpg');
    background-size: cover;
}

img.tdc-thumbnail-img {
    max-height: 500px;
}

/******************* 
3.  Archive (Category and tag page)
*******************/

.tdc-archive-title {
    color: #FFF;
    font-size: 2em;
    display: block;
    padding-top: 20px;
    padding-left: 30px;
}

.tdc-indent {
    margin-left: 10px;
    display: inline-block;
}

.tdc-comment {
    font-weight: 200;
    margin: 15px 0 20px 0;
    display: block;
}

/******************* 
4.  Blog Page (Single)
*******************/

.tdc-blog-content p {
    margin: 10px 0;
}

.tdc-blog-content ul {
    padding-inline-start: 40px;
}

.tdc-blog-content li {
    list-style: initial;
    padding: 2.5px 5px;
}

/******************* 
5.  Gravity Forms 
*******************/

/* Removes the field labels */

label.gfield_label {
    display: none !important;
}

/* Contact form message box */
.gform_wrapper .form-group textarea {
    resize:both ;
}

/* Contact form button */
input#gform_submit_button_1 {
    display: inline-block;
    color: #fff;
    background: none;
    padding: 15px 25px;
    border: 1px solid #333;
    font-size: 14px;
    border-radius: 0px;
    font-weight: 300;
    -webkit-transition: .3s;
    transition: .3s;
    background: #232323;
    text-transform: capitalize;
    border-radius: 30px;
}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait */

@media only screen and (min-width: 320px) and (max-width: 768px) and (orientation: portrait) {
    .welcome-image-area {
        background-position: 35% 0;
    }
    .tdc-archive-title {
        font-size: 4vw;
    }
    .blog-page-design-area {
        padding-top: 100px;
        padding-bottom: 70px;
    }
}