/*
Theme Name: GC Build
Theme URI: http://underscores.me/
Author: Goal Conversion LLC
Author URI: https://goalconversion.com/
Description: Custom WordPress Theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gc-build
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

GC Build is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}


/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
.alignnone {
    margin: 5px 0 20px 0;
}
.alignnone, .aligncenter, .alignright, .alignleft {
    max-width: 100%;
    height: auto;
}
img:is([sizes=auto i],[sizes^="auto," i]) {
    contain-intrinsic-size: 3000px 1500px;
}
.hentry img {
    border-radius: 2px;
}
img {
    vertical-align: middle;
}

.wpcf7-select,
.wpcf7-text,
.wpcf7-number,
.wpcf7-date,
.wpcf7-textarea {
  background: #f2f2f2;
  border-radius: 2px;
  border: 1px solid #dddddd;
  box-shadow: none;
  width: 100%;
  padding: 17px !important;
  margin-bottom: 15px;
}
.wpcf7-select:focus,
.wpcf7-text:focus,
.wpcf7-number:focus,
.wpcf7-date:focus,
.wpcf7-textarea:focus {
  border-color: #dddddd;
  background: #ffffff;
}

.wpcf7-textarea {
  height: 220px;
}

.wpcf7-submit {
  float: right;
  margin-bottom: 15px;
}

.wpcf7 .wpcf7-response-output {
  margin: 5px 0;
  padding: 10px 20px;
  border-radius: 2px;
}
.wpcf7 .wpcf7-validation-errors {
  background-color: #faf8d2;
  border: 2px solid #faf8d2;
  color: #b9b015;
}
.wpcf7 .wpcf7-mail-sent-ng {
  background-color: #ffe5e5;
  border: 2px solid #ffe5e5;
  color: #e50000;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background-color: #dcf2dc;
  border: 2px solid #dcf2dc;
  color: #389738;
}
.wpcf7 .wpcf7-not-valid-tip {
  margin: 0 0 5px 0;
}
.wpcf7-form p{
	margin-bottom: 0 !important;
}

.header-btn .btn::after {
	display: none;
}


.certification-list ul {
    gap: 10px;
}

.certification-list li {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    padding: 4px;
}
.footer-widget .certification-list li {
	border: none;
    padding: 0;
}