/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  cursor: default;
  color: #444444;
  overflow-x: hidden;
}
p {
  text-align: justify;
}
ul {
  text-align: justify;
}
li {
  text-align: justify;
}
a {
  color: #ed502e;
  text-decoration: none;
}
a:hover {
  color: #f1775d;
  text-decoration: none;
}
h1,
h2,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ed502e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #f06f54;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  margin: 0;
  padding: 0;
}
#header .logo img {
  max-height: 70px;
}
@media only screen and (max-width: 1024px) {
  #header .logo img {
    max-height: 70px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ed502e;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  background: #ed502e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  width: min-content;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #ed502e;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ed502e;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #ed502e;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/mygirl.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
#hero .container h1 {
  font-family: cursive;
  font-style: italic;
  padding-top: 10%;
  font-weight: bolder;
  font-size: 3rem;
  color: #0f2f57;
}
.resumeFor,
.bottomText {
  font-family: cursive;
  font-style: italic;
  font-weight: bolder;
  font-size: 2.5rem;
  color: #0f2f57;
}
@media screen and (max-width: 991px) {
  #hero .container h1 {
    font-size: 2.5rem;
  }
  .resumeFor {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 576px) {
  #hero .container h1 {
    padding-top: 15%;
    font-size: 2.1rem;
  }
  .resumeFor {
    font-size: 1.9rem;
  }
}
.auto-type {
  color: red;
  font-size: 2.5rem;
  font-weight: bolder;
  padding-left: 20%;
}
@media only screen and (max-width: 991px) {
  .auto-type {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 576px) {
  .auto-type {
    /*margin-right:16%;*/
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 2560px) {
  #hero .container h1 {
    padding-top: 40%;
  }
}
@media only screen and (max-width: 991px) {
  .bottomText {
    display: none;
  }
}
/*---------form--------------*/
#form input,
select {
  margin: 2%;
  color: #000;
  border: 2px solid red;
  border-radius: 10px;
  box-shadow: -10px 2px 20px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
@media screen and (max-width: 991px) {
  #form input,
  select,
  btn {
    display: block;
    width: 40%;
  }
}
@media screen and (max-width: 576px) {
  #form input,
  select,
  btn {
    width: 90%;
  }
}
#form .btn {
  margin: 2%;
  background: rgb(57, 199, 57);
  color: #fff;
  border: 1px solid rgb(57, 199, 57);
  padding: 10px;
}
#form .btn:hover {
  background: red;
  border: 1px solid red;
  color: #fff;
}
#form .control {
  padding: 0.9% 3.5% 0.9% 3.5%;
}
/*@media screen and (min-width:768px){
#form .btn{
margin-left: 39%;
}
}
@media screen and (min-width:1024px){
#form .btn{
margin-left: 29%;
}
}
@media screen and (min-width:1440px){
#form .btn{
margin-left:5%;
}
}*/
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 3rem 0;
}
.section-bg {
  background-color: #f6f9fd;
}
.section-title {
  padding-bottom: 0;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding-top: 2rem;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  color: #ed3c0d;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}
@media screen and (max-width: 780px) {
  .section-title h2 {
    padding-top: 10%;
    letter-spacing: 0px;
    margin: 0;
  }
  .section-title p {
    font-weight: 600;
    font-size: 25px;
  }
}
@media screen and (max-width: 430px) {
  .section-title h2 {
    padding-top: 20%;
    letter-spacing: 0px;
    margin: 0;
  }
  .section-title p {
    font-weight: 600;
    font-size: 25px;
  }
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 20px;
}
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #ed502e;
  float: left;
}
.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}
.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #2169c4;
}
/*--------------------------------------------------------------
#  how section
--------------------------------------------------------------*/
#how h2 {
  padding: 0%;
}
.how .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.5s;
  border-radius: 30%;
}
.how .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: #48a3ce;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.how .icon-box .icon i {
  color: #fff;
  font-size: 48px;
}
.how .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  transform: translateZ(-1px);
  z-index: 1;
}
.how .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.how .icon-box h4 a {
  color: #0b2341;
}
.how .icon-box p {
  line-height: 24px;
  font-size: 1.1rem;
  margin-bottom: 0;
  text-align: center;
  color: #0f2f57;
}
.how .icon-box:hover {
  background: #5e8abd;
  border-color: #3d6caa;
}
.how .icon-box:hover .icon {
  background: #fff;
}
.how .icon-box:hover .icon i {
  color: #ed502e;
}
.how .icon-box:hover .icon::before {
  background: #215472;
}
.how .icon-box:hover h4 a,
.how .icon-box:hover p {
  color: #fff;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  padding: 0;
  width: 100%;
  background: #fff;
  border-radius: 2%;
}
.about .content p {
  text-align: justify;
  color: #0f2f57;
  padding-left: 24%;
}
.about .content h3 {
  font-weight: 600;
  font-size: 35px;
  text-align: center;
  font-family: cursive;
  padding-left: 3%;
  color: #ed3c0d;
}
.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ed502e;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ed502e;
  margin-left: 43%;
}
.about .content .btn-learn-more:hover {
  background: #ed502e;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .about .content .btn-learn-more {
    margin-left: 35%;
  }
  .about .content h3 {
    padding-left: 0%;
  }
  .about .content p {
    padding-left: 6%;
    text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .about .content .btn-learn-more {
    margin-left: 25%;
    text-align: center;
  }
  .about .content p {
    padding-left: 0;
    text-align: center;
    color: #000;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.5s;
  border-radius: 20%;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.2s ease-in-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  transform: translateZ(-1px);
  z-index: 1;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #0b2341;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 1.1rem;
  margin-bottom: 0;
  text-align: justify;
  color: #0f2f57;
}
.services .icon-box:hover {
  background: #dd8a77;
  border-color: #ed502e;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #ed502e;
}
.services .icon-box:hover .icon::before {
  background: #f1775d;
}
.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}
@media screen and (max-width: 780px) {
  #services .section-title h2 {
    padding-top: 10%;
  }
}
@media screen and (max-width: 430px) {
  #services .section-title h2 {
    padding-top: 20%;
  }
}
/*--------------------------------------------------------------
# Blogs
--------------------------------------------------------------*/
#blog .card {
  margin: 10px;
}
.blogList {
  position: fixed;
  top: 100px;
  right: 22px;
  z-index: 996;
  background: #ed502e;
  min-width: fit-content;
  border-radius: 10px;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
}
#articles h2,
h3 {
  margin: 2rem 0 0.5rem;
}
#articles .grid-container {
  display: grid;
  grid-gap: 20px;
}
@media (min-width: 769px) {
  #articles .item1 {
    grid-column: 1 / span 3;
    grid-row: 1;
  }
  #articles .item2 {
    grid-column: 4;
    grid-row: 1;
  }
  #articles .item3 {
    grid-column: 1 / span 4;
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  #articles .item1 {
    grid-column: 1;
    grid-row: 1;
  }
  #articles .item2 {
    grid-column: 1;
    grid-row: 3;
  }
  #articles .item3 {
    grid-column: 1;
    grid-row: 2;
  }
  #articles .author {
    font-size: small;
  }
}
#articles .item2 a {
  text-decoration: none;
  color: black;
}
#articles .item2 .card-title {
  transition: all 0.5s ease;
}
#articles .item2 .card-title:hover {
  transform: scale(1.05);
}
#articles .item1 img {
  padding: 15px;
  width: 100%;
  height: 100%;
  aspect-ratio: 5/3;
}
#articles .card {
  box-shadow: rgba(0, 0, 0, 0.24) 0 0px 8px;
  border: none;
  border-radius: 20px;
}
#articles .recentblog {
  padding-top: 10px;
  font-size: x-large;
  font-weight: bolder;
  color: white;
  background: #ed502e;
  border-radius: 20px 20px 0px 0px;
}
#articles .card-title {
  font-weight: bold;
  text-align: center;
}
#articles .ribbon {
  width: 50px;
  background-color: transparent;
  position: absolute;
  top: 38px;
  left: 0px;
  border: solid 15px #ed502e;
  border-bottom: solid 15px #ed502e;
  border-top: 15px solid #ed502e;
  border-right: 10px solid transparent;
}
.author {
  font-style: italic;
  color: #ed502e;
}
#articles .share-btn {
  background: #ed502e;
  border: none;
  border-radius: 10px;
  color: white;
  width: auto;
  height: 40px;
  margin: 0px 5px 5px 5px;
  transition: all 0.5s ease;
}
#articles .share-btn:hover {
  transform: scale(1.05);
}

/*-------------------------------FAQs------------------------------*/
#faqs p {
  color: #0f2f57;
}
/*---------------samples1------*/
#sample {
  padding: 0;
}
.tab1 {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fff;
}
/* Style the buttons inside the tab */
.tab1 button {
  background-color: #fff;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #000;
  border-radius: 10px;
  width: 125px;
}
/* Change background color of buttons on hover */
.tab1 button:hover {
  background: white;
  color: rgb(129, 114, 114);
}
/* Create an active/current tablink class */
.tab1 button.active {
  background-color: red;
  color: #fff;
}
/* Style the tab content */
.tabcontent1 {
  display: none;
  padding: 6px 12px;
  border-top: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 3s;
}
/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*---------------samples2------*/
.tab2 {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fff;
}
/* Style the buttons inside the tab */
.tab2 button {
  background-color: #fff;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #000;
  border-radius: 10px;
  width: 125px;
}
/* Change background color of buttons on hover */
.tab2 button:hover {
  background: white;
  color: rgb(129, 114, 114);
}
/* Create an active/current tablink class */
.tab2 button.active {
  background-color: red;
  color: #fff;
}
/* Style the tab content */
.tabcontent2 {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 3s;
  border-top: none;
}
/*---------------samples3------*/
.tab3 {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fff;
}
/* Style the buttons inside the tab */
.tab3 button {
  background-color: #fff;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #000;
  border-radius: 10px;
  animation: fadeEffect 4s;
  width: 125px;
}
/* Change background color of buttons on hover */
.tab3 button:hover {
  background: white;
  color: rgb(129, 114, 114);
}
/* Create an active/current tablink class */
.tab3 button.active {
  background-color: red;
  color: #fff;
}
/* Style the tab content */
.tabcontent3 {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 3s;
  border-top: none;
}
/*--------------------pricing--------------*/
.price {
  padding-top: 4%;
  color: #0f2f57;
  border-radius: 5%;
}
.price .container {
  background-color: #fff;
  border-radius: 5%;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
th {
  background: #f14646;
  height: 15vh;
  color: #fff;
  border-radius: 5%;
}
th h3 {
  color: #fff;
  font-family: Impact, "Arial Narrow Bold";
  font-size: 30px;
}
td {
  height: 9vh;
  text-align: center;
  padding: 8px;
  box-shadow: 5px 5px 5px rgb(98, 100, 94);
  background: #fff;
}
td i {
  border-radius: 100%;
}
td a {
  border: 1px solid red;
  border-radius: 10%;
  font-size: 20px;
  color: #fff;
  padding: 5px 20px 5px 20px;
  width: 100%;
  background: rgb(235, 84, 84);
}
td a:hover {
  color: #fff;
  border: 1px solid red;
  background: red;
}
@media only screen and (max-width: 1024px) {
  #price .container h2 {
    padding-top: 15%;
  }
}
td h3 {
  color: #ed3c0d;
  font-family: Impact, "Arial Narrow Bold";
  font-size: 30px;
}
#buy a {
  margin-left: 5%;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contactBtn {
  width: fit-content;
  border-radius: 10px;
  border: none;
  background: #3f73b7;
  padding: 0.8rem;
  font-size: 1.1rem;
}
.contactBtn a {
  color: white;
}
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}
.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}
.contact .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .error-message br + br {
  margin-top: 25px;
}
.contact .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact input,
.contact textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact input:focus,
.contact textarea:focus {
  border-color: #ed502e;
}
.contact input {
  padding: 10px 15px;
}
.contact textarea {
  padding: 12px 15px;
}
.contact button[type="submit"] {
  background: #ed502e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}
.contact button[type="submit"]:hover {
  background: #ef6445;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 425px) {
  #contact h2 {
    padding-top: 35%;
  }
}
/*-----------resume Writing------*/
#head {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 80%;
  background: #1d2b64; /* fallback for old browsers */
}
@media only screen and (max-width: 320px) {
  #resume .box1 .row {
    padding-top: 11%;
  }
}
#head .box1 h1 {
  padding-top: 20%;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
}
#head .box1 h2 {
  padding-top: 2%;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
#head .box1 p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
}
@media only screen and (max-width: 320px) {
  #head {
    border-radius: 0;
  }
  #head form {
    padding-left: 8%;
  }
}
#head .col-md-4 {
  padding: 10% 8% 0 0;
}
@media only screen and (min-width: 375px) {
  #head .col-md-4 {
    padding: 10% 5% 0 5%;
  }
}
@media only screen and (min-width: 768px) {
  #head .col-md-4 {
    padding: 10% 2% 0 0;
  }
}
#expert h3 {
  padding-top: 1%;
  letter-spacing: 1px;
  text-align: center;
  color: #000;
  height: 10vh;
  border-radius: 5%;
}
#expert p {
  text-align: center;
  font-size: 18px;
  font-family: sans-serif;
  color: #0f2f57;
}
#expert button {
  border: 1px solid red;
  border-radius: 10%;
  background: red;
  color: #fff;
  margin: 0 0 2% 45%;
  padding: 10px 20px 10px 20px;
}
@media only screen and (max-width: 500px) {
  #expert button {
    margin: 0 0 2% 30%;
  }
}
#expert button:hover {
  background: rgb(45, 170, 45);
  border: 1px solid rgb(45, 170, 45);
}
/*--------------------------resume pricing-----------------------*/
#resumeprice {
  padding-top: 0;
}
#resumeprice .box {
  text-align: center;
  margin: 2%;
}
#resumeprice .box-text {
  padding: 3.75rem;
}
#resumeprice .box-text h3 {
  font-weight: 800;
  color: #0f2f57;
}
#resumeprice .box-text p {
  color: #0f2f57;
}
#resumeprice .box .icon {
  font-size: 80px;
}
#resumeprice .box .days {
  background: #3f73b7;
  height: 10vh;
  color: #fff;
  border-radius: 0.625rem;
  padding-top: 1rem;
}
#resumeprice .box-text button {
  color: #fff;
  background: red;
  padding: 15px 30px 15px 30px;
  border: 1px solid red;
  border-radius: 16%;
}
#resumeprice .box-text button:hover {
  background: #18d26e;
  color: #fff;
  border: 1px solid #18d26e;
}
/*-------------------Review----------*/
#review {
  padding-top: 0;
  padding-bottom: 0;
}
#review .card {
  text-align: center;
  color: red;
  margin: 1%;
  border-radius: 10%;
  background-color: #fff;
  border-left: 3px solid lightblue;
}
#review .card:hover {
  background-color: lightblue;
}
#review .card h3 {
  color: rgb(119, 110, 110);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#review .card h4 {
  color: rgb(119, 110, 110);
  font-style: inherit;
  font-weight: 600;
  font-size: 12px;
}
#review .card p {
  text-align: justify;
  color: #0f2f57;
}
#review .card p:hover {
  color: #fff;
}
/*-------------------------slider --------------------------*/
.swiper {
  width: 100%;
  height: 100%;
  padding-top: 0;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  padding-bottom: 2%;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.gopul .icon {
  font-size: 56px;
  color: #ed3c0d;
}
.gopul {
  width: 70%;
}
@media screen and (max-width: 320px) {
  .gopul {
    text-align: center;
    font-size: 11px;
    width: 100%;
  }
}
/*----coverletter-----*/
.hero-btn {
  border: 1px solid red;
  border-radius: 10%;
  background: red;
  color: #fff;
  margin-bottom: 2%;
  padding: 1%;
}
.hero-btn:hover {
  background: #3f73b7;
  border: 1px solid #3f73b7;
}
/*--------------------------------------------------------------
#  SOP SERVICES section
--------------------------------------------------------------*/
#sop h2 {
  padding: 0%;
}
.sop .icon-box {
  text-align: center;
  background: #fefefe;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  border-radius: 30%;
  transition: 1s;
}
.sop .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: #0b2341;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.sop .icon-box .icon i {
  color: #fff;
  font-size: 48px;
}
.sop .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}
.sop .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.sop .icon-box h4 a {
  color: #0b2341;
}
.sop .icon-box h4 a:hover {
  color: red;
}
.sop .icon-box a button {
  background: red;
  color: #fff;
  border: 1px solid red;
  padding: 3px 15px 3px 15px;
  border-radius: 8%;
}
.sop .icon-box a button:hover {
  background: #18d26e;
  border: 1px solid #18d26e;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #071527;
  padding: 12px 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #ed502e;
  text-align: center;
  padding: 30px 20px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}
#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #3f73b7;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #e8a99a;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #3f73b7;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ed502e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ef6445;
}
#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
