/* 
    Template Name: CSUME V2
    Template URL:  https://www.designtocodes.com/product/csume-v2-cyber-security-expert-one-page-website-template/
    Description:   CSUME V2 – One Page Cyber Security Expert Portfolio Template is built with a modern design and the latest web technologies.
    Author:        DesignToCodes
    Author URL:    https://www.designtocodes.com
    Text Domain:   Csume
*/

:root {

  /* Global Color */
  --primary_color: #23AE62;
  --primary_shade: rgba(35, 174, 98, 0.05);
  --secondary_color: #101622;
  --secondary_light_color: #121826;
  --text_color: #A0A3A8;
  --primary_border: rgba(35, 174, 98, 0.2);
  --text_color_one: #B8BABE;
  --default_color_one: #ffffff;
  --border_radius: 5px;

  /* global google font */
  --primary_font: 'Inter', sans-serif;
  --secondary_font: 'Roboto', sans-serif;;
 
}

/*Typography
-----------------------*/
p{
  font-family: var(--secondary_font);
  font-weight: 400;
  font-size: 17px;
  color: var(--text_color);
  margin-bottom: 16px;
}
h1,h2,h3,h4,h5,h6{
  color: var(--primary_color);
  font-family: var(--primary_font);
  margin-bottom: 16px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 62px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 21px;
}
h4{
  font-size: 18px;
}

/*Preloader*/
#preloader {
  background-color: var(--secondary_color);
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 1100;
}
#preloader > img {
  width: 92px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
}

/*Custom Style
-----------------------*/
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
::selection {
  background: var(--primary_color);
  color: var(--secondary_color);
}
[class *="col-"]{
  padding: 12px;
}
#scrollToTopBtn{
  display: none;
}
a,
button,
select,
input {
  color: var(--text_color);
  cursor: pointer;
  transition: 0.4s all;
}
a:focus,
button:focus,
select:focus,
input:focus,
label:focus {
  outline: 0;
}
a {
  text-decoration: none;
  color: var(--text_color);
  font-family: var(--primary_font);
  font-weight: 400;
}
a:hover {
  text-decoration: none;
  color: var(--primary_color);
}
section {
  padding: 100px 0px;
}
li{
  font-family: var(--secondary_font);
  font-weight: 400;
  font-size: 17px;
  color: var(--text_color);
  list-style-type: none;
}
.d2c_header{
  width: 80%;
  margin: 0 auto 25px auto;
}
/* global card */
.d2c_card{
  background: var(--primary_shade);
  border: 1px solid var(--primary_border);
  border-radius: var(--border_radius);
  padding: 20px;
}
/* button */
.d2c_btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--secondary_color);
  border: 1px solid var(--primary_color);
  background: var(--primary_color);
  border-radius: 2px;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--secondary_font);
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
  transition: 0.4s all ease;
}
.d2c_btn:focus {
  outline: 0;
  box-shadow: none;
}
.d2c_btn:hover {
  background: transparent;
  color: var(--primary_color);
  border-color: var(--primary_color);
  transition: 0.4s all ease;
}
.d2c_btn:active {
  box-shadow: none;
}
.d2c_btn_invert{
  background: transparent;
  color: var(--primary_color);
  border-color: var(--primary_color);
  transition: .4s all ease;
}
.d2c_btn_invert:focus{
  color: var(--primary_color);
}
.d2c_btn_invert:hover{
  background: var(--primary_color);
  color: var(--secondary_color);
  border-color: var(--primary_color);
  transition: .4s all ease;
}

/* title */
.d2c_title{
  font-size: 36px;
  color: var(--primary_color);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.d2c_title span{
  -webkit-text-stroke: 1px var(--primary_color);
  -webkit-text-fill-color: rgba(57, 182, 114, 0.1);
}
.d2c_subtitle{
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
}
.d2c_subtitle img{
  margin-right: 10px;
}

/* navbar */
.navbar-brand{
  width: 86px;
}
.d2c_navbar{
  background: var(--secondary_color);
  box-shadow: 0px 0px 25px rgba(64, 18, 128, 0.05);
  padding: 10px 0px;
}
.d2c_navbar .navbar-nav .nav-link,.d2c_footer_nav .nav-link{
  color: var(--default_color_one);
  font-family: var(--primary_font);
  font-weight: 500;
  font-size: 17px;
  transition: .4s all ease;
  padding: 10px 15px;
  text-transform: capitalize;
}
.d2c_navbar .navbar-nav .nav-link:hover{
  color: var(--primary_color);
  transition: .4s all ease;
}
.d2c_navbar .navbar-nav .nav-item .d2c_btn{
  margin-left: 20px;
  font-size: 14px;
  padding: 7px 18px;
  text-transform: capitalize;
  color: var(--primary_color);
}
.d2c_navbar .navbar-nav .nav-item .d2c_btn:hover{
  color: var(--default_color_one);
  background: var(--primary_color);
  border-color: var(--primary_color);
}
/* Nav Item Show from Side */
body .d2c_mobile_view {
  position: fixed;
  height: 100vh;
  inset: 0;
  opacity: 1;
}
.navbar.d2c_mobile_view_body .navbar-nav {
  width: 100%;
}
.navbar.d2c_mobile_view_body .nav-item {
  margin-right: 0;
}
.d2c_mobile_view .show_width {
  max-width: 15.625rem;
  width: 100%;
  height: 100vh;
  position: absolute;
  right: -380px;
  top: 0;
  transition: 0.5s;
  padding: 20px 15px;
  background-color: #121826;
  overflow: scroll;
  box-shadow: 0px 0px 10px #23ae6208;
  z-index: 9999;
}

.d2c_mobile_view.show .show_width {
  right: 0;
  transition: 0.5s;
}
.d2c_mobile_view .navbar-toggler {
  background: var(--primary_color);
  color: var(--secondary_color);
  padding: 4px 12px;
  border-radius: 6px;
}

@media only screen and (min-width:991px) {
  body .d2c_mobile_view {
    opacity: 0;
    transition: .5s;
  }
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link{
  color: var(--primary_color);
}
.navbar-nav .d2c_btn_invert.active:hover{
  color: var(--secondary_color) !important;
}
.navbar-nav .d2c_btn.active{
  border-color: var(--primary_color) !important;
  color: var(--default_color_one) !important;
  background: var(--primary_color) !important ;
}
.navbar-toggler{
  background: var(--primary_color);
}
.navbar-toggler:focus{
  box-shadow: none;
}
.navbar-toggler i{
  font-size: 20px;

}
.navbar .d2c_btn{
  font-weight: 600;
}
.navbar .d2c_btn.active{
  background: var(--primary_color);
  color: var(--secondary_color);
}
/* navbar end */

/* ========================== hero section start ============================ */
.d2c_hero{
  background-color: var(--secondary_color);
  background-image: url(../images/hero_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.d2c_hero_content h4{
  color: var(--text_color_one);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 3.8px;
}
.d2c_hero_content .d2c_title{
  font-size: 62px;
  font-family: var(--secondary_font);
  color: var(--primary_color);
}
.d2c_hero_content .d2c_subtitle{
  color: var(--default_color_one);
  font-weight: 500;
  letter-spacing: 0.24em;
  margin-bottom: 25px;
}
.d2c_hero_content .d2c_btn{
  margin-top: 20px;
}
.d2c_hero_content .d2c_description{
  padding-left: 15px;
}
.d2c_hero_content .d2c_description::before{
  content: '';
  position: absolute;
  left: 0px;
  background: linear-gradient(180deg, #121826 -15.13%, #23AE62 116.1%);
  width: 4px;
  border-radius: 10px;
  height: 85%;
  top: 20%;
  transform: translateY(-15%);
}
.d2c_hero_profile_image{
  border-radius: 50%;
}
.d2c_hero_right::before{
  content: url(../images/liner_with_lock.png);
  position: absolute;
  top: -50px;
  left: 0;
}
.d2c_hero_right::after{
  content: url(../images/location.png);
  position: absolute;
  top: 0px;
  right: 10px;
}
/* ========================== hero section end ============================ */

/* ========================== about section start ============================ */
.d2c_about{
  background-color: var(--secondary_light_color);
  background-image: url(../images/about_bg_left.png),url(../images/ellipse.png);
  background-repeat: no-repeat;
  background-position: left center,right top;
}
.d2c_about_content .d2c_card h3{
  padding: 25px 25px 15px 25px;
  border-bottom: 1px solid var(--primary_border);
}
.d2c_about_content .d2c_card p{
  padding: 15px 25px 18px 25px;
}
.d2c_about_left::before{
  content: url(../images/about_lock_image.png);
  position: absolute;
  top: 0;
  left: 0;
}

/* ========================== about section end ============================ */

/* ========================== services section start ============================ */
.d2c_services{
  background: var(--secondary_light_color);
  padding-bottom: 150px;
}
.d2c_services .d2c_header{
  margin-bottom: 70px;
}
.d2c_services_card{
  background: var(--primary_shade);
  border-radius: var(--border_radius);
  padding: 30px 25px;
  cursor: pointer;
  border: 1px solid var(--primary_border);
  transition: .4s all ease;
  margin-bottom: 130px;
}
.d2c_services_card:hover{
  border-color: transparent;
  transition: .4s all ease;
}
.d2c_services_icon{
  width: 40px;
  height: 40px;
  background: rgba(35, 174, 98, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.d2c_services_icon i{
  color: var(--primary_color);
  font-size: 18px;
}
.d2c_services_left,.d2c_services_right{
  z-index: 100;
}
.d2c_services_left .d2c_services_card:first-child{
  margin-left: 100px;
}
.d2c_services_right .d2c_services_card:first-child{
  margin-right: 100px;
  margin-left: -100px;
}
.d2c_services_image{
  transform: scale(1.1);
  border-radius: 50%;
}
/* ========================== services section end ============================ */

/* ========================== counter section start ============================ */
.d2c_counter{
  background: var(--secondary_color);
}
.d2c_icon{
  width: 60px;
  height: 60px;
  border: 1px solid var(--primary_border);
  border-radius: var(--border_radius);
  color: var(--primary_color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 32px;
}
.d2c_counter_content h3{
  -webkit-text-stroke: 1px var(--primary_color);
  -webkit-text-fill-color: rgba(57, 182, 114, 0.1);
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 52px;
}
.d2c_counter_content p{
  font-family: var(--primary_font);
  text-transform: uppercase;
  color: var(--primary_color);
  font-size: 20px;
  font-weight: 700;
}
/* ========================== counter section end ============================ */

/* ========================== why choose me section start ============================ */
.d2c_why_choose{
  background-color: rgb(18 24 38 / 95%);
  background-image: url(../images/wave.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.d2c_choose_me_key_points h4{
  margin-bottom: 10px;
}
.d2c_choose_me_key_points .d2c_icon{
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--primary_color);
  border: 1px solid var(--primary_border);
}
.d2c_icon_column{
  width: 12%;
}
.d2c_content_column{
  width: 88%;
}
.d2c_why_choose hr{
  border-color: var(--primary_border);
}
/* company logo css */
.d2c_company_logo{
  margin-top: 100px;
}
.d2c_logo_wrapper{
  border: 1px solid var(--primary_border);
  background: var(--primary_shade);
  padding: 50px 20px;
  border-radius: var(--border_radius);
  cursor: pointer;
}
/* ========================== why choose me section end ============================ */

/* advice section start */
.d2c_advice{
  background-color: var(--secondary_light_color) !important;
  background-image: url(../images/bg_liner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.d2c_advice .d2c_card{
  padding: 35px 25px;
  transition: .4s all ease;
}
.d2c_advice .d2c_card:hover{
  border-color: transparent;
  transition: .4s all ease;
}
.d2c_advice .d2c_btn{
  margin-top: 40px;
}
/* advice section end */

/* ========================== gallery section start ============================ */
.d2c_portfolio{
  background: var(--secondary_light_color);
}
.d2c_gallery_image_wrapper{
  overflow: hidden;
  border-radius: var(--border_radius);
  border: 1px solid transparent;
}
.d2c_gallery_image_wrapper img{
  object-fit: cover;
  border-radius: var(--border_radius);
  box-shadow: 0px 0px 28px rgba(44, 217, 123, 0.07);
}
.d2c_gallery_content{
  display: block;
  position: absolute;
  background: linear-gradient(180deg, rgba(18, 24, 38, 0) 0%, rgba(35, 174, 98, 0.08) 55.21%, rgba(18, 24, 38, 0) 100%), linear-gradient(180deg, rgba(18, 24, 38, 0.97) 0%, rgba(35, 174, 98, 0.97) 333.16%);
  border-radius: var(--border_radius);
  transition: .4s all ease;
  padding: 50px 30px;
  top: 100%;
  bottom: 0px;
  right: 0px;
  left:0px;
  z-index: 999;
  opacity: 0;
}
.d2c_gallery_content h4,.d2c_gallery_content h5{
  color: var(--primary_color);
}
.d2c_gallery_content h4{
  font-size: 22px;
  margin-bottom: 10px;
}
.d2c_gallery_content h5{
  font-size: 20px;
  margin-bottom: 8px;
}
.d2c_gallery_content li{
  position: relative;
  padding-left: 15px;
  margin: 6px 0px;
}
.d2c_gallery_content li::before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary_color);
  border-radius: 50%;
  left: 0;
}
.d2c_gallery_content li::after{
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--primary_color);
  left: 4px;
  top: 65%;
}
.d2c_gallery_content li,.d2c_gallery_content p{
  color: var(--text_color);
}
.d2c_gallery_content li:last-child::after{
  display: none;
}
.d2c_gallery_image_wrapper:hover{
  border: 1px solid var(--primary_border);
}
.d2c_gallery_image_wrapper:hover .d2c_gallery_content {
  opacity: 1;
  top: 0px;
  transition: .4s all ease;
}
.d2c_gallery_image_gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 24, 38, 0.5), rgba(18, 24, 38, 0.5));
  transition: .4s all ease;
}
.d2c_gallery_image_wrapper:hover .d2c_gallery_image_gradient{
  opacity: 0;
  transition: 2s all ease;
}
.d2c_gallery_grid{
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 20px;
}
.d2c_gallery_grid .d2c_gallery_column:first-child{
  grid-column: 1 / 4;
}
.d2c_gallery_grid .d2c_gallery_column:nth-child(2){
  grid-column: 4 / 7;
}
.d2c_gallery_grid .d2c_gallery_column:nth-child(3){
  grid-column: 1 / 3;
}
.d2c_gallery_grid .d2c_gallery_column:nth-child(4){
  grid-column: 3 / 5;
}
.d2c_gallery_grid .d2c_gallery_column:nth-child(5){
  grid-column: 5 / 7;
}
/* ========================== gallery section start ============================ */

/* ========================== awards section start ============================ */
.d2c_awards{
  background-color: var(--secondary_light_color);
  background-image: url(../images/Ellipse_left.png),url(../images/Ellipse_right.png);
  background-repeat: no-repeat,no-repeat;
  background-position: top left, right bottom;
}
.d2c_awards_card{
  background: var(--secondary_light_color);
  border-bottom: 1px solid var(--primary_border);
  margin-top: 30px;
  transition: .4s all ease;
}
.d2c_awards_card h3{
  font-size: 20px;
  background: var(--primary_shade);
  padding: 13px 20px;
  border: 1px solid var(--primary_border);
  border-radius: var(--border_radius);
  margin-bottom: 16px;
  transition: .4s all ease;
}
.d2c_awards_card:hover h3{
  color: var(--secondary_color);
  background: var(--primary_color);
  transition: .4s all ease;
}
.d2c_awards_card:last-child{
  border-bottom: none;
}
.d2c_awards .d2c_profile_img{
  width: 80%;
  margin: 0 auto;
}
/* ========================== awards section end ============================ */

/* ========================== testimonial section start ============================ */
.d2c_testimonial{
  background-color: var(--secondary_light_color);
  background-image: url(../images/left_wave.png),url(../images/right_wave.png);
  background-repeat: no-repeat;
  background-position: bottom left,right top;
  padding-bottom: 0px;
}
.d2c_testimonial .d2c_subtitle{
  margin-bottom: 10px;
}
.d2c_testimonial .d2c_testimonial_card_img img{
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: .4s all ease;
  border: 1px solid var(--primary_border);
}
.d2c_testimonial_card_img img:hover{
  cursor: pointer;
}
.d2c_testimonial .slick-current img{
  width: 120px;
  height: 120px;
  transition: .4s all ease;
  border: 1px solid var(--primary_color);
}
.d2c_testimonial_image{
  background-image: url(../images/liner_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
}
.d2c_testimonial_image .d2c_testimonial_card_img img{
  position: fixed;
}
.d2c_testimonial .slick-track{
  height: 100%;
  transform: unset !important;
}
.d2c_testimonial .slick-list{
  height: 400px;
}
.d2c_testimonial_image .d2c_testimonial_card_img:first-child img{
  bottom: 0px;
  left: 0px;
}
.d2c_testimonial_image .d2c_testimonial_card_img:nth-child(2) img{
  top: 50%;
  transform: translateY(-50%);
  left: 85px;
}
.d2c_testimonial_image .d2c_testimonial_card_img:nth-child(3) img{
  top: 0px;
  left: 0px;
}
.d2c_testimonial_image .d2c_testimonial_card_img:nth-child(4) img{
  top: 0px;
  left: 200px;
}
.d2c_testimonial_image .d2c_testimonial_card_img:nth-child(5) img{
  top: 50%;
  transform: translateY(-50%);
  left: 280px;
}
.d2c_testimonial_image .d2c_testimonial_card_img:nth-child(6) img{
  left: 200px;
  bottom: 0;
}
.d2c_testimonial_image .d2c_testimonial_card_img:nth-child(7) img{
  right: 10px;
  bottom: 0;
}
.d2c_testimonial_image .d2c_testimonial_card_img:nth-child(8) img{
  top: 0;
  right: 10px;
}
/* right content */
.d2c_testimonial_right_content{
  padding-top: 50px;
}
.d2c_client_details .d2c_star{
  margin: 30px 0px;
}
.d2c_client_details .d2c_star i{
  color: var(--primary_color);
  margin-right: 6px;
}
.d2c_client_details .d2c_review{
  margin-bottom: 25px;
}
.d2c_client_details .d2c_client_name{
  font-size: 20px;
  margin-bottom: 5px;
}
.d2c_client_details .d2c_designation{

}

/* ========================== testimonial section end ============================ */


/* ==========contact section start========== */
.d2c_contact{
  background-color: var(--secondary_light_color);
  background-image: url(../images/bg_wave.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
.form-control{
  background: rgba(35, 174, 98, 0.02);
  border-radius: var(--border_radius);
  padding: 13px 16px;
  font-size: 17px;
  font-family: var(--secondary_font);
  color: var(--text_color_one);
  font-weight: 400;
  border: 1px solid var(--primary_border);
  margin-bottom: 20px;
}
.form-control::placeholder{
  color: rgba(160, 163, 168, 0.5);
}
.form-control:focus{
  color: var(--text_color_one);
  background: rgba(35, 174, 98, 0.02);
  border: 1px solid var(--primary_border);
  box-shadow: none;
}
.d2c_contact form{
  margin-top: 15px;
}
.d2c_contact form label{
  font-size: 17px;
  color: var(--primary_color);
  font-family: var(--secondary_color);
  font-weight: 400;
  margin-bottom: 15px;
}
.d2c_contact form .d2c_btn{
  margin-top: 10px;
}

/* ==========contact section end========== */

/* ==========newsletter section start========== */
.d2c_newsletter{
  background: var(--secondary_color);
  padding: 50px 0px;
}
.d2c_newsletter .d2c_btn  {
  font-size: 18px;
  padding: 10px 30px;
  border-radius: var(--border_radius) !important;
  font-weight: 500;
}
.d2c_newsletter .d2c_title{
  font-size: 28px;
  margin-bottom: 25px;
}
.d2c_newsletter .form-control{
  padding: 10px 16px;
}

/* ==========newsletter section end========== */

/* ==========footer section start========== */
.d2c_footer{
  background: var(--secondary_color);
}
.d2c_footer_content_wrapper{
  padding: 40px 0px;
  border-top: 1px solid var(--primary_border);
  border-bottom: 1px solid var(--primary_border);
}
.d2c_footer_logo{
  width: 129px;
}
.d2c_footer_nav{

}
.d2c_footer_nav li{
  display: inline-block;
}
.d2c_footer_nav li a{
  font-family: var(--primary_font);
  font-weight: 600;
  font-size: 17px;
  color: var(--primary_color);
  text-transform: uppercase;
  padding: 0px 10px;
  transition: .4s all ease;
}
.d2c_footer_nav li a:hover{
  transition: .4s all ease;
  color: var(--text_color_one);
}
.d2c_social_link a{
  width: 38px;
  height: 38px;
  background: var(--primary_shade);
  color: var(--primary_color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid transparent;
  margin-left: 7px;
  font-size: 18px;
  transition: .4s all ease;
}
.d2c_social_link a:first-child{
  margin-left: 0px;
}
.d2c_social_link a:hover{
  border: 1px solid var(--primary_border);
  transition: .4s all ease;
}
.d2c_copyright{
  padding: 20px 0px;
}
.d2c_copyright p{
  font-family: var(--primary_font);
  color: var(--text_color);
  font-size: 16px;
}
.d2c_copyright a{
  color: var(--primary_color);
  transition: .4s all ease;
}
.d2c_copyright a:hover{
  color: var(--text_color_one);
  transition: .4s all ease;
}
/* ==========footer section end========== */

/* ========================== bottom to top scroll start ============================ */
#scrollToTopBtn a{
  text-decoration: none;
}
#scrollToTopBtn a i{
  background: var(--primary_shade);
  font-size: 1.25rem;
  color: var(--primary_color);
  border-radius: 0.25rem;
  width: 2.188rem;
  border:  1px solid var(--primary_border);
  height: 2.188rem;
  position: fixed;
  z-index: 9999;
  bottom: 3%;
  right: 5%;
  transition: 0.4s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollToTopBtn a i:hover{
  background: var(--primary_color);
  color: var(--secondary_color);
  transition: 0.4s all ease;
}

/* ========================== bottom to top scroll end ============================ */

/* 
   Template Name: {{ #  }}
    Template URL: {{ # }}
    Description: {{ # }}
    Author: DesignToCodes
    Author URL: https://www.designtocodes.com
    Text Domain: {{ CSume }}
*/



