/*!
Theme Name: Resume
Theme URI: http://underscores.me/
Author: Naveed Anjum
Author URI: http://webwidemedia.net
Description: A custom theme developed from scratch
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: wwm
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.

WWM 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/
*/


/* =========== variables =========== */
:root {
  --color-white : #ffffff;
  --color-black : #191919;
  --color-gray : #666666;
  --color-blue : #2767c5;
  --color-orange : #fc9f13;
  --color-bg-hover :#f7f7f7;
  --border-color: #ededed;
  --html-font-size: 0.875rem;
  --font-size: 1rem;
  --h1-font-size : 1.5rem;
  --h2-font-size : 1.25rem;
  --h3-font-size : 1.125rem;
  --h4-font-size : 1rem;
  --font-family : 'Open Sans', Helvetica, Arial, sans-serif;
  --font-family-icon : 'icon';
  --border-radius: 0.375rem;
  --border-width: 1px;
  --btn-border-color: var(--color-orange);
  --border: var(--border-width) solid var(--border-color);
  --btn-border: var(--border-width) solid var(--btn-border-color);
  --border-top: var(--border-width) solid var(--border-color);
}
/* =========== variables =========== */


html {
  font-size: var(--html-font-size);
}


body {
  font-weight: 400;
  font-size: var(--font-size);
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  text-rendering: optimizelegibility;
  background-color: #F0F2F5;
}

/* =========== Colors =========== */
.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

.color-gray {
 color: var(--color-gray);
}

.color-orange {
  color: var(--orange);
}

.color-blue {
  color: var(--color-blue);
}
/* =========== Colors =========== */



/* =========== Headings =========== */
h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}
h4 {
  font-size: var(--h4-font-size);
}
/* =========== Headings =========== */


/* =========== Container =========== */
.container {
  max-width: 991px;
}

.container-fluid{
  max-width: 100%;
}
/* =========== Container =========== */


/* =========== Navbar =========== */
.nav-link {
  font-size: var(--font-size);
}

.nav-link i {
  margin-right: 5px;
}

.nav-item {
  padding: 0 12px;
}

.nav-item .active {
  color : var(--color-orange) !important;
}

/* =========== Navbar =========== */



/* =========== Search =========== */
.search{
  position: relative;
}
.search .form-control {
  height: 45px;
  font-size: 1.25rem;
  padding-left: 45px;
  border-radius: var(--border-radius);
  border: var(--border);
}

.search .icon-search:before {
  position: absolute;
  top: 15px;
  left: 20px;
}
/* =========== Search =========== */


.user-registration .form-control {
  height: 35px;
  font-size: 1rem;
  padding-left: 10px;
  border-radius: var(--border-radius);
  border: var(--border);
}



.link{
  text-decoration: none; 
}

.link h2:hover{
  color: var(--color-orange);
}

.main-content{
  margin-top: 75px;
}

.bg-white {
  background-color: var(--color-white);
}

.bb-1 {
  border-bottom: var(--border);
}

.icon {
  font-size: 16px;
  z-index: 99;
}

.box {
  padding: 20px;
  border-radius: var(--border-radius);
  border: var(--border);
}

.main-box{
  border-radius: var(--border-radius);
  border: var(--border);
}

.box-header {
  padding: 20px 20px 0 20px;
}

.user-registration {
  padding: 20px;
}

.person {
  padding: 20px;
}

.person:hover {
  background-color: var(--color-bg-hover);
}

.alert-orange {
  color: var(--color-white);
  background-color: var(--color-orange);
}

.hr {
  border-top: var(--border-top);
}

.user-data{
/*  display: flex;*/
/*  margin: 20px 0;*/
}

.single .info {
  padding-left: 10px;
}

.info-list {
  color: var(--color-gray);
  text-align: center;
}

.info-list i {
  margin-right: 10px;
  color: var(--color-orange);
  font-size: 16px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.person .info-list:first-child {
  margin-right: 20px;
}

.user-data img {
  width: 100%;
  border-radius: var(--border-radius);
}

.person .row {
  align-items: center;
}

.tags a {
  color: var(--color-blue);
  display: block;
  line-height: 2.5;
  text-decoration: none;
}

.copyright {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tags {
  position: sticky;
  top: 77px;
}

.pagination {
  justify-content: center;
}

.btn {
  color: var(--color-orange);
  border: var(--btn-border);
  border-radius: 20px;
  padding: 5px 20px;
  margin-top: 5px;
  font-size: var(--html-font-size);
}

.btn:hover {
  color: var(--color-white);
  background-color: var(--color-orange);
}

.info-title {
  width: 100px;
  display: inline-block;
  text-align: left;
}

.info-separator {
  display: inline-block;
  margin: 0 10px;
}

.personal-info .info-row {
  margin: 13px 0;
}




/* =========== @media =========== */

@media screen and (max-width: 550px) {
  .navbar-nav {
    margin-top: 20px;
  }
  .tags{
    margin-top: 20px;
  }
  .info-row {
    flex-direction: column;
  }
  .user-data img {
    margin-bottom: 20px;
  }
}
/* =========== @media =========== */