/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 5.9
Requires PHP: 5.6
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone-child
Template: twentytwentyone 
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/
.post-password-form{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.post-password-message{
	text-align: center;
}

.post-password-form input[type=password]{
    width:20%;
    border:2px solid #aaa;
    border-radius:4px;
    margin:8px 0;
    outline:none;
    padding:8px;
    box-sizing:border-box;
    transition:.3s;
  }
  
.post-password-form input[type=password]:focus{
    border-color:dodgerBlue;
    box-shadow:0 0 8px 0 dodgerBlue;
  }

.post-password-form .post-password-form__submit {
  box-sizing: border-box;
  appearance: none;
  background-color: transparent;
  border: 2px solid red;
  border-radius: 0.6em;
  color: red;
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin: 20px;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;

  &:hover,
  &:focus {
    color: hsla(11,100%,62.2%,1);
    outline: 0;
  }
}
.page-id-6300 header.entry-header, .page-id-6295 header.entry-header {
    text-align:center;
}


/* New home page css */
.page-template-home-3-template .wd-sec-wexpert { margin-top: 0; background: #fff; }
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}

.logo-marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.logo-item {
    margin: 0 12px;
    color: #fff;
    padding: 32px;
    border-radius: 19px;
    border: 1.54px solid #1c1b1c;
    background: 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-item img {
  max-height: 60px;
  width: auto;
  display: block;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.ai-section {
    background: linear-gradient(135deg, #fff7f5, #ffffff);
    padding: 80px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.ai-section .ai-title {
    color: #000;
}

.ai-section .ai-content p {
    color: #000;
}
.col-50.wd-wexpert2.sp-100 {
    display: flex;
    align-items: center;
}
.bt-btn {
    position: relative;
    line-height: 1;
    padding: 12px 20px;
    background-color: #fff;
    color: var(--white);
    text-align: center;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    z-index: 11;
    transition: 0.5s all;
    overflow: hidden;
    font-weight: 400;
    border: solid 1px transparent;
    font-size: 17px;
    letter-spacing: 0.1px;
    border-radius: 7px;
}

/* Border Effect */
.bt-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: conic-gradient(
        from 0deg,
        #ff4d4d,
        #ff8080,
        #ff4d4d
    );
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
}

/* Inside background so text is readable */
.bt-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--regular);
    border-radius: inherit;
    z-index: -1;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width:992px){
    .ai-section {
        padding: 50px 0;
    }
}

@media (max-width:767px){
    .ai-section {
        padding: 40px 0;
    }
}