/*
 * Custom css *
 */
.shadows-into-light-two-regular {
		  font-family: "Shadows Into Light Two", cursive;
		  font-weight: 400;
		  font-style: normal;
		}
		.merriweather-regular {
		  font-family: "Merriweather", serif;
		  font-optical-sizing: auto;
		  font-weight: 400;
		  font-style: normal;
		  font-variation-settings:
		    "wdth" 100;
		}

		.raleway-regular {
		  font-family: "Raleway", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 400;
		  font-style: normal;
		}
		.raleway-bold {
		  font-family: "Raleway", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 700;
		  font-style: normal;
		}
		.montserrat-regular {
		  font-family: "Montserrat", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 400;
		  font-style: normal;
		}

		.montserrat-bold {
		  font-family: "Montserrat", sans-serif;
		  font-optical-sizing: auto;
		  font-weight: 700;
		  font-style: normal;
		}

		.fullContainer {width: 100%;}

		.fullContainer .containerInner {
		    width: 1170px;
		    max-width: 100%;
		    margin-right: auto;
		    margin-left: auto;
		}

		.d-flex{display: flex;}
		.justify-center {justify-content: center;}
		.justify-end { justify-content: end;}
		.justify-between { justify-content: space-between;}
		.align-center { align-items: center;}
		.align-items-end { align-items: end;}
		.align-self-center { align-self: center;}
		.align-baseline { align-self: baseline;}
		.align-end {align-self: flex-end;}
		.align-start { align-self: flex-start;}

		.grid-col-three{ display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap:3rem}

		.col-md-2 {
        	width: 16.66666667%;
    	}
		.col-md-4 {
        	width: 33.33333333%;
    	}
	    .col-md-5 {
    	    width: 41.66666667%;
    	}
    	.col-md-6 {
        	width: 50%;
    	}
		.col-md-7 {
        	width: 58.33333333%;
    	}
    	.col-md-10 {
    	    width: 83.33333333%;
	    }
		
		.bg-white{background-color: #fff}
		.bg-black{background-color: #000}
		.dark-color{background-color: rgb(49, 51, 63);}

		.text-white{color: #fff}
		.text-black{color: #000}
		.text-red{color: rgb(238, 8, 8);}
		.text-center{text-align: center;}
		.text-right{text-align: right;}

		.pt-10{padding-top: 10px;}
		.pt-15{padding-top: 15px;}
		.pb-15{padding-bottom: 15px;}
		.pt-20{padding-top: 20px;}
		.pt-25{padding-top: 25px;}
		.pt-30{padding-top: 30px;}
		.pb-30{padding-bottom: 30px;}
		.pt-40{padding-top: 40px;}
		.pb-20{padding-bottom: 20px;}
		.pb-40{padding-bottom: 40px;}

		.pl-40{padding-left: 40px}

		.gap-1 {gap: 10px;}
		.gap-2 {gap: 2rem;}
		.gap-3 {gap: 3rem;}
		.gap-4 {gap: 4rem;}
		.gap-5 {gap: 5rem;}
		.gap-6 {gap: 6rem;}
		.gap-7 {gap: 7rem;}

		.weight-300 {font-weight: 300}
		.weight-600 {font-weight: 600}
		.weight-700 {font-weight: 700}
		.weight-800 {font-weight: 800}

		.text-14{font-size: 14px;}
		.text-16{font-size: 16px;}
		.text-18{font-size: 18px;}
		.text-20{font-size: 20px;}
		.text-22{font-size: 22px;}
		.text-23{font-size: 23px;}
		.text-24{font-size: 24px;}
		.text-30{font-size: 30px;}
		.text-32{font-size: 32px;}
		.text-34{font-size: 34px;}
		.text-36{font-size: 36px;}
		.text-38{font-size: 38px;}
		.text-42{font-size: 42px;}
		.text-48{font-size: 48px;}

		.ln-height-normal{line-height: normal;}

		.text-shadow1{ text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);}

		.m-auto-90{margin: auto; max-width: 90%;}
		.m-auto-80{margin: auto; max-width: 80%;}

		.bottom-green-formbox{
			padding: 20px 20px 30px;
		    margin: 25px 0px 25px;
		    border: 2px solid rgb(100, 168, 102);
		}

		.formbox{
			padding:20px;
			border:3px solid rgb(238, 8, 8);			
    		box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.4);
		}
		.email-field, .nick-email { font-size:24px; border-radius: 5px; font-weight: 700; background: #fff;
		    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
    		border: 1px solid rgba(0, 0, 0, 0.2);
    		width: 100%;
    		padding: 12px 18px;
    		outline: none;
    		appearance: none;
    		margin-top: 5px;
    		margin-bottom: 20px;
		}

		.btn-primary{ 
			width: 100%;
		    color: rgb(255, 255, 255);
		    background: #DB0707;
		    font-size: 30px;cursor: pointer;
			box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
		    border: 1px solid rgba(0, 0, 0, 0.2);
			border-radius: 3px;
			padding: 15px 25px;
		    margin-right: auto;
		    margin-left: auto;
			font-weight: bold;
		    display: inline-block;
		    text-align: center ;
		    text-decoration: none ;
		}
		.btn-primary:hover{ box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.22), 0 233px 233px 0 rgba(255, 255, 255, 0.12) inset; }

		/**/
		header.fullContainer { padding-top:25px; padding-bottom:25px; }
		.header-rt h1{ font-size: 44px;  color: rgb(238, 8, 8);     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); font-weight: 700}
		.header-rt p{ font-style:italic; font-size: 28px; color: rgb(5, 5, 5); }

		.top-white-form{ 
			padding: 25px 40px;
    		margin-left: 30px;
    		border:2px solid rgb(255, 255, 255);
    		border-radius: 6px;
    	}
    	.getlowprice{line-height: 1.1; padding-top: 10px; color: #000}
    	.red-btn-lg{
    		color: rgb(255, 255, 255);
    		background: rgb(219, 7, 7);
    		font-size: 30px;
    		border: 1px solid rgba(0, 0, 0, 0.2);
    		border-radius: 3px;
    		padding: 15px 40px;
    		text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
    		margin-right: auto;
    		margin-left: auto;
    		font-weight: bold;
    		display: inline-block;
    		-ms-transform: all .2s ease-in-out;
		    -webkit-transform: all .2s ease-in-out;
		    transform: all .2s ease-in-out;
		    text-align: center ;
		    text-decoration: none !important;
		    animation: bounce 1.5s infinite;
		    animation-timing-function: ease-in;
		    transition: .2s;
		    line-height: normal;
		}
		@keyframes bounce {
			0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
			40% {transform: translateY(-30px);}
			60% {transform: translateY(-15px);}
		}
		.red-btn-lg span{
			display: block;
    		opacity: 0.7;
    		font-weight: normal;
    		font-size: 20px; 
    	}
    	.top-white-form h2{
    		font-size: 32px;
    		color: rgb(4, 4, 4); 
    		font-style: italic;
		}
		.top-white-form h4{color: rgb(245, 27, 8);
			font-size: 32px;
			font-family: "Shadows Into Light Two", Helvetica, sans-serif !important;
		}
		.valued{font-size: 23px;    color: rgba(201, 1, 1, 0.89); font-weight: 700}
		
		.left-editor h2{font-size: 22px; font-weight: 700}
		.left-editor p{font-size: 23px;}

		.el_media_theme2{
			border: 1px solid rgba(0, 0, 0, 0.095);
    		padding: 5px !important;
    		box-shadow: 0 4px 3px rgba(0, 0, 0, 0.075);
    		background: #fff;
    		max-width: 100%;
		}

		.de-image-block img{max-width: 100%;box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.4);}

		.asseenon img{
			max-width: 100%;
			border: 1px solid rgba(0, 0, 0, 0.095);
    		padding: 5px !important;
    		box-shadow: 0 4px 3px rgba(0, 0, 0, 0.075);
    		background: #fff;
		}

		.why-trade-alone h2{ font-size: 50px; font-weight:700; }
		.why-trade-alone .subhead{font-size: 42px;}
		.why-trade-alone .content{font-size: 32px; line-height: 40px; padding: 15px 0 20px}

		.stoplook{ font-size: 42px; 
			box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.4);
    		color: rgb(255, 255, 255); 
    		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    		margin-top: 40px; margin-bottom: 40px;
    	}

    	.lavels{margin-bottom: 30px;}

    	.small-cap-head{    color: rgb(23, 92, 141);}

    	.five-tech{ line-height: normal;}
    	.five-tech strong{color: rgb(0, 117, 178); }

    	.divider{border-top:1px solid #333; width: 96%; margin-top: 8px; margin-bottom: 6px; margin-right: 3%; margin-left: 3%;}
    	.divider-blue{border-top:3px solid rgb(1, 116, 199); width: 80%; margin-top: 8px; margin-bottom: 6px; margin-right: 10%; margin-left: 10%;}
    	.divider-green{border-top:5px solid rgb(34, 213, 103); width: 80%; margin-top: 15px; margin-bottom: 15px; margin-right: 10%; margin-left: 10%;}
		.divider-green:after, .divider-green:blue {
		    clear: both;
		    content: ".";
		    display: block;
		    height: 0;
		    visibility: hidden;
		}

		.botformHead{  color: rgba(201, 1, 1, 0.89);text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); line-height: normal;}


		/*  */
		.welcome-subhead{ max-width: 72%; margin: auto; font-weight: 300; padding-top: 15px}
		.high-flying-border{ border-top:1px solid #fff; border-bottom:1px solid #fff; padding-top:30px; padding-bottom:30px; }
		.bottom-thankyou h2{ font-size:66px;    line-height: 1.3em; }

		.final-thanku-top{background-repeat: no-repeat !important; background-image:url(../images/wbgtxltd.jpg); background-size: cover;}
		.final-thanku-top h1{ text-align: center; font-size: 50px; line-height: 1.3em;}

		.final-thanku-bottom{background-image:url(../images/background-texture-black.jpg);
			background-color: rgb(0, 0, 0);
			background-size: cover ;
    		-webkit-background-size: cover ;
    		background-attachment: fixed ;
    		background-repeat: repeat repeat ;
    		background-position: center center;

    	}

    .final-thanku-bottom h2{line-height: 1.5em; max-width: 80%; margin: auto;font-family: "Montserrat", sans-serif; }
    .final-thanku-bottom p{color: rgb(216, 216, 216); font-size: 20px; padding-bottom: 30px;max-width: 90%; margin: auto; font-weight: 300;font-family: "Montserrat", sans-serif; }

    #sendForm input#mN {
	    width: 84%;
	    padding: 15px;
	    border: 0px solid transparent;
	    border-radius: 10px;
	    background-color: rgb(230, 230, 230);
	    margin-right: 20px;
	}
	#sendForm #submitButton {
	    border: 0px solid transparent;
	    color: white;
	    padding: 15px 40px;
	    border-radius: 10px;
	    background-color: #c21d1d;
	    cursor: pointer;
	}
	.check-list{list-style: none;}
	.check-list, .check-list li{ margin-left: 0; padding-left: 0; padding-bottom: 5px;}
	.check-list li i{color: rgb(238, 8, 8); font-weight: 900; margin-right: 15px; font-size: 24px;}

	.page-template-default{ padding-bottom: 40px;}
	.page-template-default h1{ font-size: 32px; padding: 40px 20px; font-weight: 700; text-align: center;}
	.page-template-default h2{font-size: 26px; margin-top: 10px; font-weight: 700}
	.page-template-default h3{font-size: 22px; margin-top: 10px; font-weight: 700}
	.page-template-default .entry-content p{margin-top: 15px;}

    footer.fullContainer a{ color:#fff; text-decoration:none; }
    footer.fullContainer a:hover{ text-decoration:underline; }

  /*font awesome */

	.fa, .far, .fas {font-family: "Font Awesome 5 Free";}
	.fa-fw {text-align: center; width: 1.25em;}
	.fa, .fas {font-weight: 900;}
    .fa, .fab, .fal, .far, .fas {
	    -moz-osx-font-smoothing: grayscale;
	    -webkit-font-smoothing: antialiased;
	    display: inline-block;
	    font-style: normal;
	    font-variant: normal;
	    text-rendering: auto;
	    line-height: 1;
	}
	.fa-check:before {content: "\f00c";}


 .general-error {
            color: #f44336;
            text-align: center;
            display: none;
        }
        
.email-field.valid {
            border-color: #4CAF50;
        }
        
        .email-field.error {
            border-color: #f44336;
        }
        
        .consent-container {
            margin: 0 0 5px 0;
        }
        
        .consent-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
   .consent-checkbox input[type="checkbox"] {
  margin-top: 0;
  transform: initial;
  border: 1px solid #686868;
  outline: none !important;
  width: 22px;
  height: 22px;
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type="checkbox"]::after {
    left: 7px;
  }
}
        
     .consent-label {
  font-size: 14px !important;
  line-height: 1.4;
  color: #333;
  cursor: pointer;
  text-align: left;
		 padding-left: 0 !important;
}
        
        .consent-label a {
            color: #DB0707;
            text-decoration: none;
        }
        
        .consent-label a:hover {
            text-decoration: underline;
        }
        
        .captcha-container {
            margin: 15px 0;
            display: flex;
            justify-content: center;
        }

 .submit-button:not(:disabled) {
            background: #DB0707;
        }
        
        .submit-button:not(:disabled):hover {
            background: #b00606;
        }
        
        .submit-button:disabled {
            cursor: not-allowed;
        }
        
        .error-message {
            color: #f44336;
            font-size: 14px;
            margin-bottom: 10px;
            display: none;
        }
        
        .loading {
            text-align: center;
            color: #666;
            display: none;
        }
        
        .success-message {
            color: #4CAF50;
            text-align: center;
            display: none;
        }
        
        .honeypot {
            position: absolute !important;
            left: -9999px !important;
            top: -9999px !important;
            width: 1px !important;
            height: 1px !important;
            opacity: 0 !important;
            pointer-events: none !important;
            tab-index: -1 !important;
        }


.container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}

.heasder-top-un{display:none;}
.archive .heasder-top-un, .single-post .heasder-top-un{display:block;}

.heasder-top-un {
  display: none;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-top: 5px;
  padding-bottom: 10px;
}

.archive .page-header .page-title {
  font-weight: 600;
  font-size: 50px;
  padding: 0;
  margin-bottom: 0;
	color:#fff;
}

.archive .page-header {
  padding-bottom: 0;
  border: none;
  margin-bottom: 50px;
  margin-top: 40px;
}

.card2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card2 .entry-title a {
  color: #fff;
}
.card2 .entry-excerpt {
  color: #fff;
}
.card2 .card-container {
  flex-wrap: wrap;
}
.card2 .card-container .card-image {
  width: 100%;
}
.navigation.pagination {
  padding: 0;
  border: none;
  margin: 25px 0;
}

.page-numbers {
  background: #e6e6e6;
  display: inline-block;
  padding: 5px 10px 1px 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 6px;
  line-height: 33px;
}

.page-numbers.current {
  background: #ee1923;
  color: #fff !important;
  text-decoration: none !important;
}

#comments{display:none;}

.single-post .entry-header.alignwide {
  margin-top: 30px;
	text-align: center;
}
.single-post .entry-title {
  text-transform: capitalize;
  font-weight: 600;
  text-align: center;
  font-size: 36px;
  line-height: 44px;
}
.single-post .entry-header .wp-post-image {
  margin-top: 20px;
  border-radius: 10px;
  height: auto !important;
}

.single-post .published-date {
  font-size: 16px;
  opacity: 0.7;
}


.single-post .entry-content {
  padding: 0;
}
.single-post .entry-content * {
  margin: 15px 0;
}

.single-post .entry-content h3, .single-post .entry-content h2, .single-post .entry-content h4 {
  font-weight: 700;
  line-height: 1.4;
}

.single-post .entry-footer{display:none;}
.navigation.post-navigation {
  max-width: 1240px;
}
.navigation.post-navigation .nav-previous, .navigation.post-navigation .nav-next {
  background: #fbfbfb;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #000;
    border-top-width: 1px;
  border-top-width: 3px;
}
.navigation.post-navigation .meta-nav {
  font-size: 14px;
}
.navigation.post-navigation .post-title {
  font-size: 20px;
  padding-bottom: 10px;
}

.singular .has-post-thumbnail .entry-header{padding-bottom:0 !important; margin-bottom:0;}
.card2 .card-container .card-image{height:auto;}
.card2 .card-container .card-image img {
  height: auto !important;
}

body.archive, body.single-post {
  background: rgb(49, 51, 63);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 30px;
}

.sidebar .top-white-form.bg-white h2, .sidebar .top-white-form.bg-white .red-btn-lg, .sidebar .top-white-form.bg-white .divider, .sidebar .top-white-form.bg-white .text-20, .sidebar .top-white-form.bg-white .text-36, .sidebar .top-white-form.bg-white h4, .sidebar .top-white-form.bg-white .divider-blue {
  display: none;
}
.sidebar .top-white-form.bg-white {
  margin: 0;
  padding: 15px;
  text-align: center;
	background:yellow;
}

.grid-2-s {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 30px;
}
 .single-post .heasder-top-un {
 
  margin-bottom: 50px;
}

.grid-2-s article {
  background: #494b57;
  padding: 25px;
  border-radius: 15px;
  color: #fff;
}
.blog-grid{margin-bottom:50px;}

	/* Responsive */

@media(max-width: 1024px){
	.fullContainer {
	    width: 100%;
	    padding-left: 15px;
	    padding-right: 15px;
	}
	.header-rt h1{font-size: 38px;}
	.top-white-form{ padding: 20px 15px;}
	.lavels h3{ font-size: 30px;}
	.small-cap-head{line-height: normal;}

	#sendForm input#mN {width: 80%;}
	.topsec-alert h1, .topsec-alert h2{line-height: normal;}
	.card2 {grid-template-columns: repeat(1, 1fr);}
	.blog-grid {
  grid-template-columns: 1fr 40%;
}
	.navigation.post-navigation {

  padding: 0 15px;
}
	
	.grid-2-s {
  grid-template-columns: 1fr 40%;

}
	
}
@media(max-width:820px){
	header.fullContainer .d-flex, .editor-sec, .trade-alone-2, .trade-alone-3, .lavels-flex, .five-tech-flex, .bottom-green-formbox .d-flex{ flex-direction:column; text-align:center; }
	.col-md-2,  .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-10{
		width: 100%;
	}
	.top-white-form{margin-left: 0}
	.bx-premarket .text-22, .bx-surges .text-22, .bx-newhigh .text-22{font-size: 26px;}
	.five-tech{text-align: left;}
	header.fullContainer .d-flex, .editor-sec{gap:2rem}

	.first-stock-sec{ padding-top:20px; }
	.welcome-subhead{ font-size:30px; }
	#sendForm input#mN {
        width: 76%;
    }
    .final-thanku-top .d-flex{ flex-direction:column; text-align:center; gap:2rem; padding-bottom:20px; }
    .final-thanku-top h4{ font-size:28px; }

}
@media(max-width:767px){
	.blog-grid {
  grid-template-columns: 1fr;
}
	 .card2 {
    grid-template-columns: repeat(2, 1fr);
  }
	.grid-2-s {
  grid-template-columns: 1fr;
}
}

@media(max-width:600px){
	.why-trade-alone h2, .why-trade-alone .subhead, .stoplook{ line-height:normal; }
	.why-trade-alone .subhead{padding-top: 15px;}
	.stoplook{padding: 5px 2px;}
	.trade-alone-3 + h3, .five-tech-flex h3{line-height: normal;}
	.lavels-flex{gap:2rem}
	.small-cap-head h2{font-size: 44px;}
	.bottom-green-formbox .pl-40{padding-left: 0}
	footer.fullContainer .text-right{text-align: center;}
	footer.fullContainer .justify-end {justify-content: center; padding-bottom: 20px;}

	.welcome-flex{ flex-direction:column; text-align:center; gap: 1rem; padding-top: 30px;}
	.welcome-subhead{ max-width:100% }
	.cell-head{ line-height: normal; font-size: 28px;}
	 #sendForm input#mN { width: 100%;}
	 #sendForm #submitButton{width: 100%; margin-top: 10px;}

	 .final-thanku-bottom h2{max-width: 100%}
	.single-post .entry-title {
  font-size: 30px;
  line-height: 40px;
}
	.single-post .entry-content {
  padding: 0;
}
	.archive .page-header .page-title {
  font-size: 40px;
}
}
@media(max-width:480px){
	.final-thanku-top h1{font-size: 38px;}
	.card2 {grid-template-columns: repeat(1, 1fr);}
}